  :root {
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --blue-light: #2997ff;
    --blue-glow: rgba(0,113,227,0.12);
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --surface: rgba(255,255,255,0.04);
    --surface-hover: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08);
    --green: #30d158;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
    scroll-padding-top: 60px;
    overflow-x: hidden;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }

  .skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
    background: #2997ff; color: #fff; padding: 12px 24px; font-size: 14px; text-decoration: none;
    z-index: 10000; border-radius: 0 0 8px 0;
  }
  .skip-link:focus { position: fixed; left: 0; top: 0; width: auto; height: auto; overflow: visible; }

  /* ─── BACKGROUND ─── */
  .bg-canvas {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: #000;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 52px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 max(22px, env(safe-area-inset-left));
    background: rgba(0,0,0,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; letter-spacing: -0.02em;
    color: var(--text-primary); text-decoration: none;
  }
  .nav-mark {
    width: 72px; height: 72px; border-radius: 14px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-mark img {
    width: 100%; height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
  }
  .nav-links {
    display: flex; align-items: center; gap: 28px; list-style: none;
  }
  .nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 12px; letter-spacing: -0.01em;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-cta {
    background: var(--blue); color: #fff;
    border: none; border-radius: 980px;
    padding: 6px 16px; font-size: 12px; font-weight: 400;
    cursor: pointer; text-decoration: none;
    transition: background 0.25s;
    font-family: inherit;
  }
  .nav-cta:hover { background: var(--blue-hover); }
  .lang-switch {
    display: flex; align-items: center; gap: 2px;
    margin-left: 12px; font-size: 12px;
  }
  .lang-switch a {
    color: var(--text-tertiary); text-decoration: none;
    padding: 4px 6px; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }
  .lang-switch a:hover { color: var(--text-primary); }
  .lang-switch a.active {
    color: var(--text-primary); background: rgba(255,255,255,0.08);
    font-weight: 500;
  }
  .lang-switch span { color: var(--text-tertiary); font-size: 10px; }

  /* Mobile menu */
  .nav-menu-btn {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    padding: 0;
  }
  .nav-menu-btn span {
    display: block; width: 18px; height: 1.5px;
    background: var(--text-primary);
    position: relative;
    transition: background 0.2s;
  }
  .nav-menu-btn span::before,
  .nav-menu-btn span::after {
    content: ''; position: absolute; left: 0;
    width: 18px; height: 1.5px;
    background: var(--text-primary);
    transition: transform 0.3s cubic-bezier(.25,.1,.25,1);
  }
  .nav-menu-btn span::before { top: -5px; }
  .nav-menu-btn span::after { top: 5px; }
  .nav-menu-btn.active span { background: transparent; }
  .nav-menu-btn.active span::before { transform: translateY(5px) rotate(45deg); }
  .nav-menu-btn.active span::after { transform: translateY(-5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 52px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .mobile-menu a {
    color: var(--text-primary); text-decoration: none;
    font-size: 28px; font-weight: 600;
    letter-spacing: -0.02em;
    padding: 16px 0;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--blue-light); }

  /* ─── CONTENT ─── */
  .wrapper { position: relative; z-index: 1; overflow-x: hidden; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100dvh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-graphic {
    position: relative; z-index: 0;
    width: 100%; max-width: 720px;
    margin-top: 56px;
    opacity: 0; animation: heroFade 1.2s 0.8s ease both;
  }
  .hero-graphic img {
    width: 100%; height: auto;
    display: block;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 400;
    color: var(--blue-light);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    opacity: 0; animation: heroFade 1s 0.2s ease both;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-light);
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }
  .hero-title {
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin-bottom: 0;
    opacity: 0; animation: heroFade 1s 0.35s ease both;
  }
  .hero-title .line1 {
    color: var(--text-primary);
  }
  .hero-title .line2 {
    background: linear-gradient(90deg, #6cc7ff 0%, #a78bfa 30%, #e879f9 55%, #fb7185 80%, #fdba74 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.15) drop-shadow(0 0 30px rgba(167,139,250,0.35)) drop-shadow(0 0 60px rgba(232,121,249,0.25));
  }
  .hero-sub {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.47;
    margin: 24px auto 40px;
    letter-spacing: -0.016em;
    opacity: 0; animation: heroFade 1s 0.5s ease both;
  }
  .hero-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: heroFade 1s 0.65s ease both;
  }
  .btn-primary {
    background: var(--blue); color: #fff;
    border: none; border-radius: 980px;
    padding: 12px 28px; font-size: 17px; font-weight: 400;
    cursor: pointer; text-decoration: none;
    transition: all 0.3s cubic-bezier(.25,.1,.25,1);
    font-family: inherit; letter-spacing: -0.01em;
    display: inline-flex; align-items: center;
  }
  .btn-primary:hover {
    background: var(--blue-hover);
    transform: scale(1.02);
  }
  .btn-secondary {
    background: transparent;
    color: var(--blue-light);
    border: none;
    border-radius: 980px;
    padding: 12px 28px; font-size: 17px; font-weight: 400;
    cursor: pointer; text-decoration: none;
    transition: all 0.3s;
    font-family: inherit; letter-spacing: -0.01em;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .btn-secondary:hover { color: #64d2ff; }
  .btn-secondary svg {
    width: 21px; height: 21px;
    transition: transform 0.3s;
  }
  .btn-secondary:hover svg { transform: translateY(2px); }

  .hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    opacity: 0; animation: heroFade 1s 1.2s ease both;
  }
  .hero-scroll-hint span {
    display: block; width: 1px; height: 48px; margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── STATS ─── */
  .stats {
    padding: 56px 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: rgba(255,255,255,0.02);
  }
  .stats-inner {
    max-width: 980px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    text-align: center; padding: 0 16px;
    position: relative;
  }
  .stat:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 8px; bottom: 8px;
    width: 0.5px; background: var(--border);
  }
  .stat-val {
    font-size: clamp(32px, 4vw, 48px); font-weight: 700;
    letter-spacing: -0.04em; line-height: 1;
    color: var(--text-primary);
  }
  .stat-label {
    font-size: 12px; color: var(--text-tertiary);
    margin-top: 6px; letter-spacing: -0.01em;
  }

  /* ─── TRUST STRIP ─── */
  .trust-strip {
    text-align: center; padding: 60px 24px 80px;
  }
  .trust-label {
    font-size: 13px; color: var(--text-tertiary);
    letter-spacing: 0.02em; text-transform: uppercase;
    margin-bottom: 24px; font-weight: 500;
  }
  .trust-logos {
    display: flex; align-items: center; justify-content: center; gap: 48px;
  }
  .trust-logo {
    height: 28px; width: auto;
    opacity: 0.5; filter: brightness(0) invert(1);
    transition: opacity 0.3s;
  }
  .trust-logo:hover { opacity: 0.8; }

  /* ─── SECTION COMMON ─── */
  .section-label {
    font-size: 16px; font-weight: 600;
    color: var(--blue-light);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .section-heading {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-primary);
  }
  .section-desc {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.47;
    letter-spacing: -0.012em;
    max-width: 500px;
    margin-top: 16px;
  }
  .centered { text-align: center; }
  .centered .section-desc { margin-left: auto; margin-right: auto; }

  /* ─── SERVICES ─── */
  .services {
    padding: 160px 0 140px;
  }
  .services-inner {
    max-width: 980px; margin: 0 auto; padding: 0 24px;
  }
  .services-header {
    text-align: center; margin-bottom: 80px;
  }
  .services-header .section-desc {
    margin-left: auto; margin-right: auto;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border-radius: 20px; overflow: hidden;
  }
  .service-card {
    background: #0d0d0d;
    padding: 48px 36px;
    transition: background 0.4s;
  }
  .service-card:hover { background: #141414; }
  .service-icon {
    width: 64px; height: 64px;
    margin-bottom: 28px;
    overflow: hidden;
  }
  .service-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.2);
  }
  .service-name {
    font-size: 24px; font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.5; letter-spacing: -0.006em;
    margin-bottom: 28px;
  }
  .service-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .service-list li {
    font-size: 14px; color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -0.006em;
  }
  .service-list li::before {
    content: '';
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--text-tertiary);
    flex-shrink: 0;
  }

  /* ─── DIFFERENTIATORS BAND ─── */
  .diff-band {
    padding: 100px 24px;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: rgba(255,255,255,0.015);
  }
  .diff-grid {
    max-width: 980px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px;
  }
  .diff-item { text-align: center; }
  .diff-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    overflow: hidden;
  }
  .diff-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.15);
  }
  .diff-title {
    font-size: 17px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .diff-desc {
    font-size: 14px; color: var(--text-tertiary);
    line-height: 1.5; max-width: 280px; margin: 0 auto;
  }

  /* ─── SECURITY ─── */
  .security {
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
  }
  .security::before {
    content: ''; position: absolute;
    top: 20%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background:
      radial-gradient(ellipse 50% 60% at 35% 50%, rgba(0,113,227,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 65% 50%, rgba(94,92,230,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .security-inner {
    max-width: 980px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
    position: relative;
  }

  /* Shield visual - image */
  .shield-visual {
    position: relative; height: 440px;
    display: flex; align-items: center; justify-content: center;
  }
  .shield-visual img {
    width: 100%; height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.1) contrast(1.05);
  }

  .security-content .section-desc { max-width: 100%; }
  .security-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-top: 40px;
  }
  .pillar {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.35s;
  }
  .pillar:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
  }
  .pillar-icon {
    width: 32px; height: 32px;
    margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .pillar-icon svg { width: 20px; height: 20px; color: var(--text-secondary); }
  .pillar-name {
    font-size: 14px; font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  .pillar-desc {
    font-size: 12px; color: var(--text-tertiary);
    line-height: 1.5;
  }

  /* ─── PROCESS ─── */
  .process {
    padding: 160px 0 140px;
    border-top: 0.5px solid var(--border);
  }
  .process-inner {
    max-width: 980px; margin: 0 auto; padding: 0 24px;
  }
  .process-header {
    text-align: center; margin-bottom: 80px;
  }
  .process-header .section-desc {
    margin-left: auto; margin-right: auto;
  }
  .process-steps {
    display: flex; flex-direction: column;
    max-width: 680px; margin: 0 auto;
  }
  .process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 40px;
    padding: 48px 0;
    border-top: 0.5px solid var(--border);
    position: relative;
  }
  .process-step:last-child {
    border-bottom: 0.5px solid var(--border);
  }
  .step-num {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, rgba(245,245,247,0.2) 0%, rgba(245,245,247,0.05) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 4px;
  }
  .step-content {
    padding-top: 10px;
  }
  .step-title {
    font-size: 21px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .step-desc {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.55; letter-spacing: -0.006em;
    max-width: 440px;
  }

  /* ─── PLANS ─── */
  .plans {
    padding: 160px 0 140px;
    border-top: 0.5px solid var(--border);
  }
  .plans-inner {
    max-width: 1020px; margin: 0 auto; padding: 0 24px;
  }
  .plans-header {
    text-align: center; margin-bottom: 72px;
  }
  .plans-header .section-desc {
    margin-left: auto; margin-right: auto;
  }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: 20px; overflow: hidden;
  }
  .plan-card {
    background: #0d0d0d;
    padding: 44px 36px;
    display: flex; flex-direction: column;
    transition: background 0.35s;
  }
  .plan-card:hover { background: #111; }
  .plan-card.featured {
    background: #0f1620;
    position: relative;
  }
  .plan-card.featured::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--blue-light) 50%, transparent 90%);
  }
  .plan-card.featured:hover { background: #121d2e; }
  .plan-badge {
    display: inline-block;
    background: var(--blue); color: #fff;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.02em;
    padding: 4px 10px; border-radius: 980px;
    margin-bottom: 20px; width: fit-content;
  }
  .plan-name {
    font-size: 28px; font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  .plan-tagline {
    font-size: 14px; color: var(--text-tertiary);
    margin-bottom: 28px;
  }
  .plan-price {
    font-size: 48px; font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
  }
  .plan-price .unit {
    font-size: 18px; font-weight: 400;
    color: var(--text-tertiary);
  }
  .plan-period {
    font-size: 12px; color: var(--text-tertiary);
    margin-top: 4px; margin-bottom: 28px;
  }
  .plan-divider {
    border: none; border-top: 0.5px solid var(--border);
    margin: 0 0 24px;
  }
  .plan-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 36px; flex: 1;
  }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.45; letter-spacing: -0.006em;
  }
  .plan-features li svg {
    width: 16px; height: 16px; flex-shrink: 0;
    margin-top: 1px; color: var(--green);
  }
  .plan-btn {
    display: block; width: 100%;
    padding: 12px; border-radius: 980px;
    font-size: 15px; font-weight: 400;
    cursor: pointer; font-family: inherit;
    transition: all 0.3s; text-decoration: none;
    text-align: center; letter-spacing: -0.01em;
  }
  .plan-btn-fill {
    background: var(--blue); color: #fff; border: none;
  }
  .plan-btn-fill:hover { background: var(--blue-hover); }
  .plan-btn-ghost {
    background: transparent;
    color: var(--blue-light);
    border: 0.5px solid rgba(41,151,255,0.3);
  }
  .plan-btn-ghost:hover {
    background: rgba(41,151,255,0.06);
    border-color: rgba(41,151,255,0.5);
  }

  /* ─── FAQ ─── */
  .faq {
    padding: 160px 0 140px;
    border-top: 0.5px solid var(--border);
  }
  .faq-inner {
    max-width: 680px; margin: 0 auto; padding: 0 24px;
  }
  .faq-header {
    text-align: center; margin-bottom: 72px;
  }
  .faq-header .section-desc {
    margin-left: auto; margin-right: auto;
  }
  .faq-list {
    display: flex; flex-direction: column;
  }
  .faq-item {
    border-top: 0.5px solid var(--border);
  }
  .faq-item:last-child {
    border-bottom: 0.5px solid var(--border);
  }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 24px 0; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; text-align: left;
    font-family: inherit;
  }
  .faq-question span {
    font-size: 17px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }
  .faq-question svg {
    width: 20px; height: 20px; flex-shrink: 0;
    stroke: var(--text-tertiary);
    transition: transform 0.3s cubic-bezier(.25,.1,.25,1);
  }
  .faq-item.open .faq-question svg {
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.25,.1,.25,1);
  }
  .faq-answer p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.6; letter-spacing: -0.006em;
    padding-bottom: 24px;
    max-width: 600px;
  }

  /* ─── CTA ─── */
  .cta {
    padding: 160px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: ''; position: absolute;
    bottom: 10%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background:
      radial-gradient(ellipse 45% 55% at 40% 50%, rgba(0,113,227,0.1) 0%, transparent 70%),
      radial-gradient(ellipse 35% 45% at 60% 50%, rgba(191,90,242,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-box {
    max-width: 720px; margin: 0 auto;
    position: relative;
  }
  .cta-title {
    font-size: clamp(40px, 5.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 16px;
  }
  .cta-sub {
    font-size: 19px; color: var(--text-secondary);
    line-height: 1.47; letter-spacing: -0.012em;
    margin-bottom: 40px;
  }
  .cta-actions {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
  }

  /* ─── ASK AI ─── */
  .ask-ai {
    padding: 120px 24px;
    text-align: center;
    border-top: 0.5px solid var(--border);
  }
  .ask-ai-inner {
    max-width: 680px; margin: 0 auto;
  }
  .ask-ai-label {
    font-size: 16px; font-weight: 600; color: var(--blue-light);
    letter-spacing: -0.01em; margin-bottom: 16px;
  }
  .ask-ai-title {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
    letter-spacing: -0.04em; line-height: 1.1;
    color: var(--text-primary); margin-bottom: 12px;
  }
  .ask-ai-desc {
    font-size: 17px; color: var(--text-secondary);
    line-height: 1.5; margin-bottom: 48px;
    max-width: 480px; margin-left: auto; margin-right: auto;
  }
  .ask-ai-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .ask-ai-btn {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 28px 16px;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .ask-ai-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }
  .ask-ai-btn img {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 8px;
  }
  .ask-ai-btn img.invert {
    filter: invert(1) brightness(2);
  }
  .ask-ai-btn-name {
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    letter-spacing: -0.01em;
  }
  .ask-ai-btn-sub {
    font-size: 12px; color: var(--text-tertiary);
    margin-top: -4px;
  }
  @media (max-width: 734px) {
    .ask-ai { padding: 80px 20px; }
    .ask-ai-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .ask-ai-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ask-ai-btn { padding: 20px 12px; }
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 44px max(24px, env(safe-area-inset-left)) 32px;
    background: rgba(0,0,0,0.6);
  }
  .footer-inner {
    max-width: 980px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--text-primary); margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .footer-logo .nav-mark {
    width: 72px; height: 72px; border-radius: 14px;
  }
  .footer-tagline {
    font-size: 12px; color: var(--text-tertiary);
    line-height: 1.6; max-width: 220px;
  }
  .footer-col-title {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-tertiary);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col a {
    font-size: 12px; color: var(--text-secondary);
    text-decoration: none; transition: color 0.25s;
  }
  .footer-col a:hover { color: var(--text-primary); }
  .footer-bottom {
    max-width: 980px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px;
    border-top: 0.5px solid var(--border);
  }
  .footer-copy { font-size: 11px; color: var(--text-tertiary); }
  .footer-partner { font-size: 11px; color: var(--text-tertiary); margin-top: 8px; }
  .footer-partner a { color: var(--text-tertiary); text-decoration: none; transition: color 0.2s; }
  .footer-partner a:hover { color: var(--text-primary); }
  .footer-legal { display: flex; gap: 16px; }
  .footer-legal a {
    font-size: 11px; color: var(--text-tertiary);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--text-secondary); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(.25,.1,.25,1), transform 0.8s cubic-bezier(.25,.1,.25,1);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(.25,.1,.25,1), transform 0.7s cubic-bezier(.25,.1,.25,1);
  }
  .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }

  /* ─── ANIMATIONS ─── */

  /* Floating service icons */
  .service-icon img {
    animation: iconFloat 4s ease-in-out infinite;
  }
  .service-card:nth-child(1) .service-icon img { animation-delay: 0s; }
  .service-card:nth-child(2) .service-icon img { animation-delay: 0.5s; }
  .service-card:nth-child(3) .service-icon img { animation-delay: 1s; }
  @keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Floating differentiator icons */
  .diff-icon img {
    animation: iconFloat 5s ease-in-out infinite;
  }
  .diff-item:nth-child(1) .diff-icon img { animation-delay: 0.2s; }
  .diff-item:nth-child(2) .diff-icon img { animation-delay: 0.7s; }
  .diff-item:nth-child(3) .diff-icon img { animation-delay: 1.2s; }

  /* Stat counter glow on reveal */
  .stat-val {
    transition: text-shadow 0.6s ease;
  }
  .stats-inner.visible .stat-val {
    text-shadow: 0 0 40px rgba(41,151,255,0.15);
  }

  /* Gradient shimmer on featured plan */
  .plan-card.featured {
    position: relative;
    overflow: hidden;
  }
  .plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: planShimmer 4s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes planShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
  }

  /* CTA button glow pulse */
  .cta .btn-primary {
    animation: ctaGlow 3s ease-in-out infinite;
  }
  @keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,113,227,0); }
    50% { box-shadow: 0 0 32px 4px rgba(0,113,227,0.25); }
  }

  /* Security graphic breathing */
  .shield-visual img {
    animation: securityBreathe 6s ease-in-out infinite;
  }
  @keyframes securityBreathe {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.02); filter: brightness(1.08); }
  }

  /* Section heading reveal with scale */
  .section-heading {
    transition: opacity 0.8s cubic-bezier(.25,.1,.25,1), transform 0.8s cubic-bezier(.25,.1,.25,1);
  }
  .reveal.visible .section-heading {
    animation: headingReveal 0.9s cubic-bezier(.25,.1,.25,1) both;
  }
  @keyframes headingReveal {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Process step hover — lift + glow */
  .process-step {
    transition: transform 0.4s cubic-bezier(.25,.1,.25,1);
    border-radius: 12px;
  }
  .process-step:hover {
    transform: translateX(8px);
  }
  .process-step:hover .step-num {
    filter: drop-shadow(0 0 20px rgba(245,245,247,0.1));
  }

  /* FAQ item open animation */
  .faq-item {
    transition: background 0.3s ease;
  }
  .faq-item.open {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    margin: 0 -12px;
    padding: 0 12px;
  }

  /* Nav logo subtle hover */
  .nav-logo:hover .nav-mark img {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(.25,.1,.25,1);
  }

  /* Footer link underline animation */
  .footer-col a {
    position: relative;
  }
  .footer-col a::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0; width: 0; height: 0.5px;
    background: var(--text-secondary);
    transition: width 0.3s cubic-bezier(.25,.1,.25,1);
  }
  .footer-col a:hover::after { width: 100%; }

  /* Hero graphic parallax float */
  .hero-graphic img {
    animation: heroFloat 8s ease-in-out infinite;
  }
  @keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* Eyebrow dot glow */
  .hero-eyebrow .dot {
    box-shadow: 0 0 8px rgba(41,151,255,0.4);
  }

  /* Plan card hover lift */
  .plan-card {
    transition: transform 0.4s cubic-bezier(.25,.1,.25,1), box-shadow 0.4s ease;
  }
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  }

  /* Pillar icon hover */
  .pillar {
    transition: transform 0.3s ease;
  }
  .pillar:hover {
    transform: translateY(-3px);
  }
  .pillar-icon svg {
    transition: stroke 0.3s ease, filter 0.3s ease;
  }
  .pillar:hover .pillar-icon svg {
    stroke: var(--blue-light);
    filter: drop-shadow(0 0 8px rgba(41,151,255,0.3));
  }

  /* ─── RESPONSIVE ─── */

  /* Tablet: 735–1024px */
  @media (max-width: 1024px) {
    .hero { padding: 120px 24px 80px; }
    .hero-graphic { max-width: 600px; }
    .plans-grid { gap: 16px; }
    .section-heading { font-size: clamp(36px, 5vw, 56px); }
  }

  /* Mobile: ≤734px (Apple's standard breakpoint) */
  @media (max-width: 734px) {
    /* Nav */
    nav { padding: 0 16px; height: 52px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-menu-btn { display: flex; }
    .nav-mark { width: 44px; height: 44px; border-radius: 10px; }
    .nav-logo { font-size: 14px; gap: 6px; }

    /* Mobile menu */
    .mobile-menu { top: 52px; padding: 0 24px; padding-bottom: env(safe-area-inset-bottom); }
    .mobile-menu a { font-size: 24px; padding: 14px 0; }

    /* Hero */
    .hero {
      min-height: auto;
      padding: 100px 20px 60px;
      justify-content: flex-start;
    }
    .hero-title { font-size: clamp(40px, 11vw, 56px); line-height: 1.02; }
    .hero-sub { font-size: 16px; margin: 20px auto 32px; max-width: 400px; }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
      width: 100%; max-width: 320px;
      justify-content: center;
      padding: 14px 28px;
      font-size: 16px;
    }
    .hero-graphic { margin-top: 40px; max-width: 100%; }
    .hero-scroll-hint { display: none; }
    .hero-eyebrow { font-size: 13px; margin-bottom: 16px; }

    /* Stats */
    .stats { padding: 40px 0; }
    .stats-inner {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 24px; column-gap: 0;
    }
    .stat { padding: 0 12px; }
    .stat:nth-child(2)::after { display: none; }
    .stat-val { font-size: clamp(28px, 7vw, 36px); }
    .stat-label { font-size: 11px; }

    /* Sections */
    .services, .security, .process, .plans, .faq {
      padding: 80px 0 60px;
    }
    .services-inner, .process-inner, .plans-inner, .faq-inner {
      padding: 0 20px;
    }
    .section-label { font-size: 14px; }
    .section-heading { font-size: clamp(32px, 8vw, 44px); }
    .section-desc { font-size: 16px; max-width: 100%; }
    .services-header, .process-header, .plans-header, .faq-header {
      margin-bottom: 48px;
    }

    /* Services grid */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 32px 20px; }
    .service-icon { width: 56px; height: 56px; margin-bottom: 16px; }
    .service-name { font-size: 18px; }
    .service-desc { font-size: 14px; }

    /* Differentiators */
    .diff-band { padding: 60px 0; }
    .diff-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 100%; padding: 0 20px;
    }
    .diff-icon { width: 56px; height: 56px; }
    .diff-title { font-size: 16px; }
    .diff-desc { font-size: 13px; max-width: 100%; }

    /* Security */
    .security-inner {
      grid-template-columns: 1fr;
      gap: 40px; padding: 0 20px;
    }
    .shield-visual { height: 240px; }
    .shield-visual img { object-fit: contain; }
    .security-content .section-heading { font-size: clamp(28px, 7vw, 40px); }
    .security-pillars { grid-template-columns: 1fr 1fr; gap: 20px; }
    .pillar-icon { width: 36px; height: 36px; }
    .pillar-name { font-size: 13px; }
    .pillar-desc { font-size: 12px; }

    /* Process */
    .process-steps { max-width: 100%; }
    .process-step {
      grid-template-columns: 64px 1fr;
      gap: 0 20px;
      padding: 36px 0;
    }
    .step-num { font-size: 44px; }
    .step-title { font-size: 18px; }
    .step-desc { font-size: 14px; }

    /* Plans */
    .plans-grid { grid-template-columns: 1fr; gap: 16px; }
    .plan-card { padding: 32px 24px; }
    .plan-card.featured { transform: none; }
    .plan-name { font-size: 20px; }
    .plan-price { font-size: clamp(36px, 9vw, 48px); }
    .plan-features li { font-size: 14px; }
    .plan-btn { width: 100%; text-align: center; justify-content: center; }

    /* FAQ */
    .faq-question span { font-size: 16px; }
    .faq-answer p { font-size: 14px; }

    /* CTA */
    .cta { padding: 80px 20px; }
    .cta-title { font-size: clamp(28px, 7vw, 40px); }
    .cta-sub { font-size: 15px; max-width: 100%; }
    .cta-actions { flex-direction: column; align-items: center; width: 100%; }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
      width: 100%; max-width: 320px;
      justify-content: center;
      padding: 14px 28px;
    }

    /* Footer */
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 32px; padding: 0 20px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-logo .nav-mark { width: 48px; height: 48px; border-radius: 10px; }
    .footer-tagline { max-width: 100%; font-size: 13px; }
    .footer-bottom {
      flex-direction: column; gap: 12px;
      align-items: flex-start;
      padding: 20px 20px 0;
    }
    .footer-legal { flex-wrap: wrap; }
    footer { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  }

  /* Small phones: ≤480px */
  @media (max-width: 480px) {
    /* Hero */
    .hero { padding: 88px 16px 48px; }
    .hero-title { font-size: clamp(34px, 10vw, 44px); }
    .hero-sub { font-size: 15px; margin: 16px auto 28px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { max-width: 100%; }

    /* Stats */
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 16px; }
    .stat-val { font-size: clamp(24px, 6vw, 32px); }

    /* Sections */
    .services, .security, .process, .plans, .faq { padding: 64px 0 48px; }
    .services-inner, .process-inner, .plans-inner, .faq-inner { padding: 0 16px; }
    .section-heading { font-size: clamp(28px, 7.5vw, 36px); }
    .services-header, .process-header, .plans-header, .faq-header { margin-bottom: 36px; }

    /* Security */
    .security-inner { padding: 0 16px; }
    .security-pillars { grid-template-columns: 1fr; gap: 16px; }
    .shield-visual { height: 200px; }

    /* Process */
    .process-step {
      grid-template-columns: 48px 1fr;
      gap: 0 14px;
      padding: 28px 0;
    }
    .step-num { font-size: 36px; }
    .step-title { font-size: 16px; }
    .step-desc { font-size: 13px; }

    /* Plans */
    .plan-card { padding: 28px 20px; }

    /* Footer */
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px; padding: 0 16px;
    }
    .footer-brand { grid-column: 1; }
    .diff-grid { padding: 0 16px; }
    .diff-band { padding: 48px 0; }

    /* CTA */
    .cta { padding: 64px 16px; }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary { max-width: 100%; }
  }

  /* Ultra-small: ≤375px (iPhone SE / older devices) */
  @media (max-width: 375px) {
    nav { padding: 0 12px; }
    .nav-mark { width: 36px; height: 36px; border-radius: 8px; }
    .nav-logo { font-size: 13px; }
    .hero { padding: 80px 14px 40px; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 14px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { font-size: 15px; padding: 12px 24px; }
    .section-heading { font-size: 26px; }
    .stats-inner { padding: 0 12px; }
    .stat-val { font-size: 24px; }
    .services-inner, .process-inner, .plans-inner, .faq-inner,
    .security-inner, .diff-grid { padding: 0 14px; }
    .service-card { padding: 24px 16px; }
    .plan-card { padding: 24px 16px; }
    .cta { padding: 48px 14px; }
    .cta-title { font-size: 24px; }
    .faq-question span { font-size: 15px; }
    .mobile-menu a { font-size: 20px; }
    .footer-bottom { padding: 16px 14px 0; }
  }

  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    /* Larger touch targets (min 44px per Apple HIG) */
    .nav-menu-btn { width: 44px; height: 44px; }
    .faq-question { min-height: 48px; }
    .plan-btn { min-height: 48px; }
    .btn-primary, .btn-secondary { min-height: 48px; }
    .footer-col a { padding: 4px 0; min-height: 44px; display: inline-flex; align-items: center; }
    .footer-legal a { padding: 4px 0; min-height: 44px; display: inline-flex; align-items: center; }
    .mobile-menu a { min-height: 48px; display: flex; align-items: center; }

    /* Disable hover effects on touch */
    .btn-primary:hover { transform: none; }
    .btn-secondary:hover svg { transform: none; }
    .service-card:hover { background: var(--surface); }
    .plan-card:hover { background: var(--surface); }

    /* Active states for touch feedback */
    .btn-primary:active { transform: scale(0.97); opacity: 0.8; }
    .btn-secondary:active { opacity: 0.6; }
    .plan-btn:active { transform: scale(0.97); opacity: 0.8; }
    .faq-question:active { opacity: 0.7; }
    .mobile-menu a:active { color: var(--blue-light); }
    .nav-menu-btn:active { opacity: 0.5; }
  }

  /* Landscape phone */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 80px 24px 40px; }
    .hero-graphic { max-width: 50%; margin-top: 24px; }
    .mobile-menu { overflow-y: auto; justify-content: flex-start; padding-top: 32px; }
    .mobile-menu a { font-size: 20px; padding: 10px 0; }
  }

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

  /* Dark mode system preference (already dark, but ensure consistency) */
  @media (prefers-color-scheme: light) {
    /* Keep dark regardless — intentional brand choice */
    :root { color-scheme: dark; }
  }

  /* ─── FLOATING CTA ─── */
  .floating-cta {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 999;
    display: flex; align-items: center; gap: 10px;
    background: var(--blue); color: #fff;
    padding: 14px 24px; border-radius: 980px;
    font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
    text-decoration: none; font-family: inherit;
    box-shadow: 0 4px 24px rgba(0,113,227,0.4), 0 0 0 0.5px rgba(255,255,255,0.1);
    transition: transform 0.3s cubic-bezier(.25,.1,.25,1), box-shadow 0.3s ease, opacity 0.4s ease;
    opacity: 0; pointer-events: none;
    cursor: pointer; border: none;
  }
  .floating-cta.visible { opacity: 1; pointer-events: auto; }
  .floating-cta:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,113,227,0.5), 0 0 0 0.5px rgba(255,255,255,0.15);
  }
  .floating-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
  .floating-cta .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    animation: pulseDot 2s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }
  @media (max-width: 734px) {
    .floating-cta { left: auto; right: 16px; transform: none; bottom: 20px; padding: 12px 20px; font-size: 13px; }
    .floating-cta:hover { transform: translateY(-2px) scale(1.02); }
  }
  @media (max-width: 480px) {
    .floating-cta { bottom: 16px; right: 12px; left: 12px; transform: none; justify-content: center; }
    .floating-cta:hover { transform: translateY(-2px) scale(1.02); }
  }

  /* ─── COOKIE CONSENT ─── */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
    background: rgba(30,30,30,0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 0.5px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(.25,.1,.25,1);
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner-inner {
    max-width: 980px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .cookie-text {
    font-size: 13px; color: var(--text-secondary); line-height: 1.5;
    flex: 1;
  }
  .cookie-text a { color: var(--blue-light); text-decoration: none; }
  .cookie-text a:hover { text-decoration: underline; }
  .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-btn {
    border: none; border-radius: 980px; padding: 8px 20px;
    font-size: 13px; font-weight: 500; cursor: pointer;
    font-family: inherit; transition: all 0.2s ease;
  }
  .cookie-accept {
    background: var(--blue); color: #fff;
  }
  .cookie-accept:hover { background: var(--blue-hover); }
  .cookie-decline {
    background: rgba(255,255,255,0.08); color: var(--text-secondary);
  }
  .cookie-decline:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }
  @media (max-width: 734px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; gap: 16px; }
    .cookie-actions { width: 100%; justify-content: center; }
  }

  /* ─── ROI CALCULATOR ─── */
  .roi-calc {
    padding: 120px 0;
    background: rgba(255,255,255,0.01);
    border-top: 0.5px solid var(--border);
  }
  .roi-inner {
    max-width: 980px; margin: 0 auto; padding: 0 24px;
  }
  .roi-header { text-align: center; margin-bottom: 64px; }
  .roi-header .section-desc { margin-left: auto; margin-right: auto; }
  .roi-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: start;
  }
  .roi-inputs {
    background: var(--surface); border: 0.5px solid var(--border);
    border-radius: 16px; padding: 40px;
  }
  .roi-field { margin-bottom: 28px; }
  .roi-field:last-child { margin-bottom: 0; }
  .roi-label {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 12px; letter-spacing: -0.01em;
  }
  .roi-value {
    font-size: 16px; font-weight: 600; color: var(--text-primary);
    font-variant-numeric: tabular-nums;
  }
  .roi-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.1);
    outline: none; cursor: pointer;
  }
  .roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue); border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer; transition: transform 0.2s ease;
  }
  .roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
  .roi-slider::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue); border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
  }
  .roi-results {
    background: var(--surface); border: 0.5px solid var(--border);
    border-radius: 16px; padding: 40px;
    text-align: center;
  }
  .roi-results-title {
    font-size: 13px; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.05em;
    font-weight: 600; margin-bottom: 32px;
  }
  .roi-big-number {
    font-size: clamp(48px, 6vw, 72px); font-weight: 700;
    letter-spacing: -0.04em; line-height: 1;
    color: var(--green);
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  .roi-big-number.negative { color: #ff453a; }
  .roi-big-label {
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 40px;
  }
  .roi-breakdown {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    text-align: center;
  }
  .roi-breakdown-item { }
  .roi-breakdown-val {
    font-size: 24px; font-weight: 600; color: var(--text-primary);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }
  .roi-breakdown-label {
    font-size: 12px; color: var(--text-tertiary); margin-top: 4px;
  }
  .roi-cta {
    margin-top: 32px; padding-top: 24px;
    border-top: 0.5px solid var(--border);
  }
  .roi-cta a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--blue-light); font-size: 14px; text-decoration: none;
    font-weight: 500; transition: gap 0.2s ease;
  }
  .roi-cta a:hover { gap: 10px; }
  .roi-cta a svg { width: 16px; height: 16px; }
  @media (max-width: 734px) {
    .roi-calc { display: none; }
  }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0,113,227,0.04) 0%, transparent 100%);
    border-top: 0.5px solid var(--border);
  }
  .newsletter-inner {
    max-width: 640px; margin: 0 auto; padding: 0 24px;
    text-align: center;
  }
  .newsletter-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,113,227,0.1); border: 0.5px solid rgba(0,113,227,0.2);
    border-radius: 980px; padding: 6px 16px;
    font-size: 12px; font-weight: 500; color: var(--blue-light);
    margin-bottom: 24px; letter-spacing: 0.02em;
  }
  .newsletter-badge svg { width: 14px; height: 14px; }
  .newsletter-image {
    width: 100%; max-width: 560px; margin: 0 auto 40px;
    border-radius: 16px;
  }
  .newsletter-image img {
    width: 100%; height: auto; display: block;
    border-radius: 16px;
  }
  .newsletter-title {
    font-size: clamp(32px, 4vw, 44px); font-weight: 700;
    letter-spacing: -0.04em; line-height: 1.1;
    color: var(--text-primary); margin-bottom: 16px;
  }
  .newsletter-desc {
    font-size: 17px; color: var(--text-secondary);
    line-height: 1.5; margin-bottom: 40px;
    max-width: 480px; margin-left: auto; margin-right: auto;
  }
  .newsletter-form {
    display: flex; gap: 10px;
    max-width: 480px; margin: 0 auto 16px;
  }
  .newsletter-input {
    flex: 1; padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: 12px; color: var(--text-primary);
    font-size: 15px; font-family: inherit;
    outline: none; transition: border-color 0.2s ease;
  }
  .newsletter-input::placeholder { color: var(--text-tertiary); }
  .newsletter-input:focus { border-color: var(--blue); }
  .newsletter-submit {
    padding: 14px 28px; background: var(--blue); color: #fff;
    border: none; border-radius: 12px;
    font-size: 15px; font-weight: 500; font-family: inherit;
    cursor: pointer; transition: background 0.2s ease;
    white-space: nowrap;
  }
  .newsletter-submit:hover { background: var(--blue-hover); }
  .newsletter-submit:disabled {
    opacity: 0.5; cursor: not-allowed;
  }
  .newsletter-consent {
    font-size: 12px; color: var(--text-tertiary);
    line-height: 1.5; max-width: 400px; margin: 0 auto;
  }
  .newsletter-consent a { color: var(--blue-light); text-decoration: none; }
  .newsletter-consent a:hover { text-decoration: underline; }
  .newsletter-success {
    display: none; padding: 20px;
    background: rgba(48,209,88,0.08);
    border: 0.5px solid rgba(48,209,88,0.2);
    border-radius: 12px; text-align: center;
  }
  .newsletter-success.visible { display: block; }
  .newsletter-success p {
    color: var(--green); font-size: 15px; font-weight: 500; margin: 0 0 4px;
  }
  .newsletter-success span {
    color: var(--text-secondary); font-size: 13px;
  }
  .newsletter-error {
    display: none; margin-top: 12px;
    font-size: 13px; color: #ff453a;
  }
  .newsletter-error.visible { display: block; }
  .newsletter-features {
    display: flex; justify-content: center; gap: 32px;
    margin-top: 48px; flex-wrap: wrap;
  }
  .newsletter-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-tertiary);
  }
  .newsletter-feature svg { width: 16px; height: 16px; color: var(--blue-light); }
  @media (max-width: 734px) {
    .newsletter { padding: 80px 0 60px; }
    .newsletter-inner { padding: 0 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-submit { width: 100%; }
    .newsletter-features { flex-direction: column; align-items: center; gap: 16px; }
  }
  @media (max-width: 480px) {
    .newsletter-inner { padding: 0 16px; }
  }

  /* Print styles */
  @media print {
    nav, .bg-canvas, .hero-scroll-hint, .mobile-menu, .nav-menu-btn, .floating-cta, .cookie-banner { display: none; }
    .hero { min-height: auto; padding: 20px 0; }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
    body { background: #fff; color: #000; }
    .section-heading, .hero-title .line1, .step-title, .plan-name,
    .service-name, .cta-title { color: #000; }
    .hero-title .line2 { -webkit-text-fill-color: #333; }
    a { color: #0071e3; }
  }
