﻿:root {
      --primary-blue: #0B5BE6;
      --dark-blue: #0A1F44;
      --blue-2: #123B78;
      --cookie-brown: #6B3E2E;
      --light-background: #FAF7F3;
      --cream: #F2EDE4;
      --danger: #F82433;
      --text: #1D2433;
      --muted: #8A93A6;
      --success: #16A34A;
      --warning: #D78A2D;
      --line: rgba(10, 31, 68, 0.11);
      --card: rgba(255, 255, 255, 0.82);
      --card-solid: #FFFFFF;
      --shadow-soft: 0 20px 70px rgba(10, 31, 68, 0.10);
      --shadow-card: 0 14px 44px rgba(10, 31, 68, 0.09);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1200px;
      --cookie-src: url("../../../../envidicy_cookie_cropped_q90.webp");
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-variant-numeric: lining-nums tabular-nums;
      font-feature-settings: "lnum" 1, "tnum" 1;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(215, 138, 45, 0.12), transparent 32%),
        radial-gradient(circle at 82% 0%, rgba(11, 91, 230, 0.10), transparent 28%),
        linear-gradient(180deg, var(--light-background) 0%, #F7F2E9 48%, #FBF8F3 100%);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.nav-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    img, svg { display: block; max-width: 100%; }
    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
    .section { position: relative; padding: 92px 0; }
    .section.compact { padding: 64px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 8px 14px;
      border: 1px solid rgba(107, 62, 46, 0.12);
      border-radius: 999px;
      background: rgba(107, 62, 46, 0.07);
      color: var(--cookie-brown);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--warning);
      box-shadow: 0 0 0 5px rgba(215, 138, 45, 0.12);
    }
    h1, h2, h3 {
      margin: 0;
      font-family: 'Manrope', system-ui, sans-serif;
      color: var(--dark-blue);
      letter-spacing: -0.02em;
    }
    h1 { font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; }
    h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.12; }
    h3 { font-size: 20px; line-height: 1.28; }
    p { margin: 0; color: rgba(29, 36, 51, 0.82); line-height: 1.72; }
    .lead { font-size: 19px; line-height: 1.7; max-width: 670px; }
    .muted { color: var(--muted); }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
      align-items: end;
      gap: 36px;
      margin-bottom: 38px;
    }
    .section-head.center {
      display: block;
      text-align: center;
      max-width: 760px;
      margin: 0 auto 42px;
    }
    .section-head.center .eyebrow { margin-bottom: 16px; }
    .section-head h2 { margin-top: 16px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(10, 31, 68, 0.08);
      background: rgba(250, 247, 243, 0.76);
      backdrop-filter: blur(24px);
    }
    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Manrope', system-ui, sans-serif;
      font-size: 19px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--dark-blue);
    }
    .brand-cookie {
      width: 32px;
      height: 32px;
      background: var(--cookie-src) center / contain no-repeat;
      filter: drop-shadow(0 6px 12px rgba(107, 62, 46, 0.20));
      transform: rotate(-10deg);
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 700;
      color: rgba(10, 31, 68, 0.74);
      transition: color .2s ease, transform .2s ease;
    }
    .nav-links a:hover { color: var(--primary-blue); transform: translateY(-1px); }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      cursor: pointer;
      color: var(--dark-blue);
    }
    .menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .nav-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-open .menu-btn span:nth-child(2) { opacity: 0; }
    .nav-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 14px 22px;
      border: 1px solid transparent;
      border-radius: 14px;
      cursor: pointer;
      font-weight: 800;
      line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary-blue), #0645C8);
      color: #fff;
      box-shadow: 0 14px 30px rgba(11, 91, 230, 0.22);
    }
    .btn-primary:hover { box-shadow: 0 18px 42px rgba(11, 91, 230, 0.30); }
    .btn-secondary {
      color: var(--primary-blue);
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(11, 91, 230, 0.22);
      box-shadow: 0 12px 30px rgba(10, 31, 68, 0.06);
    }
    .btn-secondary:hover { background: #fff; border-color: rgba(11, 91, 230, 0.42); }
    .btn-warning {
      color: #fff;
      background: linear-gradient(135deg, #F39B24, var(--warning));
      box-shadow: 0 16px 34px rgba(215, 138, 45, 0.28);
    }
    .play-dot {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(11, 91, 230, 0.10);
    }
    .play-dot::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 2px;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 7px solid currentColor;
    }

    .cookie {
      position: absolute;
      display: block;
      width: var(--size, 120px);
      aspect-ratio: 1 / 1;
      background: var(--cookie-src) center / contain no-repeat;
      pointer-events: none;
      filter: drop-shadow(0 18px 32px rgba(107, 62, 46, 0.19));
      opacity: var(--opacity, .98);
      transform: rotate(var(--rotate, 0deg));
      z-index: 0;
    }
    .cookie.float-a { animation: floatA 5.4s ease-in-out infinite; }
    .cookie.float-b { animation: floatB 6.2s ease-in-out infinite; }
    .cookie.float-c { animation: floatC 5.8s ease-in-out infinite; }
    .cookie.small { --size: 44px; filter: drop-shadow(0 8px 15px rgba(107, 62, 46, 0.16)); }
    .cookie.tiny { --size: 24px; filter: drop-shadow(0 6px 10px rgba(107, 62, 46, 0.13)); opacity: .82; }
    .cookie.crumb { --size: 14px; filter: drop-shadow(0 4px 7px rgba(107, 62, 46, 0.12)); opacity: .72; }
    @keyframes floatA { 0%,100% { transform: translateY(0) rotate(var(--rotate, 0deg)); } 50% { transform: translateY(-14px) rotate(calc(var(--rotate, 0deg) + 4deg)); } }
    @keyframes floatB { 0%,100% { transform: translate3d(0,0,0) rotate(var(--rotate, 0deg)); } 50% { transform: translate3d(8px,-18px,0) rotate(calc(var(--rotate, 0deg) - 5deg)); } }
    @keyframes floatC { 0%,100% { transform: translate3d(0,0,0) rotate(var(--rotate, 0deg)); } 50% { transform: translate3d(-10px,-12px,0) rotate(calc(var(--rotate, 0deg) + 6deg)); } }

    .hero {
      padding: 64px 0 72px;
      min-height: calc(100svh - 78px);
      display: grid;
      align-items: center;
      overflow: hidden;
    }
    .hero .container { position: relative; z-index: 2; }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.08fr);
      align-items: center;
      gap: 50px;
    }
    .hero-copy { position: relative; z-index: 3; }
    .hero-copy .eyebrow { margin-bottom: 22px; }
    .hero h1 { max-width: 760px; }
    .hero-subtitle {
      margin-top: 24px;
      max-width: 560px;
      font-size: 19px;
      color: rgba(29, 36, 51, 0.73);
    }
    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }
    .hero-note {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 26px;
      color: rgba(10, 31, 68, .67);
      font-size: 14px;
      font-weight: 700;
    }
    .hero-note span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-note span::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.10);
    }

    .hero-visual {
      position: relative;
      min-height: 570px;
      display: grid;
      place-items: center;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 58px 0 48px 44px;
      border-radius: 44px;
      background: linear-gradient(135deg, rgba(11, 91, 230, .13), rgba(215, 138, 45, .13));
      filter: blur(4px);
      transform: rotate(-4deg);
    }
    .dashboard {
      position: relative;
      width: min(100%, 720px);
      border: 1px solid rgba(10, 31, 68, .10);
      border-radius: 30px;
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 34px 90px rgba(10, 31, 68, .18);
      overflow: hidden;
      z-index: 2;
    }
    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(10, 31, 68, .08);
      background: linear-gradient(180deg, #fff, #F8FAFF);
    }
    .dash-brand { display: flex; align-items: center; gap: 9px; font-weight: 900; color: var(--dark-blue); }
    .dash-brand .brand-cookie { width: 22px; height: 22px; }
    .dash-search {
      width: 200px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(10, 31, 68, .08);
      background: #F5F7FB;
      color: var(--muted);
      display: flex;
      align-items: center;
      padding: 0 14px;
      font-size: 13px;
    }
    .dash-body { display: grid; grid-template-columns: 76px 1fr; min-height: 410px; }
    .dash-sidebar {
      padding: 18px 12px;
      background: var(--dark-blue);
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }
    .dash-sidebar span {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background: rgba(255,255,255,.10);
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.75);
      font-weight: 900;
      font-size: 15px;
    }
    .dash-sidebar span.active { background: var(--primary-blue); color: #fff; }
    .dash-content { padding: 22px; background: linear-gradient(180deg, #fff, #FAFCFF); }
    .dash-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }
    .dash-head h3 { font-size: 22px; }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(22, 163, 74, .10);
      color: var(--success);
      font-size: 12px;
      font-weight: 900;
    }
    .status-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
    }
    .dash-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }
    .dash-stat {
      padding: 13px;
      min-height: 86px;
      border: 1px solid rgba(10, 31, 68, .08);
      border-radius: 16px;
      background: #fff;
    }
    .dash-stat small { display: block; color: var(--muted); font-size: 11px; margin-bottom: 8px; }
    .dash-stat strong { color: var(--dark-blue); font-size: 18px; letter-spacing: -0.03em; }
    .dash-main-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(180px, .78fr);
      gap: 14px;
      align-items: stretch;
    }
    .table-card, .chart-card, .floating-kpi, .mini-card {
      border: 1px solid rgba(10, 31, 68, .08);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 12px 34px rgba(10, 31, 68, .06);
    }
    .table-card { overflow: hidden; }
    .table-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(10,31,68,.07);
      font-size: 13px;
      font-weight: 900;
      color: var(--dark-blue);
    }
    .dash-table { width: 100%; border-collapse: collapse; font-size: 12px; }
    .dash-table th, .dash-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(10,31,68,.06); white-space: nowrap; }
    .dash-table th { color: var(--muted); font-weight: 800; font-size: 11px; }
    .dash-table tr:last-child td { border-bottom: 0; }
    .platform { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--dark-blue); }
    .platform i { width: 20px; height: 20px; border-radius: 7px; background: rgba(11, 91, 230, .12); display: block; }
    .tag { display: inline-flex; padding: 5px 8px; border-radius: 999px; font-size: 11px; font-weight: 900; }
    .tag.green { color: var(--success); background: rgba(22,163,74,.10); }
    .tag.orange { color: var(--warning); background: rgba(215,138,45,.12); }
    .chart-card { padding: 16px; display: grid; align-content: space-between; gap: 16px; }
    .chart-card h4 { margin: 0; color: var(--dark-blue); font-size: 14px; }
    .bars { display: flex; align-items: end; gap: 9px; height: 118px; padding-top: 12px; }
    .bars span { flex: 1; min-width: 18px; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, rgba(11,91,230,.88), rgba(11,91,230,.35)); }
    .bars span:nth-child(2) { height: 52%; background: linear-gradient(180deg, rgba(22,163,74,.86), rgba(22,163,74,.30)); }
    .bars span:nth-child(3) { height: 84%; }
    .bars span:nth-child(4) { height: 66%; background: linear-gradient(180deg, rgba(215,138,45,.86), rgba(215,138,45,.32)); }
    .bars span:nth-child(5) { height: 92%; }
    .bars span:nth-child(1) { height: 38%; }
    .dashboard .floating-kpi {
      position: absolute;
      right: -22px;
      bottom: -24px;
      width: 222px;
      padding: 16px;
      z-index: 3;
    }
    .floating-kpi small { color: var(--muted); font-weight: 800; }
    .floating-kpi strong { display: block; margin: 8px 0; font-family: 'Manrope', system-ui, sans-serif; font-size: 27px; color: var(--success); letter-spacing: -0.04em; }
    .kpi-progress { height: 9px; border-radius: 999px; background: #E9EEF7; overflow: hidden; }
    .kpi-progress span { display: block; width: 74%; height: 100%; background: var(--success); border-radius: inherit; }

    .hero-cookie-big { --size: 260px; --rotate: 14deg; top: 38px; right: max(-84px, calc((100vw - var(--container)) / -2)); }
    .hero-cookie-left { --size: 148px; --rotate: -18deg; left: -90px; bottom: 64px; }
    .hero-cookie-small { --size: 72px; --rotate: 20deg; right: 52px; bottom: 64px; z-index: 4; }
    .hero-cookie-tiny-1 { left: 45%; bottom: 34px; }
    .hero-cookie-tiny-2 { left: 50%; bottom: 62px; }
    .hero-cookie-tiny-3 { left: 54%; bottom: 26px; }

    .proof {
      margin-top: -14px;
      padding-bottom: 42px;
    }
    .proof-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(10, 31, 68, .08);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow-card);
      padding: 28px;
    }
    .logo-row {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 14px;
      align-items: center;
      margin-bottom: 24px;
      color: rgba(10, 31, 68, .42);
      font-weight: 900;
      font-size: 14px;
    }
    .logo-row span {
      min-height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(10,31,68,.06);
      border-radius: 14px;
      background: rgba(255,255,255,.68);
    }
    .metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .metric {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 22px;
      border: 1px solid rgba(10, 31, 68, .08);
      border-radius: 22px;
      background: #fff;
    }
    .metric-icon, .feature-icon, .step-icon, .security-icon, .pain-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 16px;
      background: rgba(11,91,230,.10);
      color: var(--primary-blue);
    }
    .metric strong { display: block; font-family: 'Manrope', system-ui, sans-serif; color: var(--dark-blue); font-size: 26px; letter-spacing: -0.05em; line-height: 1; }
    .metric span { display: block; margin-top: 5px; color: rgba(29,36,51,.62); font-weight: 700; }
    .proof-cookie { --size: 98px; --rotate: -20deg; right: -24px; top: -28px; }

    .pain-layout {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 28px;
      align-items: start;
    }
    .intro-card {
      position: sticky;
      top: 104px;
      min-height: 430px;
      padding: 34px;
      border-radius: var(--radius-xl);
      background: var(--dark-blue);
      color: #fff;
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(10,31,68,.24);
    }
    .intro-card h2, .intro-card p { color: #fff; }
    .intro-card p { margin-top: 20px; color: rgba(255,255,255,.72); }
    .intro-card .eyebrow {
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.12);
      color: #fff;
    }
    .intro-card .cookie { --size: 235px; --rotate: 18deg; right: -76px; bottom: -78px; opacity: .90; z-index: 0; }
    .intro-card > *:not(.cookie) { position: relative; z-index: 2; }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .pain-card, .feature-card, .white-card, .security-card, .roi-card {
      position: relative;
      border: 1px solid rgba(10,31,68,.08);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    .pain-card {
      padding: 26px;
      min-height: 222px;
    }
    .pain-card h3 { margin-top: 18px; font-size: 19px; }
    .pain-card p { margin-top: 12px; font-size: 15px; }
    .pain-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: -76px;
      top: -88px;
      background: radial-gradient(circle, rgba(215,138,45,.10), transparent 68%);
    }
    .pain-icon.warning { background: rgba(215,138,45,.12); color: var(--warning); }
    .pain-icon.danger { background: rgba(248,36,51,.10); color: var(--danger); }

    .solutions-wrap {
      position: relative;
      border-radius: 44px;
      padding: 38px;
      background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.50));
      border: 1px solid rgba(10,31,68,.08);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .solution-tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 34px;
    }
    .feature-card {
      min-height: 268px;
      padding: 24px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(11,91,230,.26); background: #fff; }
    .feature-card h3 { margin-top: 18px; font-size: 18px; }
    .feature-card p { margin-top: 12px; font-size: 14px; }
    .feature-icon { border-radius: 15px; }
    .solution-compare {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 22px;
      align-items: center;
    }
    .compare-card {
      padding: 26px;
      min-height: 258px;
      border: 1px solid rgba(10,31,68,.08);
      border-radius: 26px;
      background: #fff;
    }
    .compare-card h3 { font-size: 18px; margin-bottom: 18px; }
    .compare-list { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
    .compare-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(29,36,51,.74); font-weight: 700; line-height: 1.45; }
    .compare-list i {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      margin-top: 1px;
      font-style: normal;
      font-size: 12px;
      font-weight: 900;
    }
    .compare-list .bad i { color: var(--danger); background: rgba(248,36,51,.10); }
    .compare-list .good i { color: var(--success); background: rgba(22,163,74,.10); }
    .vs {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--dark-blue);
      color: #fff;
      font-family: 'Manrope', system-ui, sans-serif;
      font-weight: 900;
      box-shadow: 0 18px 38px rgba(10,31,68,.20);
    }
    .solutions-cookie-1 { --size: 142px; --rotate: 19deg; right: -44px; top: -56px; }
    .solutions-cookie-2 { --size: 82px; --rotate: -16deg; left: 24px; bottom: 28px; opacity: .88; }
    .solutions-crumb-1 { right: 120px; bottom: 28px; }
    .solutions-crumb-2 { right: 82px; bottom: 54px; }
    .solutions-crumb-3 { right: 62px; bottom: 20px; }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    .flow-card, .tax-card, .account-card, .analytics-card, .comparison-card, .faq-card, .cta-card, .footer-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(10,31,68,.08);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow-card);
    }
    .flow-card, .tax-card { padding: 32px; min-height: 274px; }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
      position: relative;
      z-index: 2;
    }
    .flow-steps::before {
      content: "";
      position: absolute;
      left: 9%;
      right: 9%;
      top: 24px;
      height: 2px;
      background: linear-gradient(90deg, rgba(11,91,230,.30), rgba(215,138,45,.36));
      z-index: -1;
    }
    .step { text-align: center; font-size: 13px; font-weight: 900; color: var(--dark-blue); }
    .step-icon { margin: 0 auto 10px; background: #fff; border: 1px solid rgba(11,91,230,.16); }
    .note-pill {
      display: inline-flex;
      margin-top: 24px;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(107,62,46,.07);
      color: var(--cookie-brown);
      font-size: 13px;
      font-weight: 800;
    }
    .flow-cookie { --size: 92px; --rotate: -14deg; right: 18px; bottom: 10px; opacity: .9; }
    .tax-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.68)), radial-gradient(circle at 8% 88%, rgba(215,138,45,.18), transparent 38%);
    }
    .tax-card h2 { font-size: clamp(28px, 3vw, 44px); }
    .tax-card p { margin-top: 16px; max-width: 520px; }
    .tax-cookie { --size: 150px; --rotate: 25deg; right: -38px; top: -32px; }

    .account-grid {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
      gap: 26px;
      align-items: stretch;
    }
    .account-card { padding: 34px; }
    .account-list { display: grid; gap: 18px; margin-top: 28px; padding: 0; list-style: none; }
    .account-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
    .check-dot {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(22,163,74,.10);
      color: var(--success);
      font-weight: 900;
    }
    .account-list strong { display: block; color: var(--dark-blue); margin-bottom: 4px; }
    .account-list span { color: rgba(29,36,51,.66); font-size: 14px; line-height: 1.55; }
    .mini-window {
      border: 1px solid rgba(10,31,68,.08);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow-soft);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }
    .mini-dashboard {
      border: 1px solid rgba(10,31,68,.08);
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .mini-header {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 54px;
      padding: 0 18px;
      border-bottom: 1px solid rgba(10,31,68,.07);
      background: #F7F9FC;
    }
    .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(10,31,68,.20); }
    .mini-content { display: grid; grid-template-columns: 150px 1fr; min-height: 360px; }
    .mini-side { padding: 18px; background: var(--dark-blue); display: grid; align-content: start; gap: 10px; }
    .mini-side span { height: 34px; border-radius: 11px; background: rgba(255,255,255,.11); }
    .mini-side span:first-child { background: var(--primary-blue); }
    .mini-main { padding: 18px; display: grid; gap: 14px; align-content: start; }
    .mini-main .row { display: grid; grid-template-columns: 1.2fr .65fr .65fr .48fr; gap: 10px; align-items: center; }
    .mini-main .row span { height: 34px; border-radius: 11px; background: #F2F5FA; }
    .mini-main .row span:nth-child(1) { background: linear-gradient(90deg, rgba(11,91,230,.14), #F2F5FA); }
    .mini-window-cookie { --size: 132px; --rotate: -18deg; right: -32px; bottom: -38px; z-index: 3; }

    .analytics-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 24px;
    }
    .analytics-card { padding: 32px; }
    .analytics-list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
    .analytics-list li { display: flex; gap: 10px; color: rgba(29,36,51,.70); font-weight: 700; line-height: 1.5; }
    .analytics-list li::before { content: "•"; color: var(--primary-blue); font-weight: 900; }
    .chart-stack { display: grid; gap: 18px; }
    .chart-panel { padding: 22px; min-height: 210px; border: 1px solid rgba(10,31,68,.08); border-radius: 24px; background: #fff; box-shadow: 0 14px 36px rgba(10,31,68,.06); }
    .chart-title { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; font-weight: 900; color: var(--dark-blue); }
    .line-chart {
      width: 100%;
      height: 128px;
    }
    .donut-row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; }
    .donut {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: conic-gradient(var(--primary-blue) 0 56%, var(--success) 56% 78%, var(--warning) 78% 100%);
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(10,31,68,.06);
    }
    .donut::after { content: ""; position: absolute; inset: 27px; border-radius: 50%; background: #fff; }
    .legend { display: grid; gap: 10px; color: rgba(29,36,51,.68); font-size: 14px; font-weight: 700; }
    .legend span { display: flex; align-items: center; gap: 9px; }
    .legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; background: var(--primary-blue); }
    .legend span:nth-child(2) i { background: var(--success); }
    .legend span:nth-child(3) i { background: var(--warning); }
    .analytics-cookie { --size: 118px; --rotate: 20deg; left: -38px; bottom: -30px; }

    .security-wrap {
      position: relative;
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 28px;
      align-items: stretch;
    }
    .security-lead {
      padding: 34px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.70));
      border: 1px solid rgba(10,31,68,.08);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      position: relative;
    }
    .security-lead p { margin-top: 18px; }
    .security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .security-card { padding: 24px; min-height: 190px; }
    .security-card h3 { margin-top: 14px; font-size: 18px; }
    .security-card p { margin-top: 10px; font-size: 14px; }
    .security-cookie { --size: 180px; --rotate: -16deg; right: -62px; bottom: -58px; }

    .comparison-layout {
      display: grid;
      grid-template-columns: minmax(0, .98fr) minmax(360px, .78fr);
      gap: 24px;
      align-items: stretch;
    }
    .comparison-card { padding: 30px; }
    .compare-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 20px; background: #fff; }
    .compare-table th, .compare-table td { padding: 18px 16px; border: 1px solid rgba(10,31,68,.08); text-align: center; }
    .compare-table th:first-child, .compare-table td:first-child { text-align: left; color: rgba(29,36,51,.74); font-weight: 800; }
    .compare-table th { background: #F4F7FC; color: var(--dark-blue); font-family: 'Manrope', system-ui, sans-serif; font-size: 13px; }
    .compare-table th.envidicy { background: var(--primary-blue); color: #fff; }
    .x { color: var(--danger); font-weight: 1000; }
    .check { color: var(--success); font-weight: 1000; }
    .roi-card { padding: 28px; background: rgba(255,255,255,.82); }
    .roi-grid { display: grid; gap: 14px; margin-top: 20px; }
    .roi-box { padding: 17px; border-radius: 18px; background: #fff; border: 1px solid rgba(10,31,68,.08); }
    .roi-box small { color: var(--muted); font-weight: 900; }
    .roi-box strong { display: block; margin-top: 8px; color: var(--dark-blue); }
    .roi-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .roi-metric { padding: 16px; border-radius: 18px; font-weight: 900; color: var(--dark-blue); }
    .roi-metric strong { display: block; font-family: 'Manrope', system-ui, sans-serif; font-size: 31px; letter-spacing: -0.05em; }
    .roi-metric.green { background: rgba(22,163,74,.16); }
    .roi-metric.orange { background: rgba(215,138,45,.18); }
    .comparison-cookie { --size: 110px; --rotate: 18deg; right: -18px; top: -32px; }
    .roi-cookie { --size: 96px; --rotate: -22deg; right: 16px; top: -30px; }

    .faq-cta-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
      gap: 24px;
      align-items: stretch;
    }
    .faq-card { padding: 30px; }
    .faq-list { display: grid; gap: 12px; margin-top: 22px; }
    details {
      border: 1px solid rgba(10,31,68,.08);
      border-radius: 18px;
      background: #fff;
      overflow: hidden;
    }
    summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      cursor: pointer;
      padding: 18px 20px;
      color: var(--dark-blue);
      font-weight: 900;
      list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--primary-blue); font-size: 20px; }
    details[open] summary::after { content: "−"; }
    details p { padding: 0 20px 18px; font-size: 15px; }
    .cta-card {
      padding: 34px;
      color: #fff;
      background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
      box-shadow: 0 30px 80px rgba(10,31,68,.24);
    }
    .cta-card h2, .cta-card p { color: #fff; }
    .cta-card p { color: rgba(255,255,255,.78); margin-top: 12px; }
    .form { margin-top: 24px; display: grid; gap: 12px; position: relative; z-index: 2; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .field {
      width: 100%;
      height: 52px;
      padding: 0 16px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 13px;
      background: rgba(255,255,255,.94);
      color: var(--text);
      outline: none;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    .field:focus { border-color: rgba(255,255,255,.75); box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
    .field::placeholder { color: rgba(29,36,51,.48); }
    .form .btn { width: 100%; border: none; margin-top: 2px; }
    .cta-cookie { --size: 142px; --rotate: 16deg; right: -32px; bottom: -44px; z-index: 1; }
    .faq-cookie { --size: 74px; --rotate: -20deg; left: -20px; bottom: -18px; opacity: .84; }

    .footer { padding: 28px 0 48px; }
    .footer-card { padding: 32px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 2.8fr repeat(3, 0.9fr); gap: 26px; }
    .footer-card h4 { margin: 0 0 14px; color: var(--dark-blue); font-size: 14px; font-family: 'Manrope', system-ui, sans-serif; letter-spacing: -0.03em; }
    .footer-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; color: rgba(29,36,51,.64); font-weight: 700; font-size: 14px; }
    .footer-brand { max-width: 280px; }
    .footer-brand p { margin-top: 12px; font-size: 14px; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 26px;
      margin-top: 26px;
      border-top: 1px solid rgba(10,31,68,.08);
      color: rgba(29,36,51,.54);
      font-size: 13px;
      font-weight: 700;
    }
    .footer-cookie { --size: 86px; --rotate: 22deg; right: -18px; bottom: -22px; }



    .savings-section {
      position: relative;
      overflow: hidden;
      padding-top: 86px;
      padding-bottom: 96px;
    }
    .savings-section::before {
      content: "";
      position: absolute;
      inset: 7% auto auto 50%;
      width: min(720px, 62vw);
      height: 520px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(11,91,230,.12), transparent 68%);
      transform: translateX(-50%);
      pointer-events: none;
    }
    .savings-section::after {
      content: "";
      position: absolute;
      right: -220px;
      bottom: 20px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(215,138,45,.16), transparent 68%);
      pointer-events: none;
    }
    .savings-cookie-1 { --size: 160px; --rotate: 22deg; right: -44px; top: 62px; opacity: .92; }
    .savings-cookie-2 { --size: 88px; --rotate: -18deg; left: 5%; bottom: 84px; opacity: .88; }
    .savings-cookie-3 { --size: 30px; --rotate: 16deg; right: 18%; bottom: 74px; opacity: .72; }
    .savings-board {
      position: relative;
      display: grid;
      grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr);
      gap: 24px;
      align-items: stretch;
      z-index: 2;
    }
    .savings-hero-card {
      position: relative;
      min-height: 520px;
      padding: 38px;
      border-radius: 40px;
      background:
        radial-gradient(circle at 92% 12%, rgba(255,255,255,.20), transparent 28%),
        linear-gradient(135deg, var(--dark-blue), #0B4FC5 58%, var(--primary-blue));
      color: #fff;
      box-shadow: 0 30px 86px rgba(10,31,68,.24);
      overflow: hidden;
    }
    .savings-hero-card::before {
      content: "";
      position: absolute;
      inset: auto -90px -130px auto;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,.10);
    }
    .savings-hero-card .cookie {
      --size: 210px;
      --rotate: -18deg;
      right: -78px;
      bottom: -68px;
      opacity: .94;
      z-index: 1;
    }
    .savings-hero-card > *:not(.cookie) { position: relative; z-index: 2; }
    .savings-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: rgba(255,255,255,.88);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: -0.01em;
    }
    .savings-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--warning);
      box-shadow: 0 0 0 5px rgba(215,138,45,.18);
    }
    .savings-number {
      margin-top: 34px;
      font-family: 'Manrope', system-ui, sans-serif;
      font-size: clamp(50px, 6.2vw, 92px);
      line-height: .92;
      letter-spacing: -0.07em;
      font-weight: 900;
      color: #fff;
    }
    .savings-number span {
      font-size: .45em;
      vertical-align: top;
      margin-right: 8px;
      opacity: .86;
    }
    .savings-period {
      display: inline-flex;
      margin-top: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      color: rgba(255,255,255,.88);
      font-weight: 900;
    }
    .savings-hero-card p {
      margin-top: 26px;
      max-width: 470px;
      color: rgba(255,255,255,.76);
      font-size: 17px;
    }
    .savings-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }
    .savings-pills span {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      font-weight: 900;
      font-size: 14px;
    }
    .savings-side {
      display: grid;
      gap: 18px;
    }
    .savings-calc, .saving-small-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(10,31,68,.08);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow-card);
    }
    .savings-calc { padding: 28px; }
    .calc-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }
    .calc-top h3 { font-size: 22px; }
    .calc-total {
      flex: 0 0 auto;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(248,36,51,.08);
      color: var(--danger);
      font-family: 'Manrope', system-ui, sans-serif;
      font-size: 19px;
      font-weight: 900;
      letter-spacing: -0.05em;
    }
    .salary-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .salary-row {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(10,31,68,.07);
      border-radius: 18px;
      background: #fff;
    }
    .salary-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(11,91,230,.09);
      color: var(--primary-blue);
      font-weight: 900;
    }
    .salary-row strong {
      display: block;
      color: var(--dark-blue);
      font-weight: 900;
      margin-bottom: 2px;
    }
    .salary-row span {
      display: block;
      color: rgba(29,36,51,.60);
      font-size: 13px;
      line-height: 1.45;
    }
    .salary-price {
      font-family: 'Manrope', system-ui, sans-serif;
      color: var(--dark-blue);
      font-weight: 900;
      letter-spacing: -0.05em;
      white-space: nowrap;
    }
    .savings-result {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 14px;
      align-items: center;
      margin-top: 16px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(11,91,230,.08));
      border: 1px solid rgba(22,163,74,.16);
    }
    .savings-result-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: var(--success);
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 16px 30px rgba(22,163,74,.22);
    }
    .savings-result strong { display: block; color: var(--dark-blue); margin-bottom: 4px; }
    .savings-result span { color: rgba(29,36,51,.68); font-size: 14px; line-height: 1.55; }
    .savings-small-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .saving-small-card {
      min-height: 156px;
      padding: 20px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
        radial-gradient(circle at 100% 0%, rgba(215,138,45,.14), transparent 46%);
    }
    .saving-small-card b {
      display: block;
      font-family: 'Manrope', system-ui, sans-serif;
      color: var(--dark-blue);
      font-size: 26px;
      letter-spacing: -0.06em;
      line-height: 1;
      margin-bottom: 12px;
    }
    .saving-small-card span {
      display: block;
      color: rgba(29,36,51,.66);
      font-weight: 700;
      line-height: 1.5;
      font-size: 14px;
    }
    .savings-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 18px 20px;
      border-radius: 22px;
      background: rgba(107,62,46,.07);
      color: rgba(29,36,51,.70);
      font-size: 14px;
      line-height: 1.6;
      border: 1px solid rgba(107,62,46,.10);
    }
    .savings-note::before {
      content: "i";
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: rgba(215,138,45,.18);
      color: var(--cookie-brown);
      font-weight: 900;
      font-style: normal;
    }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    }

    @media (max-width: 1080px) {
      .nav-links {
        position: fixed;
        inset: 78px 16px auto 16px;
        display: grid;
        gap: 2px;
        padding: 16px;
        border: 1px solid rgba(10,31,68,.10);
        border-radius: 24px;
        background: rgba(255,255,255,.96);
        box-shadow: var(--shadow-soft);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
      }
      .nav-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
      .nav-links a { display: block; padding: 14px 12px; border-radius: 14px; }
      .nav-links a:hover { background: rgba(11,91,230,.08); transform: none; }
      .menu-btn { display: block; }
      .hero-grid, .pain-layout, .savings-board, .account-grid, .analytics-grid, .security-wrap, .comparison-layout, .faq-cta-grid, .process-grid { grid-template-columns: 1fr; }
      .hero-visual { min-height: 520px; }
      .section-head { grid-template-columns: 1fr; }
      .intro-card { position: relative; top: 0; min-height: 320px; }
      .solution-tabs { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 28px, var(--container)); }
      .section { padding: 70px 0; }
      .hero { padding: 44px 0 56px; }
      .hero-grid { gap: 30px; }
      .hero-visual { min-height: 420px; }
      .dashboard { border-radius: 24px; }
      .dash-body { grid-template-columns: 58px 1fr; }
      .dash-sidebar { padding: 14px 8px; }
      .dash-sidebar span { width: 34px; height: 34px; }
      .dash-stats { grid-template-columns: repeat(2, 1fr); }
      .dash-main-grid { grid-template-columns: 1fr; }
      .chart-card { display: none; }
      .dashboard .floating-kpi { position: relative; right: auto; bottom: auto; width: auto; margin: 14px 22px 22px; }
      .dash-search { display: none; }
      .logo-row { grid-template-columns: repeat(2, 1fr); }
      .metrics, .pain-grid, .solution-tabs, .flow-steps, .security-grid, .roi-metrics, .savings-small-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
      .savings-hero-card { min-height: auto; padding: 28px; border-radius: 28px; }
      .savings-calc { padding: 22px; }
      .calc-top { display: grid; }
      .calc-total { width: max-content; }
      .salary-row { grid-template-columns: 40px 1fr; }
      .salary-price { grid-column: 2; justify-self: start; }
      .savings-result { grid-template-columns: 1fr; }
      .flow-steps::before { display: none; }
      .solution-compare { grid-template-columns: 1fr; }
      .vs { margin: 0 auto; }
      .mini-content { grid-template-columns: 92px 1fr; }
      .mini-main .row { grid-template-columns: 1fr .6fr; }
      .mini-main .row span:nth-child(3), .mini-main .row span:nth-child(4) { display: none; }
      .compare-table th, .compare-table td { padding: 13px 10px; font-size: 13px; }
      .footer-bottom { flex-direction: column; }
      .header-actions .btn { display: none; }
      .cookie { transform: scale(.74) rotate(var(--rotate,0deg)); }
      .hero-cookie-big { right: -120px; top: 240px; }
      .hero-cookie-left { left: -85px; bottom: 20px; }
      .hero-cookie-small { right: 6px; bottom: 36px; }
    }

    @media (max-width: 480px) {
      h1 { font-size: clamp(34px, 12vw, 44px); }
      .btn { width: 100%; }
      .hero-actions { align-items: stretch; }
      .dash-table th:nth-child(3), .dash-table td:nth-child(3), .dash-table th:nth-child(4), .dash-table td:nth-child(4) { display: none; }
      .dashboard-top { padding: 14px; }
      .dash-content { padding: 15px; }
      .proof-card, .solutions-wrap, .flow-card, .tax-card, .account-card, .analytics-card, .comparison-card, .faq-card, .cta-card, .footer-card, .intro-card, .savings-calc, .savings-hero-card { padding: 22px; border-radius: 24px; }
      .metric { padding: 18px; }
    }
  


/* ==========================
   SEO Landing Page Extension
   ========================== */
html { scroll-behavior: smooth; }
body.seo-page { background: radial-gradient(circle at 12% 0%, rgba(11,91,230,.07), transparent 28%), var(--cream); }
.seo-page .site-header { backdrop-filter: blur(18px); }
.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
}
.seo-hero::before {
  content: "";
  position: absolute;
  inset: -160px auto auto 54%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,91,230,.14), transparent 66%);
  pointer-events: none;
}
.seo-hero-cookie-1 { --size: 250px; --rotate: 18deg; right: -70px; top: 64px; opacity: .95; }
.seo-hero-cookie-2 { --size: 116px; --rotate: -24deg; left: 5%; bottom: 12px; opacity: .86; }
.seo-hero-cookie-3 { --size: 42px; --rotate: 10deg; right: 40%; top: 58px; opacity: .64; }
.seo-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
}
.seo-hero h1 {
  margin-top: 20px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 900;
  color: var(--dark-blue);
  letter-spacing: -0.03em;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.08;
}
.seo-hero h1 .blue { color: var(--primary-blue); }
.seo-hero-subtitle {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(29,36,51,.82);
  font-size: 19px;
  line-height: 1.7;
}
.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.seo-hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(29,36,51,.62);
  font-weight: 800;
}
.seo-hero-note i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(22,163,74,.12);
  color: var(--success);
  font-style: normal;
}
.seo-dashboard {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(10,31,68,.10);
  border-radius: 42px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 28px 80px rgba(10,31,68,.12);
  overflow: hidden;
  padding: 26px;
}
.seo-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(215,138,45,.22), transparent 26%),
    radial-gradient(circle at 16% 88%, rgba(11,91,230,.13), transparent 34%);
  pointer-events: none;
}
.seo-dashboard .cookie { --size: 180px; --rotate: -18deg; right: -58px; top: -60px; opacity: .9; }
.seo-window {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(10,31,68,.10);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.seo-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(10,31,68,.08);
}
.seo-dots { display:flex; gap:7px; }
.seo-dots span { width:9px; height:9px; border-radius:50%; background:rgba(10,31,68,.18); }
.seo-window-title { font-weight: 900; color: var(--dark-blue); }
.seo-window-body { display: grid; grid-template-columns: 180px 1fr; min-height: 358px; }
.seo-sidebar {
  background: linear-gradient(180deg, var(--dark-blue), #0B3D93);
  padding: 18px 14px;
  color: rgba(255,255,255,.82);
}
.seo-menu-item {
  display:flex; align-items:center; gap:10px;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
}
.seo-menu-item.active { background: rgba(255,255,255,.14); color:#fff; }
.seo-menu-dot { width:9px; height:9px; border-radius:50%; background: currentColor; opacity:.72; }
.seo-main-ui { padding: 18px; }
.seo-main-ui h3 { font-size: 18px; margin-bottom: 12px; }
.seo-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.seo-kpi-card {
  border: 1px solid rgba(10,31,68,.08);
  border-radius: 16px;
  padding: 14px;
  background: rgba(250,247,243,.8);
}
.seo-kpi-card small { display:block; color:rgba(29,36,51,.58); font-weight:800; margin-bottom:8px; }
.seo-kpi-card b { color:var(--dark-blue); font-family:'Manrope',system-ui,sans-serif; letter-spacing:-.05em; }
.seo-chart {
  position: relative;
  margin-top: 14px;
  height: 132px;
  border-radius: 18px;
  border: 1px solid rgba(10,31,68,.08);
  background:
    linear-gradient(to top, rgba(10,31,68,.06) 1px, transparent 1px) 0 0/100% 33%,
    linear-gradient(to right, rgba(10,31,68,.05) 1px, transparent 1px) 0 0/20% 100%,
    #fff;
  overflow:hidden;
}
.seo-chart svg { position:absolute; inset:0; width:100%; height:100%; }
.seo-card-row { display:grid; grid-template-columns: 1.1fr .9fr; gap:12px; margin-top:12px; }
.seo-mini-panel {
  border: 1px solid rgba(10,31,68,.08);
  border-radius: 18px;
  padding: 14px;
  background:#fff;
}
.seo-mini-panel strong { color:var(--dark-blue); }
.seo-progress { margin-top:10px; height:9px; background:rgba(10,31,68,.08); border-radius:999px; overflow:hidden; }
.seo-progress span { display:block; height:100%; border-radius:999px; background:linear-gradient(90deg,var(--primary-blue),var(--success)); }
.seo-floating-card {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  width: 250px;
  border: 1px solid rgba(10,31,68,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 56px rgba(10,31,68,.14);
  padding: 18px;
}
.seo-floating-card h4 { font-size: 15px; margin-bottom: 12px; color:var(--dark-blue); }
.seo-param { display:flex; gap:10px; padding:10px 0; border-top:1px solid rgba(10,31,68,.08); }
.seo-param:first-of-type { border-top:0; padding-top:0; }
.seo-param i { width:30px; height:30px; flex:0 0 auto; border-radius:10px; display:grid; place-items:center; background:rgba(11,91,230,.09); font-style:normal; }
.seo-param b { display:block; font-size:13px; color:var(--dark-blue); }
.seo-param span { display:block; font-size:12px; color:rgba(29,36,51,.58); line-height:1.4; }
.seo-proof { padding-top: 36px; }
.seo-stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
.seo-stat-card {
  position:relative;
  min-height: 178px;
  border-radius: 26px;
  padding: 24px;
  color:#fff;
  background: linear-gradient(135deg, var(--primary-blue), #0047C3);
  box-shadow: 0 20px 48px rgba(11,91,230,.22);
  overflow:hidden;
}
.seo-stat-card::after { content:""; position:absolute; right:-36px; bottom:-48px; width:110px; height:110px; border-radius:50%; background:rgba(255,255,255,.12); }
.seo-stat-card b { display:block; font-family:'Manrope',system-ui,sans-serif; font-size: clamp(28px, 3vw, 44px); line-height:1; letter-spacing:-.06em; margin-bottom:18px; }
.seo-stat-card span { color:rgba(255,255,255,.78); font-weight:800; line-height:1.45; }
.logo-wall { margin-top: 34px; border:1px solid rgba(10,31,68,.09); border-radius:28px; background:rgba(255,255,255,.74); box-shadow:var(--shadow-card); overflow:hidden; }
.logo-wall-head { display:flex; align-items:center; gap:12px; padding:22px 24px; border-bottom:1px solid rgba(10,31,68,.08); }
.logo-wall-head .cookie { position:static; --size:34px; --rotate:-10deg; flex:0 0 auto; }
.logo-grid { display:grid; grid-template-columns: repeat(4, 1fr); }
.logo-cell { min-height:82px; display:grid; place-items:center; padding:18px; border-right:1px solid rgba(10,31,68,.08); border-bottom:1px solid rgba(10,31,68,.08); color:rgba(10,31,68,.62); font-family:'Manrope',system-ui,sans-serif; font-weight:800; font-size:16px; text-align:center; }
.logo-cell:nth-child(4n) { border-right:0; }
.logo-cell:nth-last-child(-n+4) { border-bottom:0; }
.seo-ecosystem { position:relative; overflow:hidden; }
.ecosystem-board { display:grid; grid-template-columns: 1fr 340px; gap:24px; align-items:stretch; }
.ecosystem-map { position:relative; min-height:520px; border:1px solid rgba(10,31,68,.09); border-radius:36px; background:rgba(255,255,255,.78); box-shadow:var(--shadow-soft); padding:30px; overflow:hidden; }
.ecosystem-map::before { content:""; position:absolute; inset: 48px 86px 70px 70px; border: 10px solid rgba(11,91,230,.14); border-radius: 80px; }
.ecosystem-map::after { content:"TOP-10"; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:172px; height:172px; border-radius:50%; display:grid; place-items:center; background:radial-gradient(circle,#fff 48%, rgba(255,202,92,.42)); border:8px solid rgba(215,138,45,.34); box-shadow:0 18px 70px rgba(215,138,45,.32); font-family:'Manrope',system-ui,sans-serif; font-size:29px; font-weight:900; color:var(--warning); letter-spacing:-.06em; }
.eco-node { position:absolute; width:255px; border-radius:24px; border:1px solid rgba(10,31,68,.10); background:#fff; box-shadow: 0 18px 48px rgba(10,31,68,.10); padding:18px; }
.eco-node h3 { display:flex; align-items:center; gap:10px; font-size:16px; margin-bottom:12px; color:var(--dark-blue); }
.eco-node p { font-size:13px; color:rgba(29,36,51,.62); line-height:1.55; }
.eco-node .node-icon { width:34px; height:34px; border-radius:12px; display:grid; place-items:center; background:rgba(11,91,230,.10); color:var(--primary-blue); }
.eco-node-1 { left:34px; top:44px; }
.eco-node-2 { right:44px; top:70px; }
.eco-node-3 { left:118px; bottom:50px; }
.eco-params { border:1px solid rgba(10,31,68,.09); border-radius:36px; background:#fff; box-shadow:var(--shadow-card); overflow:hidden; }
.eco-params-head { padding:22px; color:#fff; background:linear-gradient(135deg,var(--primary-blue),#0047C3); font-family:'Manrope',system-ui,sans-serif; font-weight:800; letter-spacing:-.05em; font-size:22px; }
.eco-param-list { padding:20px; display:grid; gap:12px; }
.eco-param-card { display:grid; grid-template-columns:44px 1fr; gap:12px; padding:14px; border-radius:18px; background:var(--light-background); border:1px solid rgba(10,31,68,.07); }
.eco-param-card i { width:44px; height:44px; border-radius:14px; display:grid; place-items:center; background:#fff; color:var(--primary-blue); font-style:normal; font-weight:900; box-shadow:0 8px 22px rgba(10,31,68,.07); }
.eco-param-card b { display:block; color:var(--dark-blue); margin-bottom:4px; }
.eco-param-card span { display:block; color:rgba(29,36,51,.61); font-size:13px; line-height:1.45; }
.seo-check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.check-card { position:relative; overflow:hidden; min-height:180px; border:1px solid rgba(10,31,68,.09); border-radius:26px; background:#fff; box-shadow:var(--shadow-card); padding:26px; }
.check-card::before { content:"✓"; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:rgba(22,163,74,.12); color:var(--success); font-weight:900; margin-bottom:18px; }
.check-card h3 { font-size:24px; color:var(--dark-blue); margin-bottom:12px; }
.check-card p { color:rgba(29,36,51,.66); line-height:1.65; }
.seo-blue-strip { margin-top:22px; border-radius:24px; padding:20px 24px; color:#fff; background:linear-gradient(135deg,var(--primary-blue),#0047C3); box-shadow:0 18px 44px rgba(11,91,230,.18); font-weight:800; text-align:center; }
.link-architecture { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:stretch; }
.cycle-card, .pbn-card { position:relative; border:1px solid rgba(10,31,68,.09); border-radius:36px; background:rgba(255,255,255,.8); box-shadow:var(--shadow-card); padding:28px; overflow:hidden; }
.cycle-card .cookie { --size: 122px; --rotate: -8deg; left:50%; top:50%; transform:translate(-50%,-50%) rotate(var(--rotate)); opacity:.9; }
.cycle-title, .pbn-title { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:24px; }
.cycle-title h3, .pbn-title h3 { font-size:26px; color:var(--dark-blue); }
.cycle-badge { padding:9px 12px; border-radius:999px; background:rgba(11,91,230,.09); color:var(--primary-blue); font-weight:900; }
.cycle-steps { position:relative; z-index:2; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; padding:76px 0 10px; }
.cycle-step { background:#fff; border:1px solid rgba(10,31,68,.09); border-radius:20px; padding:16px; box-shadow:0 10px 26px rgba(10,31,68,.07); }
.cycle-step:nth-child(5) { grid-column:1 / -1; max-width:360px; justify-self:center; }
.cycle-step b { display:block; color:var(--dark-blue); margin-bottom:8px; }
.cycle-step span { display:block; color:rgba(29,36,51,.62); font-size:13px; line-height:1.45; }
.pbn-compare { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.pbn-side { border-radius:24px; padding:18px; background:var(--light-background); border:1px solid rgba(10,31,68,.08); min-height:260px; }
.pbn-side h4 { margin-bottom:18px; font-size:18px; color:var(--dark-blue); }
.pbn-side.bad h4 { color:var(--danger); }
.pbn-side.good { background:linear-gradient(135deg, rgba(22,163,74,.11), rgba(11,91,230,.06)); }
.pbn-network { position:relative; display:grid; gap:12px; }
.pbn-node { display:flex; align-items:center; justify-content:space-between; gap:8px; padding:10px 12px; border-radius:14px; background:#fff; border:1px solid rgba(10,31,68,.08); font-weight:800; color:var(--dark-blue); }
.pbn-node small { color:var(--success); font-weight:900; }
.pbn-side.bad .pbn-node small { color:var(--danger); }
.pbn-target { margin-top:14px; padding:14px; border-radius:16px; background:var(--dark-blue); color:#fff; text-align:center; font-weight:900; }
.pbn-advantages { margin-top:16px; display:grid; gap:10px; }
.pbn-advantages li { list-style:none; display:flex; gap:10px; align-items:flex-start; color:rgba(29,36,51,.66); font-weight:700; }
.pbn-advantages li::before { content:"✓"; color:var(--success); font-weight:900; }
.audit-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.audit-big-card { position:relative; min-height:470px; border:1px solid rgba(10,31,68,.09); border-radius:36px; background:#fff; box-shadow:var(--shadow-card); padding:32px; overflow:hidden; }
.audit-big-card::after { content:""; position:absolute; right:-80px; bottom:-80px; width:220px; height:220px; border-radius:50%; background:radial-gradient(circle, rgba(11,91,230,.14), transparent 66%); }
.audit-icon { height:165px; margin:26px 0; border-radius:26px; display:grid; place-items:center; background:linear-gradient(135deg, rgba(11,91,230,.10), rgba(250,247,243,.9)); color:var(--primary-blue); }
.audit-icon svg { width:116px; height:116px; stroke:currentColor; }
.audit-big-card h3 { font-size:34px; color:var(--dark-blue); }
.audit-result { display:grid; gap:10px; }
.audit-result div { padding:15px; border-radius:18px; background:var(--light-background); border:1px solid rgba(10,31,68,.07); color:rgba(29,36,51,.68); line-height:1.55; }
.audit-result b { color:var(--dark-blue); }
.pricing-grid.seo-pricing { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.seo-price-card { position:relative; min-height:610px; border:1px solid rgba(10,31,68,.09); border-radius:30px; background:#fff; box-shadow:var(--shadow-card); padding:24px; overflow:hidden; display:flex; flex-direction:column; }
.seo-price-card.featured { border-color:rgba(11,91,230,.32); box-shadow:0 24px 70px rgba(11,91,230,.14); transform: translateY(-8px); }
.seo-price-card h3 { font-size:28px; color:var(--dark-blue); margin-bottom:16px; }
.seo-price { font-family:'Manrope',system-ui,sans-serif; font-size:25px; line-height:1.08; letter-spacing:-.07em; color:var(--dark-blue); margin-bottom:4px; }
.old-price { color:rgba(29,36,51,.36); text-decoration:line-through; font-weight:800; margin-bottom:18px; }
.seo-price-card ul { display:grid; gap:11px; margin:18px 0 24px; padding:0; list-style:none; }
.seo-price-card li { display:flex; gap:9px; color:rgba(29,36,51,.68); line-height:1.45; font-weight:700; font-size:14px; }
.seo-price-card li::before { content:"✓"; color:var(--success); font-weight:900; flex:0 0 auto; }
.seo-price-card .btn { margin-top:auto; justify-content:center; }
.seo-price-badge { position:absolute; top:20px; right:20px; padding:8px 10px; border-radius:999px; background:rgba(215,138,45,.13); color:var(--warning); font-weight:900; font-size:12px; }
.timeline-card { position:relative; border:1px solid rgba(10,31,68,.09); border-radius:36px; background:#fff; box-shadow:var(--shadow-card); padding:34px; overflow:hidden; }
.timeline-row { position:relative; display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:18px; }
.timeline-row::before { content:""; position:absolute; left:10%; right:10%; top:74px; height:10px; border-radius:999px; background:linear-gradient(90deg,var(--primary-blue),var(--success)); }
.timeline-step { position:relative; z-index:2; padding-top:34px; }
.timeline-dot { width:34px; height:34px; border-radius:50%; background:#fff; border:10px solid var(--primary-blue); box-shadow:0 0 0 8px rgba(11,91,230,.10); margin-bottom:36px; }
.timeline-step:nth-child(2) .timeline-dot { border-color:var(--success); box-shadow:0 0 0 8px rgba(22,163,74,.12); }
.timeline-box { border:2px solid rgba(22,163,74,.36); border-radius:22px; padding:18px; background:rgba(255,255,255,.96); box-shadow:0 14px 34px rgba(10,31,68,.08); }
.timeline-box b { display:block; color:var(--dark-blue); font-size:22px; margin-bottom:8px; }
.timeline-box span { color:rgba(29,36,51,.62); line-height:1.55; }
.add-services { margin-top:22px; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.add-service-card { border:1px solid rgba(10,31,68,.09); border-radius:24px; background:#fff; box-shadow:var(--shadow-card); padding:22px; min-height:160px; }
.add-service-card h3 { color:var(--dark-blue); margin-bottom:10px; }
.add-service-card p { color:rgba(29,36,51,.62); line-height:1.5; margin-bottom:16px; }
.add-price { display:inline-flex; padding:9px 12px; border-radius:14px; background:rgba(11,91,230,.10); color:var(--dark-blue); font-family:'Manrope',system-ui,sans-serif; font-weight:900; letter-spacing:-.04em; }
.seo-security-grid { display:grid; grid-template-columns: .92fr 1fr .92fr; gap:22px; align-items:stretch; }
.security-list-card, .rnd-card { border:1px solid rgba(10,31,68,.09); border-radius:36px; background:#fff; box-shadow:var(--shadow-card); padding:28px; }
.security-list-card h3, .rnd-card h3 { color:var(--dark-blue); font-size:24px; margin-bottom:20px; }
.security-list { display:grid; gap:14px; }
.security-item { display:grid; grid-template-columns:40px 1fr; gap:12px; align-items:flex-start; }
.security-item i { width:40px; height:40px; border-radius:14px; display:grid; place-items:center; background:rgba(22,163,74,.12); color:var(--success); font-style:normal; }
.security-item span { color:rgba(29,36,51,.65); line-height:1.45; font-weight:700; }
.shield-card { position:relative; min-height:380px; display:grid; place-items:center; border-radius:36px; background:radial-gradient(circle, rgba(22,163,74,.26), transparent 50%); }
.shield { width:220px; height:260px; border-radius: 50% 50% 45% 45% / 34% 34% 62% 62%; clip-path: polygon(50% 0%, 93% 18%, 83% 78%, 50% 100%, 17% 78%, 7% 18%); background:linear-gradient(135deg,#14396F,#16A34A); box-shadow:0 28px 90px rgba(22,163,74,.38); display:grid; place-items:center; color:#fff; }
.shield::before { content:"🔒"; width:104px; height:104px; border-radius:34px; display:grid; place-items:center; background:rgba(255,255,255,.16); font-size:46px; }
.rnd-card { background:linear-gradient(135deg,var(--dark-blue),#102F68); color:#fff; }
.rnd-card h3 { color:#fff; }
.rnd-card p { color:rgba(255,255,255,.72); line-height:1.75; margin-bottom:16px; }
.rnd-card strong { color:#fff; }
.seo-cta { position:relative; padding-bottom:96px; }
.seo-cta-card { position:relative; overflow:hidden; display:grid; grid-template-columns:.95fr 1.05fr; gap:28px; align-items:center; border:1px solid rgba(10,31,68,.09); border-radius:42px; background:#fff; box-shadow:var(--shadow-soft); padding:36px; }
.seo-cta-card::before { content:""; position:absolute; inset:auto -180px -220px auto; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(11,91,230,.14),transparent 70%); }
.seo-cta-visual { position:relative; min-height:430px; border-radius:32px; background:linear-gradient(135deg, rgba(250,247,243,.95), rgba(255,255,255,.86)); display:grid; place-items:center; overflow:hidden; }
.seo-cta-visual .cookie:nth-child(1) { --size:220px; --rotate:22deg; left:-68px; bottom:20px; opacity:.9; }
.seo-cta-visual .cookie:nth-child(2) { --size:125px; --rotate:-12deg; right:12px; top:22px; opacity:.92; }
.seo-cta-visual .cookie:nth-child(3) { --size:74px; --rotate:12deg; right:76px; bottom:22px; opacity:.8; }
.seo-cta-dashboard { position:relative; z-index:2; width:min(420px, 92%); border:1px solid rgba(10,31,68,.10); border-radius:26px; background:#fff; box-shadow:0 24px 70px rgba(10,31,68,.14); padding:18px; }
.seo-cta-dashboard h4 { color:var(--dark-blue); margin-bottom:14px; }
.dashboard-lines { display:grid; gap:10px; }
.dashboard-line { height:12px; border-radius:999px; background:rgba(10,31,68,.08); overflow:hidden; }
.dashboard-line span { display:block; height:100%; border-radius:999px; background:linear-gradient(90deg,var(--primary-blue),var(--success)); }
.seo-cta-copy { position:relative; z-index:2; }
.seo-cta-copy h2 { font-size:clamp(32px,4.2vw,50px); line-height:1.08; letter-spacing:-.03em; color:var(--dark-blue); }
.seo-cta-copy h2 span { color:var(--primary-blue); }
.seo-cta-copy p { margin-top:20px; color:rgba(29,36,51,.82); font-size:19px; line-height:1.7; }
    .seo-contact-card { margin-top:24px; display:flex; flex-wrap:wrap; gap:10px; }
    .seo-contact-card span, .seo-contact-card a { text-decoration:none; padding:14px 16px; border-radius:16px; border:1px solid rgba(10,31,68,.09); background:var(--light-background); color:var(--dark-blue); font-weight:900; }

    .seo-money-v2 {
      position: relative;
      overflow: hidden;
      padding: 92px 0 98px;
    }
    .seo-money-v2::before {
      content: "";
      position: absolute;
      inset: 6% auto auto 50%;
      width: min(820px, 72vw);
      height: 560px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(11, 91, 230, .13), transparent 68%);
      transform: translateX(-50%);
      pointer-events: none;
    }
    .seo-money-v2::after {
      content: "";
      position: absolute;
      right: -260px;
      bottom: -130px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(215, 138, 45, .16), transparent 68%);
      pointer-events: none;
    }
    .seo-money-v2-cookie-1 { --size: 156px; --rotate: 18deg; top: 58px; right: -48px; opacity: .92; }
    .seo-money-v2-cookie-2 { --size: 84px; --rotate: -18deg; left: 4.5%; bottom: 72px; opacity: .86; }
    .seo-money-v2-cookie-3 { --size: 28px; --rotate: 14deg; right: 18%; bottom: 86px; opacity: .72; }
    .seo-money-v2-head {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(300px, .58fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 30px;
    }
    .seo-money-v2-head h2 {
      max-width: 820px;
      margin-top: 14px;
    }
    .seo-money-v2-head p {
      max-width: 540px;
      font-size: 17px;
    }
    .seo-money-v2-board {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(340px, .74fr) minmax(0, 1.26fr);
      gap: 22px;
      align-items: stretch;
    }
    .seo-money-v2-card,
    .seo-money-v2-result,
    .seo-money-v2-scenario,
    .seo-money-v2-cta {
      border: 1px solid rgba(10, 31, 68, .08);
      border-radius: var(--radius-xl, 34px);
      background: rgba(255, 255, 255, .84);
      box-shadow: var(--shadow-card, 0 8px 22px rgba(10, 31, 68, .07));
    }
    .seo-money-v2-card {
      position: relative;
      overflow: hidden;
      min-height: 100%;
      padding: 28px;
    }
    .seo-money-v2-card::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -130px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(215, 138, 45, .16), transparent 68%);
      pointer-events: none;
    }
    .seo-money-v2-card h3 {
      margin: 0 0 18px;
      color: var(--dark-blue, #0A1F44);
      font-size: 22px;
    }
    .seo-money-v2-form {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 14px;
    }
    .seo-money-v2-field {
      display: grid;
      gap: 8px;
      padding: 15px;
      border: 1px solid rgba(10, 31, 68, .075);
      border-radius: 22px;
      background: rgba(255, 255, 255, .82);
    }
    .seo-money-v2-label {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      color: var(--dark-blue, #0A1F44);
      font-size: 14px;
      line-height: 1.25;
      font-weight: 900;
    }
    .seo-money-v2-label span {
      color: rgba(29, 36, 51, .48);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }
    .seo-money-v2-input,
    .seo-money-v2-select {
      width: 100%;
      height: 52px;
      padding: 0 15px;
      border: 1px solid rgba(10, 31, 68, .11);
      border-radius: 16px;
      background: #fff;
      color: var(--text, #1D2433);
      outline: none;
      font-weight: 900;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .seo-money-v2-input:focus,
    .seo-money-v2-select:focus {
      border-color: rgba(11, 91, 230, .44);
      box-shadow: 0 0 0 4px rgba(11, 91, 230, .10);
      background: #fff;
    }
    .seo-money-v2-help {
      display: block;
      color: rgba(29, 36, 51, .55);
      font-size: 12.5px;
      font-weight: 800;
      line-height: 1.42;
    }
    .seo-money-v2-right { display: grid; gap: 16px; }
    .seo-money-v2-results {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .seo-money-v2-result {
      position: relative;
      overflow: hidden;
      min-height: 182px;
      padding: 22px;
      display: grid;
      align-content: space-between;
      gap: 18px;
    }
    .seo-money-v2-result::before {
      content: "";
      position: absolute;
      right: -72px;
      top: -84px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 91, 230, .12), transparent 68%);
    }
    .seo-money-v2-result.is-main {
      background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, var(--dark-blue, #0A1F44), var(--primary-blue, #0B5BE6));
      color: #fff;
      box-shadow: 0 28px 76px rgba(10, 31, 68, .22);
    }
    .seo-money-v2-result.is-green::before { background: radial-gradient(circle, rgba(22, 163, 74, .14), transparent 68%); }
    .seo-money-v2-result.is-orange::before { background: radial-gradient(circle, rgba(215, 138, 45, .16), transparent 68%); }
    .seo-money-v2-result-label,
    .seo-money-v2-result-value,
    .seo-money-v2-result-note {
      position: relative;
      z-index: 2;
    }
    .seo-money-v2-result-label {
      color: rgba(29, 36, 51, .62);
      font-size: 13px;
      font-weight: 900;
      line-height: 1.35;
    }
    .seo-money-v2-result.is-main .seo-money-v2-result-label { color: rgba(255,255,255,.78); }
    .seo-money-v2-result-value {
      margin-top: 14px;
      color: var(--dark-blue, #0A1F44);
      font-family: 'Manrope', system-ui, sans-serif;
      font-size: clamp(26px, 2.45vw, 38px);
      line-height: .94;
      letter-spacing: -0.065em;
      font-weight: 700;
    }
    .seo-money-v2-result.is-main .seo-money-v2-result-value { color: #fff; }
    .seo-money-v2-result-note {
      color: rgba(29, 36, 51, .56);
      font-size: 12.5px;
      font-weight: 800;
      line-height: 1.4;
    }
    .seo-money-v2-result.is-main .seo-money-v2-result-note { color: rgba(255,255,255,.72); }
    .seo-money-v2-scenarios {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .seo-money-v2-scenario {
      min-height: 154px;
      padding: 20px;
      display: grid;
      align-content: space-between;
      gap: 14px;
      background: rgba(255, 255, 255, .76);
    }
    .seo-money-v2-scenario.is-active {
      background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, var(--dark-blue, #0A1F44), var(--primary-blue, #0B5BE6));
      color: #fff;
      box-shadow: 0 28px 76px rgba(10, 31, 68, .20);
    }
    .seo-money-v2-scenario h4 {
      margin: 0;
      color: var(--dark-blue, #0A1F44);
      font-size: 16px;
      line-height: 1.2;
    }
    .seo-money-v2-scenario.is-active h4 { color: #fff; }
    .seo-money-v2-scenario p {
      margin-top: 8px;
      color: rgba(29, 36, 51, .60);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.42;
    }
    .seo-money-v2-scenario.is-active p { color: rgba(255,255,255,.75); }
    .seo-money-v2-scenario b {
      display: inline-grid;
      gap: 4px;
      color: var(--dark-blue, #0A1F44);
      font-family: 'Manrope', system-ui, sans-serif;
      font-size: 25px;
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 700;
    }
    .seo-money-v2-scenario-unit {
      display: block;
      font-size: 13px;
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: rgba(10, 31, 68, .64);
    }
    .seo-money-v2-scenario.is-active b { color: #fff; }
    .seo-money-v2-scenario.is-active .seo-money-v2-scenario-unit { color: rgba(255,255,255,.76); }
    .seo-money-v2-cta {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 24px;
      background:
        radial-gradient(circle at 100% 0%, rgba(215, 138, 45, .18), transparent 34%),
        rgba(255, 255, 255, .86);
    }
    .seo-money-v2-cta h3 {
      margin: 0 0 6px;
      color: var(--dark-blue, #0A1F44);
    }
    .seo-money-v2-cta p {
      margin: 0;
      color: rgba(29, 36, 51, .66);
      font-size: 14px;
    }
    .seo-money-v2-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      min-width: 292px;
      padding: 15px 22px;
      border-radius: 16px;
      background: linear-gradient(135deg, #19B66A, #0C9E55);
      color: #fff;
      font-weight: 900;
      line-height: 1;
      text-align: center;
      box-shadow: 0 16px 34px rgba(22, 163, 74, .24);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .seo-money-v2-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(22, 163, 74, .30);
    }
    .seo-money-v2-mini-note {
      margin-top: 10px;
      color: rgba(29, 36, 51, .48);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.45;
    }
    .seo-money-v2-disclaimer {
      margin-top: 10px;
      color: rgba(29, 36, 51, .46);
      font-size: 11.5px;
      line-height: 1.45;
      font-weight: 700;
    }
    @media (max-width: 1080px) {
      .seo-money-v2-head,
      .seo-money-v2-board {
        grid-template-columns: 1fr;
      }
      .seo-money-v2-results,
      .seo-money-v2-scenarios {
        grid-template-columns: 1fr;
      }
      .seo-money-v2-cta {
        grid-template-columns: 1fr;
      }
      .seo-money-v2-btn {
        width: 100%;
        min-width: 0;
      }
    }
    @media (max-width: 620px) {
      .seo-money-v2 {
        padding: 64px 0 72px;
      }
      .seo-money-v2-card,
      .seo-money-v2-result,
      .seo-money-v2-scenario,
      .seo-money-v2-cta {
        border-radius: 24px;
      }
      .seo-money-v2-card,
      .seo-money-v2-cta {
        padding: 22px;
      }
      .seo-money-v2-field {
        padding: 14px;
        border-radius: 18px;
      }
      .seo-money-v2-label {
        display: grid;
        gap: 2px;
      }
    }

    @media (max-width: 1120px) {
  .seo-hero-grid, .ecosystem-board, .link-architecture, .seo-cta-card { grid-template-columns: 1fr; }
  .seo-dashboard { min-height:auto; }
  .pricing-grid.seo-pricing { grid-template-columns: repeat(2, 1fr); }
  .seo-security-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .seo-hero { padding-top: 46px; }
  .seo-hero-grid { gap: 28px; }
  .seo-dashboard { padding: 16px; border-radius:28px; }
  .seo-window-body { grid-template-columns:1fr; }
  .seo-sidebar { display:none; }
  .seo-kpi-grid, .seo-card-row, .seo-stats-grid, .seo-check-grid, .pbn-compare, .audit-cards, .pricing-grid.seo-pricing, .timeline-row, .add-services, .logo-grid { grid-template-columns:1fr; }
  .seo-floating-card { position:relative; width:auto; right:auto; bottom:auto; margin-top:14px; }
  .ecosystem-map { min-height:760px; padding:20px; }
  .ecosystem-map::before, .ecosystem-map::after { display:none; }
  .eco-node { position:relative; width:auto; left:auto; right:auto; top:auto; bottom:auto; margin-bottom:14px; }
  .cycle-steps { grid-template-columns:1fr; padding-top:18px; }
  .cycle-card .cookie { display:none; }
  .timeline-row::before { display:none; }
  .seo-cta-card { padding:20px; border-radius:30px; }
}








