/* ============================================================
       ADA Site Shield — Design Tokens
       Palette: Black / Gold / Red / Blue
       Status: PROVISIONAL — pending Chad's approval
       ============================================================ */
    :root {
      --primary: #2E6FDB;
      --primary-dark: #1A4FA0;
      --primary-light: #4A8AE8;
      --accent: #FFD700;
      --accent-dark: #E6B800;
      --accent-light: #FFE55C;
      --warning: #C8102E;
      --warning-dark: #A00D24;
      --dark: #0A0A0A;
      --dark-2: #141414;
      --dark-3: #1E1E1E;
      --card-bg: #161616;
      --slate: #8A8A8A;
      --light-bg: #141414;
      --light-bg-2: #1E1E1E;
      --white: #FFFFFF;
      --text-dark: #F0F0F0;
      --text-muted: #9A9A9A;
      --border-light: #2A2A2A;
      --border-dark: #333333;
      --radius: 16px;
      --radius-sm: 10px;
      --radius-xs: 6px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
      --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.25);
      --max-width: 1200px;
      --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ============================================================
       Reset & Base
       ============================================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--dark);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover {
      color: var(--primary-dark);
    }

    ul { list-style: none; }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ============================================================
       Accessibility — Skip Link
       ============================================================ */
    .skip-link {
      position: fixed;
      top: -100px;
      left: 0;
      background: var(--accent);
      color: var(--dark);
      padding: 14px 28px;
      font-weight: 700;
      font-size: 15px;
      border-radius: 0 0 var(--radius-xs) 0;
      z-index: 10000;
      transition: top var(--transition);
    }

    .skip-link:focus {
      top: 0;
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }

    /* ============================================================
       Accessibility — Focus States
       ============================================================ */
    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .dark-section :focus-visible {
      outline-color: var(--accent);
    }

    /* ============================================================
       Layout Helpers
       ============================================================ */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 96px 0;
    }

    .section-tight {
      padding: 64px 0;
    }

    .dark-section {
      background: var(--dark-2);
      color: var(--text-dark);
    }

    .dark-section h2,
    .dark-section h3 {
      color: var(--text-dark);
    }

    .dark-section a {
      color: var(--accent);
    }

    .dark-section a:hover {
      color: var(--accent-light);
    }

    .light-section {
      background: var(--dark-2);
    }

    /* ============================================================
       Buttons
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(26, 79, 160, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26, 79, 160, 0.4);
    }

    .btn-accent {
      background: var(--accent);
      color: var(--dark);
      box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }

    .btn-accent:hover {
      background: var(--accent-dark);
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-dark);
      border: 2px solid var(--border-dark);
    }

    .btn-outline:hover {
      background: var(--dark-3);
      color: var(--accent);
      border-color: var(--accent);
    }

    .btn-lg {
      padding: 20px 40px;
      font-size: 18px;
    }

    /* ============================================================
       Header / Navigation — Brand Banner
       ============================================================ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
      border-bottom: 3px solid #FFD700;
      transition: background var(--transition);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 20px;
      color: var(--text-dark);
      letter-spacing: -0.02em;
    }

    .logo:hover {
      color: var(--accent);
    }

    .logo-shield {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #2E6FDB, #0A0A0A);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-shield svg {
      width: 20px;
      height: 20px;
    }

    /* Logo sits on white rounded card inside blue banner */
    .logo-banner-card {
      background: var(--white);
      border-radius: 14px;
      padding: 8px 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      transition: transform var(--transition);
    }

    .logo-banner-card:hover {
      transform: translateY(-1px);
    }

    .logo-banner-card img {
      height: 80px;
      width: auto;
      border-radius: 6px;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      font-size: 15px;
      font-weight: 500;
      transition: color var(--transition);
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a.nav-cta,
    .nav-cta {
      background: var(--accent);
      color: var(--dark) !important;
      padding: 14px 32px;
      border-radius: var(--radius-sm);
      font-weight: 800;
      font-size: 16px;
      box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
      letter-spacing: -0.01em;
    }

    .nav-links a.nav-cta:hover,
    .nav-cta:hover {
      background: var(--accent-dark);
      color: var(--dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      transition: all var(--transition);
      border-radius: 2px;
    }

    /* ============================================================
       Hero Section
       ============================================================ */
    .hero {
      background: var(--dark);
      color: var(--text-dark);
      padding: 140px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -200px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(46, 111, 219, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-content h1 {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.08;
      margin-bottom: 24px;
    }

    .hero-content h1 .highlight {
      background: linear-gradient(135deg, var(--warning), #E8324A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-content .lead {
      font-size: 20px;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.6;
      max-width: 520px;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-badges {
      display: flex;
      gap: 24px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .hero-badge svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* Hero visual — scan card mockup */
    .hero-visual {
      position: relative;
    }

    .hero-visual-3d {
      position: relative;
      z-index: 2;
    }

    .hero-visual-3d img {
      width: 100%;
      max-width: 520px;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 24px 48px rgba(10, 10, 10, 0.18));
      animation: float-3d 6s ease-in-out infinite;
    }

    @keyframes float-3d {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-12px) rotate(1deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-visual-3d img { animation: none; }
    }

    .scan-card {
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 215, 0, 0.06);
    }

    .scan-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .scan-card-header .scan-card-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .scan-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--accent);
      font-weight: 600;
    }

    .scan-status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }

    .score-display {
      text-align: center;
      margin-bottom: 28px;
    }

    .score-number {
      font-size: 72px;
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .score-label {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .scan-bar {
      height: 6px;
      background: var(--light-bg-2);
      border-radius: 3px;
      margin-bottom: 28px;
      overflow: hidden;
    }

    .scan-bar-fill {
      height: 100%;
      width: 98%;
      background: linear-gradient(90deg, var(--accent-dark), var(--accent));
      border-radius: 3px;
    }

    .scan-issues {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .scan-issue {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: var(--dark-3);
      border-radius: var(--radius-xs);
      font-size: 14px;
    }

    .scan-issue-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .scan-issue-icon.warning {
      background: rgba(200, 16, 46, 0.15);
      color: var(--warning);
    }

    .scan-issue-icon.passed {
      background: rgba(255, 215, 0, 0.12);
      color: var(--accent);
    }

    .scan-issue-text {
      color: var(--text-muted);
    }

    .scan-issue-text strong {
      color: var(--accent-light);
    }

    /* Floating accent element */
    .hero-visual::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 80px;
      height: 80px;
      background: var(--accent);
      border-radius: 20px;
      opacity: 0.12;
      z-index: -1;
    }

    .hero-visual::after {
      content: '';
      position: absolute;
      bottom: -16px;
      left: -16px;
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: 16px;
      opacity: 0.12;
      z-index: -1;
    }

    /* ============================================================
       Trust Bar
       ============================================================ */
    .trust-bar {
      background: var(--dark-2);
      border-top: 1px solid var(--border-dark);
      padding: 40px 0;
    }

    .trust-bar .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 600;
    }

    .trust-item svg {
      width: 24px;
      height: 24px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* ============================================================
       Section Headers
       ============================================================ */
    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 64px;
    }

    .section-header h2 {
      font-size: 44px;
      font-weight: 900;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-header p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .dark-section .section-header p {
      color: var(--text-muted);
    }

    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .dark-section .eyebrow {
      color: var(--accent);
    }

    /* ============================================================
       Problem Section — "The Risk"
       ============================================================ */
    .problem-section {
      background: var(--dark-2);
      position: relative;
      overflow: visible;
      border-top: 3px solid var(--warning);
    }

    /* Photo card — modern styled image with gradient overlay */
    .photo-card {
      width: 100%;
      max-width: 560px;
      margin: 0 auto 56px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .photo-card img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }

    .photo-card-wide {
      max-width: 800px;
    }

    .photo-card-wide img {
      height: 420px;
    }

    .photo-card-tall img {
      height: 480px;
    }

    /* Responsive video embed */
    .video-card {
      width: 100%;
      max-width: 800px;
      margin: 0 auto 56px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
    }

    .video-embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000;
      overflow: hidden;
    }

    .video-embed iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-caption {
      background: var(--card-bg);
      padding: 20px 28px 24px;
      text-align: center;
    }

    .video-caption-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: rgba(200, 16, 46, 0.25);
      border: 1px solid rgba(200, 16, 46, 0.5);
      color: var(--warning);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .video-caption-text {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--white);
    }

    .photo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent 10%, rgba(10, 10, 10, 0.95) 90%);
      padding: 60px 28px 24px;
      color: var(--white);
    }

    .photo-overlay-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: rgba(255, 215, 0, 0.2);
      border: 1px solid rgba(255, 215, 0, 0.5);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .photo-overlay-text {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .problem-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-dark);
      transition: all var(--transition);
    }

    .problem-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .problem-card .icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .problem-card .icon-circle svg {
      width: 28px;
      height: 28px;
    }

    .problem-card.card-warning .icon-circle {
      background: rgba(200, 16, 46, 0.15);
      color: var(--warning);
    }

    .problem-card.card-warning .stat-number {
      color: var(--warning);
    }

    .problem-card.card-primary .icon-circle {
      background: rgba(46, 111, 219, 0.15);
      color: var(--primary);
    }

    .problem-card.card-accent .icon-circle {
      background: rgba(255, 215, 0, 0.12);
      color: var(--accent);
    }

    .problem-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .problem-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 900;
      color: var(--accent);
      display: block;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 13px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    /* ============================================================
       Solution / Features Section
       ============================================================ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 40px;
      transition: all var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .feature-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, #2E6FDB, #0D2D6B);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .feature-icon svg {
      width: 28px;
      height: 28px;
      color: var(--white);
    }

    .feature-card h3 {
      font-size: 22px;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .feature-list {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .feature-list li svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* ============================================================
       How It Works Section
       ============================================================ */
    .how-it-works-photo {
      width: 100%;
      max-width: 700px;
      margin: 0 auto 64px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .how-it-works-photo img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 40px 32px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-dark);
    }

    .step-number {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #2E6FDB, #0D2D6B);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 900;
      color: var(--accent);
    }

    .step-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .step-card p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ============================================================
       Benefits / Stats Section
       ============================================================ */
    .benefits {
      background: var(--dark-2);
      position: relative;
      overflow: visible;
    }

    /* Stock photo in Benefits section */
    .benefits-photo {
      width: 100%;
      max-width: 600px;
      margin: 0 auto 48px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .benefits-photo img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 64px;
    }

    .benefit-stat {
      text-align: center;
    }

    .benefit-stat .stat-number {
      color: var(--accent);
      font-size: 48px;
    }

    .benefit-stat .stat-label {
      color: var(--text-muted);
      font-size: 14px;
    }

    .benefits-cta {
      text-align: center;
    }

    .benefits-cta h3 {
      font-size: 32px;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    /* ============================================================
       Pricing Section
       ============================================================ */
    .pricing {
      background: var(--dark-2);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }

    .pricing::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .pricing-card {
      max-width: 520px;
      margin: 0 auto;
      background: var(--card-bg);
      border: 2px solid var(--accent);
      border-radius: var(--radius);
      padding: 56px 48px;
      text-align: center;
      box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 215, 0, 0.08);
      position: relative;
      z-index: 1;
    }

    .pricing-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: rgba(255, 215, 0, 0.15);
      border: 1px solid rgba(255, 215, 0, 0.5);
      color: var(--accent);
      padding: 6px 18px;
      border-radius: 20px;
      margin-bottom: 28px;
    }

    .pricing-price {
      font-size: 72px;
      font-weight: 900;
      line-height: 1;
      color: var(--accent);
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .pricing-price .dollar {
      font-size: 40px;
      vertical-align: top;
      line-height: 1.5;
      margin-right: 2px;
    }

    .pricing-period {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 32px;
    }

    .pricing-features {
      text-align: left;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--text-dark);
    }

    .pricing-features li svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .pricing-discount {
      background: var(--dark-3);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-sm);
      padding: 20px 24px;
      margin-bottom: 32px;
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.6;
    }

    .pricing-discount strong {
      color: var(--accent);
    }

    .pricing-cta {
      display: block;
      width: 100%;
      text-align: center;
    }

    @media (max-width: 640px) {
      .pricing-card {
        padding: 40px 24px;
      }

      .pricing-price {
        font-size: 56px;
      }

      .pricing-price .dollar {
        font-size: 32px;
      }
    }

    /* ============================================================
       CTA Banner with Scan Form
       ============================================================ */
    .cta-banner {
      background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
      border-top: 3px solid #FFD700;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-banner .container {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-banner h2 {
      font-size: 40px;
      color: var(--white);
      margin-bottom: 16px;
    }

    .cta-banner p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 36px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Scan Form */
    .scan-form {
      max-width: 560px;
      margin: 0 auto;
      background: var(--card-bg);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      text-align: left;
    }

    .scan-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .scan-form-group {
      margin-bottom: 16px;
    }

    .scan-form-group:last-child {
      margin-bottom: 0;
    }

    .scan-form label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .scan-form .optional {
      font-weight: 400;
      color: var(--text-muted);
      font-size: 13px;
    }

    .scan-form input[type="text"],
    .scan-form input[type="email"],
    .scan-form input[type="url"],
    .scan-form select {
      width: 100%;
      padding: 14px 16px;
      font-size: 15px;
      font-family: inherit;
      border: 2px solid var(--border-dark);
      border-radius: var(--radius-xs);
      background: var(--dark-2);
      color: var(--text-dark);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .scan-form input:focus,
    .scan-form select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
    }

    .scan-form input::placeholder {
      color: #5A5A5A;
    }

    .scan-form-submit {
      width: 100%;
      padding: 18px;
      font-size: 17px;
      font-weight: 800;
      background: var(--accent);
      color: var(--dark);
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all var(--transition);
      box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }

    .scan-form-submit:hover:not(:disabled) {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    }

    .scan-form-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .scan-form-note {
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 16px;
    }

    .scan-form-disclosure {
      display: none;
      margin-top: 16px;
      padding: 14px 18px;
      background: var(--dark-3);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-xs);
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .scan-form-disclosure.visible {
      display: block;
    }

    @media (max-width: 640px) {
      .scan-form-row {
        grid-template-columns: 1fr;
      }

      .scan-form {
        padding: 28px 20px;
      }
    }

    /* ============================================================
       Footer
       ============================================================ */
    .site-footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.6);
      padding: 64px 0 32px;
      border-top: 2px solid var(--accent);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand .logo {
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 320px;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-col h2 {
      font-size: 14px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 13px;
    }

    .footer-bottom a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom a:hover {
      color: var(--white);
    }

    .accessibility-statement {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      margin-top: 8px;
      max-width: 600px;
      line-height: 1.5;
    }

    .accessibility-statement a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: underline;
    }

    /* ============================================================
       Responsive
       ============================================================ */
    @media (max-width: 968px) {
      .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-content h1 {
        font-size: 40px;
      }

      .hero-content .lead {
        font-size: 18px;
      }

      .hero-visual {
        max-width: 480px;
        margin: 0 auto;
      }

      .section-header h2 {
        font-size: 32px;
      }

      .problem-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 640px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background: #0A0A0A;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 2px solid var(--accent);
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .nav-cta {
        width: 100%;
        text-align: center;
      }

      .hero {
        padding: 128px 0 64px;
      }

      .hero-content h1 {
        font-size: 32px;
      }

      .section {
        padding: 64px 0;
      }

      .section-header h2 {
        font-size: 28px;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .cta-banner h2 {
        font-size: 28px;
      }

      .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ============================================================
       Small Phone Breakpoint (480px)
       ============================================================ */
    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      .hero {
        padding: 112px 0 48px;
      }

      .hero-content h1 {
        font-size: 26px;
      }

      .hero-content .lead {
        font-size: 15px;
      }

      .hero-cta-group {
        flex-direction: column;
        gap: 12px;
      }

      .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-badges {
        gap: 16px;
      }

      .hero-badge {
        font-size: 12px;
      }

      .section {
        padding: 48px 0;
      }

      .section-tight {
        padding: 40px 0;
      }

      .section-header {
        margin-bottom: 40px;
      }

      .section-header h2 {
        font-size: 24px;
      }

      .section-header p {
        font-size: 15px;
      }

      .eyebrow {
        font-size: 11px;
      }

      .btn {
        padding: 12px 24px;
        font-size: 14px;
      }

      .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
      }

      .logo-banner-card img {
        height: 56px;
      }

      .nav-links {
        padding: 16px;
        gap: 16px;
      }

      .nav-links a {
        font-size: 14px;
      }

      .trust-bar .container {
        gap: 20px;
      }

      .trust-item {
        font-size: 13px;
      }

      .scan-card {
        padding: 20px;
      }

      .pricing-card {
        padding: 32px 20px;
      }

      .footer-bottom p {
        font-size: 12px;
      }

      .accessibility-statement {
        font-size: 12px;
      }
    }

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