:root{
      --black:#000;
      --white:#fff;
      --blue:#1d4ed8;
      --blue-dark:#1e40af;

      --text:#0f172a;
      --muted:#64748b;
      --muted-dark:#94a3b8;

      --border:#e2e8f0;
      --panel:#ffffff;

      --shadow: 0 22px 60px rgba(2,6,23,0.18);
      --shadow-dark: 0 30px 80px rgba(0,0,0,0.55);

      --footer-bg:#000;
      --footer-text:#fff;
      --footer-muted: rgba(255,255,255,0.70);

      --container: 1200px;
      --h-pad: 20px;

      --section-pad: 92px;
      --radius: 18px;
    }

    *{ box-sizing:border-box; }

    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      font-size: 15px;
      background:#f8fafc;
      color:var(--text);
    }

    a{ color:inherit; }

    .svg{
      width: 18px;
      height: 18px;
      display: inline-block;
      vertical-align: -3px;
      color: currentColor;
    }

    .svg.sm{
      width: 16px;
      height: 16px;
      vertical-align: -3px;
    }

    .svg.lg{
      width: 22px;
      height: 22px;
      vertical-align: -5px;
    }

    /* =========================
       HEADER
    ========================= */
    .top-banner{
      position: sticky;
      top: 0;
      z-index: 90;
      background: var(--black);
      transition: background 180ms ease, border-color 180ms ease;
    }

    .top-banner:hover{
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .top-banner *{ color: #fff; }
    .top-banner:hover *{ color: var(--text); }

    .top-banner__inner{
      max-width: var(--container);
      height: 68px;
      margin: 0 auto;
      padding: 0 var(--h-pad);
      display:flex;
      align-items:center;
      gap: 28px;
    }

    .logo{
      display:flex;
      align-items:center;
      text-decoration:none;
    }

    .logo img{
      height: 28px;
      width: auto;
      display:block;
    }

    .nav{
      display:flex;
      gap: 22px;
      margin: 0 auto;
      align-items:center;
    }

    .nav button,
    .nav a{
      background:none;
      border:none;
      cursor:pointer;
      font-size: 15px;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
      text-decoration: none;
      line-height: 1;
      display:inline-flex;
      align-items:center;
      gap: 8px;
    }

    .nav button::after,
    .nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-6px;
      width:100%;
      height:2px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 160ms ease;
    }

    .nav button:hover::after,
    .nav a:hover::after{
      transform: scaleX(1);
      transform-origin: left;
    }

    .caret{
      width: 12px;
      height: 12px;
      transition: transform 140ms ease;
    }

    .nav button[aria-expanded="true"] .caret{
      transform: rotate(180deg);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap: 10px;
      white-space: nowrap;
    }

    .lang-wrap{
      display:flex;
      align-items:center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,0.35);
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 14px;
      transition: border-color 180ms ease, background 180ms ease;
    }

    .top-banner:hover .lang-wrap{
      border-color: var(--border);
      background: #fff;
    }

    .lang-select{
      border:none;
      background: transparent;
      font-size: 14px;
      cursor:pointer;
      outline:none;
      color: inherit;
    }

    .account-link{
      background: var(--blue);
      color:#fff !important;
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      text-decoration:none;
      transition: background 140ms ease, transform 140ms ease;
    }

    .account-link:hover{ background: var(--blue-dark); }
    .account-link:active{ transform: translateY(1px); }


    /* =========================
       MOBILE MENU
    ========================= */
    .mobile-toggle{
  display:none;
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  place-items: center;
  transition: background 180ms ease, transform 140ms ease;
}

.top-banner:hover .mobile-toggle{
  border: none;
  background: transparent;
}

    .mobile-toggle:active{ transform: translateY(1px); }

    .hamburger{
      width: 18px;
      height: 14px;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hamburger span{
      display:block;
      height: 2px;
      width: 100%;
      background: currentColor;
      border-radius: 999px;
      transition: transform 180ms ease, opacity 180ms ease;
      transform-origin: center;
    }

    body.mobile-open .hamburger span:nth-child(1){
      transform: translateY(6px) rotate(45deg);
    }

    body.mobile-open .hamburger span:nth-child(2){
      opacity: 0;
    }

    body.mobile-open .hamburger span:nth-child(3){
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-backdrop{
      position: fixed;
      inset: 68px 0 0 0;
      background: rgba(2,6,23,0.38);
      opacity: 0;
      pointer-events: none;
      transition: opacity 160ms ease;
      z-index: 75;
    }

    .mobile-menu{
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--panel);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
      z-index: 85;
      padding: 12px var(--h-pad) 16px;
      display:flex;
      flex-direction: column;
      max-height: calc(100vh - 68px);
      overflow: auto;

    }

    body.mobile-open .mobile-backdrop{
      opacity: 1;
      pointer-events: auto;
    }

    body.mobile-open .mobile-menu{
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu__main{
      display:grid;
      gap: 4px;
    }

    .mobile-menu__bottom{
      margin-top: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    .mobile-link{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      padding: 12px 12px;
      border-radius: 14px;
      text-decoration:none;
      font-weight: 650;
      font-size: 15px;
      color: var(--text);
      border: none;
      background: transparent;
      cursor: pointer;
    }

    .mobile-link:hover{
      background: #f1f5f9;
    }

    .mobile-account{
      display:flex;
      align-items:center;
      justify-content:center;
      width: 100%;
      padding: 12px 12px;
      border-radius: 14px;
      background: var(--blue);
      color: #fff !important;
      font-weight: 650;
      text-decoration:none;
      transition: background 140ms ease, transform 140ms ease;
    }

    .mobile-account:hover{ background: var(--blue-dark); }
    .mobile-account:active{ transform: translateY(1px); }
/* =========================
       PRODUCTS DROPDOWN (FULL WIDTH)
    ========================= */
    .dropdown-backdrop{
      position: fixed;
      inset: 68px 0 0 0;
      background: rgba(2,6,23,0.38);
      opacity: 0;
      pointer-events: none;
      transition: opacity 140ms ease;
      z-index: 70;
    }

    .dropdown-bar{
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--panel);
      box-shadow: var(--shadow);
      border-bottom: 1px solid var(--border);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 160ms ease, transform 160ms ease;
      z-index: 80;
    }

    body.dropdown-open .dropdown-backdrop{
      opacity: 1;
      pointer-events: auto;
    }

    body.dropdown-open .dropdown-bar{
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .dropdown-inner{
      max-width: var(--container);
      margin: 0 auto;
      padding: 22px var(--h-pad) 26px;
      display:grid;
      grid-template-columns: 240px 1fr;
      gap: 32px;
    }

    .dd-left{
      border-right: 1px solid var(--border);
      padding-right: 20px;
    }

    .dd-cat{
      width: 100%;
      display:flex;
      align-items:center;
      gap: 10px;
      padding: 10px 0;
      background:none;
      border:none;
      cursor:pointer;
      text-align:left;
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      opacity: 0.9;
      transition: color 140ms ease, transform 140ms ease, opacity 140ms ease;
    }

    .dd-cat:hover{
      opacity: 1;
      transform: translateX(2px);
    }

    .dd-cat.active{
      color: var(--blue);
      opacity: 1;
    }

    .dd-cat .dd-mini{
      width: 26px;
      height: 26px;
      border-radius: 10px;
      display:grid;
      place-items:center;
      background: #eef2ff;
      color: currentColor;
      border: 1px solid #dbeafe;
      flex: 0 0 auto;
    }

    .dd-mini .svg{
      width: 16px;
      height: 16px;
      vertical-align: 0;
    }

    .dd-right{
      padding-left: 4px;
    }

    .dd-head{
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 14px;
    }

    .dd-title{
      margin:0;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.2px;
    }

    .dd-subtitle{
      margin: 6px 0 0 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    .dd-overview{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      text-decoration:none;
      color: var(--blue);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 12px;
      background: #eff6ff;
      border: 1px solid #dbeafe;
      transition: transform 140ms ease, background 140ms ease;
      white-space: nowrap;
    }

    .dd-overview:hover{
      background:#dbeafe;
      transform: translateY(-1px);
    }

    .dd-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 22px;
    }

    .dd-link{
      display:flex;
      gap: 12px;
      text-decoration:none;
      color: var(--text);
      align-items:flex-start;
      padding: 6px 0;
      transition: transform 140ms ease, color 140ms ease;
    }

    .dd-link:hover{
      color: var(--blue);
      transform: translateX(2px);
    }

    .dd-icon{
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      display:grid;
      place-items:center;
      flex: 0 0 auto;
      color: currentColor;
    }

    .dd-icon .svg{
      width: 18px;
      height: 18px;
      vertical-align: 0;
    }

    .dd-link-title{
      font-weight: 650;
      font-size: 14px;
      line-height: 1.2;
    }

    .dd-link-desc{
      margin-top: 4px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.35;
    }

    /* =========================
       4 INTERACTIVE BLOCKS
    ========================= */
    .block{
      padding: var(--section-pad) var(--h-pad);
      position: relative;
      overflow: hidden;
    }

    .block-dark{
      background: #000;
      color: #fff;
    }

    .block-dark .muted{
      color: var(--muted-dark);
    }

    .block-light{
      background: #fff;
      color: var(--text);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .block-light .muted{
      color: #475569;
    }

    .block-inner{
      max-width: var(--container);
      margin: 0 auto;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items:center;
    }

    .block h2{
      margin: 0 0 14px;
      font-size: 44px;
      font-weight: 650;
      letter-spacing: -0.6px;
      line-height: 1.05;
    }

    .block p{
      margin: 0 0 18px;
      font-size: 18px;
      line-height: 1.7;
      max-width: 620px;
    }

    .block-cta{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 999px;
      text-decoration:none;
      font-weight: 600;
      font-size: 14px;
      transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
      border: 1px solid transparent;
      cursor: pointer;
      line-height: 1;
    }

    .btn-primary{
      background: var(--blue);
      color: #fff !important;
    }

    .btn-primary:hover{
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    .btn-ghost{
      background: transparent;
      border-color: rgba(148,163,184,0.45);
      color: inherit !important;
    }

    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(148,163,184,0.75);
    }

    .media{
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-dark);
      transform: translateZ(0);
      position: relative;
      background: rgba(255,255,255,0.02);
    }

    .media img{
      width: 100%;
      height: auto;
      display:block;
    }

    .media::after{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(1200px 420px at 50% 10%, rgba(255,255,255,0.16), transparent 55%);
      opacity: 0;
      transition: opacity 180ms ease;
      pointer-events:none;
    }

    .media:hover{
      transform: translateY(-2px);
      transition: transform 180ms ease;
    }

    .media:hover::after{
      opacity: 1;
    }

    .kicker{
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      opacity: 0.9;
      margin: 0 0 10px;
    }

    .pill-row{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      font-weight: 650;
      font-size: 13px;
      border: 1px solid rgba(148,163,184,0.35);
      background: rgba(15,23,42,0.02);
      transition: transform 140ms ease, border-color 140ms ease;
    }

    .block-dark .pill{
      background: rgba(255,255,255,0.04);
      border-color: rgba(148,163,184,0.30);
    }

    .pill:hover{
      transform: translateY(-1px);
      border-color: rgba(148,163,184,0.60);
    }

    .pill .dot{
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      opacity: 0.95;
    }

    .pill .dot.warn{ background: #f59e0b; }
    .pill .dot.info{ background: #60a5fa; }

    .split-list{
      margin-top: 18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 18px;
      max-width: 640px;
    }

    .item{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      padding: 6px 0;
    }

    .check{
      width: 22px;
      height: 22px;
      border-radius: 8px;
      display:grid;
      place-items:center;
      background: rgba(96,165,250,0.14);
      border: 1px solid rgba(96,165,250,0.24);
      flex: 0 0 auto;
      color: var(--text);
    }

    .block-dark .check{
      background: rgba(96,165,250,0.14);
      border-color: rgba(96,165,250,0.20);
      color: #fff;
    }

    .check .svg{
      width: 14px;
      height: 14px;
      vertical-align: 0;
    }

    .item .title{
      font-weight: 700;
      font-size: 14px;
      line-height: 1.2;
    }

    .item .desc{
      font-size: 13px;
      line-height: 1.45;
      color: var(--muted);
      margin-top: 4px;
    }

    .block-dark .item .desc{
      color: var(--muted-dark);
    }

    .flow{
      margin-top: 20px;
      border: 1px solid rgba(148,163,184,0.22);
      border-radius: 16px;
      overflow: hidden;
    }

    .block-dark .flow{
      border-color: rgba(148,163,184,0.18);
      background: rgba(255,255,255,0.03);
    }

    .flow-row{
      display:grid;
      grid-template-columns: 170px 1fr;
      gap: 16px;
      padding: 12px 14px;
      border-top: 1px solid rgba(148,163,184,0.18);
      align-items:center;
    }

    .flow-row:first-child{
      border-top: none;
    }

    .flow-tag{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-weight: 750;
      font-size: 12px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      opacity: 0.95;
    }

    .flow-tag .spark{
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #60a5fa;
    }

    .flow-text{
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    .block-dark .flow-text{
      color: var(--muted-dark);
    }

    .logos-strip{
      margin-top: 56px;
      overflow:hidden;
      border-top: 1px solid rgba(255,255,255,0.10);
      border-bottom: 1px solid rgba(255,255,255,0.10);
      padding: 24px 0;
    }

    .logos-track{
      display:flex;
      gap: 72px;
      width: max-content;
      animation: scroll-logos 18s linear infinite;
      padding-left: 100%;
    }

    .logo-item{
      font-size: 20px;
      font-weight: 650;
      color: #e5e7eb;
      opacity: 0.9;
      white-space: nowrap;
      letter-spacing: 0.2px;
    }

    @keyframes scroll-logos{
      from{ transform: translateX(0); }
      to{ transform: translateX(-100%); }
    }

    .reveal{
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 700ms ease, transform 700ms ease;
      will-change: opacity, transform;
    }

    .reveal.is-visible{
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.delay-1{ transition-delay: 90ms; }
    .reveal.delay-2{ transition-delay: 160ms; }
    .reveal.delay-3{ transition-delay: 230ms; }

    .reveal-media{
      opacity: 0;
      transform: translateY(16px) scale(0.985);
      transition: opacity 760ms ease, transform 760ms ease;
      will-change: opacity, transform;
    }

    .reveal-media.is-visible{
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* =========================
       PRICING + FAQ (NEW)
    ========================= */
    .section-inner{
      max-width: var(--container);
      margin: 0 auto;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .section-title{
      margin: 0;
      font-size: 38px;
      font-weight: 700;
      letter-spacing: -0.5px;
      line-height: 1.1;
    }

    .section-subtitle{
      margin: 10px 0 0 0;
      color: #475569;
      font-size: 16px;
      line-height: 1.6;
      max-width: 680px;
    }

    .toggle{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 10px;
      box-shadow: 0 10px 26px rgba(2,6,23,0.08);
      user-select: none;
      white-space: nowrap;
    }

    .toggle small{
      color: var(--muted);
      font-weight: 650;
    }

    .toggle button{
      border:none;
      cursor:pointer;
      background: transparent;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 13px;
      color: var(--text);
      transition: background 140ms ease, color 140ms ease, transform 140ms ease;
    }

    .toggle button.active{
      background: #eff6ff;
      color: var(--blue);
    }

    .toggle .save{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #ecfeff;
      border: 1px solid #a5f3fc;
      color: #0e7490;
      font-weight: 750;
      font-size: 12px;
    }

    .pricing-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 22px;
    }

    .plan{
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 22px;
      box-shadow: 0 18px 46px rgba(2,6,23,0.08);
      position: relative;
      overflow: hidden;
    }

    .plan.featured{
      border-color: rgba(29,78,216,0.35);
      box-shadow: 0 22px 60px rgba(29,78,216,0.18);
      transform: translateY(-2px);
    }

    .badge{
      position:absolute;
      top: 16px;
      right: 16px;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 12px;
      background: #eff6ff;
      border: 1px solid #dbeafe;
      color: var(--blue);
    }

    .plan h3{
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 750;
      letter-spacing: -0.2px;
    }

    .plan p{
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      max-width: 520px;
    }

    .price{
      display:flex;
      align-items: baseline;
      gap: 10px;
      margin: 14px 0 12px;
    }

    .price .amt{
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -0.6px;
    }

    .price .per{
      font-size: 14px;
      color: var(--muted);
      font-weight: 650;
    }

    .plan .meta{
      font-size: 12px;
      color: #475569;
      margin-top: 2px;
    }

    .plan ul{
      list-style:none;
      padding: 0;
      margin: 16px 0 18px;
      display:grid;
      gap: 10px;
    }

    .plan li{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      color: var(--text);
      font-size: 13px;
      line-height: 1.45;
    }

    .plan li .mini-check{
      width: 20px;
      height: 20px;
      border-radius: 8px;
      display:grid;
      place-items:center;
      background: rgba(96,165,250,0.14);
      border: 1px solid rgba(96,165,250,0.24);
      flex: 0 0 auto;
    }

    .plan .plan-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .btn-full{
      width: 100%;
      justify-content:center;
    }

    .pricing-note{
      margin-top: 18px;
      color: #475569;
      font-size: 13px;
      line-height: 1.6;
    }

    .faq-grid{
      margin-top: 26px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .faq-item{
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(2,6,23,0.06);
    }

    .faq-q{
      width: 100%;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 16px;
      border:none;
      background: transparent;
      cursor:pointer;
      text-align:left;
      font-weight: 750;
      font-size: 14px;
      color: var(--text);
    }

    .faq-q span{
      line-height: 1.35;
    }

    .faq-q .chev{
      width: 18px;
      height: 18px;
      transition: transform 140ms ease;
      flex: 0 0 auto;
      opacity: 0.9;
    }

    .faq-item[data-open="true"] .faq-q .chev{
      transform: rotate(180deg);
    }

    .faq-a{
      padding: 0 16px 16px;
      color: #475569;
      font-size: 14px;
      line-height: 1.65;
      display:none;
    }

    .faq-item[data-open="true"] .faq-a{
      display:block;
    }

    .faq-cta{
      margin-top: 18px;
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px){
      .nav{ display:none; }
      .mobile-toggle{ display:grid; margin-left: auto; }
      .header-actions{ display:none; }
      .logo img{ height: 22px; }
      .top-banner__inner{ gap: 16px; }

      .dropdown-inner{
        grid-template-columns: 1fr;
      }
      .dd-left{
        border-right:none;
        border-bottom: 1px solid var(--border);
        padding-right:0;
        padding-bottom: 14px;
      }
      .dd-list{ grid-template-columns: 1fr; }

      .block-inner{
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .block h2{ font-size: 34px; }
      .block p{ font-size: 17px; }
      .split-list{ grid-template-columns: 1fr; }
      .flow-row{ grid-template-columns: 1fr; }

      .pricing-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .section-head{ flex-direction: column; align-items: flex-start; }
    }

    @media (prefers-reduced-motion: reduce){
      .logos-track{ animation: none; padding-left: 0; }
      .reveal, .reveal-media{ transition: none; transform:none; opacity:1; }
      .media:hover{ transform:none; }
    }

    /* =========================
       FOOTER (UPDATED)
    ========================= */
    footer{
      background: var(--footer-bg);
      color: var(--footer-text);
      margin-top: 0;
    }

    .footer-inner{
      max-width: var(--container);
      margin: 0 auto;
      padding: 56px var(--h-pad) 32px;
      display:grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 32px;
    }

    .footer-brand{
      display:flex;
      align-items:center;
      gap: 10px;
      color:#fff;
      font-weight: 650;
      font-size: 16px;
    }

    .footer-brand img{
      height: 26px;
      width:auto;
      display:block;
    }

    .footer-desc{
      margin-top: 14px;
      font-size: 14px;
      color: var(--footer-muted);
      line-height: 1.7;
      max-width: 340px;
    }

    .footer-col h4{
      margin: 0 0 14px;
      font-size: 14px;
      font-weight: 650;
      color:#fff;
    }

    .footer-col a{
      display:block;
      text-decoration:none;
      color: var(--footer-muted);
      font-size: 14px;
      margin-bottom: 10px;
      transition: color 140ms ease, transform 140ms ease;
    }

    .footer-col a:hover{
      color:#fff;
      transform: translateX(2px);
    }

    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,0.12);
      padding: 18px var(--h-pad);
      text-align:center;
      color: var(--footer-muted);
      font-size: 13px;
    }

    @media (max-width: 900px){
      .footer-inner{ grid-template-columns: 1fr 1fr; }
    }
  
/* =========================
   ACCOUNT MODAL (UPDATED: 2-PANEL LIKE VIDEO)
========================= */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 110;
}

.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 120;
}

body.account-open .modal,
body.account-open .modal-backdrop{
  opacity: 1;
  pointer-events: auto;
}

.modal-card{
  width: min(980px, calc(100vw - 40px));
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(2,6,23,0.35);
  overflow: hidden;
  transform: translateY(10px);
  transition: transform 160ms ease;
}

body.account-open .modal-card{
  transform: translateY(0);
}

/* RIGHT BLUE PANEL */
.modal-side{
  grid-column: 2;
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  display: grid;
  place-items: center;
  padding: 40px;
}

.modal-side__inner{
  text-align: center;
  max-width: 320px;
  color: #fff;
}

.modal-side__inner h3{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -0.3px;
}

.modal-side__inner p{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* OUTLINE BUTTON ON BLUE PANEL */
.btn-outline-light{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.75);
  color: #fff !important;
  background: transparent;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn-outline-light:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.btn-outline-light:active{
  transform: translateY(0);
}

/* LEFT WHITE FORM SIDE */
.modal-head{
  grid-column: 1;
  padding: 34px 44px 0 44px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-title{
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.2px;
}

.modal-sub{
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 140ms ease, transform 140ms ease;
}

.icon-btn:hover{ background: #f1f5f9; }
.icon-btn:active{ transform: translateY(1px); }

.modal-body{
  grid-column: 1;
  padding: 20px 44px 40px 44px;
  background: #fff;
}

.form-grid{
  display: grid;
  gap: 16px;
}

.field label{
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
}

.field input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  background: #fff;
}

.field input:focus{
  border-color: rgba(29,78,216,0.6);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}

.row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.mini-link{
  font-size: 13px;
  font-weight: 650;
  color: var(--blue);
  text-decoration: none;
}

.mini-link:hover{ text-decoration: underline; }

.modal-actions{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.divider{
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 10px 0;
}

.helper{
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* MOBILE: STACK */
@media (max-width: 820px){
  .modal-card{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-side{
    display: none;
  }

  .modal-head,
  .modal-body{
    grid-column: 1;
    padding-left: 22px;
    padding-right: 22px;
  }

  .modal-head{ padding-top: 22px; }
  .modal-body{ padding-bottom: 22px; }
}