    /* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — PSD Place-inspired clean typography
   ═══════════════════════════════════════════════════════════════ */
    :root {
      /* Neutrals */
      --bg: #FAFAFA;
      --bg-raised: #FFFFFF;
      --bg-sunken: #F3F4F6;
      --ink: #111827;
      --ink-secondary: #374151;
      --ink-muted: #6B7280;
      --ink-faint: #9CA3AF;
      --border: #E5E7EB;
      --border-subtle: #F3F4F6;

      /* Brand — warm amber/saffron */
      --brand: #F59E0B;
      --brand-deep: #D97706;
      --brand-light: #FEF3C7;
      --brand-surface: #FFFBEB;

      /* Accent — deep teal */
      --accent: #0D9488;
      --accent-light: #CCFBF1;
      --accent-surface: #F0FDFA;

      /* Semantic */
      --success: #059669;
      --success-surface: #ECFDF5;
      --info: #3B82F6;
      --info-surface: #EFF6FF;

      /* Depths */
      --shadow-xs: 0 1px 2px rgba(0, 0, 0, .04);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .06), 0 2px 4px -2px rgba(0, 0, 0, .04);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .06), 0 4px 6px -4px rgba(0, 0, 0, .04);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .06), 0 8px 10px -6px rgba(0, 0, 0, .04);

      /* Radius */
      --r-sm: 6px;
      --r-md: 10px;
      --r-lg: 14px;
      --r-xl: 20px;
      --r-full: 9999px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
      }
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 14px;
      line-height: 1.6;
      color: var(--ink-secondary);
      background: var(--bg);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'DM Sans', 'Inter', sans-serif;
      color: var(--ink);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .mono {
      font-family: 'JetBrains Mono', monospace;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── LABEL / OVERLINE ─── */
    .label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-light);
      padding: 4px 10px;
      border-radius: var(--r-full);
    }

    .label--brand {
      color: var(--brand-deep);
      background: var(--brand-light);
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: var(--r-md);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn--primary {
      background: var(--ink);
      color: #fff;
    }

    .btn--primary:hover {
      background: #1F2937;
      box-shadow: var(--shadow-lg);
    }

    .btn--brand {
      background: var(--brand);
      color: var(--ink);
    }

    .btn--brand:hover {
      background: var(--brand-deep);
      color: #fff;
      box-shadow: 0 8px 20px rgba(245, 158, 11, .25);
    }

    .btn--outline {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--border);
    }

    .btn--outline:hover {
      border-color: var(--ink);
      background: var(--bg-sunken);
    }

    /* Override for outline buttons on dark backgrounds */
    .pricing-card .btn--outline:hover,
    .cta-banner .btn--outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.4);
      color: #fff;
    }

    .btn--sm {
      padding: 8px 16px;
      font-size: 13px;
    }

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

    /* ─── NAV ─── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 250, 250, 0.85);
      backdrop-filter: blur(12px) saturate(160%);
      -webkit-backdrop-filter: blur(12px) saturate(160%);
      border-bottom: 1px solid var(--border);
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }

    .nav__brand {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .nav__brand-logo {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      display: block;
      flex-shrink: 0;
    }

    .nav__brand-text {
      display: inline-flex;
      align-items: center;
      gap: 3px;
    }

    .nav__brand-text span {
      color: var(--brand-deep);
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav__link {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-muted);
      transition: color 0.15s;
    }

    .nav__link:hover {
      color: var(--ink);
    }

    @media (max-width: 768px) {
      .nav__link--desktop {
        display: none;
      }

      .nav__links {
        gap: 12px;
      }

      /* The sticky bottom bar already has Buy — drop the redundant top button
         so the brand has room and doesn't crowd on narrow screens. */
      #nav-buy-btn {
        display: none;
      }

      .nav__brand {
        font-size: 16px;
      }

      .nav__brand-logo {
        width: 26px;
        height: 26px;
      }
    }

    /* ─── HERO ─── */
    .hero {
      padding: 64px 0 48px;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (max-width: 880px) {
      .hero__grid {
        grid-template-columns: 1fr;
      }

      .hero__visual {
        order: -1;
      }
    }

    .hero__content {
      max-width: 540px;
    }

    .hero__title {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      line-height: 1.15;
      margin: 16px 0;
      color: var(--ink);
    }

    .hero__desc {
      font-size: 15px;
      line-height: 1.65;
      color: var(--ink-muted);
      max-width: 48ch;
      margin-bottom: 28px;
    }

    .hero__ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero__price-tag {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 20px;
    }

    .hero__price-tag .old {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      color: var(--ink-faint);
      text-decoration: line-through;
    }

    .hero__price-tag .current {
      font-family: 'JetBrains Mono', monospace;
      font-size: 26px;
      font-weight: 700;
      color: var(--ink);
    }

    .hero__price-tag .note {
      font-size: 12px;
      color: var(--ink-muted);
    }

    .hero__visual {
      position: relative;
    }

    .hero__visual img {
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-xl);
    }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg-raised);
      padding: 16px 0;
    }

    .trust-bar__inner {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 32px;
      justify-content: center;
      align-items: center;
    }

    .trust-bar__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      color: var(--ink-muted);
    }

    .trust-bar__item strong {
      color: var(--ink);
      font-weight: 600;
    }

    .trust-bar__icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent-surface);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
    }

    /* ─── SECTION UTILITY ─── */
    .section {
      padding: 72px 0;
    }

    .section--alt {
      background: var(--bg-raised);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section--dark {
      background: var(--ink);
      color: #fff;
    }

    .section__header {
      max-width: 600px;
      margin-bottom: 40px;
    }

    .section__header--center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section__overline {
      margin-bottom: 12px;
    }

    .section__title {
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .section__desc {
      font-size: 14.5px;
      color: var(--ink-muted);
      line-height: 1.6;
    }

    /* ─── DELIVERABLES CARDS ─── */
    .deliverables-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 16px;
    }

    @media (max-width: 680px) {
      .deliverables-grid {
        grid-template-columns: 1fr;
      }
    }

    .deliverable-card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: box-shadow 0.2s, border-color 0.2s;
    }

    .deliverable-card:hover {
      border-color: var(--brand);
      box-shadow: var(--shadow-md);
    }

    .deliverable-card__icon {
      width: 40px;
      height: 40px;
      border-radius: var(--r-md);
      background: var(--brand-surface);
      color: var(--brand-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .deliverable-card__title {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 3px;
    }

    .deliverable-card__platform {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--ink-faint);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ─── LIVE DEMO CARDS ─── */
    .section__title--accent {
      color: var(--brand-deep);
    }

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

    @media (max-width: 820px) {
      .demo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 520px) {
      .demo-grid {
        grid-template-columns: 1fr;
      }
    }

    .demo-card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 28px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    }

    .demo-card:hover {
      border-color: var(--brand);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .demo-card__icon {
      width: 56px;
      height: 56px;
      border-radius: var(--r-lg);
      background: var(--brand-surface);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 14px;
    }

    .demo-card__title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .demo-card__sub {
      font-size: 13px;
      color: var(--ink-muted);
      line-height: 1.5;
      margin-bottom: 18px;
    }

    .demo-card__link {
      margin-top: auto;
      font-weight: 600;
      font-size: 14px;
      color: var(--brand-deep);
      text-decoration: none;
      transition: gap 0.15s;
    }

    .demo-card__link:hover {
      color: var(--brand);
    }

    .demo-note {
      margin-top: 28px;
      text-align: center;
      font-size: 13.5px;
      color: var(--ink-muted);
    }

    /* ─── QUICK PREVIEWS (GIFs) ─── */
    .previews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .previews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .previews-grid {
        grid-template-columns: 1fr;
      }
    }

    .preview-card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      text-align: center;
    }

    .preview-card__media {
      background: var(--bg-sunken);
      aspect-ratio: 9/16;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .preview-card__media img,
    .preview-card__media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 2;
    }

    .preview-card__placeholder {
      position: absolute;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--ink-faint);
      padding: 20px;
      z-index: 1;
    }

    .preview-card__title {
      font-size: 14px;
      font-weight: 600;
      padding: 12px;
      border-top: 1px solid var(--border);
    }

    /* ─── SCREENSHOTS GALLERY ─── */
    .gallery-scroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 24px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
    }

    .gallery-scroll::-webkit-scrollbar {
      height: 6px;
    }

    .gallery-scroll::-webkit-scrollbar-track {
      background: var(--border-subtle);
      border-radius: 4px;
    }

    .gallery-scroll::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px;
    }

    .gallery-item {
      scroll-snap-align: start;
      flex: 0 0 80%;
      max-width: 600px;
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      cursor: zoom-in;
      transition: transform 0.2s;
    }

    .gallery-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand);
    }

    .gallery-item img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      background: var(--bg-sunken);
    }

    /* Lightbox Modal */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90vh;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-xl);
    }

    .lightbox__close {
      position: absolute;
      top: 20px;
      right: 24px;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      border: none;
      background: transparent;
    }

    /* ─── FEATURE VISUAL SECTIONS ─── */
    .feature-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      padding: 48px 0;
      border-bottom: 1px solid var(--border);
    }

    .feature-showcase:last-child {
      border-bottom: none;
    }

    .feature-showcase--reverse .feature-showcase__visual {
      order: -1;
    }

    @media (max-width: 768px) {
      .feature-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .feature-showcase--reverse .feature-showcase__visual {
        order: 0;
      }
    }

    .feature-showcase__content {
      max-width: 480px;
    }

    .feature-showcase__title {
      font-size: 22px;
      font-weight: 700;
      margin: 10px 0;
    }

    .feature-showcase__desc {
      font-size: 14px;
      color: var(--ink-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .feature-showcase__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .feature-showcase__list li {
      font-size: 13.5px;
      color: var(--ink-secondary);
      padding-left: 20px;
      position: relative;
    }

    .feature-showcase__list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
      font-size: 12px;
    }

    .feature-showcase__visual img {
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }

    /* ─── MODULES GRID ─── */
    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 10px;
    }

    @media (max-width: 560px) {
      .modules-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .module-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 10px 12px;
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-secondary);
      transition: all 0.2s;
    }

    .module-pill:hover {
      border-color: var(--brand);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
    }

    .module-pill__icon {
      font-size: 16px;
      flex-shrink: 0;
    }

    .module-pill--core {
      border-color: var(--accent);
      background: var(--accent-surface);
    }

    .module-pill--core .module-pill__badge {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      font-weight: 600;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-left: auto;
      flex-shrink: 0;
    }

    /* ─── TECH STACK ROW ─── */
    .tech-row {
      background: var(--ink);
      padding: 20px 0;
      overflow: hidden;
    }

    .tech-row__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .tech-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: var(--r-full);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.2s;
    }

    .tech-badge:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(245, 158, 11, 0.3);
    }

    .tech-badge__label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255, 255, 255, 0.35);
    }

    .tech-badge__name {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .tech-badge__name span {
      color: var(--brand);
    }

    .tech-sep {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 640px) {
      .tech-sep {
        display: none;
      }

      .tech-row__inner {
        gap: 10px;
      }
    }

    /* ─── PRICING ─── */
    .pricing-section {
      padding: 72px 0;
    }

    .pricing-card {
      background: var(--ink);
      border-radius: var(--r-xl);
      padding: 48px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: start;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    /* Let grid columns shrink below their inputs' intrinsic width so the
       checkout form never overflows the card's right padding on mobile. */
    .pricing-card > * {
      min-width: 0;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .pricing-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
      }
    }

    .pricing-card__title {
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .pricing-card .price-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin: 16px 0;
    }

    .pricing-card .price-old {
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px;
      text-decoration: line-through;
      color: rgba(255, 255, 255, 0.35);
    }

    .pricing-card .price-current {
      font-family: 'JetBrains Mono', monospace;
      font-size: 40px;
      font-weight: 700;
      color: var(--brand);
    }

    .pricing-card .price-note {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 20px;
    }

    .pricing-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .pricing-list li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      padding: 6px 0 6px 22px;
      position: relative;
    }

    .pricing-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 700;
      font-size: 12px;
    }

    .pricing-card__sidebar {
      position: relative;
      z-index: 1;
    }

    /* ─── Checkout Panel ─── */
    #checkout-panel {
      display: none;
      background: #fff;
      border-radius: var(--r-lg);
      padding: 24px;
      color: var(--ink-secondary);
    }

    #checkout-panel.open {
      display: block;
    }

    #checkout-panel label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--ink);
      margin: 14px 0 5px;
    }

    #checkout-panel label:first-of-type {
      margin-top: 0;
    }

    #checkout-panel input {
      width: 100%;
      padding: 10px 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      background: var(--bg-sunken);
      transition: border-color 0.15s;
    }

    #checkout-panel input:focus {
      outline: none;
      border-color: var(--accent);
      background: #fff;
    }

    #checkout-error {
      color: #DC2626;
      font-size: 12.5px;
      margin-top: 10px;
      display: none;
    }

    #checkout-status {
      font-size: 12.5px;
      color: var(--ink-muted);
      margin-top: 10px;
      display: none;
    }

    /* ─── Success Panel ─── */
    #success-panel {
      display: none;
      background: #fff;
      border-radius: var(--r-lg);
      padding: 28px;
      color: var(--ink-secondary);
    }

    #success-panel.open {
      display: block;
    }

    #success-panel h3 {
      color: var(--success);
    }

    .success-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--success-surface);
      color: var(--success);
      padding: 5px 12px;
      border-radius: var(--r-full);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    /* ─── GUARANTEE STRIP ─── */
    .guarantee {
      background: var(--success-surface);
      border-top: 1px solid rgba(5, 150, 105, 0.12);
      border-bottom: 1px solid rgba(5, 150, 105, 0.12);
      padding: 18px 0;
    }

    .guarantee__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .guarantee__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--success);
    }

    .guarantee__icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(5, 150, 105, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    /* ─── FAQ ACCORDION ─── */
    .faq-list {
      max-width: 680px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      text-align: left;
      gap: 16px;
    }

    .faq-item__trigger:hover {
      color: var(--brand-deep);
    }

    .faq-item__icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg-sunken);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--ink-muted);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-item.open .faq-item__icon {
      transform: rotate(45deg);
    }

    .faq-item__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item__body-inner {
      padding: 0 0 18px;
      font-size: 14px;
      color: var(--ink-muted);
      line-height: 1.65;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (max-width: 768px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
    }

    .testimonial-card__stars {
      color: var(--brand);
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .testimonial-card__text {
      font-size: 13.5px;
      color: var(--ink-secondary);
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }

    .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testimonial-card__avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-light), var(--accent-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      color: var(--brand-deep);
    }

    .testimonial-card__name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
    }

    .testimonial-card__role {
      font-size: 11px;
      color: var(--ink-faint);
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
      padding: 64px 0;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(245, 158, 11, 0.06) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
    }

    .cta-banner__title {
      color: #fff;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
    }

    .cta-banner__desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 50ch;
      margin: 0 auto 24px;
      position: relative;
    }

    .cta-banner__actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* ─── FOOTER ─── */
    .footer {
      background: #0a0f1a;
      color: rgba(255, 255, 255, 0.5);
      padding: 40px 0;
      font-size: 13px;
    }

    .footer__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.8);
      transition: color 0.15s;
    }

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

    .footer__brand {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #fff;
    }

    .footer__brand span {
      color: var(--brand);
    }

    .footer__links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer__legal {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
    }

    .footer__bottom {
      margin-top: 16px;
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    /* ─── SCROLL REVEAL ANIMATION ─── */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── MOBILE BOTTOM BAR ─── */
    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--bg-raised);
      border-top: 1px solid var(--border);
      padding: 10px 16px;
      gap: 8px;
    }

    @media (max-width: 768px) {
      .mobile-bar {
        display: flex;
      }

      body {
        padding-bottom: 64px;
      }
    }

    .mobile-bar .btn {
      flex: 1;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      padding: 12px;
    }

    /* Make the Live Demo button read as a clear, tappable action. */
    .mobile-bar .btn--outline {
      color: var(--brand-deep);
      border-color: var(--brand);
    }
