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

    /* ══════════════════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════════════════ */
    :root {
      /* Primary brand — muted rose/plum */
      --brand:         #A14D6C;
      --brand-dark:    #8D415D;
      --brand-light:   #F3E4EA;
      --brand-subtle:  #F7F3F6;

      /* Secondary accent — warm mauve/violet */
      --accent-2:      #7E5A86;

      /* Text */
      --dark:          #1F1720;
      --muted:         #5E5560;
      --light-text:    #8A7D8D;

      /* Backgrounds */
      --white:         #FFFFFF;
      --off-white:     #FCFAFB;

      /* Borders */
      --border:        #E7D8DF;
      --border-light:  #F0E8EC;

      /* Trust green */
      --green:         #2D8653;
      --green-bg:      #EAF5EF;

      --max-w:         1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Slippy', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--dark);
      background: var(--off-white);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Slippy', sans-serif;
      line-height: 1.22;
      color: var(--dark);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ══════════════════════════════════════════
       BUTTON SYSTEM
    ══════════════════════════════════════════ */
    .btn-primary {
      display: inline-block;
      background: var(--brand);
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.01em;
      transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 2px 12px rgba(161,77,108,0.22), 0 1px 3px rgba(161,77,108,0.14);
    }
    .btn-primary:hover {
      background: var(--brand-dark);
      box-shadow: 0 4px 20px rgba(141,65,93,0.28), 0 1px 4px rgba(141,65,93,0.16);
      transform: translateY(-1px);
    }

    .btn-ghost {
      display: inline-block;
      background: transparent;
      color: var(--muted);
      padding: 13px 22px;
      border-radius: 8px;
      font-weight: 500;
      font-size: 14px;
      border: 1.5px solid var(--border);
      transition: background 0.18s, color 0.18s, border-color 0.18s;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-ghost:hover {
      background: var(--brand-light);
      color: var(--brand-dark);
      border-color: var(--brand);
    }

    .btn-white {
      display: inline-block;
      background: #fff;
      color: var(--brand-dark);
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      border: none;
      transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }
    .btn-white:hover {
      background: var(--brand-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    }

    /* ══════════════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════════
       SHARED SECTION TYPOGRAPHY
    ══════════════════════════════════════════ */
    .section-eyebrow {
      display: inline-block;
      font-family: 'Slippy', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 14px;
    }
    .section-headline {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .section-sub {
      font-size: 1.0rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.75;
    }
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-header .section-sub { margin: 0 auto; }

    /* ══════════════════════════════════════════
       1. NAV
    ══════════════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .nav.nav-scrolled {
      border-bottom-color: var(--border-light);
      box-shadow: 0 2px 20px rgba(31,23,32,0.07);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 28px;
      max-width: var(--max-w);
      margin: 0 auto;
      gap: 24px;
    }
    .nav-logo {
      font-family: 'Slippy', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
      flex-shrink: 0;
      letter-spacing: -0.3px;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--brand); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-trial-note {
      font-size: 11px;
      color: var(--light-text);
      margin-top: 3px;
      text-align: center;
    }

    /* ══════════════════════════════════════════
       2. HERO
    ══════════════════════════════════════════ */
    .hero {
      padding: 90px 0 80px;
      background: var(--white);
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--brand);
      background: var(--brand-light);
      padding: 5px 13px;
      border-radius: 20px;
      margin-bottom: 22px;
    }
    .hero-headline {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.16;
      letter-spacing: -0.5px;
    }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 36px;
      line-height: 1.75;
      max-width: 460px;
    }
    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }
    .hero-cta-primary { align-self: flex-start; }
    .hero-cta-secondary {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.15s;
    }
    .hero-cta-secondary:hover { color: var(--brand); }
    .hero-cta-secondary .arrow { color: var(--brand); font-size: 15px; }
    .hero-stripe-note {
      font-size: 11.5px;
      color: var(--light-text);
      margin-bottom: 14px;
    }
    .hero-trust-strip {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px 14px;
      font-size: 12.5px;
      color: var(--muted);
    }
    .hero-trust-strip .trust-chip {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .hero-trust-strip .trust-chip .dot {
      width: 15px;
      height: 15px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-trust-strip .trust-chip .dot svg {
      width: 8px;
      height: 8px;
      fill: none;
      stroke: var(--green);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .hero-trust-strip .sep { color: var(--border); font-size: 14px; }

    /* Browser mockup */
    .browser-mockup {
      background: var(--off-white);
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 48px rgba(31,23,32,0.1), 0 2px 8px rgba(31,23,32,0.05);
      overflow: hidden;
    }
    .browser-bar {
      background: #EDE6EA;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .browser-dots { display: flex; gap: 5px; }
    .browser-dot { width: 10px; height: 10px; border-radius: 50%; }
    .browser-dot:nth-child(1) { background: #FF6058; }
    .browser-dot:nth-child(2) { background: #FFBD2E; }
    .browser-dot:nth-child(3) { background: #28C840; }
    .browser-url {
      flex: 1;
      background: #fff;
      border-radius: 5px;
      padding: 4px 10px;
      font-size: 11px;
      color: var(--light-text);
      border: 1px solid var(--border-light);
    }
    .browser-body { background: #fff; }

    .mock-site-header {
      background: linear-gradient(135deg, var(--accent-2) 0%, var(--brand) 100%);
      padding: 24px 20px 18px;
      color: #fff;
    }
    .mock-site-name {
      font-family: 'Slippy', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .mock-site-tagline { font-size: 11px; opacity: 0.8; }
    .mock-nav-bar {
      background: rgba(0,0,0,0.12);
      padding: 7px 20px;
      display: flex;
      gap: 16px;
    }
    .mock-nav-item { font-size: 10px; color: rgba(255,255,255,0.75); font-weight: 500; }
    .mock-gallery-section { padding: 14px 18px 18px; background: #fafafa; }
    .mock-gallery-label {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--light-text);
      margin-bottom: 9px;
      font-weight: 600;
    }
    .mock-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .mock-gallery-cell { aspect-ratio: 1; border-radius: 5px; }
    .mock-gallery-cell:nth-child(1) { background: linear-gradient(135deg, #ede3f0, #d4c0dd); }
    .mock-gallery-cell:nth-child(2) { background: linear-gradient(135deg, #e8dff5, #d0c4ec); }
    .mock-gallery-cell:nth-child(3) { background: linear-gradient(135deg, #f5e8ee, #e8d0db); }
    .mock-gallery-cell:nth-child(4) { background: linear-gradient(135deg, #f0e8f5, #dccfe8); }
    .mock-gallery-cell:nth-child(5) { background: linear-gradient(135deg, #dde5f5, #c8d2eb); }
    .mock-gallery-cell:nth-child(6) { background: linear-gradient(135deg, #f5ede3, #ead5c0); }
    .mock-stats-row {
      padding: 11px 18px;
      display: flex;
      gap: 18px;
      border-top: 1px solid var(--border-light);
    }
    .mock-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .mock-stat-num { font-size: 13px; font-weight: 700; color: var(--brand); }
    .mock-stat-label { font-size: 9px; color: var(--light-text); }

    /* ══════════════════════════════════════════
       3. PAIN POINTS
    ══════════════════════════════════════════ */
    .pain {
      background: var(--brand-subtle);
      padding: 88px 0;
    }
    .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .pain-card {
      background: var(--white);
      border-radius: 20px;
      padding: 34px 28px;
      border: 1px solid var(--border-light);
      box-shadow: 0 1px 8px rgba(31,23,32,0.04);
    }
    .pain-icon { font-size: 1.75rem; margin-bottom: 16px; display: block; }
    .pain-card h3 {
      font-family: 'Slippy', sans-serif;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--dark);
    }
    .pain-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* ══════════════════════════════════════════
       4. FEATURES (alternating)
    ══════════════════════════════════════════ */
    .features { padding: 96px 0; background: var(--off-white); }
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 64px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .feature-block:first-child { padding-top: 0; }
    .feature-block:last-child { border-bottom: none; padding-bottom: 0; }
    .feature-block.reverse .feature-text { order: 2; }
    .feature-block.reverse .feature-visual { order: 1; }

    .feature-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 12px;
      display: block;
    }
    .feature-text h2 {
      font-size: clamp(1.5rem, 2.5vw, 1.95rem);
      margin-bottom: 18px;
      color: var(--dark);
      letter-spacing: -0.2px;
    }
    .feature-text p { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 440px; }

    .feature-visual { display: flex; }
    .feature-visual .browser-mockup { width: 100%; }
    /* Hero mockup must fill its column too; without this it shrink-to-fits
       wider than a narrow viewport and forces horizontal overflow on mobile. */
    .hero-visual .browser-mockup { width: 100%; max-width: 100%; }

    .mock-theme-grid { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .mock-theme-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-light); }
    .mock-theme-header { height: 36px; }
    .mock-theme-header.rose  { background: linear-gradient(135deg, var(--brand), var(--accent-2)); }
    .mock-theme-header.slate { background: linear-gradient(135deg, #374151, #4B5563); }
    .mock-theme-header.blush { background: linear-gradient(135deg, #C084A4, #B07AB8); }
    .mock-theme-body { background: #f9fafb; padding: 8px; }
    .mock-theme-line { height: 5px; background: #e5e7eb; border-radius: 3px; margin-bottom: 5px; }
    .mock-theme-line.short { width: 60%; }

    .mock-inbox { padding: 13px; }
    .mock-inbox-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid #f3f4f6;
    }
    .mock-inbox-row:last-child { border-bottom: none; }
    .mock-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
    .mock-avatar.a1 { background: linear-gradient(135deg, var(--brand), var(--accent-2)); }
    .mock-avatar.a2 { background: linear-gradient(135deg, #4F7EC4, #6366F1); }
    .mock-avatar.a3 { background: linear-gradient(135deg, #D97706, #F97316); }
    .mock-avatar.a4 { background: linear-gradient(135deg, #059669, #0EA5E9); }
    .mock-inbox-name { font-size: 12px; font-weight: 600; color: var(--dark); flex: 1; }
    .mock-inbox-date { font-size: 10px; color: var(--light-text); }
    .mock-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
    .mock-badge.new     { background: #DCF5EB; color: #166534; }
    .mock-badge.read    { background: #F3F4F6; color: var(--muted); }
    .mock-badge.pending { background: #FEF9C3; color: #92400E; }

    .mock-schedule { padding: 14px; }
    .mock-schedule-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
    .mock-schedule-title { font-size: 12px; font-weight: 700; color: var(--dark); }
    .mock-toggle { width: 30px; height: 17px; background: var(--brand); border-radius: 9px; position: relative; }
    .mock-toggle::after {
      content: '';
      position: absolute;
      right: 2px; top: 2px;
      width: 13px; height: 13px;
      background: #fff;
      border-radius: 50%;
    }
    .mock-interval-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      background: #F9FAFB;
      border-radius: 7px;
      margin-bottom: 6px;
      border: 1px solid var(--border-light);
    }
    .mock-interval-label { font-size: 11px; color: var(--muted); }
    .mock-interval-value { font-size: 11px; font-weight: 700; color: var(--brand); }
    .mock-interval-row.active { background: var(--brand-light); border-color: rgba(161,77,108,0.3); }
    .mock-interval-row.active .mock-interval-label { color: var(--brand-dark); }

    .mock-photo-grid { padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
    .mock-photo-cell { aspect-ratio: 1; border-radius: 7px; position: relative; overflow: hidden; }
    .mock-photo-cell .bg { width: 100%; height: 100%; }
    .mock-photo-cell .bg.p1 { background: linear-gradient(135deg, #f5e8f0, #e8d0e0); }
    .mock-photo-cell .bg.p2 { background: linear-gradient(135deg, #e5e8f5, #cfd2ee); }
    .mock-photo-cell .bg.p3 { background: linear-gradient(135deg, #e0f5ec, #b8e8d8); }
    .mock-photo-cell .bg.p4 { background: linear-gradient(135deg, #f5f0e0, #ece0b8); }
    .mock-photo-cell .bg.p5 { background: linear-gradient(135deg, #f0e8f5, #ddd0ee); }
    .mock-photo-cell .bg.p6 { background: linear-gradient(135deg, #f5e8e8, #eec8c8); }
    .mock-status-dot {
      position: absolute;
      bottom: 5px; right: 5px;
      width: 7px; height: 7px;
      border-radius: 50%;
      border: 1.5px solid #fff;
    }
    .mock-status-dot.green  { background: #22C55E; }
    .mock-status-dot.yellow { background: #EAB308; }
    .mock-status-dot.red    { background: #EF4444; }

    /* ══════════════════════════════════════════
       5. FEATURE GRID
    ══════════════════════════════════════════ */
    .feature-grid-section { background: var(--brand-subtle); padding: 88px 0; }
    .feature-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .feature-icon-card {
      background: var(--white);
      border-radius: 18px;
      padding: 28px 24px;
      border: 1px solid var(--border-light);
      box-shadow: 0 1px 6px rgba(31,23,32,0.04);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .feature-icon-card:hover {
      box-shadow: 0 4px 20px rgba(31,23,32,0.09);
      transform: translateY(-2px);
    }
    .feature-icon-card .icon { font-size: 1.5rem; margin-bottom: 12px; display: block; }
    .feature-icon-card h3 {
      font-family: 'Slippy', sans-serif;
      font-size: 14.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 7px;
    }
    .feature-icon-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* ══════════════════════════════════════════
       6. PRICING
    ══════════════════════════════════════════ */
    .pricing { padding: 96px 0; background: var(--white); }
    .pricing-header { text-align: center; margin-bottom: 64px; }
    .pricing-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: start;
      margin-bottom: 52px;
    }

    .value-anchor-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 22px;
      display: block;
    }
    .value-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .value-table tr { border-bottom: 1px solid var(--border-light); }
    .value-table tr:last-child { border-bottom: none; }
    .value-table td { padding: 13px 8px; vertical-align: middle; color: var(--dark); }
    .value-table td:first-child { padding-left: 0; }
    .value-table td:last-child { text-align: right; color: var(--muted); font-size: 13px; }
    .value-icon { margin-right: 6px; }
    .value-table tr.highlight {
      background: linear-gradient(90deg, var(--brand-light) 0%, rgba(243,228,234,0.4) 100%);
    }
    .value-table tr.highlight td {
      font-weight: 700;
      color: var(--brand-dark);
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 15px;
    }
    .value-table tr.highlight td:first-child {
      border-radius: 10px 0 0 10px;
      padding-left: 12px;
    }
    .value-table tr.highlight td:last-child {
      border-radius: 0 10px 10px 0;
      color: var(--brand-dark);
      font-size: 15px;
    }
    .value-closing {
      margin-top: 20px;
      font-size: 13px;
      color: var(--light-text);
      font-style: italic;
      line-height: 1.7;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 22px;
      border: 2px solid var(--brand);
      padding: 40px 36px;
      box-shadow: 0 8px 40px rgba(161,77,108,0.12), 0 2px 8px rgba(161,77,108,0.07);
      position: relative;
    }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand);
      color: #fff;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 4px 18px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .pricing-card-title {
      font-family: 'Slippy', sans-serif;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--light-text);
      margin-bottom: 16px;
      text-align: center;
    }
    .pricing-price-row {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      margin-bottom: 4px;
    }
    .pricing-price-num {
      font-family: 'Slippy', sans-serif;
      font-size: 3.6rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
      letter-spacing: -1px;
    }
    .pricing-price-mo { font-size: 15px; color: var(--muted); }
    .pricing-trial-callout {
      text-align: center;
      font-size: 13px;
      color: var(--brand);
      font-weight: 600;
      margin-bottom: 28px;
    }
    .pricing-features { list-style: none; margin-bottom: 32px; }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 0;
      font-size: 14px;
      color: var(--dark);
      border-bottom: 1px solid var(--border-light);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pf-check {
      width: 17px;
      height: 17px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pf-check svg {
      width: 9px;
      height: 9px;
      fill: none;
      stroke: var(--green);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .pricing-card .btn-primary { width: 100%; text-align: center; display: block; font-size: 15px; padding: 15px; }
    .pricing-micro {
      margin-top: 14px;
      font-size: 11px;
      color: var(--light-text);
      text-align: center;
      line-height: 1.65;
    }

    .trial-explainer {
      background: var(--brand-subtle);
      border-radius: 20px;
      border: 1px solid var(--border-light);
      padding: 40px;
      text-align: center;
      margin-bottom: 28px;
    }
    .trial-explainer h3 {
      font-size: 1.25rem;
      margin-bottom: 28px;
      color: var(--dark);
      font-weight: 700;
    }
    .trial-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .trial-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .trial-item-icon {
      width: 42px;
      height: 42px;
      background: var(--brand);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
      font-weight: 700;
    }
    .trial-item-text {
      font-size: 13px;
      color: var(--dark);
      font-weight: 500;
      text-align: center;
      line-height: 1.45;
    }

    .paysite-teaser {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .paysite-teaser-text h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--dark); }
    .paysite-teaser-text ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .paysite-teaser-text li {
      font-size: 14px;
      color: var(--muted);
      padding-left: 16px;
      position: relative;
    }
    .paysite-teaser-text li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 600;
    }
    .coming-soon-badge {
      display: inline-block;
      background: var(--brand-light);
      color: var(--brand-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      white-space: nowrap;
      flex-shrink: 0;
      border: 1px solid rgba(161,77,108,0.2);
    }

    /* ══════════════════════════════════════════
       7. TESTIMONIALS
    ══════════════════════════════════════════ */
    .testimonials { padding: 88px 0; background: var(--brand-subtle); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 48px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 32px 30px;
      border: 1px solid var(--border-light);
      border-left: 3px solid var(--brand);
      box-shadow: 0 1px 8px rgba(31,23,32,0.04);
    }
    .testimonial-stars {
      color: #C9A84C;
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }
    .testimonial-quote {
      font-size: 15px;
      color: var(--dark);
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author { font-size: 13px; font-weight: 600; color: var(--brand-dark); }
    .testimonial-location { font-size: 12px; color: var(--light-text); font-weight: 400; }

    .trust-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 40px;
      padding: 8px 16px;
      box-shadow: 0 1px 4px rgba(31,23,32,0.04);
    }
    .trust-badge .badge-icon { font-size: 0.95rem; }

    /* ══════════════════════════════════════════
       8. FAQ
    ══════════════════════════════════════════ */
    .faq { padding: 88px 0; background: var(--white); }
    .faq-list {
      display: flex;
      flex-direction: column;
      max-width: 760px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      box-shadow: 0 1px 10px rgba(31,23,32,0.04);
    }
    .faq-list details {
      border-bottom: 1px solid var(--border-light);
      background: var(--white);
    }
    .faq-list details:last-child { border-bottom: none; }
    .faq-list summary {
      list-style: none;
      padding: 20px 26px;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      gap: 16px;
      transition: background 0.15s;
    }
    .faq-list summary:hover { background: var(--off-white); }
    .faq-list details[open] summary { background: var(--brand-subtle); color: var(--brand-dark); }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after {
      content: '';
      width: 20px;
      height: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A14D6C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
      flex-shrink: 0;
      transition: transform 0.22s ease;
    }
    .faq-list details[open] summary::after { transform: rotate(180deg); }
    .faq-answer {
      padding: 4px 26px 22px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      background: var(--brand-subtle);
    }

    /* ══════════════════════════════════════════
       9. FINAL CTA BANNER
    ══════════════════════════════════════════ */
    .cta-banner {
      background: linear-gradient(135deg, var(--accent-2) 0%, var(--brand) 55%, var(--brand-dark) 100%);
      padding: 80px 0;
      text-align: center;
    }
    .cta-banner h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.2px;
    }
    .cta-banner p {
      font-size: 15px;
      color: rgba(255,255,255,0.82);
      margin-bottom: 32px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .cta-banner .btn-white { margin-bottom: 14px; display: inline-block; }
    .cta-micro { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
    .cta-login-link {
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.3);
      transition: text-decoration-color 0.2s, color 0.2s;
    }
    .cta-login-link:hover { color: #fff; text-decoration-color: #fff; }

    /* ══════════════════════════════════════════
       10. FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: #180E1A;
      color: rgba(255,255,255,0.6);
      padding: 52px 0 36px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }
    .footer-logo {
      font-family: 'Slippy', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -0.2px;
    }
    .footer-tagline { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
    .footer-col h4 {
      font-family: 'Slippy', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: rgba(255,255,255,0.85);
      margin-bottom: 16px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
    .footer-links a:hover { color: rgba(255,255,255,0.9); }
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin: 36px 28px 0;
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 44px; }
      .hero-sub { max-width: 100%; }
      .hero-cta-primary { align-self: stretch; text-align: center; }
      .feature-block { grid-template-columns: 1fr; gap: 32px; }
      .feature-block.reverse .feature-text { order: 1 !important; }
      .feature-block.reverse .feature-visual { order: 2 !important; }
      .feature-text p { max-width: 100%; }
      .pain-grid { grid-template-columns: 1fr; gap: 16px; }
      .feature-icon-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
      .trial-items { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-inner { padding: 13px 16px; gap: 12px; }
      .nav-trial-note { display: none; }
      .nav-actions { gap: 8px; }
      .nav-actions .btn-primary { padding: 10px 14px; font-size: 13px; }
      .feature-icon-grid { grid-template-columns: 1fr; }
      .trial-items { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr; }
      .paysite-teaser { flex-direction: column; text-align: center; }
      .trust-badges { gap: 8px; }
      .hero-trust-strip .sep { display: none; }
    }
