:root {
      --bg: #eef3f8;
      --bg-2: #f7fafc;
      --surface: #ffffff;
      --ink: #07111f;
      --ink-2: #14233a;
      --muted: #5d6b7e;
      --muted-2: #7d8a99;
      --line: #dce5ee;
      --line-dark: rgba(255,255,255,0.12);
      --brand: #071a33;
      --brand-2: #0b274d;
      --accent: #08c98f;
      --accent-2: #05a979;
      --danger: #e45a4f;
      --warning: #f3a833;
      --blue: #3d7be8;
      --shadow-sm: 0 2px 10px rgba(7,17,31,0.07);
      --shadow-md: 0 14px 34px rgba(7,17,31,0.10);
      --shadow-lg: 0 30px 80px rgba(7,17,31,0.18);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 38px;
      --max: 1180px;
      --nav-h: 76px;
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    ::selection { background: rgba(8,201,143,0.22); }

    .container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
    .skip-link {
      position: absolute; left: -999px; top: 14px; z-index: 999;
      background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px;
    }
    .skip-link:focus { left: 14px; }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .08s; }
    .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; }
    .d4 { transition-delay: .32s; }

    .top-strip {
      background: #06101d;
      color: rgba(255,255,255,.76);
      font-size: .84rem;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .top-strip-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .top-strip strong { color: #fff; font-weight: 800; }
    .top-strip a { color: #dffdf3; font-weight: 750; }

    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(238,243,248,.90);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(220,229,238,.78);
    }
    .nav {
      min-height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 950;
      letter-spacing: -0.045em;
      color: var(--brand);
      font-size: 1.23rem;
      flex-shrink: 0;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(145deg, #07111f 0%, #143b71 62%, #0a8a6b 100%);
      box-shadow: 0 12px 28px rgba(7,17,31,.22);
      letter-spacing: -0.03em;
    }
    .brand span:last-child { transform: translateY(-1px); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-left: auto;
    }
    .nav-links a {
      color: var(--muted);
      font-size: .91rem;
      font-weight: 700;
      padding: 9px 11px;
      border-radius: 999px;
      transition: background .2s, color .2s;
    }
    .nav-links a:hover { color: var(--ink); background: rgba(7,17,31,.06); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .phone-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brand);
      font-weight: 800;
      font-size: .92rem;
      white-space: nowrap;
    }
    .wa-icon {
      width: 23px;
      height: 23px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      background: #25d366;
      color: #ffffff;
      flex: 0 0 auto;
      box-shadow: 0 0 0 6px rgba(37,211,102,.12);
    }
    .wa-icon svg {
      width: 16px;
      height: 16px;
      display: block;
      fill: currentColor;
    }
    .btn .wa-icon {
      width: 22px;
      height: 22px;
      box-shadow: none;
      background: rgba(3,18,13,.14);
      color: currentColor;
    }
    .btn .wa-icon svg {
      width: 15px;
      height: 15px;
    }
    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      background: white;
      border-radius: 14px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .menu-btn span { width: 20px; height: 2px; background: var(--ink); border-radius: 20px; }
    .mobile-menu {
      display: none;
      position: fixed;
      inset: calc(var(--nav-h) + 38px) 0 auto 0;
      background: white;
      border-bottom: 1px solid var(--line);
      box-shadow: var(--shadow-lg);
      padding: 18px 20px 24px;
      z-index: 99;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 13px 14px;
      border-radius: 13px;
      color: var(--ink);
      font-weight: 760;
    }
    .mobile-menu a:hover { background: var(--bg-2); }
    .mobile-menu .mobile-cta { margin-top: 8px; text-align: center; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 999px;
      border: 1.5px solid transparent;
      min-height: 46px;
      padding: 12px 20px;
      font-weight: 820;
      font-size: .94rem;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--brand); color: white; box-shadow: 0 12px 28px rgba(7,17,31,.22); }
    .btn-primary:hover { background: #0b274d; box-shadow: 0 16px 38px rgba(7,17,31,.28); }
    .btn-accent { background: var(--accent); color: #03120d; box-shadow: 0 14px 34px rgba(8,201,143,.28); }
    .btn-accent:hover { background: #09d79a; box-shadow: 0 20px 42px rgba(8,201,143,.34); }
    .btn-soft { background: white; color: var(--brand); border-color: var(--line); box-shadow: var(--shadow-sm); }
    .btn-soft:hover { box-shadow: var(--shadow-md); border-color: #c5d4e4; }
    .btn-ghost-dark { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
    .btn-ghost-dark:hover { background: rgba(255,255,255,.14); }
    .btn-lg { min-height: 54px; padding: 14px 24px; font-size: 1rem; }
    .btn-block { width: 100%; }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 0%, rgba(8,201,143,.22), transparent 36%),
        radial-gradient(circle at 5% 35%, rgba(61,123,232,.22), transparent 30%),
        linear-gradient(145deg, #06101d 0%, #08172a 45%, #082f32 100%);
      color: white;
      padding: 92px 0 72px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.046) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.046) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.16));
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.06fr .94fr;
      gap: 52px;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      padding: 8px 13px;
      border: 1px solid rgba(8,201,143,.32);
      color: #9ff6dc;
      background: rgba(8,201,143,.10);
      border-radius: 999px;
      font-size: .84rem;
      font-weight: 820;
      margin-bottom: 22px;
    }
    .eyebrow i { width: 8px; height: 8px; background: var(--accent); border-radius: 999px; box-shadow: 0 0 0 6px rgba(8,201,143,.12); }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.72rem, 5.2vw, 5.45rem);
      line-height: .93;
      letter-spacing: -0.075em;
      max-width: 760px;
      margin-bottom: 24px;
    }
    .hero h1 span { color: var(--accent); }
    .hero-lead {
      max-width: 660px;
      color: rgba(255,255,255,.74);
      font-size: clamp(1.03rem, 1.4vw, 1.23rem);
      line-height: 1.72;
      margin-bottom: 30px;
    }
    .hero-ctas { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }
    .proof-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 11px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.07);
      border-radius: 999px;
      color: rgba(255,255,255,.80);
      font-size: .87rem;
      font-weight: 650;
    }
    .proof-chip::before {
      content: "";
      width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
    }

    .risk-panel {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: var(--radius-xl);
      padding: 26px;
      box-shadow: 0 30px 80px rgba(0,0,0,.18);
    }
    .risk-panel-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      margin-bottom: 18px;
    }
    .risk-panel h2 {
      color: white;
      font-size: 1.22rem;
      letter-spacing: -0.035em;
      line-height: 1.2;
      margin: 0;
    }
    .risk-badge {
      background: rgba(228,90,79,.14);
      color: #ffd7d2;
      border: 1px solid rgba(228,90,79,.26);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: .73rem;
      font-weight: 900;
      white-space: nowrap;
    }
    .risk-list { display: grid; gap: 10px; }
    .risk-item {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 11px;
      align-items: start;
      padding: 13px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.055);
      border-radius: 16px;
    }
    .risk-num {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(8,201,143,.13);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-weight: 950;
      font-size: .86rem;
    }
    .risk-item strong { display: block; color: white; font-size: .93rem; margin-bottom: 2px; }
    .risk-item span { display: block; color: rgba(255,255,255,.60); font-size: .82rem; line-height: 1.5; }
    .risk-panel-foot {
      margin-top: 18px;
      padding: 15px;
      background: rgba(8,201,143,.11);
      border: 1px solid rgba(8,201,143,.20);
      border-radius: 18px;
      color: #dffdf3;
      font-size: .9rem;
    }

    .logo-bar {
      background: var(--surface);
      border-bottom: 1px solid var(--line);
      padding: 24px 0;
    }
    .logo-bar-inner {
      display: grid;
      grid-template-columns: 1.15fr repeat(4, .8fr);
      gap: 12px;
      align-items: center;
    }
    .logo-bar p { color: var(--muted); font-size: .92rem; font-weight: 720; }
    .capability {
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 16px;
      color: var(--ink-2);
      background: var(--bg-2);
      font-weight: 800;
      font-size: .9rem;
    }

    section { padding: 92px 0; }
    .section-soft { background: var(--bg); }
    .section-white { background: var(--surface); }
    .section-dark {
      background:
        radial-gradient(circle at 15% 10%, rgba(8,201,143,.15), transparent 30%),
        linear-gradient(145deg, #06101d 0%, #0a1d36 100%);
      color: white;
    }
    .section-head { margin-bottom: 46px; max-width: 800px; }
    .label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--accent-2);
      text-transform: uppercase;
      letter-spacing: .11em;
      font-size: .75rem;
      font-weight: 950;
      margin-bottom: 13px;
    }
    .label::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 99px; }
    .section-dark .label { color: #9ff6dc; }
    h2.section-title, .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.6vw, 3.45rem);
      line-height: 1.02;
      letter-spacing: -0.065em;
      color: var(--brand);
      margin-bottom: 16px;
    }
    .section-dark .section-title { color: white; }
    .section-intro {
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
      max-width: 740px;
    }
    .section-dark .section-intro { color: rgba(255,255,255,.66); }

    .audience-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
      align-items: stretch;
    }
    .audience-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow-md);
    }
    .audience-card.dark {
      background: linear-gradient(145deg, #07111f, #0b274d);
      color: white;
      border-color: transparent;
      box-shadow: var(--shadow-lg);
    }
    .audience-card h3 {
      color: var(--brand);
      font-size: 1.85rem;
      line-height: 1.05;
      letter-spacing: -0.055em;
      margin-bottom: 14px;
    }
    .audience-card.dark h3 { color: white; }
    .audience-card p { color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
    .audience-card.dark p { color: rgba(255,255,255,.68); }
    .fit-list { list-style: none; display: grid; gap: 10px; }
    .fit-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--muted);
      font-size: .94rem;
    }
    .dark .fit-list li { color: rgba(255,255,255,.70); }
    .fit-list li::before {
      content: "✓";
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: #eafaf4;
      color: var(--accent-2);
      font-weight: 950;
      line-height: 1;
    }
    .dark .fit-list li::before {
      background: rgba(8,201,143,.14);
      color: var(--accent);
    }
    .not-list li::before {
      content: "×";
      background: #fff4f2;
      color: var(--danger);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .pain-card {
      position: relative;
      overflow: hidden;
      min-height: 235px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c4d2e3; }
    .pain-card::after {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(228,90,79,.08);
    }
    .pain-icon {
      width: 52px; height: 52px; border-radius: 16px;
      display: grid; place-items: center;
      background: #fff4f2;
      color: var(--danger);
      margin-bottom: 18px;
    }
    .pain-card h3 {
      color: var(--ink);
      font-size: 1.12rem;
      line-height: 1.25;
      letter-spacing: -0.035em;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }
    .pain-card p { color: var(--muted); font-size: .94rem; line-height: 1.66; position: relative; z-index: 1; }

    .offer-wrap {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 28px;
      align-items: stretch;
    }
    .offer-card {
      background: linear-gradient(145deg, #07111f, #0b274d);
      color: white;
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }
    .offer-card::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -140px;
      top: -120px;
      background: radial-gradient(circle, rgba(8,201,143,.30), transparent 66%);
    }
    .offer-card > * { position: relative; z-index: 1; }
    .offer-kicker {
      color: #9ff6dc;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-size: .75rem;
      margin-bottom: 12px;
    }
    .offer-card h3 {
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      line-height: 1.02;
      letter-spacing: -0.065em;
      margin-bottom: 16px;
    }
    .offer-card p { color: rgba(255,255,255,.70); font-size: 1.02rem; line-height: 1.72; margin-bottom: 24px; }
    .price-box {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.07);
      border-radius: 22px;
      margin-bottom: 20px;
    }
    .price-box strong {
      font-size: 2.15rem;
      line-height: .95;
      letter-spacing: -0.06em;
    }
    .price-box span { color: rgba(255,255,255,.60); font-weight: 800; padding-bottom: 4px; }
    .offer-note { color: rgba(255,255,255,.56); font-size: .86rem; line-height: 1.6; }

    .deliverables {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .deliverable {
      background: white;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 20px;
      box-shadow: var(--shadow-sm);
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: start;
    }
    .check {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #eafaf4;
      color: var(--accent-2);
      font-weight: 950;
    }
    .deliverable strong { display: block; color: var(--brand); font-size: .98rem; margin-bottom: 4px; }
    .deliverable span { display: block; color: var(--muted); font-size: .88rem; line-height: 1.55; }

    .packages {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }
    .package-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 26px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .package-card.featured {
      border-color: rgba(8,201,143,.42);
      box-shadow: 0 24px 60px rgba(8,201,143,.16);
      transform: translateY(-6px);
    }
    .package-label {
      display: inline-flex;
      align-self: flex-start;
      padding: 6px 10px;
      border-radius: 999px;
      background: #eafaf4;
      color: var(--accent-2);
      font-weight: 900;
      font-size: .75rem;
      margin-bottom: 16px;
    }
    .package-card h3 {
      color: var(--brand);
      font-size: 1.35rem;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }
    .package-card p { color: var(--muted); font-size: .94rem; line-height: 1.62; margin-bottom: 20px; }
    .package-price {
      font-size: 2rem;
      line-height: 1;
      letter-spacing: -0.06em;
      color: var(--brand);
      font-weight: 950;
      margin-bottom: 4px;
    }
    .package-sub { color: var(--muted-2); font-size: .84rem; margin-bottom: 20px; }
    .mini-list { list-style: none; display: grid; gap: 8px; }
    .mini-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--muted);
      font-size: .9rem;
    }
    .mini-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      margin-top: 8px;
      flex-shrink: 0;
    }
    .package-card .mini-list { margin-bottom: 24px; }
    .package-card .btn { margin-top: auto; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .service-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 25px;
      min-height: 320px;
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c4d2e3; }
    .service-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: var(--brand);
      background: #edf4fc;
      margin-bottom: 18px;
    }
    .service-card h3 {
      font-size: 1.15rem;
      letter-spacing: -0.035em;
      color: var(--brand);
      margin-bottom: 10px;
    }
    .service-card p { color: var(--muted); font-size: .94rem; line-height: 1.65; margin-bottom: 16px; }
    .result {
      margin-top: 16px;
      padding: 12px 14px;
      border-radius: 16px;
      background: #eafaf4;
      color: #075e45;
      font-size: .88rem;
      font-weight: 720;
      line-height: 1.55;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .step-card {
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.07);
      border-radius: 24px;
      padding: 24px;
    }
    .step-no {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(8,201,143,.14);
      color: var(--accent);
      font-weight: 950;
      margin-bottom: 16px;
    }
    .step-card h3 { color: white; font-size: 1.05rem; letter-spacing: -0.025em; margin-bottom: 9px; }
    .step-card p { color: rgba(255,255,255,.64); font-size: .92rem; line-height: 1.62; }

    .trust-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 28px;
      align-items: start;
    }
    .trust-card-main {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow-md);
    }
    .trust-card-main h3 {
      color: var(--brand);
      font-size: 1.85rem;
      line-height: 1.05;
      letter-spacing: -0.055em;
      margin-bottom: 14px;
    }
    .trust-card-main p { color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
    .trust-meta {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }
    .meta-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 13px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: .92rem;
    }
    .meta-row strong { color: var(--brand); }
    .trust-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .trust-point {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 22px;
    }
    .trust-point strong { display: block; color: var(--brand); margin-bottom: 8px; letter-spacing: -0.02em; }
    .trust-point p { color: var(--muted); font-size: .91rem; line-height: 1.62; }


    .direct-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow-md);
    }
    .direct-card h3 {
      color: var(--brand);
      font-size: 1.8rem;
      line-height: 1.08;
      letter-spacing: -0.055em;
      margin-bottom: 10px;
    }
    .direct-card p {
      color: var(--muted);
      line-height: 1.72;
      margin-bottom: 22px;
    }
    .direct-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }
    .quick-note {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 18px;
      margin-bottom: 18px;
    }
    .quick-note strong {
      display: block;
      color: var(--brand);
      font-size: .94rem;
      margin-bottom: 10px;
    }
    .quick-note ul {
      list-style: none;
      display: grid;
      gap: 8px;
    }
    .quick-note li {
      color: var(--muted);
      font-size: .91rem;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .quick-note li::before {
      content: '✓';
      width: 18px;
      height: 18px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #eafaf4;
      color: var(--accent-2);
      font-size: .72rem;
      font-weight: 950;
      flex: 0 0 auto;
      margin-top: 1px;
    }
    .direct-small {
      color: var(--muted-2);
      font-size: .84rem;
      line-height: 1.58;
    }

    .faq-list {
      display: grid;
      gap: 10px;
      max-width: 920px;
    }
    details {
      background: white;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 19px 20px;
      box-shadow: var(--shadow-sm);
    }
    details[open] { box-shadow: var(--shadow-md); border-color: rgba(8,201,143,.32); }
    summary {
      list-style: none;
      cursor: pointer;
      color: var(--brand);
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    summary::-webkit-details-marker { display: none; }
    .plus {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: var(--bg-2);
      color: var(--muted);
      flex-shrink: 0;
      transition: transform .2s, background .2s, color .2s;
    }
    details[open] .plus { transform: rotate(45deg); background: #eafaf4; color: var(--accent-2); }
    details p {
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.7;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 28px;
      align-items: start;
    }
    .contact-card {
      background: linear-gradient(145deg, #07111f, #0b274d);
      color: white;
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow-lg);
    }
    .contact-card h3 {
      font-size: 2rem;
      line-height: 1.05;
      letter-spacing: -0.06em;
      margin-bottom: 12px;
    }
    .contact-card p { color: rgba(255,255,255,.67); line-height: 1.7; margin-bottom: 26px; }
    .contact-methods { display: grid; gap: 12px; margin-bottom: 28px; }
    .contact-method {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
    }
    .contact-method i,
    .contact-method .wa-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(8,201,143,.13);
      color: var(--accent);
      font-style: normal;
      font-weight: 950;
      box-shadow: none;
    }
    .contact-method .wa-icon {
      background: #25d366;
      color: #ffffff;
    }
    .contact-method .wa-icon svg {
      width: 23px;
      height: 23px;
    }
    .contact-method span { display: block; color: rgba(255,255,255,.50); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
    .contact-method a, .contact-method strong { color: white; font-weight: 820; }
    .contact-small { color: rgba(255,255,255,.52); font-size: .85rem; line-height: 1.6; }

    .form-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow-md);
    }
    .form-card h3 { color: var(--brand); font-size: 1.55rem; letter-spacing: -0.04em; margin-bottom: 8px; }
    .form-card > p { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    label { color: var(--brand); font-size: .86rem; font-weight: 820; }
    input, select, textarea {
      width: 100%;
      border: 1.5px solid var(--line);
      background: var(--bg-2);
      color: var(--ink);
      border-radius: 13px;
      padding: 12px 13px;
      outline: none;
      transition: border-color .2s, box-shadow .2s, background .2s;
    }
    textarea { min-height: 128px; resize: vertical; }
    input:focus, select:focus, textarea:focus {
      background: white;
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(8,201,143,.12);
    }
    .form-note { color: var(--muted-2); font-size: .83rem; line-height: 1.55; margin: 14px 0 18px; }
    .status-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      background: #eafaf4;
      border: 1px solid rgba(8,201,143,.25);
      color: #075e45;
      border-radius: 14px;
      font-size: .9rem;
      font-weight: 700;
    }
    .status-message.show { display: block; }

    .final-cta {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      box-shadow: var(--shadow-sm);
    }
    .final-cta h2 { color: var(--brand); font-size: 1.75rem; letter-spacing: -0.045em; margin-bottom: 8px; }
    .final-cta p { color: var(--muted); max-width: 760px; }

    footer {
      background: #06101d;
      color: white;
      padding: 54px 0 104px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      margin-bottom: 24px;
    }
    .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -0.045em; font-size: 1.22rem; margin-bottom: 14px; }
    .footer-desc { color: rgba(255,255,255,.52); max-width: 360px; font-size: .92rem; line-height: 1.72; }
    .footer-col h3 { color: rgba(255,255,255,.42); text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; margin-bottom: 14px; }
    .footer-col ul { list-style: none; display: grid; gap: 9px; }
    .footer-col a, .footer-col span { color: rgba(255,255,255,.64); font-size: .9rem; transition: color .2s; }
    .footer-col a:hover { color: white; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.38); font-size: .84rem; }

    .sticky-mobile-cta {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 110;
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 10px;
      background: rgba(255,255,255,.92);
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: 0 18px 48px rgba(7,17,31,.22);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .sticky-mobile-cta .btn { min-height: 46px; padding: 10px 12px; font-size: .89rem; }

    @media (max-width: 1080px) {
      .nav-links, .phone-link { display: none; }
      .menu-btn { display: inline-flex; }
      .hero-inner, .offer-wrap, .trust-grid, .contact-wrap, .audience-grid { grid-template-columns: 1fr; }
      .risk-panel { max-width: 760px; }
      .logo-bar-inner { grid-template-columns: 1fr 1fr; }
      .logo-bar p { grid-column: 1 / -1; }
      .pain-grid, .services-grid, .packages { grid-template-columns: 1fr 1fr; }
      .package-card.featured { transform: none; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 720px) {
      .container { width: min(100% - 30px, var(--max)); }
      .top-strip-inner { justify-content: center; text-align: center; min-height: 44px; }
      .top-strip-inner span:last-child { display: none; }
      .mobile-menu { inset: calc(var(--nav-h) + 44px) 0 auto 0; }
      .nav-actions .btn { display: none; }
      .hero { padding: 62px 0 52px; }
      .hero h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); }
      .hero-ctas { flex-direction: column; }
      .btn-lg { width: 100%; }
      section { padding: 66px 0; }
      .pain-grid, .services-grid, .packages, .deliverables, .process-grid, .trust-points { grid-template-columns: 1fr; }
      .offer-card, .contact-card, .form-card, .direct-card, .trust-card-main, .audience-card { padding: 25px; border-radius: 26px; }
      .form-grid, .direct-actions { grid-template-columns: 1fr; }
      .final-cta { grid-template-columns: 1fr; }
      .final-cta .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { display: grid; }
      .sticky-mobile-cta { display: grid; }
    }
