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

    :root {
      --primary: #CB360F;
      --primary-light: #E04515;
      --bg: #0C0C0D;
      --bg-card: #141414;
      --bg-card-2: #1A1A1B;
      --border: rgba(255,255,255,0.08);
      --text: #FFFFFF;
      --text-muted: #9A9A9A;
      --text-dim: #6A6A6A;
      --green: #61CE70;
      --font-main: 'Roboto', sans-serif;
      --font-slab: 'Roboto Slab', serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-main);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(ellipse at center, rgba(203,54,15,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(203,54,15,0.12);
      border: 1px solid rgba(203,54,15,0.3);
      color: #E36040;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
      letter-spacing: 0.02em;
    }
    .hero-badge span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: inline-block; }

    .hero h1 {
      font-family: var(--font-slab);
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      max-width: 900px;
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--primary);
    }

    .hero-sub {
      font-size: clamp(17px, 2vw, 20px);
      color: var(--text-muted);
      max-width: 600px;
      margin-bottom: 48px;
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 16px 36px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(203,54,15,0.3);
    }
    .btn-primary:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(203,54,15,0.4);
    }

    .btn-ghost {
      color: var(--text-muted);
      padding: 16px 28px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 500;
      border: 1px solid var(--border);
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 80px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num {
      font-size: 36px;
      font-weight: 700;
      font-family: var(--font-slab);
      color: var(--text);
    }
    .hero-stat-num span { color: var(--primary); }
    .hero-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

    /* ── SECTION COMMON ── */
    section { padding: 100px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-slab);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .section-sub {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }

    /* ── HOW IT WORKS ── */
    .how-bg { background: var(--bg-card); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px;
      margin-top: 60px;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .step {
      background: var(--bg-card-2);
      padding: 40px 32px;
      position: relative;
    }
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -1px; top: 40px; bottom: 40px;
      width: 1px;
      background: var(--border);
    }

    .step-num {
      font-size: 42px;
      font-weight: 700;
      font-family: var(--font-slab);
      color: rgba(203,54,15,0.2);
      line-height: 1;
      margin-bottom: 20px;
    }
    .step h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--text);
    }
    .step p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

    /* ── BENEFITS ── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }

    .benefit-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .benefit-card:hover {
      border-color: rgba(203,54,15,0.3);
      transform: translateY(-3px);
    }

    .benefit-icon {
      width: 52px; height: 52px;
      background: rgba(203,54,15,0.1);
      border: 1px solid rgba(203,54,15,0.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 24px;
    }

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

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

    /* ── FEATURE SHOWCASE ── */
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 100px;
    }
    .feature-row.reverse { direction: rtl; }
    .feature-row.reverse > * { direction: ltr; }
    .feature-row:last-child { margin-bottom: 0; }

    .feature-text .section-label { margin-bottom: 12px; }
    .feature-text h2 {
      font-family: var(--font-slab);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .feature-text p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .feature-list { list-style: none; margin-bottom: 32px; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .feature-list li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .feature-visual {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      min-height: 320px;
      position: relative;
      overflow: hidden;
    }
    .feature-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 30%, rgba(203,54,15,0.07) 0%, transparent 60%);
    }

    /* Mock UI elements */
    .mock-proposal {
      background: var(--bg-card-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      position: relative;
    }
    .mock-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .mock-title { font-size: 14px; font-weight: 600; }
    .mock-badge {
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 100px;
      font-weight: 500;
    }
    .mock-badge.sent { background: rgba(59,130,246,0.15); color: #60a5fa; }
    .mock-badge.accepted { background: rgba(97,206,112,0.15); color: var(--green); }
    .mock-badge.draft { background: rgba(255,255,255,0.08); color: var(--text-muted); }
    .mock-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .mock-row:last-child { border-bottom: none; }
    .mock-row-label { color: var(--text-muted); }
    .mock-row-value { font-weight: 500; }
    .mock-total {
      display: flex;
      justify-content: space-between;
      padding-top: 14px;
      font-size: 15px;
      font-weight: 700;
    }
    .mock-total-value { color: var(--primary); }
    .mock-btn {
      display: block;
      margin-top: 16px;
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 10px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
    }

    .mock-portal {
      display: flex;
      gap: 12px;
      height: 100%;
      min-height: 260px;
    }
    .mock-sidebar {
      width: 120px;
      background: rgba(0,0,0,0.4);
      border-radius: 10px;
      padding: 12px;
      flex-shrink: 0;
    }
    .mock-nav-item {
      padding: 8px 10px;
      border-radius: 6px;
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
      cursor: pointer;
    }
    .mock-nav-item.active { background: rgba(203,54,15,0.15); color: var(--primary); font-weight: 500; }
    .mock-content { flex: 1; }
    .mock-file-row {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px 14px;
      margin-bottom: 8px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .mock-file-icon { font-size: 16px; }
    .mock-file-name { flex: 1; font-weight: 500; }
    .mock-file-badge { font-size: 10px; padding: 2px 8px; border-radius: 100px; background: rgba(97,206,112,0.15); color: var(--green); }

    /* ── PARTNER BRANDS ── */
    .brands-section { text-align: center; }
    .brands-section .section-sub { margin: 0 auto 50px; }
    .brands-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      opacity: 0.4;
      font-size: 22px;
      font-weight: 700;
      font-family: var(--font-slab);
      letter-spacing: -0.02em;
      color: var(--text);
    }

    /* ── PRICING/OFFER ── */
    .offer-bg { background: var(--bg-card); }
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .offer-card {
      background: var(--bg-card-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
    }
    .offer-card.featured {
      border-color: rgba(203,54,15,0.4);
      background: linear-gradient(135deg, rgba(203,54,15,0.06) 0%, var(--bg-card-2) 100%);
    }
    .offer-tag {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 12px;
      border-radius: 100px;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .offer-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .offer-card .desc {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .offer-features { list-style: none; }
    .offer-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }
    .offer-features li:last-child { border-bottom: none; }
    .offer-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ── TESTIMONIAL / QUOTE ── */
    .quote-section {
      text-align: center;
      padding: 80px 24px;
    }
    .quote-section blockquote {
      max-width: 760px;
      margin: 0 auto 32px;
      font-family: var(--font-slab);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 600;
      line-height: 1.4;
      color: var(--text);
    }
    .quote-section blockquote::before {
      content: '"';
      color: var(--primary);
      font-size: 60px;
      line-height: 0;
      vertical-align: -0.3em;
      margin-right: 8px;
    }
    .quote-attr { font-size: 15px; color: var(--text-muted); }
    .quote-attr strong { color: var(--text); }

    /* ── CTA ── */
    .cta-section {
      text-align: center;
      padding: 100px 24px;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      bottom: -200px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(203,54,15,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-section h2 {
      font-family: var(--font-slab);
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.15;
    }
    .cta-section h2 em { font-style: normal; color: var(--primary); }
    .cta-section p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 48px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── FOOTER ── */

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: var(--border);
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      /* Feature rows: stack text on top, visual below */
      .feature-row { grid-template-columns: 1fr; gap: 32px; }
      .feature-row.reverse { direction: ltr; }
      .hero-stats { gap: 32px; }
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .step:not(:last-child)::after { display: none; }
      footer { flex-direction: column; text-align: center; }

      /* Benefits: show only first 3, single column */
      .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .benefit-card:nth-child(n+4) { display: none; }

      /* Offer/tiers: single column */
      .offer-grid { grid-template-columns: 1fr; gap: 16px; }

      /* Mock portal: hide sidebar, full width content */
      .mock-portal { flex-direction: column; min-height: auto; gap: 8px; }
      .mock-sidebar { width: 100%; display: flex; flex-wrap: wrap; gap: 4px; padding: 8px; }
      .mock-nav-item { flex: 0 0 auto; margin-bottom: 0; }

      /* Mock proposal: compact */
      .mock-proposal { padding: 14px; }
      .mock-row { font-size: 12px; }

      /* Feature visual: reduce height */
      .feature-visual { min-height: auto; padding: 20px; }

      .hero-stats { flex-wrap: wrap; gap: 24px; justify-content: center; }
      .hero-stat { min-width: 100px; }

      .section-header h2 { font-size: 1.6rem; }
      .cta-box { padding: 48px 20px; }
      .cta-box h2 { font-size: 1.6rem; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2rem; }
      .hero-sub { font-size: 1rem; }
      .hero-cta { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
      .hero-stat-num { font-size: 2.2rem; }
      .steps-grid { grid-template-columns: 1fr; }

      /* Benefits: show only first 3, single column */
      .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
      .benefit-card { padding: 24px; }
      .benefit-card:nth-child(n+4) { display: none; }

      /* Offer/tiers */
      .offer-grid { grid-template-columns: 1fr; }
      .offer-card { padding: 24px; }

      /* Feature text */
      .feature-text h2 { font-size: 1.4rem; }
      .feature-visual { padding: 16px; }

      /* Mock portal sidebar hidden on small mobile */
      .mock-sidebar { display: none; }
      .mock-content { width: 100%; }

      /* Ensure no horizontal overflow in mock UIs */
      .mock-portal, .mock-proposal, .feature-visual { overflow: hidden; max-width: 100%; }
      .mock-file-row { padding: 8px 10px; }
      .mock-file-name { font-size: 11px; }
    }

    @media (max-width: 390px) {
      .hero h1 { font-size: 1.75rem; }
      .section-header h2 { font-size: 1.4rem; }
      .benefit-card { padding: 20px; }
      .benefit-icon { width: 40px; height: 40px; font-size: 18px; }
    }

  