/* HelloBotz Design System — app.css */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --p:#8B5CF6;--p2:#7C3AED;--p3:#6D28D9;--p-l:#F5F3FF;--p-m:#EDE9FE;
  --a:#06B6D4;--g:#16A34A;--g-l:#DCFCE7;
  --t:#0F172A;--t2:#475569;--t3:#64748B;--t4:#94A3B8;
  --bg:#FFFFFF;--bg2:#F8FAFC;--bg3:#F1F5F9;
  --bd:#E2E8F0;--bd2:#CBD5E1;
  --sh:0 1px 3px rgba(15,23,42,.06),0 1px 2px rgba(15,23,42,.04);
  --sh2:0 10px 25px -5px rgba(15,23,42,.1),0 8px 10px -6px rgba(15,23,42,.06);
  --sh3:0 25px 50px -12px rgba(15,23,42,.18);
  --r:12px;--r2:16px;--r3:20px;--r4:999px;
  --font:'Inter',system-ui,-apple-system,sans-serif;
  --max:1140px;--nav:72px;
  --ease:cubic-bezier(.4,0,.2,1);
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);font-size:16px;line-height:1.6;color:var(--t);background:var(--bg);-webkit-font-smoothing:antialiased;overflow-x:hidden}
img,video,iframe{max-width:100%;height:auto;display:block}
svg{max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}
h1,h2,h3,h4,h5{font-weight:700;line-height:1.25;color:var(--t)}
h1{font-size:clamp(2rem,4vw,3.25rem);letter-spacing:-.03em}
h2{font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-.02em}
h3{font-size:1.125rem}
p{color:var(--t2)}
.container{width:100%;max-width:var(--max);margin:0 auto;padding:0 1.25rem}
.section{padding:4.5rem 0}
.section-sm{padding:3rem 0}
.section-alt{background:var(--bg2)}
.section-dark{background:var(--t);color:#fff}
.section-dark h2,.section-dark h3{color:#fff}
.section-dark p{color:rgba(255,255,255,.7)}
.text-center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.7rem 1.35rem;font-size:.9rem;font-weight:600;border-radius:var(--r4);border:2px solid transparent;transition:all .2s var(--ease);white-space:nowrap;line-height:1.25}
.btn-primary{background:linear-gradient(135deg,var(--p),var(--a));color:#fff;border-color:transparent;box-shadow:0 4px 14px rgba(139,92,246,.35)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(139,92,246,.45)}
.btn-outline{background:#fff;color:var(--t);border-color:var(--bd)}
.btn-outline:hover{border-color:var(--p);color:var(--p2)}
.btn-ghost{color:var(--t2)}
.btn-ghost:hover{color:var(--p)}
.btn-white{background:#fff;color:var(--p2)}
.btn-white:hover{background:var(--p-l)}
.btn-lg{padding:.9rem 1.75rem;font-size:1rem}
.btn-sm{padding:.45rem 1rem;font-size:.8125rem}
.btn-block{width:100%}

/* Badge / Pill */
.badge{display:inline-flex;align-items:center;gap:.35rem;padding:.3rem .75rem;font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;border-radius:var(--r4);background:var(--p-l);color:var(--p2)}
.pill{display:inline-flex;padding:.35rem .85rem;font-size:.75rem;font-weight:600;border-radius:var(--r4);background:var(--p-l);color:var(--p2);border:1px solid var(--p-m);white-space:nowrap}

/* Cards */
.card{background:#fff;border:1px solid var(--bd);border-radius:var(--r2);padding:1.5rem;box-shadow:var(--sh);transition:transform .25s var(--ease),box-shadow .25s var(--ease)}
.card:hover{transform:translateY(-3px);box-shadow:var(--sh2)}
.card-center{text-align:center}
.icon-box{width:48px;height:48px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.icon-box svg{width:22px;height:22px}
.icon-box-gradient{background:linear-gradient(135deg,var(--p-l),var(--p-m));color:var(--p2)}
.icon-box-accent{background:#ECFEFF;color:var(--a)}
.icon-box-success{background:var(--g-l);color:var(--g)}
.icon-box-pink{background:#FDF2F8;color:#DB2777}

/* Grids */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.features-center .card{display:flex;flex-direction:column;align-items:center;text-align:center}
.features-center .icon-box{margin:0 auto .85rem}
.industries-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.integrations-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2.5rem}
.split-section{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.check-list{margin:1.25rem 0}
.check-list li{display:flex;align-items:flex-start;gap:.5rem;padding:.35rem 0;color:var(--t2);font-size:.95rem}
.check-list li::before{content:"✓";color:var(--g);font-weight:700;flex-shrink:0}

/* ========== HEADER ========== */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--bd);height:var(--nav)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:var(--nav);gap:1rem;max-width:var(--max);margin:0 auto;padding:0 1.25rem}
.logo{display:inline-flex;align-items:center;gap:.5rem;max-width:180px;overflow:hidden;flex-shrink:0}
.logo-img{height:36px!important;width:auto!important;max-width:160px!important;object-fit:contain!important}
.logo-icon{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,var(--p),var(--a));display:inline-flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0}
.logo-icon svg{width:20px;height:20px}
.nav-desktop{display:flex;align-items:center;gap:.15rem;flex:1;justify-content:center}
.nav-item{position:relative}
.nav-link{display:inline-flex;align-items:center;gap:.25rem;padding:.5rem .7rem;font-size:.875rem;font-weight:500;color:var(--t2);border-radius:8px;transition:color .15s,background .15s}
.nav-link:hover,.nav-item.open>.nav-link{color:var(--t);background:var(--bg2)}
.nav-link svg{width:14px;height:14px;opacity:.6}
.header-actions{display:flex;align-items:center;gap:.5rem;flex-shrink:0;margin-left:auto}
.header-actions .btn-ghost{font-size:.875rem;padding:.4rem .75rem}

/* Mega menu */
.mega-menu{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(6px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s,transform .2s,visibility .2s;background:#fff;border-radius:var(--r2);box-shadow:var(--sh3);border:1px solid var(--bd);padding:1rem;z-index:1100;min-width:320px}
.nav-item.open>.mega-menu,.nav-item:hover>.mega-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.mega-menu-panel{min-width:min(720px,calc(100vw - 32px));padding:0}
.mega-panel{display:grid;grid-template-columns:1fr 220px}
.mega-panel-links{display:grid;grid-template-columns:1fr 1fr;gap:.15rem;padding:1rem}
.mega-panel-featured{background:linear-gradient(160deg,var(--p-l),#fff);padding:1.25rem;border-radius:0 var(--r2) var(--r2) 0;display:flex;flex-direction:column;gap:.75rem}
.mega-panel-featured h4{font-size:1rem}
.mega-panel-featured p{font-size:.8rem;color:var(--t2)}
.mega-panel-featured ul{font-size:.8rem;color:var(--t2)}
.mega-panel-featured ul li{padding:.2rem 0}
.mega-link{display:flex;align-items:flex-start;gap:.75rem;padding:.65rem .75rem;border-radius:10px;transition:background .15s}
.mega-link:hover{background:var(--bg2)}
.mega-icon{width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.mega-icon svg{width:18px;height:18px}
.mega-icon-purple{background:var(--p-l);color:var(--p2)}
.mega-icon-blue{background:#ECFEFF;color:var(--a)}
.mega-icon-green{background:var(--g-l);color:var(--g)}
.mega-icon-pink{background:#FDF2F8;color:#DB2777}
.mega-link-text{display:flex;flex-direction:column;gap:2px;min-width:0}
.mega-link-title{display:block;font-size:.875rem;font-weight:600;color:var(--t);line-height:1.3}
.mega-link-desc{display:block;font-size:.75rem;color:var(--t3);line-height:1.3}
.mega-col-title{font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--p2);padding:.35rem .75rem .65rem;border-bottom:2px solid rgba(139,92,246,.25);margin-bottom:.35rem}
.mega-menu-solutions{min-width:min(780px,calc(100vw - 32px));padding:.75rem}
.mega-solutions-grid{display:grid;grid-template-columns:1fr 1fr 1fr}
.mega-sol-col{padding:.5rem .75rem;display:flex;flex-direction:column;gap:2px}
.mega-sol-col+.mega-sol-col{border-left:1px solid var(--bd)}

/* Mobile toggle */
.mobile-toggle{display:none;width:44px;height:44px;align-items:center;justify-content:center;border-radius:10px;color:var(--t)}
.mobile-toggle svg{width:24px;height:24px}
.mobile-toggle .icon-close{display:none}
.mobile-toggle.active .icon-open{display:none}
.mobile-toggle.active .icon-close{display:block}

/* Mobile drawer */
.mobile-menu{position:fixed;inset:0 0 0 auto;width:min(360px,100vw);background:#fff;z-index:10000;transform:translateX(100%);transition:transform .3s var(--ease);overflow-y:auto;box-shadow:var(--sh3);display:flex;flex-direction:column}
.mobile-menu.open{transform:translateX(0)}
.mobile-backdrop{position:fixed;inset:0;background:rgba(15,23,42,.4);z-index:9999;opacity:0;visibility:hidden;transition:opacity .3s}
.mobile-backdrop.open{opacity:1;visibility:visible}
.mobile-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid var(--bd)}
.mobile-nav{padding:1rem;flex:1}
.mobile-nav-item{border-bottom:1px solid var(--bd)}
.mobile-nav-link{display:flex;align-items:center;justify-content:space-between;width:100%;padding:1rem 0;font-weight:600;color:var(--t);font-size:.95rem}
.mobile-submenu{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.mobile-nav-item.open .mobile-submenu{max-height:1500px}
.mobile-sublink{display:block;padding:.55rem 0 .55rem .5rem;font-size:.875rem;color:var(--t2)}
.mobile-sublink:hover{color:var(--p)}
.mobile-drawer-cta{padding:1rem 1.25rem 1.5rem;display:flex;flex-direction:column;gap:.5rem;border-top:1px solid var(--bd)}
body.menu-open{overflow:hidden}

/* ========== HERO ========== */
.hero{position:relative;padding:3.5rem 0 4rem;overflow:hidden;background:var(--bg,#fff)}
.hero-bg{position:absolute;inset:0;pointer-events:none}
.hero-gradient{position:absolute;inset:0}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(139,92,246,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(139,92,246,.04) 1px,transparent 1px);background-size:48px 48px;mask-image:radial-gradient(ellipse at center,black 30%,transparent 75%)}
.hero-content{position:relative;text-align:center;max-width:800px;margin:0 auto}
.hero-badge{margin-bottom:1.25rem}
.hero h1{margin-bottom:1rem}
.hero-lead{font-size:1.1rem;color:var(--t2);max-width:600px;margin:0 auto 1.75rem;line-height:1.7}
.hero-cta{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;margin-bottom:1.5rem}
.hero-pills{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:2rem}

/* Hero mock inbox */
.hero-visual{margin-top:2rem}
.hero-mock{position:relative;border-radius:16px;overflow:hidden;background:linear-gradient(160deg,#0f172a 0%,#1e1b4b 45%,#0f172a 100%);box-shadow:0 32px 64px -16px rgba(15,23,42,.4);min-height:340px;max-width:900px;margin:0 auto;color:#fff}
.hero-mock-topbar{display:flex;align-items:center;gap:6px;padding:12px 16px;background:rgba(0,0,0,.3);border-bottom:1px solid rgba(255,255,255,.08)}
.hero-mock-dot{width:10px;height:10px;border-radius:50%;display:inline-block}
.hero-mock-dot.r{background:#FF5F57}
.hero-mock-dot.y{background:#FFBD2E}
.hero-mock-dot.g{background:#28C840}
.hero-mock-title{margin-left:auto;font-size:11px;color:rgba(255,255,255,.45)}
.hero-mock-body{display:grid;grid-template-columns:180px 1fr;min-height:220px}
.hero-mock-sidebar{padding:16px 12px;border-right:1px solid rgba(255,255,255,.08);display:flex;flex-direction:column;gap:8px}
.hero-mock-side-item{height:11px;border-radius:6px;background:rgba(255,255,255,.08)}
.hero-mock-side-item.active{background:linear-gradient(90deg,var(--p),#6366F1);width:70%}
.hero-mock-side-item:nth-child(2){width:85%}
.hero-mock-side-item:nth-child(3){width:55%}
.hero-mock-main{padding:20px}
.hero-mock-chat{display:flex;flex-direction:column;gap:10px}
.hero-mock-bubble{max-width:78%;padding:10px 14px;border-radius:12px;font-size:12px;line-height:1.45;color:rgba(255,255,255,.9)}
.hero-mock-bubble.in{background:rgba(139,92,246,.3);border:1px solid rgba(139,92,246,.35);align-self:flex-start}
.hero-mock-bubble.out{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.12);align-self:flex-end}
.hero-mock-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;padding:12px 16px 16px;border-top:1px solid rgba(255,255,255,.08)}
.hero-mock-stat{background:rgba(255,255,255,.06);border-radius:10px;padding:12px;text-align:center}
.hero-mock-stat strong{display:block;font-size:1.25rem;color:#fff}
.hero-mock-stat span{font-size:10px;text-transform:uppercase;letter-spacing:.04em;color:rgba(255,255,255,.5)}

/* Trusted */
.trusted-section{padding:2rem 0;border-bottom:1px solid var(--bd)}
.trusted-label{text-align:center;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--t4);margin-bottom:1.25rem}
.trusted-logos{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;align-items:center}
.logo-placeholder{padding:.5rem 1.25rem;background:var(--bg3);border-radius:8px;font-size:.8rem;font-weight:600;color:var(--t4);min-width:100px;text-align:center}

/* Media slot */
.media-slot{position:relative;border-radius:16px;overflow:hidden;background:linear-gradient(145deg,#0f172a,#1e1b4b);aspect-ratio:16/10;min-height:220px}
.media-slot-placeholder{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:rgba(255,255,255,.55);font-size:.875rem;text-align:center;padding:1.5rem}
.play-hint{width:56px;height:56px;border-radius:50%;background:rgba(255,255,255,.12);border:2px solid rgba(255,255,255,.25);display:flex;align-items:center;justify-content:center}
.play-hint svg{width:22px;height:22px;color:#fff}

/* Stats */
.stat-item{text-align:center}
.stat-number{font-size:2.5rem;font-weight:800;color:var(--t)}
.stat-suffix{font-size:1.5rem;font-weight:700;color:var(--p)}
.stat-label{font-size:.875rem;color:var(--t3);margin-top:.25rem}

/* Testimonials */
.testimonial-card p{font-size:.95rem;margin-bottom:1rem}
.testimonial-author{display:flex;align-items:center;gap:.75rem;margin-top:1rem}
.testimonial-author .avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--p),#6366F1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0}
.testimonial-author strong{display:block;font-size:.9rem}
.testimonial-author span{display:block;font-size:.8rem;color:var(--t3)}

/* FAQ */
.faq-list{max-width:720px;margin:0 auto}
.faq-item{border:1px solid var(--bd);border-radius:var(--r);margin-bottom:.75rem;overflow:hidden;background:#fff}
.faq-question{display:flex;align-items:center;justify-content:space-between;width:100%;padding:1.1rem 1.25rem;font-weight:600;font-size:.95rem;color:var(--t);text-align:left}
.faq-question svg{width:18px;height:18px;flex-shrink:0;transition:transform .25s}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s var(--ease)}
.faq-item.open .faq-answer{max-height:400px}
.faq-answer-inner{padding:0 1.25rem 1.1rem;color:var(--t2);font-size:.9rem}

/* CTA band */
.cta-band{text-align:center;padding:4rem 1.25rem;background:linear-gradient(135deg,var(--p3),var(--p),var(--a));border-radius:var(--r3);color:#fff}
.cta-band h2{color:#fff;margin-bottom:.75rem}
.cta-band p{color:rgba(255,255,255,.85);margin-bottom:1.5rem}
.cta-band .hero-cta{justify-content:center}

/* Forms */
.form-group{margin-bottom:1rem}
.form-label{display:block;font-size:.8rem;font-weight:600;color:var(--t2);margin-bottom:.35rem}
.form-input{width:100%;padding:.85rem 1rem;border:1px solid var(--bd);border-radius:10px;font:inherit;background:#fff;color:var(--t);transition:border-color .15s}
.form-input:focus{outline:none;border-color:var(--p);box-shadow:0 0 0 3px rgba(139,92,246,.15)}
textarea.form-input{min-height:100px;resize:vertical}

/* Footer */
.site-footer{background:var(--t);color:rgba(255,255,255,.75);padding:3.5rem 0 0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:2rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand p{font-size:.875rem;margin:1rem 0;max-width:280px}
.footer-col h4{color:#fff;font-size:.85rem;margin-bottom:1rem;text-transform:uppercase;letter-spacing:.04em}
.footer-col a{display:block;padding:.3rem 0;font-size:.875rem;color:rgba(255,255,255,.65);transition:color .15s}
.footer-col a:hover{color:#fff}
.footer-contact-section{padding:2.5rem 0;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.footer-contact-section .form-input{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);color:#fff}
.footer-contact-section .form-label{color:rgba(255,255,255,.6)}
.footer-bottom{padding:1.25rem 0;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;font-size:.8rem}

/* Popups */
.popup-overlay{position:fixed;inset:0;z-index:20000;display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.popup-overlay.open{opacity:1;visibility:visible}
.popup-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.5);backdrop-filter:blur(4px)}
.popup-card{position:relative;background:#fff;border-radius:var(--r3);padding:1.75rem;max-width:400px;width:100%;box-shadow:var(--sh3);transform:scale(.95);transition:transform .3s}
.popup-overlay.open .popup-card{transform:scale(1)}
.popup-close{position:absolute;top:12px;right:12px;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--t3);line-height:1}
.popup-close:hover{background:var(--bg2);color:var(--t)}

/* WhatsApp widget */
.wa-widget{position:fixed;bottom:1.25rem;right:1.25rem;z-index:9000}
.wa-widget-btn{width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:transform .2s}
.wa-widget-btn:hover{transform:scale(1.06)}
.wa-widget-btn svg{width:28px;height:28px}
.wa-widget-btn .icon-close{display:none}
.wa-widget.open .wa-widget-btn .icon-wa{display:none}
.wa-widget.open .wa-widget-btn .icon-close{display:block}
.wa-widget-panel{position:absolute;bottom:70px;right:0;width:300px;background:#fff;border-radius:var(--r2);box-shadow:var(--sh3);opacity:0;visibility:hidden;transform:translateY(10px);transition:all .25s;overflow:hidden}
.wa-widget.open .wa-widget-panel{opacity:1;visibility:visible;transform:translateY(0)}
.wa-widget-header{background:linear-gradient(135deg,var(--p),var(--a));color:#fff;padding:1rem 1.15rem}
.wa-widget-header h4{color:#fff;font-size:1rem}
.wa-widget-header span{font-size:.75rem;opacity:.85}
.wa-widget-body{padding:.5rem}
.wa-widget-action{display:flex;align-items:center;gap:.75rem;width:100%;padding:.75rem 1rem;border-radius:10px;font-size:.9rem;font-weight:500;color:var(--t);text-align:left;border:none;background:transparent;cursor:pointer;font:inherit}
.wa-widget-action:hover{background:var(--bg2)}
.action-icon{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.action-icon svg{width:18px;height:18px}
.action-icon.whatsapp{background:#DCFCE7;color:#16A34A}
.action-icon.call{background:#DBEAFE;color:#2563EB}
.action-icon.demo{background:var(--p-l);color:var(--p2)}

/* Section heads */
.section-head{text-align:center;max-width:600px;margin:0 auto 2.5rem}
.section-head .badge{margin-bottom:.75rem}
.section-head p{margin-top:.75rem}

/* Reveal - always visible if no JS */
.reveal{opacity:1;transform:none}

/* ========== RESPONSIVE ========== */
@media (max-width:1024px){
  .features-grid,.industries-grid{grid-template-columns:repeat(2,1fr)}
  .integrations-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .mega-panel{grid-template-columns:1fr}
  .mega-panel-featured{border-radius:0 0 var(--r2) var(--r2)}
}
@media (max-width:900px){
  .nav-desktop{display:none}
  .mobile-toggle{display:flex}
  .header-actions .btn-outline{display:none}
  .mega-solutions-grid{grid-template-columns:1fr}
  .mega-sol-col+.mega-sol-col{border-left:none;border-top:1px solid var(--bd)}
}
@media (max-width:768px){
  .section{padding:3rem 0}
  .split-section{grid-template-columns:1fr}
  .hero-mock-body{grid-template-columns:1fr}
  .hero-mock-sidebar{display:none}
  .testimonials-grid,.stats-row{grid-template-columns:1fr}
  .footer-contact-grid{grid-template-columns:1fr}
  .integrations-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  .features-grid,.industries-grid,.integrations-grid{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%}
  .header-actions .btn-primary{padding:.4rem .85rem;font-size:.8rem}
}


/* Fixes v2 */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-bottom:2.5rem;
  text-align:center;
}
.stat-item{text-align:center}
.stat-number,.stat-suffix{display:inline}
.section-header{text-align:center;max-width:640px;margin:0 auto 2.5rem}
.section-header .badge{margin-bottom:.75rem}
.section-header h2{margin-bottom:.5rem}
.section-header .lead,.section-header p{margin-top:.5rem;color:var(--t2)}
.section-dark .section-header .lead,
.section-dark .section-header p{color:rgba(255,255,255,.7)}

.channels-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin-top:1.5rem;
}
.channel-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:1.25rem 1rem;
  text-align:center;
  transition:background .2s,transform .2s;
}
.channel-card:hover{background:rgba(255,255,255,.1);transform:translateY(-2px)}
.channel-card h3{color:#fff;font-size:1rem;margin-bottom:.25rem}
.channel-card p{color:rgba(255,255,255,.55);font-size:.85rem;margin:0}

.footer-address{display:flex;flex-direction:column;gap:1rem;margin-top:1rem}
.footer-address-item{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  font-size:.9rem;
}
.footer-address-item svg{
  width:20px!important;
  height:20px!important;
  max-width:20px!important;
  flex-shrink:0;
  margin-top:2px;
  color:var(--p);
}
.footer-address-item a{color:rgba(255,255,255,.85)}
.footer-address-item a:hover{color:#fff}

/* Mega menu stay on screen */
.mega-menu{
  max-width:calc(100vw - 24px);
}
.mega-menu.align-left{left:0;transform:translateX(0) translateY(6px)}
.nav-item.open>.mega-menu.align-left,
.nav-item:hover>.mega-menu.align-left{transform:translateX(0) translateY(0)}
.mega-menu.align-right{left:auto;right:0;transform:translateX(0) translateY(6px)}
.nav-item.open>.mega-menu.align-right,
.nav-item:hover>.mega-menu.align-right{transform:translateX(0) translateY(0)}

/* Partner / Company featured CTA in mega */
.mega-cta-box{
  margin-top:.75rem;
  padding:1rem;
  background:linear-gradient(135deg,var(--p-l),#fff);
  border-radius:12px;
  border:1px solid var(--p-m);
  text-align:center;
}
.mega-cta-box p{font-size:.8rem;color:var(--t2);margin-bottom:.65rem}

/* Video section */
.video-section-inner{
  max-width:860px;
  margin:0 auto;
}
.video-frame{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(145deg,#0f172a,#1e1b4b);
  aspect-ratio:16/9;
  box-shadow:var(--sh3);
}
.video-frame video,
.video-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.video-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  color:rgba(255,255,255,.6);
  font-size:.9rem;
  text-align:center;
  padding:1.5rem;
}
.video-placeholder .play-hint{
  width:64px;height:64px;
}

.skip-link{display:none!important}

@media (max-width:768px){
  .stats-grid{grid-template-columns:1fr;gap:1.25rem}
  .channels-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:480px){
  .channels-grid{grid-template-columns:1fr}
}


/* Popup form polish */
.popup-card{
  max-width:420px;
  width:100%;
  max-height:calc(100vh - 2rem);
  overflow-y:auto;
  padding:1.5rem 1.5rem 1.75rem;
}
.popup-card h3{margin:.65rem 0 .35rem;font-size:1.35rem}
.popup-lead{color:var(--t2);font-size:.9rem;margin:0 0 1.15rem;line-height:1.5}
.popup-card .form-group{margin-bottom:.85rem}
.popup-card .form-label{margin-bottom:.3rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
@media(max-width:480px){
  .form-row{grid-template-columns:1fr}
  .popup-card{padding:1.25rem;border-radius:16px}
}

/* Footer social icons NEVER explode */
.footer-social,
.footer-socials{
  display:flex!important;
  align-items:center;
  gap:.65rem;
  margin-top:1rem;
  flex-wrap:wrap;
}
.footer-social a,
.footer-socials a{
  width:40px!important;
  height:40px!important;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.8);
  transition:background .15s,color .15s;
}
.footer-social a:hover,
.footer-socials a:hover{background:rgba(255,255,255,.15);color:#fff}
.footer-social svg,
.footer-socials svg{
  width:18px!important;
  height:18px!important;
  max-width:18px!important;
  max-height:18px!important;
}

/* Footer contact form on dark/light */
.footer-contact-section{
  padding:2.5rem 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:var(--bg2);
  color:var(--t);
}
.footer-contact-section h3{color:var(--t);margin-bottom:.5rem}
.footer-contact-section p{color:var(--t2);font-size:.9rem}
.footer-contact-section .form-label{color:var(--t2)}
.footer-contact-section .form-input{
  background:#fff;
  border:1px solid var(--bd);
  color:var(--t);
}
.footer-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:start;
}
.footer-address-item svg{
  width:18px!important;
  height:18px!important;
  color:var(--p);
}
.footer-address-item a{color:var(--t);font-weight:500}
.footer-address-item a:hover{color:var(--p)}

/* GDPR legal row */
.footer-legal{display:flex;flex-wrap:wrap;gap:.75rem 1.25rem}
.footer-legal a{font-size:.8rem;color:rgba(255,255,255,.55)}
.footer-legal a:hover{color:#fff}
.footer-copy{font-size:.8rem;color:rgba(255,255,255,.5);max-width:520px;line-height:1.5}

/* Mega featured panel text */
.mega-panel-featured,
.mega-guide{
  display:flex;
  flex-direction:column;
  gap:.65rem;
  padding:1.25rem;
  background:linear-gradient(160deg,var(--p-l),#fff);
  border-radius:0 var(--r2) var(--r2) 0;
}
.mega-guide-badge,
.mega-panel-featured .badge{
  align-self:flex-start;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:.25rem .6rem;
  border-radius:999px;
  background:var(--p);
  color:#fff;
}
.mega-guide-title,
.mega-panel-featured h4{
  font-size:1.05rem;
  font-weight:700;
  color:var(--t);
  line-height:1.3;
  margin:0;
}
.mega-guide-desc,
.mega-panel-featured p{
  font-size:.8rem;
  color:var(--t2);
  line-height:1.45;
  margin:0;
}
.mega-panel-featured ul{
  font-size:.8rem;
  color:var(--t2);
  margin:0;
  padding:0;
}
.mega-panel-featured ul li{
  padding:.2rem 0;
  display:flex;
  align-items:center;
  gap:.35rem;
}
.mega-panel-featured ul li::before{
  content:"✓";
  color:var(--g);
  font-weight:700;
}

@media(max-width:768px){
  .footer-contact-grid{grid-template-columns:1fr}
}

.mega-guide h4{font-size:1.05rem;font-weight:700;color:var(--t);line-height:1.3;margin:0}
.mega-guide p{font-size:.8rem;color:var(--t2);line-height:1.45;margin:0}
.mega-guide{display:flex;flex-direction:column;gap:.65rem;padding:1.25rem;background:linear-gradient(160deg,var(--p-l),#fff);border-radius:0 12px 12px 0}


/* Why grid - 3 cards in one row */
.why-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:1.25rem!important;
}
.why-grid .card{
  height:100%;
}

/* Footer single clean row */
.footer-grid{
  display:grid!important;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1fr!important;
  gap:2rem!important;
  padding-bottom:2.5rem!important;
  border-bottom:1px solid rgba(255,255,255,.1)!important;
}
.footer-brand .btn{margin-top:1rem}
.footer-col ul{margin:0;padding:0}
.footer-col li{margin:0}

/* Final CTA band always centered */
.final-cta-section{padding:3rem 0}
.final-cta-section .cta-band{
  text-align:center!important;
  padding:3rem 1.5rem!important;
}
.final-cta-section .hero-cta{
  justify-content:center!important;
}

@media (max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr 1fr!important}
  .footer-brand{grid-column:1 / -1}
}
@media (max-width:768px){
  .why-grid{grid-template-columns:1fr!important}
  .footer-grid{grid-template-columns:1fr 1fr!important}
}
@media (max-width:480px){
  .footer-grid{grid-template-columns:1fr!important}
}


/* ========== MOBILE MENU FIX (matches HTML structure) ========== */
.mobile-toggle{
  display:none;
  width:44px;
  height:44px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border-radius:10px;
  background:transparent;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:10001;
}
.mobile-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--t);
  border-radius:2px;
  transition:transform .25s,opacity .25s;
}
.mobile-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-toggle.active span:nth-child(2){opacity:0}
.mobile-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu{
  position:fixed!important;
  inset:0!important;
  z-index:10000!important;
  pointer-events:none;
  visibility:hidden;
  display:block!important;
  width:100%!important;
  transform:none!important;
  background:transparent!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.mobile-menu.open{
  pointer-events:auto;
  visibility:visible;
}
.mobile-menu .mobile-backdrop{
  position:absolute!important;
  inset:0!important;
  background:rgba(15,23,42,.45)!important;
  opacity:0;
  transition:opacity .3s;
  z-index:0;
}
.mobile-menu.open .mobile-backdrop{opacity:1}

.mobile-drawer{
  position:absolute!important;
  top:0!important;
  right:0!important;
  bottom:0!important;
  width:min(320px,92vw)!important;
  max-width:320px!important;
  background:#fff!important;
  z-index:1;
  transform:translateX(100%);
  transition:transform .3s var(--ease);
  overflow-y:auto!important;
  overflow-x:hidden!important;
  display:flex!important;
  flex-direction:column!important;
  box-shadow:var(--sh3);
  -webkit-overflow-scrolling:touch;
}
.mobile-menu.open .mobile-drawer{transform:translateX(0)}

.mobile-drawer-header{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  padding:0.85rem 1rem;
  border-bottom:1px solid var(--bd);
  flex-shrink:0;
}
.mobile-drawer-header .logo-img{
  height:28px!important;
  max-width:120px!important;
}
.mobile-close{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:var(--t);
}
.mobile-close svg{width:20px!important;height:20px!important}

.mobile-drawer-body{
  flex:1;
  overflow-y:auto;
  padding:0.5rem 1rem 1rem;
}

.mobile-nav-item{
  border-bottom:1px solid var(--bd);
}
.mobile-nav-link{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  width:100%!important;
  padding:0.95rem 0!important;
  font-weight:600!important;
  font-size:0.95rem!important;
  color:var(--t)!important;
  background:none!important;
  border:none!important;
  text-align:left!important;
  cursor:pointer;
  gap:0.75rem;
}
.mobile-nav-link svg{
  width:16px!important;
  height:16px!important;
  max-width:16px!important;
  max-height:16px!important;
  flex-shrink:0!important;
  color:var(--t3);
  transition:transform .25s;
}
.mobile-nav-item.open > .mobile-nav-link svg{
  transform:rotate(180deg);
}

.mobile-submenu{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}
.mobile-nav-item.open .mobile-submenu{
  max-height:800px;
}
.mobile-submenu-inner{
  padding:0 0 0.75rem 0.25rem;
  display:flex;
  flex-direction:column;
  gap:0.15rem;
}
.mobile-submenu-inner a,
.mobile-sublink{
  display:block!important;
  padding:0.5rem 0.5rem!important;
  font-size:0.875rem!important;
  color:var(--t2)!important;
  border-radius:8px;
  text-decoration:none;
}
.mobile-submenu-inner a:hover,
.mobile-sublink:hover{
  background:var(--bg2);
  color:var(--p);
}

.mobile-drawer-cta{
  padding:1rem;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  border-top:1px solid var(--bd);
  flex-shrink:0;
}

/* ALL button icons constrained */
.btn svg,
a.btn svg{
  width:18px!important;
  height:18px!important;
  max-width:18px!important;
  max-height:18px!important;
  flex-shrink:0;
}
.btn-lg svg{width:20px!important;height:20px!important}

/* Mobile layout */
@media (max-width:900px){
  .nav-desktop{display:none!important}
  .mobile-toggle{display:flex!important}
  .header-actions .btn-outline,
  .header-actions .btn-header-cta.btn-outline{display:none!important}
  .header-actions .header-login{font-size:0.85rem}
  .header-inner{gap:0.5rem}
  .logo-img{height:32px!important;max-width:130px!important}
}
@media (max-width:768px){
  body{overflow-x:hidden!important}
  .hero{padding:2rem 0 2.5rem}
  .hero h1{font-size:1.75rem!important;line-height:1.2}
  .hero-lead{font-size:0.95rem}
  .hero-cta{
    flex-direction:column!important;
    align-items:stretch!important;
    gap:0.65rem!important;
  }
  .hero-cta .btn{
    width:100%!important;
    justify-content:center!important;
  }
  .hero-pills{gap:0.35rem}
  .pill{font-size:0.7rem;padding:0.3rem 0.65rem}
  .section{padding:2.5rem 0}
  .container{padding:0 1rem}
  .wa-widget{bottom:1rem;right:1rem}
  .wa-widget-btn{width:52px;height:52px}
}
@media (max-width:400px){
  .header-actions .btn-primary{padding:0.4rem 0.75rem;font-size:0.75rem}
  .header-actions .header-login{display:none}
}


/* Mobile header: only Login + hamburger (hide Start Free / Book Demo in header-actions) */
@media (max-width:900px){
  .header-actions .btn-primary.btn-header-cta,
  .header-actions .btn-outline.btn-header-cta,
  .header-actions a.btn-primary{display:none!important}
  .header-actions .header-login{
    display:inline-flex!important;
    font-size:0.9rem;
    font-weight:600;
    color:var(--t);
    padding:0.4rem 0.75rem;
  }
}

/* Mobile drawer CTA spacing */
.mobile-drawer-cta,
.mobile-drawer-footer{
  padding:1rem 1.15rem 1.5rem!important;
  display:flex!important;
  flex-direction:column!important;
  gap:0.75rem!important;
  border-top:1px solid var(--bd);
  flex-shrink:0;
  background:#fff;
}
.mobile-drawer-cta .btn,
.mobile-drawer-footer .btn{
  width:100%!important;
  margin:0!important;
  min-height:46px!important;
  justify-content:center!important;
}
.mobile-drawer-footer .btn-ghost{
  border:1px solid var(--bd)!important;
  border-radius:999px!important;
}

/* Popups not full-screen on mobile */
.popup-overlay{
  align-items:center!important;
  justify-content:center!important;
  padding:1rem!important;
}
.popup-card{
  max-width:420px!important;
  width:100%!important;
  max-height:min(90vh,640px)!important;
  overflow-y:auto!important;
  border-radius:16px!important;
  margin:auto!important;
}
@media(max-width:480px){
  .popup-overlay{padding:0.75rem!important;align-items:flex-end!important}
  .popup-card{
    max-height:85vh!important;
    border-radius:16px 16px 12px 12px!important;
    margin-bottom:0.5rem!important;
  }
}

/* Video section mobile */
@media(max-width:768px){
  .video-section-inner{max-width:100%}
  .video-frame{aspect-ratio:16/9;min-height:0;border-radius:12px}
  .video-placeholder{padding:1rem;font-size:0.8rem}
  .video-placeholder .play-hint{width:48px;height:48px}
}

/* Select inputs */
select.form-input{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 0.85rem center;
  padding-right:2.25rem;
}


/* Header Login as primary-style button */
.header-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.5rem 1.15rem;
  font-size:0.875rem;
  font-weight:600;
  border-radius:999px;
  background:linear-gradient(135deg,var(--p),var(--a));
  color:#fff!important;
  box-shadow:0 4px 14px rgba(139,92,246,.3);
  transition:transform .15s,box-shadow .15s;
}
.header-login:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(139,92,246,.4);
  color:#fff!important;
}

/* Compact popups - less scroll */
.popup-card-compact{
  max-width:440px!important;
  padding:1.15rem 1.25rem 1.25rem!important;
  max-height:min(88vh,560px)!important;
}
.popup-card-compact h3{font-size:1.15rem!important;margin:0.4rem 0 0.2rem!important}
.popup-card-compact .popup-lead{font-size:0.8rem!important;margin:0 0 0.75rem!important}
.popup-card-compact .form-group{margin-bottom:0.55rem!important}
.popup-card-compact .form-label{font-size:0.75rem!important;margin-bottom:0.2rem!important}
.popup-card-compact .form-input{padding:0.6rem 0.75rem!important;font-size:0.875rem!important}
.popup-card-compact textarea.form-input{min-height:56px!important}
.popup-card-compact .btn-block{margin-top:0.25rem}

/* Trusted logos - image ready */
.trusted-logos{
  display:flex;
  flex-wrap:wrap;
  gap:1.25rem 1.75rem;
  justify-content:center;
  align-items:center;
}
.trusted-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:100px;
  height:48px;
}
.trusted-logo-item img{
  max-height:40px!important;
  max-width:140px!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain;
  filter:grayscale(1);
  opacity:0.7;
  transition:opacity .2s,filter .2s;
}
.trusted-logo-item img:hover{
  filter:grayscale(0);
  opacity:1;
}
.trusted-logo-item .logo-placeholder{
  padding:0.5rem 1.1rem;
  background:var(--bg3);
  border-radius:8px;
  font-size:0.8rem;
  font-weight:600;
  color:var(--t4);
  min-width:100px;
  text-align:center;
  align-items:center;
  justify-content:center;
}


/* ========== Searchable Language Picker ========== */
.lang-picker{position:relative}
.lang-picker-trigger{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  gap:0.5rem;
  width:100%;
  text-align:left;
  cursor:pointer;
  background:#fff;
}
.lang-picker-value{flex:1;color:var(--t3);font-weight:500}
.lang-picker-value.has-value{color:var(--t)}
.lang-picker-chevron{flex-shrink:0;color:var(--t3);transition:transform .2s}
.lang-picker.open .lang-picker-chevron{transform:rotate(180deg)}
.lang-picker-dropdown{
  position:absolute;
  left:0;right:0;
  top:calc(100% + 4px);
  z-index:50;
  background:#fff;
  border:1px solid var(--bd);
  border-radius:12px;
  box-shadow:0 16px 40px rgba(15,23,42,.14);
  overflow:hidden;
  animation:langDropIn .2s ease;
}
@keyframes langDropIn{
  from{opacity:0;transform:translateY(-6px)}
  to{opacity:1;transform:translateY(0)}
}
.lang-picker-search-wrap{
  display:flex;
  align-items:center;
  gap:0.5rem;
  padding:0.65rem 0.85rem;
  border-bottom:1px solid var(--bd);
  background:var(--bg2);
}
.lang-picker-search-wrap svg{flex-shrink:0;color:var(--t3)}
.lang-picker-search{
  flex:1;
  border:none;
  background:transparent;
  font:inherit;
  font-size:0.875rem;
  outline:none;
  color:var(--t);
}
.lang-picker-list{
  list-style:none;
  margin:0;
  padding:0.35rem;
  max-height:180px;
  overflow-y:auto;
}
.lang-picker-list li{
  padding:0.55rem 0.75rem;
  border-radius:8px;
  font-size:0.875rem;
  cursor:pointer;
  color:var(--t);
  transition:background .12s;
}
.lang-picker-list li:hover,
.lang-picker-list li.active{
  background:var(--p-l);
  color:var(--p2);
}
.lang-picker-list li.hidden{display:none}
.lang-picker-empty{
  padding:0.75rem;
  text-align:center;
  font-size:0.8rem;
  color:var(--t3);
}




/* ========== Hero (clean, static – site palette) ========== */
.hero{
  position:relative;
  padding:3.5rem 0 4rem;
  overflow:hidden;
  background:var(--bg,#fff);
}
.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.hero-gradient{
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 50% at 50% -10%,rgba(139,92,246,.07),transparent 55%);
}
.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,23,42,.035) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(ellipse at center,black 25%,transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at center,black 25%,transparent 75%);
}
.hero-content{position:relative;z-index:2;text-align:center;max-width:800px;margin:0 auto}
.hero .container{position:relative;z-index:2}
/* hide any leftover anim nodes if present */
.hero-orb,
.hero-shine,
.hero-product-anim,
.hero-3d-canvas{display:none!important}


/* ========== COLORFUL MOTION LAYER (responsive-safe) ========== */
:root{
  --pink:#EC4899;
  --amber:#F59E0B;
  --emerald:#10B981;
  --indigo:#6366F1;
  --sky:#0EA5E9;
  --grad-1:linear-gradient(135deg,#8B5CF6,#06B6D4);
  --grad-2:linear-gradient(135deg,#8B5CF6,#EC4899);
  --grad-3:linear-gradient(135deg,#06B6D4,#10B981);
  --grad-4:linear-gradient(135deg,#6366F1,#8B5CF6,#EC4899);
  --grad-soft:linear-gradient(180deg,rgba(139,92,246,.06),transparent 60%);
}

/* Animated gradient text for key headings */
.hero h1,
.cta-band h2,
.final-cta-section h2{
  background:linear-gradient(120deg,#0F172A 0%,#5B21B6 40%,#0F172A 70%,#0E7490 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:textShine 8s ease-in-out infinite;
}
.cta-band h2,
.section-dark h2,
.final-cta-section .cta-band h2{
  background:linear-gradient(120deg,#fff 0%,#E9D5FF 40%,#fff 70%,#A5F3FC 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
@keyframes textShine{
  0%,100%{background-position:0% center}
  50%{background-position:100% center}
}

/* Section colorful soft washes – no layout change */
.section-gradient-1{background:linear-gradient(180deg,#Faf8ff 0%,#fff 100%)}
.section-gradient-2{background:linear-gradient(180deg,#F0FDFA 0%,#fff 100%)}
.section-alt{background:linear-gradient(180deg,#F8FAFC 0%,#F5F3FF 50%,#F8FAFC 100%)}

/* Cards – colorful hover lift + glow */
.card,
.card-feature,
.channel-card,
.industry-card,
.integration-card,
.testimonial-card{
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .25s;
  border:1px solid var(--bd);
  position:relative;
  overflow:hidden;
}
.card::after,
.card-feature::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,transparent,transparent);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:0;
  transition:opacity .35s;
}
.card:hover,
.card-feature:hover,
.channel-card:hover,
.industry-card:hover,
.integration-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px -12px rgba(139,92,246,.2),0 8px 16px -8px rgba(6,182,212,.12);
  border-color:rgba(139,92,246,.25);
}
.card:hover::after,
.card-feature:hover::after{
  opacity:1;
  background:linear-gradient(135deg,rgba(139,92,246,.5),rgba(6,182,212,.4),rgba(236,72,153,.3));
}

/* Icon boxes – rotating gradient border pulse */
.icon-box{
  position:relative;
  transition:transform .4s var(--ease),box-shadow .35s;
}
.icon-box-gradient{background:linear-gradient(135deg,#EDE9FE,#CFFAFE)!important;color:var(--p2)!important}
.icon-box-accent{background:linear-gradient(135deg,#CFFAFE,#D1FAE5)!important;color:#0E7490!important}
.icon-box-success{background:linear-gradient(135deg,#D1FAE5,#FEF3C7)!important;color:#059669!important}
.card:hover .icon-box,
.card-feature:hover .icon-box{
  transform:scale(1.08) rotate(-4deg);
  box-shadow:0 8px 20px rgba(139,92,246,.25);
}
.icon-box svg{transition:transform .4s var(--ease)}
.card:hover .icon-box svg{transform:scale(1.1)}

/* Buttons – shimmer */
.btn-primary{
  background:linear-gradient(135deg,#8B5CF6 0%,#6366F1 45%,#06B6D4 100%)!important;
  background-size:200% 200%!important;
  animation:btnGradient 6s ease infinite;
  position:relative;
  overflow:hidden;
}
.btn-primary::before{
  content:"";
  position:absolute;
  top:0;left:-100%;
  width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
  transition:none;
  animation:btnShimmer 3.5s ease-in-out infinite;
}
@keyframes btnGradient{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
@keyframes btnShimmer{
  0%{left:-100%}
  40%,100%{left:150%}
}
.btn-primary:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 10px 28px rgba(139,92,246,.45),0 4px 12px rgba(6,182,212,.25)!important;
}
.btn-outline:hover{
  background:linear-gradient(135deg,rgba(139,92,246,.08),rgba(6,182,212,.08));
  border-color:var(--p);
  color:var(--p2);
  transform:translateY(-1px);
}

/* Badge pulse */
.badge-primary{
  background:linear-gradient(135deg,#EDE9FE,#CFFAFE)!important;
  color:var(--p2)!important;
  border:1px solid rgba(139,92,246,.2);
  animation:badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse{
  0%,100%{box-shadow:0 0 0 0 rgba(139,92,246,.25)}
  50%{box-shadow:0 0 0 6px rgba(139,92,246,0)}
}

/* Scroll reveal – colorful entrance (only when JS adds .is-visible or default visible) */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.reveal.is-visible,
.reveal.visible,
.reveal.revealed{
  opacity:1;
  transform:none;
}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}

/* Stats colorful numbers */
.stat-value,
.stat-number{
  background:linear-gradient(135deg,#8B5CF6,#06B6D4);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Pills colorful */
.pill,
.hero-pills span,
.hero-pills a{
  transition:transform .25s,box-shadow .25s,background .25s;
}
.pill:hover,
.hero-pills span:hover{
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 6px 16px rgba(139,92,246,.2);
}

/* Trusted logos gentle float */
.trusted-logo-item{
  transition:transform .35s var(--ease);
  animation:logoFloat 5s ease-in-out infinite;
}
.trusted-logo-item:nth-child(2){animation-delay:.4s}
.trusted-logo-item:nth-child(3){animation-delay:.8s}
.trusted-logo-item:nth-child(4){animation-delay:1.2s}
.trusted-logo-item:nth-child(5){animation-delay:1.6s}
.trusted-logo-item:nth-child(6){animation-delay:2s}
@keyframes logoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

/* CTA band – animated mesh */
.cta-band{
  background:linear-gradient(135deg,#6D28D9 0%,#8B5CF6 35%,#6366F1 65%,#06B6D4 100%)!important;
  background-size:200% 200%!important;
  animation:ctaMesh 10s ease infinite;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute;
  width:280px;height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  top:-80px;right:-60px;
  filter:blur(40px);
  animation:orbFloat1 12s ease-in-out infinite;
}
.cta-band::after{
  content:"";
  position:absolute;
  width:200px;height:200px;
  border-radius:50%;
  background:rgba(6,182,212,.25);
  bottom:-60px;left:-40px;
  filter:blur(36px);
  animation:orbFloat2 14s ease-in-out infinite;
}
.cta-band > *{position:relative;z-index:1}
@keyframes ctaMesh{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}
@keyframes orbFloat1{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(-20px,30px)}
}
@keyframes orbFloat2{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(25px,-20px)}
}

/* WhatsApp widget pulse */
.wa-widget-btn,
.wa-fab{
  animation:waPulse 2.4s ease-in-out infinite;
}
@keyframes waPulse{
  0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.4)}
  50%{box-shadow:0 4px 28px rgba(37,211,102,.65),0 0 0 10px rgba(37,211,102,.12)}
}

/* Channel / integration icons color variety */
.channel-card:nth-child(3n+1) .icon-box{background:linear-gradient(135deg,#DCFCE7,#BBF7D0)!important;color:#16A34A!important}
.channel-card:nth-child(3n+2) .icon-box{background:linear-gradient(135deg,#E0E7FF,#C7D2FE)!important;color:#4F46E5!important}
.channel-card:nth-child(3n+3) .icon-box{background:linear-gradient(135deg,#FCE7F3,#FBCFE8)!important;color:#DB2777!important}

/* Popup entrance */
.popup-overlay.open .popup-card,
.popup-overlay:not([hidden]) .popup-card{
  animation:popupIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popupIn{
  from{opacity:0;transform:translateY(16px) scale(.96)}
  to{opacity:1;transform:none}
}

/* Header glass stronger on scroll class if present */
.site-header.scrolled,
header.scrolled{
  box-shadow:0 8px 30px rgba(139,92,246,.08);
  border-bottom-color:rgba(139,92,246,.12);
}

/* Mobile: keep colorful but reduce motion intensity */
@media (max-width:768px){
  .card:hover,
  .card-feature:hover,
  .channel-card:hover{transform:translateY(-3px)}
  .btn-primary::before{animation-duration:5s}
  .trusted-logo-item{animation:none}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .reveal{opacity:1;transform:none}
}

/* Prevent overflow from transforms */
.section,.container,.why-grid,.features-grid{overflow:visible}
body{overflow-x:hidden!important}


/* ========== HERO PREMIUM (responsive-safe) ========== */
.hero{
  position:relative;
  padding:clamp(2.5rem,5vw,4.5rem) 0 clamp(2.5rem,5vw,4rem);
  overflow:hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -15%,rgba(139,92,246,.09),transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%,rgba(6,182,212,.06),transparent 50%),
    var(--bg,#fff);
}
.hero-bg{position:absolute;inset:0;pointer-events:none}
.hero-gradient{position:absolute;inset:0}
.hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(15,23,42,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,23,42,.03) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(ellipse at 50% 30%,black 20%,transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 30%,black 20%,transparent 70%);
}
.hero-content{position:relative;z-index:2;text-align:center;max-width:820px;margin:0 auto}
.hero h1{
  margin:0 auto 1rem;
  max-width:18ch;
  line-height:1.15;
}
.hero-lead{
  font-size:clamp(.95rem,2.2vw,1.125rem);
  color:var(--t2);
  max-width:36rem;
  margin:0 auto 1.75rem;
  line-height:1.7;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:center;
  margin-bottom:1.25rem;
}
.hero-cta .btn-lg{
  min-height:52px;
  padding:.85rem 1.6rem;
  font-size:1rem;
  box-shadow:0 8px 24px rgba(139,92,246,.3);
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:center;
  margin-bottom:2rem;
}
.hero-pills .pill,
.hero-pills span{
  display:inline-flex;
  align-items:center;
  padding:.4rem .85rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
  color:var(--p2);
  background:rgba(245,243,255,.95);
  border:1px solid rgba(139,92,246,.18);
  backdrop-filter:blur(6px);
}
.hero-visual{position:relative;z-index:2;margin-top:1.5rem}
.hero-mock{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(160deg,#0f172a 0%,#1e1b4b 50%,#0f172a 100%);
  box-shadow:
    0 32px 64px -16px rgba(15,23,42,.45),
    0 0 0 1px rgba(139,92,246,.2),
    0 0 60px -10px rgba(139,92,246,.25);
  min-height:300px;
  max-width:900px;
  margin:0 auto;
  color:#fff;
  transform:perspective(1200px) rotateX(2deg);
  transition:transform .4s var(--ease),box-shadow .4s;
}
.hero-mock:hover{
  transform:perspective(1200px) rotateX(0deg) translateY(-4px);
  box-shadow:
    0 40px 80px -16px rgba(15,23,42,.5),
    0 0 0 1px rgba(139,92,246,.3),
    0 0 80px -8px rgba(139,92,246,.3);
}
.hero-mock-bubble.in{
  background:rgba(255,255,255,.1);
  border-radius:14px 14px 14px 4px;
  animation:msgIn .6s ease both;
}
.hero-mock-bubble.out{
  background:linear-gradient(135deg,rgba(139,92,246,.85),rgba(6,182,212,.75));
  border-radius:14px 14px 4px 14px;
  margin-left:auto;
  animation:msgIn .6s ease .15s both;
}
@keyframes msgIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}
.hero-mock-stats{
  display:flex;
  gap:0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.25);
}
.hero-mock-stat{
  flex:1;
  text-align:center;
  padding:.85rem .5rem;
  border-right:1px solid rgba(255,255,255,.06);
}
.hero-mock-stat:last-child{border-right:none}
.hero-mock-stat strong{
  display:block;
  font-size:1.15rem;
  background:linear-gradient(135deg,#c4b5fd,#67e8f9);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-mock-stat span{font-size:.7rem;color:rgba(255,255,255,.5)}

@media (max-width:768px){
  .hero h1{max-width:none}
  .hero-mock{transform:none;min-height:260px;border-radius:14px}
  .hero-mock:hover{transform:none}
  .hero-cta .btn{width:100%;max-width:320px}
  .hero-cta{flex-direction:column;align-items:center}
}
@media (max-width:480px){
  .hero-mock-body{grid-template-columns:1fr!important}
  .hero-mock-sidebar{display:none!important}
}


/* Industry cards as SEO links */
a.industry-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  text-decoration:none;
  color:inherit;
  height:100%;
  cursor:pointer;
}
a.industry-card h3{color:var(--t)}
a.industry-card p{color:var(--t2);margin:0}
a.industry-card:hover h3{color:var(--p2)}
a.industry-card:focus-visible{
  outline:2px solid var(--p);
  outline-offset:3px;
}
.industries-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
@media (max-width:900px){
  .industries-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .industries-grid{grid-template-columns:1fr}
}


/* ========== LANG + FOOTER SEO + HERO MEDIA ========== */
.lang-switch{position:relative}
.lang-switch-btn{
  display:inline-flex;
  align-items:center;
  gap:0.35rem;
  padding:0.4rem 0.65rem;
  border-radius:999px;
  border:1px solid var(--bd);
  background:#fff;
  font-size:0.75rem;
  font-weight:700;
  color:var(--t);
  cursor:pointer;
}
.lang-switch-btn svg{width:14px;height:14px;flex-shrink:0;color:var(--p2)}
.lang-switch-menu{
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  min-width:140px;
  background:#fff;
  border:1px solid var(--bd);
  border-radius:12px;
  box-shadow:var(--sh2);
  padding:0.35rem;
  z-index:200;
  list-style:none;
  margin:0;
}
.lang-switch-menu li{
  padding:0.55rem 0.75rem;
  border-radius:8px;
  font-size:0.85rem;
  cursor:pointer;
  color:var(--t);
}
.lang-switch-menu li:hover,
.lang-switch-menu li.active{
  background:var(--p-l);
  color:var(--p2);
}
html[dir="rtl"] body{text-align:right}
html[dir="rtl"] .header-inner,
html[dir="rtl"] .hero-cta{direction:rtl}

/* Footer SEO regions */
.footer-seo-regions{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.5rem 2rem;
  padding:2rem 0 1.5rem;
  margin-top:0.5rem;
  border-top:1px solid rgba(255,255,255,.1);
}
.footer-seo-col h4{
  color:rgba(255,255,255,.9);
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 0.75rem;
}
.footer-seo-links{
  display:flex;
  flex-direction:column;
  gap:0.35rem;
  margin:0;
  padding:0;
}
.footer-seo-links a{
  font-size:0.8rem;
  color:rgba(255,255,255,.55);
  transition:color .15s;
}
.footer-seo-links a:hover{color:#fff}

/* Hero media image */
.hero-media{
  max-width:920px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  box-shadow:
    0 32px 64px -16px rgba(15,23,42,.35),
    0 0 0 1px rgba(139,92,246,.15);
  background:linear-gradient(160deg,#0f172a,#1e1b4b);
}
.hero-media-img{
  width:100%;
  height:auto;
  display:block;
  vertical-align:middle;
}
.hero-media .hero-mock{border-radius:0;box-shadow:none;max-width:none}

@media (max-width:900px){
  .footer-seo-regions{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .lang-switch-btn span{display:none}
  .lang-switch-btn{padding:0.45rem}
  .footer-seo-regions{grid-template-columns:1fr;gap:1.25rem}
  .hero-media{border-radius:14px}
}
@media (max-width:480px){
  .header-login{padding:0.4rem 0.85rem;font-size:0.8rem}
}


/* Hero left content / right image */
.hero-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem 3rem;
  align-items:center;
}
.hero-split .hero-content{
  text-align:left;
  max-width:none;
  margin:0;
}
.hero-split .hero-cta{justify-content:flex-start}
.hero-split .hero-pills{justify-content:flex-start}
.hero-split .hero-visual{margin:0}
.hero-split .hero-media{max-width:none;margin:0}
.hero-split h1{max-width:16ch}
@media (max-width:960px){
  .hero-split{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .hero-split .hero-content{text-align:center}
  .hero-split .hero-cta,
  .hero-split .hero-pills{justify-content:center}
  .hero-split h1{max-width:none;margin-left:auto;margin-right:auto}
  .hero-split .lead{margin-left:auto;margin-right:auto}
}

.industries-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:1.15rem!important;
}
@media (max-width:1024px){
  .industries-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media (max-width:768px){
  .industries-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width:480px){
  .industries-grid{grid-template-columns:1fr!important}
}
