    /* ── Design tokens – mirrors tenant client palette ── */
    :root {
      --navy-deep: #081c3c;
      --navy: #0d2b4a;
      --blue:  #1557a0;
      --blue-mid: #1e63aa;
      --blue-sky: #2d8ed4;
      --sky:  #5bb8e8;
      --sky-bg: #6cc3f2;
      --sky-dark: #2a7fc4;
      --yellow: #ffe500;
      --white: #ffffff;
      --text-dark: #1a2a3a;
      --glass-bg: rgba(255,255,255,0.10);
      --glass-border: rgba(255,255,255,0.20);
      --glass-hover: rgba(255,255,255,0.18);
      --shadow-deep: 0 20px 60px rgba(8,28,60,0.45);
      --radius: 20px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Segoe UI', 'Trebuchet MS', Arial, sans-serif;
      background: var(--sky-bg);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Utility ── */
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
    .pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      color: var(--white); border-radius: 999px;
      padding: 10px 22px; font-weight: 800; font-size: 14px;
      cursor: pointer; backdrop-filter: blur(10px);
      transition: transform .15s, background .15s, border-color .15s;
      text-decoration: none;
    }
    .pill:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.38); transform: translateY(-2px); }
    .pill-solid {
      background: var(--yellow); color: var(--navy-deep); border: none;
      box-shadow: 0 8px 24px rgba(255,229,0,.35);
    }
    .pill-solid:hover { background: #ffd900; box-shadow: 0 12px 32px rgba(255,229,0,.45); transform: translateY(-2px); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 16px 28px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(8,28,60,.55); backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-icon { width: 36px; height: 36px; }
    .nav-logo-text {
      font-size: 1.15rem; font-weight: 900; color: var(--white);
      letter-spacing: .06em; text-transform: uppercase;
    }
    .nav-cta { font-size: .85rem; padding: 9px 20px; }

    /* ── HERO ── */
    .hero {
      min-height: 100dvh;
      background:
        radial-gradient(ellipse at 70% 20%, rgba(91,184,232,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(21,87,160,.35) 0%, transparent 50%),
        linear-gradient(150deg, #081c3c 0%, #0d2b4a 30%, #1557a0 65%, #2d8ed4 88%, #5bb8e8 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 140px 28px 100px;
      position: relative; overflow: hidden;
      border-radius: 0 0 0 72px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Ccircle cx='900' cy='120' r='300' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='80'/%3E%3Ccircle cx='200' cy='480' r='220' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='60'/%3E%3C/svg%3E") no-repeat center / cover;
      pointer-events: none;
    }
    .hero-eyebrow {
      text-transform: uppercase; letter-spacing: .14em;
      font-size: 11px; font-weight: 800;
      color: rgba(255,255,255,.65); margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900; line-height: 1.05;
      color: var(--white);
      text-shadow: 0 4px 24px rgba(0,0,0,.35);
      max-width: 820px; margin: 0 auto 20px;
    }
    .hero h1 span { color: var(--yellow); }
    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.78); max-width: 600px;
      margin: 0 auto 40px; line-height: 1.65;
    }
    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,.45); font-size: .78rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

    /* ── STATS BAND ── */
    .stats-band {
      background: var(--navy-deep);
      padding: 36px 28px;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: rgba(255,255,255,.08);
      border-radius: 18px; overflow: hidden;
    }
    .stat-item {
      background: var(--navy); padding: 32px 24px;
      text-align: center;
    }
    .stat-num {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900; color: var(--yellow);
      line-height: 1; margin-bottom: 6px;
    }
    .stat-label {
      font-size: .82rem; font-weight: 700;
      color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em;
    }

    /* ── SECTION SHARED ── */
    .section { padding: 96px 28px; }
    .section,
    .services-section,
    .mockup-section,
    .benefits-section,
    .impact-section,
    .trial-section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 960px;
    }
    .section-dark {
      background:
        radial-gradient(ellipse at 80% 50%, rgba(21,87,160,.25) 0%, transparent 60%),
        var(--navy-deep);
    }
    .section-blue {
      background:
        radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 40%),
        linear-gradient(160deg, #10345b 0%, #1e63aa 45%, #66bee9 100%);
    }
    .section-light { background: var(--sky-bg); }
    .section-heading {
      text-align: center; margin-bottom: 60px;
    }
    .eyebrow {
      display: inline-block; text-transform: uppercase; letter-spacing: .14em;
      font-size: 11px; font-weight: 800; margin-bottom: 14px;
    }
    .eyebrow-light { color: rgba(255,255,255,.6); }
    .eyebrow-blue { color: var(--sky-dark); }
    .section-heading h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900; line-height: 1.1;
    }
    .h2-white { color: var(--white); }
    .h2-dark { color: var(--navy-deep); }
    .section-heading p {
      margin-top: 14px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto;
    }
    .p-muted-white { color: rgba(255,255,255,.68); }
    .p-muted-dark { color: rgba(26,42,58,.62); }

    /* ── FEATURE GRID ── */
    .feat-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
    .feat-card {
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      border-radius: var(--radius); padding: 32px 24px;
      backdrop-filter: blur(14px);
      transition: transform .2s, background .2s, border-color .2s;
    }
    .feat-card:hover { transform: translateY(-5px); background: var(--glass-hover); border-color: rgba(255,255,255,.32); }
    .feat-icon {
      width: 52px; height: 52px; margin-bottom: 18px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.12); border-radius: 14px;
      padding: 12px;
    }
    .feat-icon svg { width: 28px; height: 28px; }
    .feat-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
    .feat-card p { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.6; }

    /* ── PORTALS ── */
    .portals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .portal-card {
      border-radius: var(--radius); padding: 36px 32px;
      background:
        radial-gradient(ellipse at top right, rgba(255,255,255,.12), transparent 55%),
        linear-gradient(135deg, rgba(8,28,60,.75) 0%, rgba(21,87,160,.55) 100%);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(16px);
      transition: transform .2s, border-color .2s;
    }
    .portal-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); }
    .portal-tag {
      display: inline-block; background: rgba(255,229,0,.18);
      color: var(--yellow); font-size: .75rem; font-weight: 900;
      letter-spacing: .1em; text-transform: uppercase;
      border-radius: 999px; padding: 4px 12px; margin-bottom: 18px;
    }
    .portal-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
    .portal-card p { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 18px; }
    .portal-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .portal-features li {
      font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600;
      display: flex; align-items: center; gap: 10px;
    }
    .portal-features li::before {
      content: ''; width: 18px; height: 18px; flex-shrink: 0;
      background: rgba(255,229,0,.22); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffe500' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: 12px;
    }

    /* ── TECH STACK ── */
    .tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .tech-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px; padding: 24px 20px; text-align: center;
      transition: transform .2s, background .2s;
    }
    .tech-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
    .tech-name { font-size: .85rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
    .tech-desc { font-size: .78rem; color: rgba(255,255,255,.5); }

    /* ── TRIAL ── */
    .trial-section {
      padding: 100px 28px;
      background:
        radial-gradient(circle at 20% 40%, rgba(91,184,232,.12), transparent 50%),
        var(--navy-deep);
    }
    .trial-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
    .trial-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
    .trial-title span { color: var(--yellow); }
    .trial-sub { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
    .trial-builder {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .82rem; color: rgba(255,255,255,.62);
      margin-bottom: 28px;
    }
    .builder-logo-chip {
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.98);
      border-radius: 999px;
      border: 1px solid rgba(13,43,74,.16);
      padding: 4px 10px;
      line-height: 0;
    }
    .trial-builder img { width: 96px; height: 18px; object-fit: contain; opacity: .95; }
    .trial-steps { display: flex; flex-direction: column; gap: 22px; }
    .trial-step { display: flex; gap: 16px; align-items: flex-start; }
    .step-num {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--yellow); color: var(--navy-deep);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: .9rem;
    }
    .step-body h4 { font-size: .95rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
    .step-body p { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.55; }

    /* ── FORM ── */
    .form-card {
      background:
        radial-gradient(ellipse at top right, rgba(255,255,255,.09), transparent 50%),
        rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px; padding: 36px 32px;
      backdrop-filter: blur(20px);
    }
    .form-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 24px; }
    .form-field { margin-bottom: 16px; }
    .form-field label {
      display: block; font-size: .8rem; font-weight: 800;
      color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em;
      margin-bottom: 8px;
    }
    .form-field input, .form-field select {
      width: 100%; background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
      padding: 13px 16px; font: inherit; font-size: .95rem;
      color: var(--white); transition: border-color .15s, background .15s;
    }
    .form-field input::placeholder { color: rgba(255,255,255,.35); }
    .form-field select { color: rgba(255,255,255,.75); }
    .form-field select option { background: var(--navy-deep); color: var(--white); }
    .form-field input:focus, .form-field select:focus {
      outline: none; border-color: var(--sky);
      background: rgba(255,255,255,.13);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-submit {
      width: 100%; margin-top: 20px;
      background: var(--yellow); color: var(--navy-deep);
      border: none; border-radius: 999px;
      padding: 16px 24px; font: inherit; font-weight: 900; font-size: 1rem;
      cursor: pointer; letter-spacing: .02em;
      box-shadow: 0 8px 28px rgba(255,229,0,.30);
      transition: background .15s, box-shadow .15s, transform .15s;
    }
    .form-submit:hover { background: #ffd900; box-shadow: 0 14px 40px rgba(255,229,0,.42); transform: translateY(-2px); }
    .form-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
    .form-status { margin-top: 14px; font-size: .88rem; font-weight: 700; min-height: 18px; display: none; }
    .form-status.show { display: block; }
    .form-status.ok { color: #4ade80; }
    .form-status.err { color: #f87171; }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--navy-deep);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 48px 28px; text-align: center;
    }
    .footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
    .footer-logo-text { font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: .08em; text-transform: uppercase; }
    .footer-sub { font-size: .85rem; color: rgba(255,255,255,.38); }
    .builder-credit {
      margin-top: 14px;
      display: inline-flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.62); font-size: .82rem; text-decoration: none;
      border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 14px;
      transition: background .15s, border-color .15s;
    }
    .builder-credit:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
    .builder-credit img { width: 96px; height: 18px; object-fit: contain; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .feat-grid { grid-template-columns: repeat(2, 1fr); }
      .portals-grid { grid-template-columns: 1fr; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); }
      .trial-grid { grid-template-columns: 1fr; gap: 40px; }
      .stats-inner { grid-template-columns: repeat(3, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .mockup-tiles { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 640px) {
      .wrap { padding: 0 18px; }
      .hero { border-radius: 0 0 0 40px; padding: 120px 20px 80px; }
      .feat-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      nav { padding: 14px 20px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .mockup-tiles { grid-template-columns: repeat(2, 1fr); }
      .service-card { padding: 28px 24px; }
      .section,
      .services-section,
      .trial-section,
      .impact-section,
      .benefits-section { padding-top: 72px; padding-bottom: 72px; }
    }
    @media (max-width: 480px) {
      .nav-logo-text { font-size: .98rem; }
      .pill { padding: 9px 16px; font-size: 13px; }
      .hero-sub { font-size: .92rem; }
      .stat-item { padding: 24px 16px; }
      .section-heading p { font-size: .95rem; }
      .mockup-tiles-wrap { padding: 24px 20px 28px; }
    }

    /* ── SERVICES ── */
    .services-section { background: var(--sky-bg); padding: 96px 28px; }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .service-card {
      border-radius: var(--radius); padding: 40px 36px;
      background: linear-gradient(145deg, rgba(255,255,255,0.97) 0%, rgba(224,242,254,0.97) 100%);
      border: 1px solid rgba(91,184,232,0.25);
      box-shadow: 0 8px 40px rgba(13,43,74,0.10);
      transition: transform .2s, box-shadow .2s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,43,74,0.18); }
    .service-icon-box {
      width: 64px; height: 64px; border-radius: 18px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue-sky) 100%);
      display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
    }
    .service-icon-box svg { width: 34px; height: 34px; fill: white; stroke: none; }
    .service-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 10px; }
    .service-card > p { font-size: .92rem; color: rgba(26,42,58,.65); line-height: 1.65; margin-bottom: 18px; }
    .service-feats { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .service-feats li { font-size: .85rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
    .service-feats li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-sky); flex-shrink: 0; }

    /* ── MOCKUP PREVIEW ── */
    .mockup-section { padding: 0 28px 96px; background: var(--sky-bg); }
    .mockup-wrap {
      max-width: 960px; margin: 0 auto;
      border-radius: 24px; overflow: hidden;
      box-shadow: 0 40px 100px rgba(8,28,60,.35), 0 0 0 1px rgba(13,43,74,.15);
    }
    .mockup-bar {
      background: #e8edf5; padding: 12px 20px;
      display: flex; align-items: center; gap: 12px;
      border-bottom: 1px solid #d0d8e8;
    }
    .mockup-dots { display: flex; gap: 6px; }
    .mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
    .mockup-dot:nth-child(1) { background: #ff6059; }
    .mockup-dot:nth-child(2) { background: #ffbf2f; }
    .mockup-dot:nth-child(3) { background: #29c940; }
    .mockup-url {
      flex: 1; background: white; border-radius: 6px; height: 28px;
      display: flex; align-items: center; padding: 0 14px;
      font-size: .78rem; color: #667; font-family: monospace;
      border: 1px solid #d0d8e8;
    }
    .mockup-lock { font-size: .72rem; margin-right: 4px; }
    .mockup-body { background: #6cc3f2; }
    .mockup-hero-strip {
      background: linear-gradient(135deg, #0d2b4a 0%, #1557a0 60%, #2d8ed4 100%);
      border-radius: 0 0 0 48px;
      padding: 40px 36px 64px; text-align: center; color: white;
    }
    .mockup-hotel-eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
    .mockup-hero-title { font-size: 2rem; font-weight: 900; margin-bottom: 6px; }
    .mockup-hero-sub { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 22px; }
    .mockup-cta-btn {
      display: inline-block;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
      border-radius: 999px; padding: 10px 26px;
      font-size: .85rem; font-weight: 800; color: white;
    }
    .mockup-tiles-wrap { padding: 32px 36px 40px; }
    .mockup-nav-hint { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); margin-bottom: 16px; opacity: .65; }
    .mockup-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .mockup-tile {
      background: white; border-radius: 16px;
      padding: 20px 14px; text-align: center;
      box-shadow: 0 4px 18px rgba(13,43,74,.12);
      transition: transform .15s;
    }
    .mockup-tile:hover { transform: translateY(-3px); }
    .mockup-tile-icon { width: 32px; height: 32px; margin: 0 auto 10px; color: var(--blue); }
    .mockup-tile-label { font-size: .78rem; font-weight: 800; color: var(--navy); }

    /* ── Animations ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .anim { opacity: 0; animation: fadeUp .7s ease forwards; }
    .anim-d1 { animation-delay: .1s; }
    .anim-d2 { animation-delay: .22s; }
    .anim-d3 { animation-delay: .34s; }
    .anim-d4 { animation-delay: .46s; }
    .reveal {
      opacity: 0;
      transform: translateY(18px) scale(.985);
      transition: opacity .55s ease, transform .55s ease;
      will-change: opacity, transform;
    }
    .reveal-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .mockup-wrap {
      animation: floatSoft 6s ease-in-out infinite;
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .anim { opacity: 1 !important; transform: none !important; animation: none !important; }
      .mockup-wrap { animation: none !important; }
    }
    /* ── BENEFITS ── */
    .benefits-section { background: var(--sky-bg); padding: 80px 0; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    @media(max-width:900px){.benefits-grid{grid-template-columns:1fr;}}
    .benefit-card { background: #fff; border-radius: 18px; padding: 32px; box-shadow: 0 2px 20px rgba(13,43,74,.08); border-top: 4px solid var(--blue); }
    .benefit-tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--navy); color: #fff; border-radius: 20px; padding: 3px 11px; margin-bottom: 14px; }
    .benefit-card h3 { color: var(--navy); font-size: 1.08rem; margin: 0 0 16px; }
    .benefit-stat { font-size: 2.6rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 2px; }
    .benefit-stat-label { font-size: .78rem; color: #6b7a8d; margin-bottom: 18px; }
    .benefit-card ul { list-style: none; padding: 0; margin: 0; }
    .benefit-card ul li { padding: 7px 0 7px 22px; position: relative; color: #334; font-size: .91rem; line-height: 1.5; border-bottom: 1px solid #eef2f7; }
    .benefit-card ul li:last-child { border-bottom: none; }
    .benefit-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
    /* ── IMPACT ── */
    .impact-section { background: var(--navy); padding: 80px 0; }
    .impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    @media(max-width:900px){.impact-grid{grid-template-columns:1fr;}}
    .impact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; padding: 32px 26px; }
    .impact-num { font-size: 3.2rem; font-weight: 900; color: var(--sky); line-height: 1; margin-bottom: 6px; }
    .impact-card h3 { color: #fff; font-size: 1rem; margin: 0 0 10px; font-weight: 700; }
    .impact-card p { color: rgba(255,255,255,.62); font-size: .88rem; line-height: 1.65; margin: 0; }
