    /* ── Layout reset ── */
    *, *::before, *::after { box-sizing: border-box; }

    /* ── Hero ── */
    .cvs-hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 140px 40px 80px;
    }
    .cvs-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .cvs-hero-bg .grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,180,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,180,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cvs-hero-bg .hero-glow {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(0,212,180,0.10) 0%, transparent 65%);
    }
    .cvs-hero-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
    .cvs-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,212,180,0.1);
      border: 1px solid rgba(0,212,180,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .cvs-headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(30px, 4.5vw, 58px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.08;
      margin-bottom: 20px;
    }
    .cvs-headline em {
      font-style: normal;
      background: linear-gradient(90deg, #00D4B4, #0EA5E9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cvs-sub {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 600px;
      margin: 0 auto 52px;
    }

    /* ── TL;DR cards ── */
    .cvs-tldr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 820px;
      margin: 0 auto 28px;
      text-align: left;
    }
    .cvs-tldr-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
    }
    .cvs-tldr-vendor {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
    }
    .cvs-tldr-category {
      font-size: 12px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .cvs-tldr-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .cvs-tldr-bullets li {
      font-size: 13.5px;
      color: var(--text-muted);
      padding-left: 18px;
      position: relative;
      line-height: 1.45;
    }
    .cvs-tldr-bullets li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    /* ── Comparison table section ── */
    .cvs-table-section {
      padding: 80px 40px;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
    }
    .cvs-table-inner {
      max-width: 920px;
      margin: 0 auto;
    }
    .cvs-section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .cvs-section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 40px;
    }
    .cvs-compare-table {
      width: 100%;
      border-collapse: collapse;
    }
    .cvs-compare-table th {
      text-align: left;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--text-dim);
      padding: 0 16px 16px;
      border-bottom: 1px solid var(--border);
    }
    .cvs-compare-table th:first-child { padding-left: 0; width: 24%; }
    .cvs-compare-table td {
      padding: 18px 16px;
      font-size: 14px;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      vertical-align: top;
      line-height: 1.5;
    }
    .cvs-compare-table td:first-child {
      padding-left: 0;
      font-weight: 600;
      color: var(--text);
      font-size: 13px;
    }
    .cvs-compare-table tr:last-child td { border-bottom: none; }

    /* ── When to choose sections ── */
    .cvs-when-section {
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }
    .cvs-when-inner {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .cvs-when-block h3 {
      font-family: 'Syne', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 20px;
    }
    .cvs-when-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .cvs-when-list li {
      font-size: 14px;
      color: var(--text-muted);
      padding-left: 22px;
      position: relative;
      line-height: 1.5;
    }
    .cvs-when-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    /* ── Third option / FlowAI section ── */
    .cvs-third-option {
      padding: 80px 40px;
      background: linear-gradient(135deg, rgba(0,212,180,0.05) 0%, rgba(14,165,233,0.03) 100%);
      border-top: 1px solid rgba(0,212,180,0.2);
      border-bottom: 1px solid rgba(0,212,180,0.2);
    }
    .cvs-third-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .cvs-third-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,212,180,0.12);
      border: 1px solid rgba(0,212,180,0.35);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .cvs-third-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .cvs-third-sub {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 680px;
      margin-bottom: 36px;
    }
    .cvs-roi-callout {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 32px;
      margin-bottom: 32px;
      max-width: 700px;
    }
    .cvs-roi-callout p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0 0 20px;
    }
    .cvs-roi-callout p strong {
      color: var(--text);
    }
    .cvs-roi-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }
    .cvs-roi-table th {
      text-align: left;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--text-dim);
      padding: 0 12px 12px;
      border-bottom: 1px solid var(--border);
    }
    .cvs-roi-table th:first-child { padding-left: 0; }
    .cvs-roi-table td {
      padding: 12px 12px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: var(--text-muted);
    }
    .cvs-roi-table td:first-child { padding-left: 0; font-weight: 600; color: var(--text); }
    .cvs-roi-table tr:last-child td { border-bottom: none; }
    .cvs-roi-table .highlight { color: var(--accent); font-weight: 700; }

    .cvs-third-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .cvs-stat {
      text-align: center;
    }
    .cvs-stat-value {
      font-family: 'Syne', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .cvs-stat-label {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 6px;
    }

    /* ── FAQ section ── */
    .cvs-faq-section {
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }
    .cvs-faq-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .cvs-faq-item {
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }
    .cvs-faq-item:last-child { border-bottom: none; }
    .cvs-faq-q {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
    }
    .cvs-faq-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── CTA stack ── */
    .cvs-cta {
      padding: 100px 40px;
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .cvs-cta-inner {
      max-width: 560px;
      margin: 0 auto;
    }
    .cvs-cta h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .cvs-cta p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .cvs-cta-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #00D4B4, #0EA5E9);
      color: #080E1E;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 16px;
      padding: 15px 36px;
      border-radius: 10px;
      text-decoration: none;
      transition: opacity 0.15s, transform 0.15s;
      box-shadow: 0 4px 24px rgba(0,212,180,0.3);
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-secondary {
      display: inline-block;
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 11px 24px;
      transition: border-color 0.15s, color 0.15s;
    }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
    .btn-ghost {
      display: inline-block;
      font-size: 13px;
      color: var(--text-dim);
      text-decoration: none;
    }
    .btn-ghost:hover { color: var(--text-muted); text-decoration: underline; }

    /* ── Related compare links ── */
    .cvs-related {
      padding: 48px 40px;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .cvs-related-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .cvs-related p {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 16px;
    }
    .cvs-related-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .cvs-related-link {
      display: inline-flex;
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px;
      transition: border-color 0.15s, color 0.15s;
    }
    .cvs-related-link:hover { border-color: rgba(0,212,180,0.4); color: var(--accent); }

    @media (max-width: 700px) {
      .cvs-hero { padding: 110px 24px 60px; }
      .cvs-tldr { grid-template-columns: 1fr; }
      .cvs-when-inner { grid-template-columns: 1fr; }
      .cvs-table-section, .cvs-when-section, .cvs-third-option, .cvs-faq-section, .cvs-cta, .cvs-related { padding-left: 24px; padding-right: 24px; }
      .cvs-compare-table { display: block; overflow-x: auto; }
      .cvs-third-stats { justify-content: center; }
    }
