/* =========================================================
   VAXI 1.2 — Visual refresh & responsive stability
   Loaded last to normalize legacy overrides without removing features.
========================================================= */

:root{
  --color-primary:#7157ff;
  --color-primary-strong:#5438f5;
  --color-accent:#20d9ff;
  --color-accent-warm:#ffcf5a;
  --color-bg:#f7f8fc;
  --color-bg-alt:#eef1f8;
  --color-surface:#ffffff;
  --color-surface-dark:#0d1120;
  --color-text:#15182a;
  --color-muted:#686e83;
  --color-border:#e5e8f1;
  --radius:22px;
  --radius-sm:14px;
  --shadow:0 24px 70px rgba(29,35,68,.10);
  --shadow-soft:0 14px 38px rgba(29,35,68,.08);
  --shadow-primary:0 18px 44px rgba(113,87,255,.28);
  --container:1180px;
  --header-height:76px;
}

html{scroll-padding-top:calc(var(--header-height) + 18px)}
body{
  overflow-x:hidden;
  background:
    radial-gradient(900px 420px at 90% -100px,rgba(113,87,255,.08),transparent 62%),
    var(--color-bg);
  color:var(--color-text);
}
body.nav-open{overflow:hidden}
::selection{background:rgba(113,87,255,.22);color:#17142f}
.container{width:min(100% - 36px,var(--container));max-width:none;padding:0;margin-inline:auto}
.section{padding:clamp(64px,8vw,110px) 0}
.section--alt{
  background:
    radial-gradient(700px 260px at 8% 10%,rgba(32,217,255,.08),transparent 65%),
    linear-gradient(180deg,#f0f2f8 0%,#f7f8fc 100%);
}
.section__header{max-width:780px;margin-bottom:34px}
.section__header h1,.section__header h2{
  position:relative;
  display:inline-block;
  color:var(--color-text);
  font-size:clamp(27px,3vw,42px);
  line-height:1.35;
  letter-spacing:-1px;
}
.section__header h1::after,.section__header h2::after{
  content:"";
  display:block;
  width:54px;
  height:5px;
  margin-top:12px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--color-primary),var(--color-accent));
}
.section__header p{font-size:16px;line-height:1.9;color:var(--color-muted)}

/* Buttons */
.btn{
  min-height:48px;
  padding:11px 19px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:-.15px;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}
.btn:hover{opacity:1;transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--color-primary-strong),var(--color-primary) 55%,#8d72ff);
  box-shadow:var(--shadow-primary);
}
.btn-primary:hover{box-shadow:0 22px 55px rgba(113,87,255,.36)}
.btn-outline,
.btn-outline-head{
  color:var(--color-text);
  background:rgba(255,255,255,.88);
  border:1px solid rgba(21,24,42,.12);
  box-shadow:0 8px 24px rgba(23,27,54,.06);
}
.btn-outline:hover,.btn-outline-head:hover{
  color:var(--color-primary-strong);
  background:#fff;
  border-color:rgba(113,87,255,.3);
  box-shadow:0 14px 36px rgba(113,87,255,.12);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--header-height);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(21,24,42,.07);
  box-shadow:0 8px 30px rgba(18,22,48,.04);
  backdrop-filter:saturate(150%) blur(18px);
  -webkit-backdrop-filter:saturate(150%) blur(18px);
}
.header-inner{min-height:var(--header-height);height:var(--header-height);gap:22px}
.site-logo{flex:0 0 auto;position:relative;z-index:2}
.site-logo img,.site-logo .custom-logo{width:auto;max-width:132px;max-height:44px;object-fit:contain}
.site-logo .custom-logo-link{display:flex}
.main-nav{margin:0;flex:1;display:flex;justify-content:center;min-width:0}
.main-nav__top,.main-nav__mobile-actions{display:none}
.menu{gap:4px;justify-content:center}
.menu > li{position:relative;display:flex;align-items:center}
.menu > li > a{
  position:relative;
  padding:10px 12px;
  border-radius:12px;
  color:#282b3d;
  font-size:14px;
  font-weight:850;
}
.menu > li > a::after{display:none}
.menu > li > a:hover,
.menu > li.current-menu-item > a,
.menu > li.current-menu-ancestor > a{
  color:var(--color-primary-strong);
  background:rgba(113,87,255,.08);
}
.menu > li.current-menu-item > a::before,
.menu > li.current-menu-ancestor > a::before{
  content:"";
  position:absolute;
  right:12px;
  left:12px;
  bottom:4px;
  height:2px;
  border-radius:9px;
  background:linear-gradient(90deg,var(--color-primary),var(--color-accent));
}
.submenu-toggle{
  width:24px;
  height:24px;
  margin-right:-8px;
  border:0;
  border-radius:8px;
  background:transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.submenu-toggle span{
  width:7px;height:7px;
  border-left:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(-45deg) translateY(-1px);
  transition:transform .2s ease;
}
.menu > li > ul,
.menu > li.has-mega > ul,
.menu > li.menu-item-has-children > ul{
  position:absolute;
  position:fixed;
  top:calc(var(--header-height) + 10px);
  left:50%;
  right:auto;
  width:min(980px,calc(100vw - 40px));
  max-height:calc(100vh - var(--header-height) - 30px);
  overflow:auto;
  padding:20px;
  margin:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  list-style:none;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,10px);
  border:1px solid rgba(21,24,42,.09);
  border-radius:22px;
  background:rgba(255,255,255,.97);
  box-shadow:0 30px 90px rgba(15,19,44,.18);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:opacity .18s ease,visibility .18s ease,transform .18s ease;
  z-index:1005;
}
.menu > li:hover > ul,
.menu > li:focus-within > ul,
.menu > li.is-submenu-open > ul{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}
.menu > li > ul > li{
  list-style:none;
  min-width:0;
  padding:8px;
  border:1px solid rgba(113,87,255,.09);
  border-radius:15px;
  background:linear-gradient(145deg,rgba(113,87,255,.055),rgba(32,217,255,.025));
}
.menu > li > ul > li > a{
  display:block;
  padding:7px 8px 9px;
  color:var(--color-primary-strong);
  font-weight:900;
  line-height:1.65;
}
.menu > li > ul ul{position:static;display:block;list-style:none;margin:0;padding:4px 3px 0}
.menu > li > ul ul li{list-style:none}
.menu > li > ul ul a{
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding:8px;
  border-radius:10px;
  color:#44485c;
  font-size:13.5px;
  font-weight:750;
  line-height:1.6;
}
.menu > li > ul ul a::before{
  content:"";
  flex:0 0 6px;
  width:6px;height:6px;
  margin-top:8px;
  border-radius:50%;
  background:var(--color-accent);
  box-shadow:0 0 0 4px rgba(32,217,255,.12);
}
.menu > li > ul ul a:hover{background:#fff;color:var(--color-primary-strong)}
.header-actions{margin:0;display:flex;align-items:center;gap:9px;flex:0 0 auto}
.header-call{
  gap:7px;
  padding:9px 11px;
  border:0;
  border-radius:12px;
  color:#3c4053;
  background:transparent;
  font-size:13px;
}
.header-call svg{width:18px;height:18px;fill:var(--color-primary)}
.header-call:hover{color:var(--color-primary-strong);background:rgba(113,87,255,.07)}
.header-cta{margin:0;min-height:42px;padding:8px 13px;font-size:13px}
.nav-toggle{display:none}
.nav-backdrop{display:none}

/* Hero */
.hero.section{
  position:relative;
  isolation:isolate;
  min-height:620px;
  padding:clamp(72px,8vw,108px) 0;
  overflow:hidden;
  background:
    radial-gradient(900px 540px at 83% 12%,rgba(113,87,255,.3),transparent 62%),
    radial-gradient(620px 420px at 12% 85%,rgba(32,217,255,.13),transparent 60%),
    linear-gradient(130deg,#0b0e1a 0%,#11162a 52%,#151331 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:44px 44px;
  filter:none;
  transform:none;
  opacity:.8;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -10% -260px;
  height:420px;
  z-index:-1;
  background:var(--color-bg);
  border-radius:50% 50% 0 0/24% 24% 0 0;
  opacity:1;
}
.hero__ambient{position:absolute;z-index:-1;border-radius:50%;filter:blur(4px);pointer-events:none}
.hero__ambient--one{width:340px;height:340px;right:-120px;top:120px;background:rgba(113,87,255,.17)}
.hero__ambient--two{width:260px;height:260px;left:4%;bottom:70px;background:rgba(32,217,255,.08)}
.hero__inner{position:relative;z-index:2;grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);gap:clamp(38px,6vw,82px);align-items:center}
.hero__content{
  max-width:650px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:17px;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.055);
  font-size:13px;
  font-weight:800;
}
.hero__eyebrow span{color:var(--color-accent-warm)}
.hero__content h1{
  max-width:12ch;
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(42px,5.2vw,72px);
  line-height:1.18;
  letter-spacing:-2.4px;
  text-shadow:none;
}
.hero__content h1::after{
  content:"";
  display:inline-block;
  width:.18em;height:.18em;
  margin-right:.1em;
  border-radius:50%;
  background:var(--color-accent-warm);
  box-shadow:0 0 22px rgba(255,207,90,.5);
}
.hero__content p{max-width:56ch;margin:0 0 26px;color:rgba(236,239,255,.76);font-size:17px;line-height:2}
.hero__actions{gap:11px}
.hero .btn-outline{color:#fff;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.17);box-shadow:none}
.hero .btn-outline:hover{background:rgba(255,255,255,.13);color:#fff;border-color:rgba(255,255,255,.28)}
.hero__proof{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.hero__proof span{display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,.66);font-size:12.5px;font-weight:700}
.hero__proof span+span::before{content:"";width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,.3);margin-left:4px}
.hero__proof b{color:#fff;font-size:14px}
.hero__media{
  position:relative;
  min-height:450px;
  padding:0;
  border:0;
  border-radius:0;
  color:inherit;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
.hero-dashboard{
  position:absolute;
  inset:28px 0 30px 12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  background:linear-gradient(160deg,rgba(255,255,255,.14),rgba(255,255,255,.065));
  box-shadow:0 40px 100px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transform:perspective(1100px) rotateY(-5deg) rotateX(2deg);
}
.hero-dashboard__bar{height:54px;padding:0 16px;display:flex;align-items:center;gap:12px;border-bottom:1px solid rgba(255,255,255,.09);color:rgba(255,255,255,.52);font-size:11px;direction:ltr}
.hero-dashboard__dots{display:flex;gap:5px;margin-right:auto}
.hero-dashboard__dots i{width:7px;height:7px;border-radius:50%;background:#ff6a78}
.hero-dashboard__dots i:nth-child(2){background:#ffc85a}.hero-dashboard__dots i:nth-child(3){background:#4fdc9b}
.hero-dashboard__live{margin-left:auto;padding:4px 7px;border-radius:999px;color:#63efb1;background:rgba(69,228,157,.1);font-size:9px;font-weight:900}
.hero-dashboard__body{padding:24px}
.hero-score{display:flex;align-items:center;gap:20px}
.hero-score__ring{
  --score:96%;
  width:112px;height:112px;flex:0 0 112px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  border-radius:50%;
  background:radial-gradient(circle at center,#15182a 57%,transparent 59%),conic-gradient(var(--color-accent) var(--score),rgba(255,255,255,.1) 0);
  box-shadow:0 0 45px rgba(32,217,255,.14);
}
.hero-score__ring b{color:#fff;font-size:28px;line-height:1}.hero-score__ring small{margin-top:6px;color:rgba(255,255,255,.52);font-size:8px}
.hero-score__copy strong{display:block;color:#fff;font-size:17px;line-height:1.65}.hero-score__copy span{display:block;margin-top:5px;color:rgba(255,255,255,.56);font-size:12px}
.hero-chart{height:115px;margin:26px 0 20px;padding:0 5px;display:flex;align-items:flex-end;gap:10px;border-bottom:1px solid rgba(255,255,255,.08)}
.hero-chart span{flex:1;height:var(--h);min-width:10px;border-radius:6px 6px 2px 2px;background:linear-gradient(180deg,var(--color-accent),rgba(113,87,255,.38));box-shadow:0 0 20px rgba(32,217,255,.08)}
.hero-dashboard__metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.hero-dashboard__metrics div{padding:10px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:rgba(0,0,0,.12)}
.hero-dashboard__metrics span,.hero-dashboard__metrics b{display:block}.hero-dashboard__metrics span{color:rgba(255,255,255,.48);font-size:9px}.hero-dashboard__metrics b{margin-top:5px;color:#fff;font-size:11px}
.hero-float{position:absolute;display:grid;grid-template-columns:34px auto;grid-template-rows:auto auto;column-gap:9px;min-width:132px;padding:10px 12px;border:1px solid rgba(255,255,255,.15);border-radius:16px;background:rgba(20,24,43,.86);box-shadow:0 20px 55px rgba(0,0,0,.3);backdrop-filter:blur(14px);animation:vaxi-float 4.6s ease-in-out infinite}
.hero-float>span{grid-row:1/3;width:34px;height:34px;display:grid;place-items:center;border-radius:10px;color:#111528;background:linear-gradient(135deg,var(--color-accent),#8cecff);font-weight:900}.hero-float b{color:#fff;font-size:13px;line-height:1.3}.hero-float small{color:rgba(255,255,255,.48);font-size:9px}
.hero-float--seo{top:5px;right:-22px}.hero-float--speed{left:-12px;bottom:5px;animation-delay:-2.1s}.hero-float--speed>span{background:linear-gradient(135deg,var(--color-accent-warm),#ff9e5c)}
@keyframes vaxi-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* Trust strip */
.vaxi-trust{position:relative;z-index:3;margin-top:-34px;padding:0 0 30px;background:transparent}
.vaxi-trust .container{padding:22px 24px;border:1px solid rgba(21,24,42,.07);border-radius:24px;background:rgba(255,255,255,.92);box-shadow:var(--shadow);backdrop-filter:blur(12px)}
.vaxi-trust__head{text-align:center;margin-bottom:14px}.vaxi-trust__title{font-size:14px;color:#4d5268;font-weight:850}
.vaxi-trust__manual{gap:12px;padding:4px 2px 10px;mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.vaxi-trust__item{height:72px;min-width:135px;border:1px solid rgba(21,24,42,.06);border-radius:14px;background:#f9fafc;box-shadow:none}
.vaxi-trust__item img{max-height:38px;filter:grayscale(1);opacity:.6}.vaxi-trust__item:hover img{filter:none;opacity:1}

/* Cards and grids */
.problem__grid{gap:18px}
.problem__item,
.service,
.case,
.post-card--vaxi,
.card,
.content--page{
  border:1px solid rgba(21,24,42,.07);
  background:rgba(255,255,255,.95);
  box-shadow:var(--shadow-soft);
}
.problem__item{padding:25px;border-radius:22px;background:linear-gradient(145deg,#fff,#fbfbfe)}
.problem__item::before{opacity:.24}.problem__item::after{opacity:.35}
.problem__item:hover,.service:hover,.case:hover,.post-card--vaxi:hover{transform:translateY(-6px);border-color:rgba(113,87,255,.22);box-shadow:0 24px 65px rgba(35,40,77,.13)}
.problem__icon{width:60px;height:60px;border-radius:18px;background:linear-gradient(145deg,#fff,#f0edff)}
.problem__icon img{width:34px;height:34px;object-fit:contain}
.problem__item h3{font-size:19px;color:var(--color-text)}.problem__item p{color:var(--color-muted);line-height:1.9}
.services__grid--masonry{gap:16px}
.services__grid--masonry .service{border-radius:22px;overflow:hidden;isolation:isolate}
.services__grid--masonry .service::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(360px 180px at 100% 0,rgba(113,87,255,.11),transparent 65%)}
.services__grid--masonry .service__icon{width:50px;height:50px;border-radius:15px;border:1px solid rgba(113,87,255,.12);background:rgba(113,87,255,.07);font-size:22px;box-shadow:none}
.services__grid--masonry .service h3{color:var(--color-text);line-height:1.65}.services__grid--masonry .service p{color:var(--color-muted);line-height:1.9}
.cases-block{padding:24px;border:1px solid rgba(21,24,42,.07);border-radius:26px;background:rgba(255,255,255,.66);box-shadow:0 18px 50px rgba(33,38,74,.06)}
.cases-block+.cases-block{margin-top:24px}.cases-block__head h3{font-size:20px;color:var(--color-text)}.cases-block__head p{color:var(--color-muted)}
.cases-grid .case{overflow:hidden;border-radius:19px;background:#fff}.cases-grid .case__media{border-radius:14px;overflow:hidden}.cases-grid .case h4{padding-inline:4px}.cases-grid .case__metrics{padding-inline:4px 4px}
.post-card--vaxi{border-radius:20px}.post-card--vaxi .post-card__thumb{height:205px}.post-card--vaxi .post-card__body{padding:18px}.post-card__title a{color:var(--color-text)}.post-card__meta{color:var(--color-muted)}

/* Dark CTA */
.cta-dark{
  padding:60px 0;
  background:
    radial-gradient(700px 330px at 90% 0,rgba(113,87,255,.28),transparent 62%),
    radial-gradient(520px 260px at 5% 100%,rgba(32,217,255,.12),transparent 60%),
    #0d1120;
}
.cta-dark__inner{padding:28px 32px;border:1px solid rgba(255,255,255,.1);border-radius:25px;background:rgba(255,255,255,.035)}
.cta-dark__title{font-size:clamp(24px,3vw,38px)}.cta-dark__desc{color:rgba(255,255,255,.68)}
.cta-dark .btn-outline,.cta-dark__btn--ghost{color:#fff;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16)}

/* Forms */
.form.form--contact{gap:14px}
.form.form--contact input,.form.form--contact textarea,.form.form--contact select{
  min-height:52px;
  padding:13px 15px;
  border:1px solid var(--color-border);
  border-radius:14px;
  color:var(--color-text);
  background:#f9fafc;
  box-shadow:none;
}
.form.form--contact textarea{min-height:125px}
.form.form--contact input:focus,.form.form--contact textarea:focus,.form.form--contact select:focus{background:#fff;border-color:rgba(113,87,255,.55);box-shadow:0 0 0 4px rgba(113,87,255,.11)}
.form.form--contact button[type=submit]{grid-column:1/-1}
.form.form--contact.is-loading{opacity:.78;pointer-events:none}

/* Footer */
.site-footer{
  position:relative;
  margin-top:0;
  color:rgba(255,255,255,.76);
  background:
    radial-gradient(650px 360px at 90% 0,rgba(113,87,255,.2),transparent 65%),
    #090c16;
  border-top:0;
}
.footer-top{padding:66px 0 38px}.footer-logo{color:#fff;font-size:25px}.footer-logo span{color:var(--color-accent)}.footer-tagline,.footer-title{color:#fff}.footer-desc{opacity:.68}
.site-footer .badge{color:#d9d3ff;background:rgba(113,87,255,.12);border-color:rgba(149,129,255,.2)}
.footer-links a,.footer-contact a,.footer-social a,.footer-mini-links a{color:rgba(255,255,255,.72)}
.footer-links a:hover,.footer-contact a:hover,.footer-mini-links a:hover{color:#fff}.footer-social a{background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.08)}.footer-social a:hover{color:var(--color-accent);background:rgba(32,217,255,.08);border-color:rgba(32,217,255,.18)}
.footer-cta{color:#fff;background:linear-gradient(135deg,var(--color-primary-strong),var(--color-primary));box-shadow:var(--shadow-primary)}
.footer-bottom{border-color:rgba(255,255,255,.08)}

/* Inner pages / common WordPress content */
.site-main:not(:has(.hero)){min-height:60vh}
.entry-content,.post__content,.content{color:#33374a}
.entry-content a,.post__content a{color:var(--color-primary-strong);text-decoration-thickness:1px;text-underline-offset:3px}
.entry-content h2,.entry-content h3,.post__content h2,.post__content h3{color:var(--color-text);scroll-margin-top:100px}
.breadcrumbs{color:var(--color-muted)}.breadcrumbs a{color:var(--color-primary-strong)}
input,textarea,select,button{font-family:inherit}

/* Mobile */
@media (max-width:1080px){
  .header-call span{display:none}.header-call{width:42px;height:42px;padding:0}.menu > li > a{padding-inline:9px;font-size:13px}.header-inner{gap:12px}
  .hero__inner{grid-template-columns:minmax(0,1fr) minmax(370px,.85fr);gap:34px}
}

@media (max-width:960px){
  :root{--header-height:68px}
  .site-header{height:var(--header-height)}.header-inner{height:var(--header-height);min-height:var(--header-height);display:grid;grid-template-columns:auto 1fr auto;gap:12px}
  .site-logo{grid-column:1;grid-row:1}.site-logo img,.site-logo .custom-logo{max-width:108px;max-height:38px}
  .header-actions{grid-column:2;grid-row:1;justify-self:end;margin-right:auto}.header-call{display:none}.header-cta{font-size:12px;min-height:40px;padding:7px 11px;white-space:nowrap}
  .nav-toggle{
    grid-column:3;grid-row:1;
    display:flex!important;
    width:44px;height:44px;padding:0;
    flex-direction:column;align-items:center;justify-content:center;gap:5px;
    border:1px solid rgba(21,24,42,.09);
    border-radius:13px;
    color:var(--color-text);
    background:#fff;
    box-shadow:0 8px 24px rgba(25,29,59,.07);
    z-index:1010;
  }
  .nav-toggle__line{display:block;width:19px;height:2px;border-radius:5px;background:currentColor;transition:transform .22s ease,opacity .18s ease,width .18s ease}
  .nav-toggle.is-active .nav-toggle__line:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.is-active .nav-toggle__line:nth-child(2){opacity:0;width:0}
  .nav-toggle.is-active .nav-toggle__line:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .main-nav{
    position:fixed!important;
    top:0!important;
    right:auto!important;
    left:0!important;
    bottom:0;
    width:min(88vw,390px)!important;
    height:100dvh;
    display:flex!important;
    flex-direction:column;
    justify-content:flex-start;
    padding:18px 16px 20px;
    overflow-y:auto;
    background:#fff!important;
    border:0!important;
    border-radius:0 22px 22px 0!important;
    box-shadow:22px 0 80px rgba(9,13,32,.25)!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
    opacity:0;
    visibility:hidden;
    transform:translateX(-105%);
    transition:transform .28s cubic-bezier(.2,.8,.2,1),opacity .2s ease,visibility .2s ease;
    z-index:1008!important;
  }
  .main-nav.is-open{opacity:1;visibility:visible;transform:translateX(0)}
  .main-nav__top{display:flex;align-items:center;justify-content:space-between;min-height:48px;margin:0 0 12px;padding:0 4px 12px;border-bottom:1px solid var(--color-border);color:var(--color-text);font-size:15px;font-weight:900}
  .main-nav__spark{width:32px;height:32px;display:grid;place-items:center;border-radius:10px;color:var(--color-primary);background:rgba(113,87,255,.09)}
  .main-nav .menu{display:flex!important;flex-direction:column;align-items:stretch;gap:5px;width:100%;padding:0;margin:0}
  .main-nav .menu>li{display:grid;grid-template-columns:1fr auto;width:100%;align-items:center;border:1px solid transparent;border-radius:14px}
  .main-nav .menu>li>a{grid-column:1;width:100%;padding:12px 13px!important;color:var(--color-text);font-size:14px;justify-content:flex-start;background:transparent}
  .main-nav .menu>li.current-menu-item,.main-nav .menu>li.current-menu-ancestor{background:rgba(113,87,255,.06);border-color:rgba(113,87,255,.08)}
  .main-nav .menu>li.current-menu-item>a::before,.main-nav .menu>li.current-menu-ancestor>a::before{display:none}
  .main-nav .submenu-toggle{grid-column:2;width:38px;height:38px;margin:0 0 0 5px;color:#595e72;background:#f4f5f9}
  .main-nav .is-submenu-open>.submenu-toggle span{transform:rotate(135deg) translate(-1px,-1px)}
  .main-nav .menu>li>ul,
  .main-nav .menu>li.has-mega>ul,
  .main-nav .menu>li.menu-item-has-children>ul{
    grid-column:1/-1;
    position:static!important;
    width:100%!important;
    max-height:0;
    overflow:hidden;
    display:block!important;
    padding:0 8px!important;
    margin:0!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:none!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    transition:max-height .28s ease,opacity .2s ease,padding .2s ease!important;
  }
  .main-nav .menu>li.is-submenu-open>ul{max-height:1400px;padding:3px 8px 10px!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important}
  .main-nav .menu>li>ul>li{margin-top:5px;padding:5px;border-radius:12px;background:#f8f8fb;border-color:#eceef4}
  .main-nav .menu>li>ul>li>a{padding:8px;color:var(--color-primary-strong);font-size:13px}
  .main-nav .menu>li>ul ul a{font-size:12.5px;padding:7px}
  .main-nav__mobile-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:auto;padding-top:18px;border-top:1px solid var(--color-border)}
  .main-nav__mobile-actions .btn{min-height:44px;padding:8px 10px;font-size:12px}
  .nav-backdrop{position:fixed;display:block;inset:0;z-index:999;border:0;background:rgba(7,10,24,.52);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .22s ease,visibility .22s ease;backdrop-filter:blur(3px)}
  .nav-backdrop.is-active{opacity:1;visibility:visible;pointer-events:auto}
  .hero.section{min-height:auto;padding:70px 0 120px}.hero__inner{grid-template-columns:1fr;gap:45px}.hero__content{max-width:720px}.hero__content h1{max-width:13ch;font-size:clamp(40px,8vw,64px)}.hero__media{width:min(100%,620px);min-height:420px;margin-inline:auto}.hero-dashboard{inset:18px 12px 28px}.hero-float--seo{right:0}.hero-float--speed{left:0}
  .vaxi-trust{margin-top:-42px}
  .problem__grid{grid-template-columns:1fr 1fr}.blog__grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}.blog__grid--3 article:last-child{grid-column:1/-1;max-width:calc(50% - 9px)}
  .footer-top{grid-template-columns:1fr 1fr}
}

@media (max-width:640px){
  .container{width:min(100% - 26px,var(--container))}.section{padding:58px 0}.section__header{margin-bottom:24px}.section__header h1,.section__header h2{font-size:27px}.section__header p{font-size:14px}
  .header-actions{display:none}.header-inner{grid-template-columns:1fr auto}.site-logo{grid-column:1}.nav-toggle{grid-column:2}.main-nav{width:min(91vw,370px)!important}
  .hero.section{padding:58px 0 106px}.hero__content h1{font-size:clamp(36px,11.5vw,50px);letter-spacing:-1.5px}.hero__content p{font-size:15px}.hero__actions{display:grid;grid-template-columns:1fr 1fr}.hero__actions .btn{width:100%;padding-inline:10px;font-size:13px}.hero__proof{gap:8px}.hero__proof span{font-size:10.5px}.hero__proof span+span::before{display:none}
  .hero__media{min-height:375px}.hero-dashboard{inset:12px 0 38px;transform:none;border-radius:20px}.hero-dashboard__body{padding:17px}.hero-score{gap:13px}.hero-score__ring{width:86px;height:86px;flex-basis:86px}.hero-score__ring b{font-size:23px}.hero-score__copy strong{font-size:14px}.hero-chart{height:90px;margin:20px 0 16px;gap:7px}.hero-dashboard__metrics{gap:5px}.hero-dashboard__metrics div{padding:8px 6px}.hero-dashboard__metrics span{font-size:7px}.hero-dashboard__metrics b{font-size:9px}.hero-float{min-width:112px;padding:8px 9px;grid-template-columns:29px auto}.hero-float>span{width:29px;height:29px}.hero-float--seo{top:-6px;right:-5px}.hero-float--speed{left:-4px;bottom:5px}
  .vaxi-trust .container{padding:18px 14px}.vaxi-trust__item{min-width:115px;height:62px}.vaxi-trust__item img{max-height:32px}
  .problem__grid,.blog__grid--3{grid-template-columns:1fr}.blog__grid--3 article:last-child{grid-column:auto;max-width:none}.problem__item{padding:20px}
  .cases-block{padding:15px;border-radius:20px}.cases-grid{grid-template-columns:1fr}.cases-grid .case__media{height:190px}
  .cta-dark{padding:44px 0}.cta-dark__inner{padding:22px 18px}.cta-dark__actions{width:100%}.cta-dark__actions .btn{width:100%}
  .form.form--contact{grid-template-columns:1fr}.form.form--contact input,.form.form--contact textarea,.form.form--contact button{grid-column:1}
  .footer-top{grid-template-columns:1fr;padding:48px 0 26px}.footer-bottom{align-items:center;text-align:center}
}

@media (prefers-reduced-motion:reduce){
  .hero-float{animation:none}
}

/* Legacy conflict guards */
.menu > li.has-mega::before{display:none!important}
@media (max-width:960px){
  .header-cta{position:static!important;top:auto!important;left:auto!important;right:auto!important;transform:none!important;margin:0!important}
  .main-nav{right:0!important;left:auto!important;border-radius:22px 0 0 22px!important;transform:translateX(105%)}
  .main-nav.is-open{transform:translateX(0)}
}

/* Final layout refinements */
.menu > li > ul,
.menu > li.has-mega > ul,
.menu > li.menu-item-has-children > ul{top:calc(var(--header-height) - 1px)}
.form.form--contact > textarea{grid-column:1/-1}
@media (max-width:960px){
  .main-nav{top:0!important;box-shadow:-22px 0 80px rgba(9,13,32,.25)!important}
}

/* =========================================================
   VAXI 1.3 — Header, landing and Customizer refinements
========================================================= */

body,button,input,textarea,select{font-family:var(--font-primary,'AzarMehr','VazirFD','Vazirmatn',Tahoma,sans-serif)}

/* Precisely centered desktop header */
@media (min-width:961px){
  .header-inner{
    display:grid!important;
    grid-template-columns:minmax(220px,1fr) minmax(420px,auto) minmax(220px,1fr);
    grid-template-areas:"actions nav logo";
    align-items:center;
    gap:18px;
  }
  .site-logo{grid-area:logo;justify-self:end}
  .main-nav{grid-area:nav;justify-self:center;display:flex;width:max-content;max-width:min(620px,52vw)}
  .header-actions{grid-area:actions;justify-self:start}
  .main-nav>.menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
    padding:5px;
    border:1px solid rgba(21,24,42,.065);
    border-radius:17px;
    background:rgba(248,249,253,.78);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 8px 24px rgba(25,30,58,.035);
  }
  .main-nav>.menu>li>a{padding:9px 11px;border-radius:11px;font-size:13.5px;white-space:nowrap}
  .main-nav>.menu>li>.submenu-toggle{margin-right:-6px;margin-left:2px;color:#6b7084}
  .main-nav>.menu>li>.submenu-toggle:hover{color:var(--color-primary);background:rgba(113,87,255,.08)}

  /* Eliminate the hover gap and keep the mega panel stable. */
  .main-nav .menu>li>ul,
  .main-nav .menu>li.has-mega>ul,
  .main-nav .menu>li.menu-item-has-children>ul{
    top:calc(var(--header-height) - 3px)!important;
    width:min(1040px,calc(100vw - 44px));
    transform:translate(-50%,8px);
    transition:opacity .2s ease,visibility .2s ease,transform .2s ease;
  }
  .main-nav .menu>li>ul::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:-18px;
    height:18px;
    background:transparent;
  }
  .main-nav .menu>li:hover>ul,
  .main-nav .menu>li:focus-within>ul,
  .main-nav .menu>li.is-hover-open>ul,
  .main-nav .menu>li.is-submenu-open>ul{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
  }
}

@media (min-width:961px) and (max-width:1180px){
  .header-inner{grid-template-columns:minmax(155px,1fr) minmax(390px,auto) minmax(155px,1fr);gap:10px}
  .header-call span{display:none}
  .header-call{width:42px;height:42px;padding:0}
  .header-cta{padding-inline:11px;font-size:12px}
  .main-nav>.menu>li>a{padding-inline:9px;font-size:13px}
}

/* Mobile menu remains clean after desktop centering overrides. */
@media (max-width:960px){
  .header-inner{display:grid!important;grid-template-columns:auto 1fr!important;grid-template-areas:"toggle logo"!important;direction:ltr}
  .site-logo{grid-area:logo;justify-self:end;direction:rtl}
  .nav-toggle{grid-area:toggle;justify-self:start;direction:rtl}
  .main-nav{grid-area:auto;width:min(91vw,390px)!important}
  .main-nav>.menu{border:0;border-radius:0;background:transparent;box-shadow:none;padding:0}
  .main-nav .menu>li>ul::before{display:none}
}

/* Better typography for the configurable proof row. */
.hero__proof span{font-size:12.5px;color:rgba(255,255,255,.72)}

/* =========================================================
   Service-page Hero / landing headers
========================================================= */
.hero.hero--service{
  min-height:650px;
  padding:clamp(72px,8vw,112px) 0 118px;
  background-color:#0c1020;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero.hero--service::before,
.hero.hero--service.hero--hasbg::before,
.hero.hero--service.hero--express::before{
  inset:0;
  z-index:-1;
  opacity:1;
  filter:none;
  transform:none;
  background:
    linear-gradient(105deg,rgba(8,11,25,.96) 5%,rgba(12,16,37,.9) 45%,rgba(21,19,55,.72) 100%),
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:auto,46px 46px,46px 46px;
}
.hero.hero--service::after{
  inset:auto -8% -285px;
  height:420px;
  z-index:0;
  background:var(--color-bg);
  border-radius:50% 50% 0 0/22% 22% 0 0;
}
.hero--service .hero__inner{
  z-index:2;
  grid-template-columns:minmax(0,1fr) minmax(380px,440px);
  gap:clamp(34px,6vw,82px);
}
.hero--service .hero__content{
  max-width:680px;
  padding:30px 32px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 34px 90px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter:blur(13px);
  -webkit-backdrop-filter:blur(13px);
}
.hero--service .hero__content::before{
  content:"خدمات تخصصی واکسی";
  display:inline-flex;
  align-items:center;
  margin-bottom:16px;
  padding:7px 12px;
  border:1px solid rgba(32,217,255,.2);
  border-radius:999px;
  color:#b9f5ff;
  background:rgba(32,217,255,.075);
  font-size:12px;
  font-weight:800;
}
.hero--service .hero__content h1{
  max-width:15ch;
  margin-bottom:17px;
  color:#fff!important;
  font-size:clamp(38px,4.7vw,64px);
  line-height:1.2;
  letter-spacing:-1.8px;
  text-shadow:none;
}
.hero--service .hero__content h1::after{background:var(--color-accent);box-shadow:0 0 22px rgba(32,217,255,.48)}
.hero--service .hero__content p{max-width:58ch;margin-bottom:24px;color:rgba(241,244,255,.78)!important;font-size:16px;line-height:2}
.hero--service .hero__actions{display:flex;gap:10px}
.hero--service .hero__media--service{
  min-height:auto;
  display:block;
  padding:8px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:rgba(255,255,255,.07);
  box-shadow:0 40px 110px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.11);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  overflow:visible;
}
.hero--service .hero__quickform{
  position:relative;
  width:100%;
  padding:25px;
  border:0;
  border-radius:23px;
  background:rgba(255,255,255,.98);
  box-shadow:none;
}
.hero--service .hero__form-head{margin-bottom:18px}
.hero--service .hero__form-head>span{
  display:inline-flex;
  margin-bottom:7px;
  color:var(--color-primary);
  font-size:11.5px;
  font-weight:900;
}
.hero--service .hero__form-head h2{margin:0 0 7px;color:#171a2c;font-size:22px;line-height:1.45}
.hero--service .hero__form-head p{margin:0;color:#707589;font-size:12.5px;line-height:1.8}
.hero--service .hero__quickgrid{gap:11px}
.hero--service .hero__quickform input,
.hero--service .hero__quickform textarea{
  min-height:50px;
  padding:12px 13px;
  border:1px solid #e4e6ef;
  border-radius:13px;
  color:#262a3e;
  background:#f8f9fc;
  font-weight:500;
}
.hero--service .hero__quickform textarea{min-height:94px}
.hero--service .hero__quickform input:focus,
.hero--service .hero__quickform textarea:focus{border-color:rgba(113,87,255,.55);background:#fff;box-shadow:0 0 0 4px rgba(113,87,255,.1)}
.hero--service .hero__quickform .btn{min-height:50px;border-radius:13px}
.hero--service .hero__note{
  margin-top:11px;
  padding:10px 12px;
  border:1px dashed rgba(113,87,255,.19);
  border-radius:12px;
  color:#656a80;
  background:rgba(113,87,255,.045);
  font-size:11.5px;
  font-weight:700;
  line-height:1.8;
}

@media (max-width:960px){
  .hero.hero--service{min-height:auto;padding:64px 0 108px}
  .hero--service .hero__inner{grid-template-columns:1fr;gap:28px}
  .hero--service .hero__content{max-width:none;padding:24px}
  .hero--service .hero__content h1{max-width:18ch;font-size:clamp(36px,8vw,54px)}
  .hero--service .hero__media--service{width:min(100%,620px);margin-inline:auto}
}
@media (max-width:560px){
  .hero.hero--service{padding-top:46px}
  .hero--service .hero__content{padding:20px;border-radius:22px}
  .hero--service .hero__content::before{font-size:10.5px}
  .hero--service .hero__actions{display:grid;grid-template-columns:1fr}
  .hero--service .hero__quickform{padding:19px 16px}
  .hero--service .hero__quickgrid{grid-template-columns:1fr}
  .hero--service .hero__quickgrid>*{grid-column:1!important}
}

/* =========================================================
   Dedicated Landing Page
========================================================= */
.landing-page{overflow:hidden;background:#fff}
.landing-hero{
  position:relative;
  isolation:isolate;
  min-height:690px;
  padding:clamp(78px,8vw,122px) 0 118px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(900px 560px at 86% 8%,rgba(113,87,255,.31),transparent 62%),
    radial-gradient(680px 460px at 8% 88%,rgba(32,217,255,.12),transparent 62%),
    linear-gradient(125deg,#090d1a,#10162b 54%,#18143a);
}
.landing-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:46px 46px;
}
.landing-hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  right:-8%;
  left:-8%;
  bottom:-285px;
  height:420px;
  border-radius:50% 50% 0 0/22% 22% 0 0;
  background:#fff;
}
.landing-hero__orb{position:absolute;z-index:-1;border-radius:50%;filter:blur(5px);pointer-events:none}
.landing-hero__orb--one{width:330px;height:330px;right:-150px;top:90px;background:rgba(113,87,255,.2)}
.landing-hero__orb--two{width:240px;height:240px;left:4%;bottom:110px;background:rgba(32,217,255,.09)}
.landing-hero__inner{display:grid;grid-template-columns:minmax(0,1fr) minmax(390px,.88fr);align-items:center;gap:clamp(42px,7vw,90px)}
.landing-hero__content{max-width:690px}
.landing-hero__eyebrow{display:inline-flex;align-items:center;gap:8px;margin-bottom:18px;padding:7px 12px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:rgba(255,255,255,.8);background:rgba(255,255,255,.055);font-size:12.5px;font-weight:800}
.landing-hero__eyebrow i{font-style:normal;color:var(--color-accent-warm)}
.landing-hero h1{max-width:14ch;margin:0 0 20px;color:#fff;font-size:clamp(42px,5.4vw,72px);line-height:1.17;letter-spacing:-2.2px}
.landing-hero__content>p{max-width:58ch;margin:0 0 27px;color:rgba(240,243,255,.76);font-size:17px;line-height:2}
.landing-hero__actions{display:flex;flex-wrap:wrap;gap:11px}
.landing-hero .btn-outline{color:#fff;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16);box-shadow:none}
.landing-hero .btn-outline:hover{color:#fff;background:rgba(255,255,255,.13)}
.landing-hero__features{display:flex;flex-wrap:wrap;gap:10px 18px;margin:27px 0 0;padding:0;list-style:none}
.landing-hero__features li{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.7);font-size:12px;font-weight:700}
.landing-hero__features li span{width:20px;height:20px;display:grid;place-items:center;border-radius:50%;color:#69efbd;background:rgba(70,224,157,.1);font-size:10px}
.landing-hero__visual{position:relative;min-height:450px}
.landing-visual__glow{position:absolute;inset:12% 8%;border-radius:50%;background:rgba(113,87,255,.23);filter:blur(55px)}
.landing-visual__window{position:absolute;inset:28px 0 30px 12px;overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:27px;background:linear-gradient(155deg,rgba(255,255,255,.14),rgba(255,255,255,.06));box-shadow:0 42px 110px rgba(0,0,0,.4);backdrop-filter:blur(18px);transform:perspective(1100px) rotateY(-5deg) rotateX(2deg)}
.landing-visual__bar{height:52px;display:flex;align-items:center;gap:6px;padding:0 16px;border-bottom:1px solid rgba(255,255,255,.09);direction:ltr;color:rgba(255,255,255,.45);font-size:10px}
.landing-visual__bar i{width:7px;height:7px;border-radius:50%;background:#ff6879}.landing-visual__bar i:nth-child(2){background:#ffc85a}.landing-visual__bar i:nth-child(3){background:#4ed99a}.landing-visual__bar span{margin-left:auto}
.landing-visual__image{height:calc(100% - 52px);min-height:360px;background-position:center;background-size:cover}
.landing-visual__mockup{height:calc(100% - 52px);min-height:360px;padding:32px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(0,0,0,.07))}
.mockup-line{display:block;width:78%;height:11px;margin-bottom:12px;border-radius:99px;background:rgba(255,255,255,.11)}
.mockup-line--small{width:23%;height:8px;background:rgba(32,217,255,.35)}.mockup-line--title{width:58%;height:22px;margin-top:15px;background:rgba(255,255,255,.88)}
.mockup-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin:28px 0}.mockup-cards i{height:72px;border:1px solid rgba(255,255,255,.09);border-radius:13px;background:rgba(255,255,255,.065)}
.mockup-chart{height:105px;display:flex;align-items:flex-end;gap:10px;padding:0 8px;border-bottom:1px solid rgba(255,255,255,.08)}.mockup-chart b{flex:1;height:var(--h);border-radius:6px 6px 2px 2px;background:linear-gradient(180deg,var(--color-accent),rgba(113,87,255,.38))}
.landing-visual__badge{position:absolute;display:grid;min-width:130px;padding:11px 13px;border:1px solid rgba(255,255,255,.15);border-radius:16px;background:rgba(17,22,43,.88);box-shadow:0 20px 55px rgba(0,0,0,.28);backdrop-filter:blur(14px)}
.landing-visual__badge strong{font-size:13px}.landing-visual__badge span{margin-top:2px;color:rgba(255,255,255,.48);font-size:9.5px}.landing-visual__badge--top{top:4px;right:-24px}.landing-visual__badge--bottom{left:-10px;bottom:8px}
.landing-content{padding-top:45px}.landing-content__card{max-width:940px;margin:auto;padding:clamp(24px,4vw,48px);border:1px solid rgba(21,24,42,.07);border-radius:28px;background:#fff;box-shadow:0 24px 70px rgba(30,36,73,.08)}
.landing-contact{padding-top:45px;background:linear-gradient(180deg,#fff,#f6f7fb)}
.landing-contact__box{display:grid;grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);gap:40px;align-items:center;padding:clamp(24px,5vw,52px);border:1px solid rgba(113,87,255,.12);border-radius:30px;background:radial-gradient(550px 260px at 95% 0,rgba(113,87,255,.12),transparent 65%),#fff;box-shadow:0 28px 85px rgba(35,40,78,.1)}
.landing-contact__copy>span{color:var(--color-primary);font-size:12px;font-weight:900}.landing-contact__copy h2{margin:7px 0 12px;font-size:clamp(27px,3.5vw,42px);line-height:1.35}.landing-contact__copy p{margin:0;color:var(--color-muted);line-height:2}.landing-contact__form{padding:20px;border:1px solid rgba(21,24,42,.065);border-radius:22px;background:#fafbfe}

@media (max-width:960px){
  .landing-hero{min-height:auto;padding:66px 0 110px}
  .landing-hero__inner{grid-template-columns:1fr;gap:38px}
  .landing-hero h1{max-width:16ch}
  .landing-hero__visual{width:min(100%,620px);margin-inline:auto}
  .landing-contact__box{grid-template-columns:1fr;gap:25px}
}
@media (max-width:560px){
  .landing-hero{padding-top:50px}
  .landing-hero h1{font-size:clamp(37px,11vw,50px);letter-spacing:-1.4px}
  .landing-hero__content>p{font-size:15px}
  .landing-hero__actions{display:grid;grid-template-columns:1fr 1fr}.landing-hero__actions .btn{padding-inline:9px;font-size:12px}
  .landing-hero__features{display:grid;grid-template-columns:1fr 1fr;gap:9px}
  .landing-hero__visual{min-height:380px}.landing-visual__window{inset:15px 0 35px;transform:none}.landing-visual__image,.landing-visual__mockup{min-height:310px}.landing-visual__mockup{padding:22px}.landing-visual__badge--top{right:-4px}.landing-visual__badge--bottom{left:-2px}
  .landing-contact__box{padding:22px 17px}.landing-contact__form{padding:14px}
}

/* Footer logo */
.footer-logo--image{width:max-content;max-width:190px;min-height:58px;display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border:1px solid rgba(255,255,255,.1);border-radius:16px;background:rgba(255,255,255,.96);box-shadow:0 14px 40px rgba(0,0,0,.18)}
.footer-logo--image img{display:block;width:auto;max-width:155px;max-height:48px;object-fit:contain}
.footer-brand .footer-tagline{margin-top:17px}
