  /* ─────────────────────────────────────────
       CSS VARIABLES
    ───────────────────────────────────────── */
    :root {
      --navy:         #0d1b2a;
      --navy-mid:     #1a2d45;
      --gold:         #e8a820;
      --gold-light:   #f5c95a;
      --muted:        #8a9bb0;
      --white:        #ffffff;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;
      --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--navy-mid);
      color: var(--white);
    }

    /* ─────────────────────────────────────────
       SCROLL-REVEAL UTILITY
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible      { opacity: 1; transform: none; }
    .reveal-d1           { transition-delay: 0.10s; }
    .reveal-d2           { transition-delay: 0.22s; }
    .reveal-d3           { transition-delay: 0.34s; }

    /* ─────────────────────────────────────────
       SECTION SHELL
    ───────────────────────────────────────── */
    #pricing {
      background: var(--navy-mid);
      padding: 5rem 1.5rem 5.5rem;
      position: relative;
      overflow: hidden;
    }

    /* large decorative music note in background */
    #pricing::before {
      content: '♫';
      position: absolute;
      font-size: 28rem;
      color: rgba(255, 255, 255, 0.025);
      left: -3.5rem;
      bottom: -3rem;
      pointer-events: none;
      user-select: none;
      line-height: 1;
    }

    /* subtle top gradient border */
    #pricing::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 30%,
        rgba(232, 168, 32, 0.4) 70%,
        transparent 100%);
    }

    /* ─────────────────────────────────────────
       INNER WRAPPER
    ───────────────────────────────────────── */
    .pricing-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ─────────────────────────────────────────
       SECTION BADGE
    ───────────────────────────────────────── */
    .section-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(232, 168, 32, 0.4);
      padding: 0.3rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    /* ─────────────────────────────────────────
       HEADING BLOCK
    ───────────────────────────────────────── */
    .pricing-label {
      text-align: center;
      margin-bottom: 2.75rem;
    }
    .pricing-label h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 0.65rem;
    }
    .pricing-label p {
      color: var(--muted);
      font-size: 1rem;
      font-weight: 300;
    }

    /* ─────────────────────────────────────────
       TOGGLE PILLS
    ───────────────────────────────────────── */
    .pricing-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .pricing-toggle-track {
      display: inline-flex;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 5px;
      gap: 4px;
    }
    .ptab {
      padding: 0.55rem 1.75rem;
      border-radius: 100px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.5);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition:
        background var(--transition),
        color     var(--transition),
        box-shadow var(--transition);
    }
    .ptab.active {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 4px 16px rgba(232, 168, 32, 0.35);
    }
    .ptab:not(.active):hover { color: var(--white); }

    /* ─────────────────────────────────────────
       PRICING PANELS (tab content)
    ───────────────────────────────────────── */
    .pricing-panel         { display: none; }
    .pricing-panel.active  { display: block; }

    /* ─────────────────────────────────────────
       PRICE CARDS
    ───────────────────────────────────────── */
    .price-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 8px;
      padding: 2rem 1.75rem 2.25rem;
      height: 100%;
      position: relative;
      transition:
        transform     var(--transition),
        border-color  var(--transition),
        box-shadow    var(--transition);
    }
    .price-card:hover {
      transform: translateY(-6px);
      border-color: rgba(232, 168, 32, 0.35);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    }

    /* featured (gold-bordered) card */
    .price-card.featured {
      border-color: var(--gold);
      background: rgba(232, 168, 32, 0.07);
      box-shadow: 0 8px 40px rgba(232, 168, 32, 0.15);
    }
    .price-card.featured:hover {
      box-shadow: 0 20px 60px rgba(232, 168, 32, 0.25);
    }

    /* "Most Popular / Best Value" pill */
    .price-popular-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.3rem 0.9rem;
      border-radius: 100px;
      white-space: nowrap;
    }

    /* eyebrow label above title */
    .price-duration {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.45rem;
    }

    /* card heading */
    .price-card-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    /* price row  $  NN  /unit */
    .price-amount {
      display: flex;
      align-items: flex-start;
      gap: 0.2rem;
      margin-bottom: 0.3rem;
    }
    .price-dollar {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-top: 0.35rem;
    }
    .price-number {
      font-family: var(--font-display);
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .price-unit {
      font-size: 0.82rem;
      color: var(--muted);
      align-self: flex-end;
      padding-bottom: 0.4rem;
    }

    /* sub-line under price */
    .price-sub {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .price-sub strong { color: rgba(255, 255, 255, 0.75); }
    .price-sub .savings { color: var(--gold); }

    /* horizontal rule inside card */
    .price-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin: 1.5rem 0;
    }

    /* feature bullet list */
    .price-features {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
    }
    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 300;
      line-height: 1.55;
      padding: 0.32rem 0;
    }
    .price-features li .check {
      color: var(--gold);
      font-size: 0.78rem;
      margin-top: 0.25rem;
      flex-shrink: 0;
    }
    .price-features li strong {
      color: var(--white);
      font-weight: 600;
    }

    /* CTA buttons */
    .price-cta {
      display: block;
      width: 100%;
      padding: 0.9rem 1rem;
      text-align: center;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 3px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
    }
    /* outline variant */
    .price-cta-outline {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.75);
    }
    .price-cta-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(232, 168, 32, 0.06);
    }
    /* gold-fill variant */
    .price-cta-gold {
      background: var(--gold);
      color: var(--navy);
    }
    .price-cta-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 168, 32, 0.35);
    }

    /* ─────────────────────────────────────────
       FOOTNOTE
    ───────────────────────────────────────── */
    .pricing-note {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.82rem;
      color: var(--muted);
    }
    .pricing-note a {
      color: var(--gold);
      text-decoration: none;
    }
    .pricing-note a:hover { text-decoration: underline; }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 767px) {
      #pricing { padding: 3.5rem 1rem 4rem; }
      .price-number { font-size: 2.6rem; }
      .ptab { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
    }