:root {
      --brand-950: #05271f;
      --brand-900: #073b2d;
      --brand-800: #0b533d;
      --brand-700: #087454;
      --brand-600: #07966b;
      --brand-500: #0bbf83;
      --brand-100: #dff8ee;
      --brand-50: #f0fcf7;
      --accent: #f6c453;
      --ink-950: #0d1f19;
      --ink-800: #203c33;
      --ink-600: #52675f;
      --ink-500: #71827b;
      --surface: #ffffff;
      --surface-soft: #f7faf8;
      --line: #dce8e2;
      --danger: #b42318;
      --shadow-sm: 0 8px 30px rgba(5, 39, 31, .07);
      --shadow-md: 0 18px 55px rgba(5, 39, 31, .12);
      --shadow-lg: 0 30px 80px rgba(5, 39, 31, .18);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --radius-xl: 44px;
      --container: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 110px; }
    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
      color: var(--ink-950);
      background:
        radial-gradient(circle at 90% 7%, rgba(11, 191, 131, .13), transparent 25rem),
        radial-gradient(circle at 5% 34%, rgba(246, 196, 83, .10), transparent 23rem),
        linear-gradient(180deg, #fbfdfc 0%, #f4f8f6 48%, #ffffff 100%);
      font-family: var(--pd-font);
      font-size: 16px;
      line-height: 1.75;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button, input, textarea, select { font: inherit; font-family: inherit; }
    ::selection { color: #fff; background: var(--brand-700); }

    .skip-link {
      position: fixed;
      z-index: 2000;
      top: 12px;
      right: 12px;
      padding: 10px 16px;
      border-radius: 12px;
      color: #fff;
      background: var(--brand-900);
      transform: translateY(-160%);
      transition: transform .2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    :focus-visible {
      outline: 3px solid rgba(7, 150, 107, .38);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin-inline: auto;
    }

    .section { padding-block: clamp(70px, 9vw, 120px); }
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--brand-700);
      font-size: .84rem;
      font-weight: 800;
      letter-spacing: -.01em;
    }
    .section-kicker::before {
      content: "";
      width: 24px;
      height: 3px;
      border-radius: 99px;
      background: var(--brand-500);
    }
    .section-heading {
      max-width: 680px;
      margin: 0;
      font-size: clamp(1.75rem, 4.2vw, 3rem);
      line-height: 1.35;
      letter-spacing: -.045em;
    }
    .section-copy {
      max-width: 650px;
      margin: 16px 0 0;
      color: var(--ink-600);
      font-size: clamp(.98rem, 1.5vw, 1.1rem);
    }
    .section-head.center { text-align: center; }
    .section-head.center .section-heading,
    .section-head.center .section-copy { margin-inline: auto; }

    /* Header */
    .site-header {
      position: sticky;
      z-index: 1000;
      top: 0;
      padding: 14px 0 8px;
      pointer-events: none;
    }
    .nav-shell {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(255, 255, 255, .85);
      border-radius: 24px;
      background: rgba(255, 255, 255, .83);
      box-shadow: 0 8px 30px rgba(5, 39, 31, .08);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      pointer-events: auto;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      text-decoration: none;
    }
    .brand-logo {
      width: 48px;
      height: 48px;
      object-fit: contain;
      border-radius: 15px;
      background: var(--brand-50);
      padding: 5px;
    }
    .brand-copy { display: grid; line-height: 1.25; }
    .brand-name { color: var(--brand-900); font-size: 1.16rem; font-weight: 900; }
    .brand-tagline { color: var(--ink-500); font-size: .68rem; font-weight: 600; }

    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-inline: auto;
    }
    .nav-menu a {
      position: relative;
      padding: 10px 12px;
      color: var(--ink-600);
      border-radius: 12px;
      text-decoration: none;
      font-size: .89rem;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a.active { color: var(--brand-800); background: var(--brand-50); }

    .nav-actions { display: flex; align-items: center; gap: 8px; }
    .button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 11px 18px;
      border: 0;
      border-radius: 14px;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      font-size: .91rem;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
      box-shadow: 0 12px 24px rgba(7, 150, 107, .25);
    }
    .button-primary:hover { box-shadow: 0 16px 30px rgba(7, 150, 107, .32); }
    .button-secondary {
      color: var(--brand-900);
      border: 1px solid var(--line);
      background: #fff;
    }
    .button-secondary:hover { border-color: rgba(7, 150, 107, .45); background: var(--brand-50); }
    .button-light { color: var(--brand-900); background: #fff; box-shadow: 0 14px 35px rgba(0, 0, 0, .12); }
    .button-ghost-light { color: #fff; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); }

    .menu-toggle {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--brand-900);
      background: #fff;
      cursor: pointer;
    }
    .menu-toggle i { font-size: 1.15rem; }
    .menu-overlay {
      position: fixed;
      z-index: 980;
      inset: 0;
      display: none;
      background: rgba(3, 24, 18, .48);
      backdrop-filter: blur(3px);
    }
    .menu-overlay.visible { display: block; }

    /* Hero */
    .hero { padding: clamp(42px, 7vw, 88px) 0 clamp(70px, 9vw, 112px); }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
      align-items: center;
      gap: clamp(40px, 6vw, 82px);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      padding: 8px 12px;
      color: var(--brand-800);
      border: 1px solid rgba(11, 191, 131, .22);
      border-radius: 999px;
      background: rgba(240, 252, 247, .86);
      font-size: .82rem;
      font-weight: 800;
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-500);
      box-shadow: 0 0 0 5px rgba(11, 191, 131, .13);
    }
    .hero h1 {
      margin: 0;
      max-width: 700px;
      color: var(--brand-950);
      font-size: clamp(2.45rem, 5.5vw, 4.75rem);
      line-height: 1.17;
      letter-spacing: -.065em;
    }
    .hero h1 span {
      color: transparent;
      background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
      background-clip: text;
      -webkit-background-clip: text;
    }
    .hero-copy {
      max-width: 640px;
      margin: 24px 0 0;
      color: var(--ink-600);
      font-size: clamp(1rem, 1.75vw, 1.18rem);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-actions .button { min-height: 54px; padding-inline: 23px; border-radius: 16px; }
    .hero-assurance {
      display: flex;
      flex-wrap: wrap;
      gap: 9px 20px;
      margin-top: 24px;
      color: var(--ink-500);
      font-size: .81rem;
      font-weight: 700;
    }
    .hero-assurance span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-assurance i { color: var(--brand-600); }

    .phone-stage {
      position: relative;
      isolation: isolate;
      display: grid;
      place-items: center;
      min-height: 600px;
    }
    .phone-stage::before {
      content: "";
      position: absolute;
      z-index: -2;
      width: min(92%, 520px);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(11, 191, 131, .18) 0 47%, transparent 48%),
        repeating-radial-gradient(circle, transparent 0 31px, rgba(7, 150, 107, .08) 32px 33px);
    }
    .phone-stage::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 330px;
      height: 100px;
      bottom: 28px;
      border-radius: 50%;
      background: rgba(5, 39, 31, .18);
      filter: blur(30px);
    }
    .phone {
      position: relative;
      width: min(100%, 350px);
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, .75);
      border-radius: 44px;
      background: #092c23;
      box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .08);
      transform: rotate(-2.5deg);
    }
    .phone-screen {
      min-height: 560px;
      overflow: hidden;
      border-radius: 35px;
      background: linear-gradient(180deg, #f5fbf8 0%, #fff 100%);
    }
    .phone-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 18px 10px;
      color: var(--ink-600);
      font-size: .72rem;
      font-weight: 800;
    }
    .phone-camera { width: 78px; height: 23px; margin-inline: auto; border-radius: 99px; background: #092c23; }
    .app-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px 12px;
    }
    .app-user { display: flex; align-items: center; gap: 10px; }
    .avatar {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand-800), var(--brand-500));
    }
    .app-user strong { display: block; font-size: .86rem; }
    .app-user small { color: var(--ink-500); font-size: .66rem; }
    .icon-button {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--ink-600);
      background: #fff;
    }
    .balance-card {
      position: relative;
      overflow: hidden;
      margin: 4px 16px 16px;
      padding: 20px;
      color: #fff;
      border-radius: 25px;
      background: linear-gradient(145deg, var(--brand-950), var(--brand-700));
      box-shadow: 0 16px 30px rgba(5, 39, 31, .22);
    }
    .balance-card::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      top: -70px;
      left: -50px;
      border: 25px solid rgba(255, 255, 255, .08);
      border-radius: 50%;
    }
    .balance-label { opacity: .75; font-size: .72rem; }
    .balance-value { margin-top: 4px; font-size: 1.45rem; font-weight: 900; letter-spacing: -.03em; }
    .balance-value small { font-size: .66rem; font-weight: 700; opacity: .78; }
    .balance-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: .68rem; }
    .balance-status { display: inline-flex; align-items: center; gap: 5px; }
    .balance-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #7ef0bc; }
    .quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding-inline: 16px; }
    .quick-action {
      display: grid;
      place-items: center;
      gap: 7px;
      padding: 12px 5px;
      border: 1px solid var(--line);
      border-radius: 17px;
      color: var(--ink-800);
      background: #fff;
      font-size: .64rem;
      font-weight: 800;
    }
    .quick-action i { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 11px; color: var(--brand-700); background: var(--brand-50); font-size: .9rem; }
    .transactions { padding: 19px 18px 22px; }
    .transactions-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .transactions-head strong { font-size: .78rem; }
    .transactions-head span { color: var(--brand-700); font-size: .62rem; font-weight: 800; }
    .transaction { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eef3f0; }
    .transaction:last-child { border-bottom: 0; }
    .merchant-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-700); background: var(--brand-50); }
    .transaction-info { flex: 1; min-width: 0; }
    .transaction-info strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .69rem; }
    .transaction-info small { color: var(--ink-500); font-size: .58rem; }
    .transaction-price { text-align: left; font-size: .66rem; font-weight: 900; }
    .transaction-price small { display: block; color: var(--brand-700); font-size: .53rem; }
    .phone-nav { display: grid; grid-template-columns: repeat(4, 1fr); padding: 9px 12px 12px; border-top: 1px solid var(--line); background: rgba(255, 255, 255, .94); }
    .phone-nav span { display: grid; place-items: center; gap: 3px; color: var(--ink-500); font-size: .49rem; }
    .phone-nav span.active { color: var(--brand-700); }
    .phone-nav i { font-size: .85rem; }

    .floating-chip {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border: 1px solid rgba(255, 255, 255, .85);
      border-radius: 16px;
      background: rgba(255, 255, 255, .89);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(15px);
      color: var(--ink-800);
      font-size: .74rem;
      font-weight: 900;
      animation: float 4.5s ease-in-out infinite;
    }
    .floating-chip i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--brand-700); background: var(--brand-50); }
    .chip-top { top: 82px; right: 0; }
    .chip-bottom { left: -5px; bottom: 105px; animation-delay: -2s; }
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

    /* Trust strip */
    .trust-strip {
      margin-top: -28px;
      position: relative;
      z-index: 2;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border: 1px solid rgba(7, 150, 107, .12);
      border-radius: 24px;
      background: rgba(255, 255, 255, .88);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 92px;
      padding: 18px;
      border-left: 1px solid var(--line);
    }
    .trust-item:last-child { border-left: 0; }
    .trust-icon { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 14px; color: var(--brand-700); background: var(--brand-50); }
    .trust-item strong { display: block; font-size: .86rem; }
    .trust-item small { display: block; color: var(--ink-500); font-size: .7rem; line-height: 1.6; }

    /* Audience */
    .audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
    .audience-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      display: grid;
      grid-template-columns: 1fr .75fr;
      align-items: center;
      gap: 22px;
      padding: clamp(28px, 4vw, 44px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-sm);
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .audience-card:hover { transform: translateY(-6px); border-color: rgba(7, 150, 107, .32); box-shadow: var(--shadow-md); }
    .audience-card.merchant { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--brand-950), var(--brand-800)); }
    .audience-card::after { content: ""; position: absolute; width: 220px; height: 220px; left: -100px; bottom: -120px; border-radius: 50%; border: 35px solid rgba(11, 191, 131, .09); }
    .audience-card.merchant::after { border-color: rgba(255, 255, 255, .06); }
    .audience-label { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px; color: var(--brand-700); font-size: .78rem; font-weight: 900; }
    .merchant .audience-label { color: #7ef0bc; }
    .audience-card h3 { margin: 0; font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.4; letter-spacing: -.04em; }
    .audience-card p { margin: 13px 0 22px; color: var(--ink-600); font-size: .91rem; }
    .merchant p { color: rgba(255, 255, 255, .72); }
    .audience-list { display: grid; gap: 9px; margin: 0 0 25px; padding: 0; list-style: none; }
    .audience-list li { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; }
    .audience-list i { color: var(--brand-600); }
    .merchant .audience-list i { color: #7ef0bc; }
    .audience-visual { display: grid; place-items: center; }
    .audience-visual-circle { position: relative; width: min(100%, 170px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--brand-50); }
    .merchant .audience-visual-circle { background: rgba(255, 255, 255, .08); }
    .audience-visual-circle > i { color: var(--brand-700); font-size: clamp(4rem, 8vw, 6.5rem); }
    .merchant .audience-visual-circle > i { color: #7ef0bc; }
    .mini-badge { position: absolute; right: -15px; bottom: 6px; padding: 8px 11px; border-radius: 12px; color: var(--brand-900); background: #fff; box-shadow: var(--shadow-sm); font-size: .65rem; font-weight: 900; }

    /* Features */
    .features-section { background: linear-gradient(180deg, rgba(240, 252, 247, .7), rgba(255, 255, 255, .65)); }
    .features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
    .feature-card {
      min-height: 250px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .95);
      box-shadow: 0 12px 35px rgba(5, 39, 31, .05);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(7, 150, 107, .28); box-shadow: var(--shadow-md); }
    .feature-icon { width: 53px; height: 53px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 17px; color: var(--brand-700); background: linear-gradient(145deg, var(--brand-50), #d9f7eb); font-size: 1.2rem; }
    .feature-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
    .feature-card p { margin: 0; color: var(--ink-600); font-size: .86rem; }
    .feature-tag { display: inline-flex; margin-top: 18px; padding: 5px 9px; border-radius: 999px; color: var(--brand-700); background: var(--brand-50); font-size: .65rem; font-weight: 900; }

    /* Steps */
    .steps-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; margin-top: 48px; }
    .steps-grid::before { content: ""; position: absolute; z-index: 0; top: 38px; right: 16.66%; left: 16.66%; height: 1px; border-top: 2px dashed rgba(7, 150, 107, .24); }
    .step-card { position: relative; z-index: 1; text-align: center; }
    .step-number { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 22px; border: 8px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--brand-800), var(--brand-500)); box-shadow: 0 13px 28px rgba(7, 150, 107, .23); font-size: 1.25rem; font-weight: 900; }
    .step-card h3 { margin: 0 0 8px; font-size: 1.07rem; }
    .step-card p { max-width: 310px; margin: 0 auto; color: var(--ink-600); font-size: .84rem; }

    /* Security */
    .security-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      align-items: center;
      gap: clamp(32px, 6vw, 76px);
      padding: clamp(34px, 6vw, 66px);
      border-radius: var(--radius-xl);
      color: #fff;
      background:
        radial-gradient(circle at 8% 50%, rgba(11, 191, 131, .20), transparent 23rem),
        linear-gradient(140deg, var(--brand-950), var(--brand-800));
      box-shadow: var(--shadow-lg);
    }
    .security-visual { position: relative; display: grid; place-items: center; min-height: 280px; }
    .security-rings { position: absolute; width: min(100%, 290px); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255, 255, 255, .035), 0 0 0 70px rgba(255, 255, 255, .02); }
    .security-shield { position: relative; width: 150px; height: 165px; display: grid; place-items: center; clip-path: polygon(50% 0, 92% 15%, 84% 72%, 50% 100%, 16% 72%, 8% 15%); color: var(--brand-900); background: linear-gradient(145deg, #fff, #c5f4df); font-size: 3.3rem; filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .25)); }
    .security-copy .section-kicker { color: #7ef0bc; }
    .security-copy .section-kicker::before { background: #7ef0bc; }
    .security-copy .section-heading { color: #fff; }
    .security-copy > p { color: rgba(255, 255, 255, .72); }
    .security-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
    .security-point { display: flex; align-items: center; gap: 10px; padding: 13px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 15px; background: rgba(255, 255, 255, .05); font-size: .78rem; font-weight: 800; }
    .security-point i { color: #7ef0bc; }

    /* CTA */
    .cta-shell {
      position: relative;
      overflow: hidden;
      padding: clamp(38px, 6vw, 68px);
      border: 1px solid rgba(7, 150, 107, .13);
      border-radius: var(--radius-xl);
      text-align: center;
      background: linear-gradient(145deg, #e8fbf3, #fff9e9);
      box-shadow: var(--shadow-md);
    }
    .cta-shell::before,
    .cta-shell::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; }
    .cta-shell::before { top: -130px; right: -80px; border: 38px solid rgba(11, 191, 131, .09); }
    .cta-shell::after { bottom: -150px; left: -70px; border: 38px solid rgba(246, 196, 83, .11); }
    .cta-shell h2 { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; color: var(--brand-950); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.4; letter-spacing: -.04em; }
    .cta-shell p { position: relative; z-index: 1; max-width: 600px; margin: 14px auto 26px; color: var(--ink-600); }
    .cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }

    /* Footer */
    .site-footer { margin-top: 80px; padding: 62px 0 24px; color: rgba(255, 255, 255, .72); background: var(--brand-950); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 34px; }
    .footer-brand .brand-name { color: #fff; }
    .footer-brand .brand-tagline { color: rgba(255, 255, 255, .5); }
    .footer-brand p { max-width: 390px; margin: 18px 0 0; font-size: .84rem; }
    .footer-col h3 { margin: 4px 0 16px; color: #fff; font-size: .92rem; }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a { width: fit-content; color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .8rem; transition: color .2s ease, transform .2s ease; }
    .footer-links a:hover { color: #7ef0bc; transform: translateX(-3px); }
    .contact-row { display: flex; align-items: center; gap: 9px; direction: ltr; justify-content: flex-end; width: fit-content; color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .78rem; }
    .contact-row i { color: #7ef0bc; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .72rem; }
    .footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }
    .footer-legal a { color: inherit; text-decoration: none; }

    /* PWA */
    .install-pwa-btn {
      position: fixed;
      z-index: 1200;
      left: max(16px, env(safe-area-inset-left));
      bottom: max(16px, env(safe-area-inset-bottom));
      display: none;
      align-items: center;
      gap: 9px;
      min-height: 48px;
      padding: 11px 17px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 15px;
      color: #fff;
      background: var(--brand-900);
      box-shadow: var(--shadow-lg);
      cursor: pointer;
      font-weight: 900;
      font-size: .82rem;
    }
    .install-pwa-btn.visible { display: inline-flex; }

    /* Motion */
    .reveal { opacity: 1; transform: none; }
    .js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1); }
    .js-ready .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1080px) {
      .nav-menu { display: none; }
      .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr); gap: 35px; }
      .audience-card { grid-template-columns: 1fr; }
      .audience-visual { display: none; }
      .footer-grid { grid-template-columns: 1.35fr repeat(3, 1fr); }
    }

    @media (max-width: 860px) {
      .site-header { padding-top: 8px; }
      .nav-shell { min-height: 66px; border-radius: 20px; }
      .brand-tagline { display: none; }
      .nav-actions .button-secondary { display: none; }
      .menu-toggle { display: grid; }
      .nav-menu {
        position: fixed;
        z-index: 990;
        top: 84px;
        right: 16px;
        left: 16px;
        display: grid;
        align-content: start;
        gap: 4px;
        max-height: calc(100dvh - 105px);
        overflow-y: auto;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, .86);
        border-radius: 22px;
        background: rgba(255, 255, 255, .97);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px) scale(.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
      }
      .nav-menu.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
      .nav-menu a { padding: 13px 14px; }
      .nav-menu .mobile-only { display: flex; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy, .hero h1 { max-width: 760px; }
      .phone-stage { min-height: 590px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-left: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .audience-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .security-shell { grid-template-columns: 1fr; }
      .security-visual { min-height: 220px; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (min-width: 861px) { .mobile-only { display: none !important; } }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 24px), var(--container)); }
      .section { padding-block: 72px; }
      .nav-shell { padding: 8px; }
      .brand-logo { width: 44px; height: 44px; }
      .brand-name { font-size: 1.02rem; }
      .nav-actions .button-primary { display: none; }
      .hero { padding-top: 30px; }
      .hero h1 { font-size: clamp(2.18rem, 12vw, 3.2rem); }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions .button { width: 100%; }
      .hero-assurance { display: grid; gap: 8px; }
      .phone-stage { min-height: 535px; }
      .phone { width: min(88vw, 330px); transform: none; }
      .phone-screen { min-height: 520px; }
      .chip-top { top: 35px; right: -4px; }
      .chip-bottom { left: -4px; bottom: 58px; }
      .floating-chip { padding: 9px 10px; font-size: .65rem; }
      .trust-strip { margin-top: -12px; }
      .trust-grid { grid-template-columns: 1fr; }
      .trust-item { border-left: 0; border-bottom: 1px solid var(--line); }
      .trust-item:last-child { border-bottom: 0; }
      .features-grid { grid-template-columns: 1fr; }
      .feature-card { min-height: auto; }
      .steps-grid { grid-template-columns: 1fr; gap: 30px; }
      .steps-grid::before { top: 60px; bottom: 60px; right: 37px; left: auto; width: 1px; height: auto; border-top: 0; border-right: 2px dashed rgba(7, 150, 107, .22); }
      .step-card { display: grid; grid-template-columns: 76px 1fr; column-gap: 16px; text-align: right; }
      .step-number { grid-row: span 2; margin: 0; }
      .step-card h3 { align-self: end; }
      .step-card p { margin: 0; }
      .security-shell { padding: 34px 22px; border-radius: 30px; }
      .security-points { grid-template-columns: 1fr; }
      .cta-shell { padding: 40px 20px; border-radius: 30px; }
      .cta-actions { display: grid; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 390px) {
      .brand-copy { display: none; }
      .phone-stage { min-height: 500px; }
      .phone-screen { min-height: 490px; }
      .floating-chip { display: none; }
      .balance-value { font-size: 1.25rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

/* FAQ and trust additions */
.faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:36px}.faq-item{padding:20px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm)}.faq-item h3{margin:0 0 8px;font-size:1rem}.faq-item p{margin:0;color:var(--ink-600);font-size:.86rem}.trust-note{margin-top:22px;padding:15px 18px;border:1px solid rgba(7,150,107,.18);border-radius:16px;color:var(--ink-600);background:var(--brand-50)}@media(max-width:620px){.faq-grid{grid-template-columns:1fr}}
