      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --navy: #0d1b2a;
        --navy2: #1a2e45;
        --gold: #f0a500;
        --green: #1db954;
        --border: #e2e8f0;
        --text: #1e293b;
        --muted: #64748b;
      }
      body {
        font-family: 'Barlow', sans-serif;
        background: #fff;
        color: var(--text);
      }

      /* ── NAV ─────────────────────────────────────────── */
      .nav {
        background: var(--navy);
        padding: 14px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .nav-logo {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none;
        letter-spacing: 2px;
      }
      .nav-logo span {
        color: var(--gold);
      }
      .nav-links {
        display: flex;
        gap: 20px;
        align-items: center;
      }
      .nav-links a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
      }
      .nav-links a:hover {
        color: #fff;
      }
      .nav-links .btn-nav {
        background: var(--gold);
        color: var(--navy);
        padding: 7px 16px;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 0.88rem;
        letter-spacing: 0.5px;
      }

      /* ── HERO ─────────────────────────────────────────── */
      .hero {
        background: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 60%, #0d1b2a 100%);
        padding: 72px 24px 64px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 60% 40%, rgba(240, 165, 0, 0.08) 0%, transparent 70%);
      }
      .hero-eyebrow {
        display: inline-block;
        background: rgba(240, 165, 0, 0.15);
        color: var(--gold);
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 99px;
        border: 1px solid rgba(240, 165, 0, 0.25);
        margin-bottom: 18px;
      }
      .hero h1 {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: clamp(2.4rem, 5vw, 3.4rem);
        color: #fff;
        letter-spacing: 0.5px;
        line-height: 1.1;
        margin-bottom: 16px;
      }
      .hero h1 span {
        color: var(--gold);
      }
      .hero p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        max-width: 560px;
        margin: 0 auto 32px;
        line-height: 1.65;
      }
      .hero-badges {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .badge {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.75);
        padding: 5px 14px;
        border-radius: 99px;
        font-size: 0.78rem;
        font-weight: 600;
      }

      /* ── WHO SECTION ──────────────────────────────────── */
      .section {
        padding: 64px 24px;
        max-width: 1000px;
        margin: 0 auto;
      }
      .section-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 10px;
      }
      .section h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: clamp(1.8rem, 3.5vw, 2.4rem);
        color: var(--navy);
        margin-bottom: 12px;
      }
      .section p.lead {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.7;
        max-width: 640px;
      }

      .who-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 36px;
      }
      .who-card {
        background: #f8fafc;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 22px 20px;
      }
      .who-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
      }
      .who-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 6px;
        letter-spacing: 0.3px;
      }
      .who-desc {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.55;
      }

      /* ── PRICING TIERS ────────────────────────────────── */
      .pricing-section {
        background: #f8fafc;
        padding: 64px 24px;
      }
      .pricing-inner {
        max-width: 900px;
        margin: 0 auto;
      }
      .tier-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 36px;
      }
      .tier {
        background: #fff;
        border: 2px solid var(--border);
        border-radius: 14px;
        padding: 28px 24px;
        position: relative;
      }
      .tier.popular {
        border-color: var(--gold);
        box-shadow: 0 4px 24px rgba(240, 165, 0, 0.15);
      }
      .tier-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold);
        color: var(--navy);
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 3px 12px;
        border-radius: 99px;
      }
      .tier-size {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .tier-price {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--navy);
        font-family: 'Barlow Condensed', sans-serif;
        line-height: 1;
      }
      .tier-price span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--muted);
      }
      .tier-saving {
        display: inline-block;
        background: #dcfce7;
        color: #15803d;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 99px;
        margin: 8px 0 14px;
      }
      .tier-features {
        list-style: none;
        margin-bottom: 22px;
      }
      .tier-features li {
        font-size: 0.85rem;
        color: var(--muted);
        padding: 5px 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        gap: 8px;
        align-items: flex-start;
      }
      .tier-features li:last-child {
        border-bottom: none;
      }
      .tier-features li::before {
        content: '✓';
        color: var(--green);
        font-weight: 700;
        flex-shrink: 0;
      }
      .tier-cta {
        display: block;
        background: var(--navy);
        color: #fff;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        width: 100%;
      }
      .tier.popular .tier-cta {
        background: var(--gold);
        color: var(--navy);
      }
      .tier-cta:hover {
        opacity: 0.9;
      }
      .tier-note {
        font-size: 0.72rem;
        color: var(--muted);
        text-align: center;
        margin-top: 8px;
      }

      /* ── HOW IT WORKS ─────────────────────────────────── */
      .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        margin-top: 36px;
      }
      .step {
        text-align: center;
      }
      .step-num {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--gold);
        color: var(--navy);
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
      }
      .step-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .step-desc {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.55;
      }

      /* ── QUOTE FORM ───────────────────────────────────── */
      .form-section {
        background: var(--navy);
        padding: 64px 24px;
      }
      .form-inner {
        max-width: 640px;
        margin: 0 auto;
      }
      .form-inner h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 2rem;
        color: #fff;
        margin-bottom: 8px;
      }
      .form-inner p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.6;
      }
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .form-grid .full {
        grid-column: 1/-1;
      }
      label {
        display: block;
        font-size: 0.78rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 5px;
      }
      input,
      select,
      textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        padding: 11px 14px;
        color: #fff;
        font-family: 'Barlow', sans-serif;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.2s;
      }
      input:focus,
      select:focus,
      textarea:focus {
        border-color: var(--gold);
      }
      input::placeholder,
      textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }
      select option {
        background: var(--navy);
        color: #fff;
      }
      textarea {
        min-height: 90px;
        resize: vertical;
      }
      .submit-btn {
        width: 100%;
        background: var(--gold);
        color: var(--navy);
        border: none;
        padding: 14px;
        border-radius: 8px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: 1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 6px;
      }
      .submit-btn:hover {
        opacity: 0.9;
      }
      .form-note {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        margin-top: 10px;
      }
      #bulk-success {
        display: none;
        background: rgba(29, 185, 84, 0.15);
        border: 1px solid rgba(29, 185, 84, 0.3);
        border-radius: 10px;
        padding: 18px;
        text-align: center;
        color: #4ade80;
        font-size: 0.92rem;
        margin-top: 16px;
      }

      /* ── FOOTER ───────────────────────────────────────── */
      .footer {
        background: #070f17;
        padding: 24px;
        text-align: center;
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.78rem;
      }
      .footer a {
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
        margin: 0 8px;
      }

      @media (max-width: 600px) {
        .nav-links {
          display: none;
        }
        .form-grid {
          grid-template-columns: 1fr;
        }
        .hero {
          padding: 48px 20px 40px;
        }
      }
