    /* ─── Reset & Base ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange:        #f29d2e;
      --orange-dark:   #d4860a;
      --orange-light:  #fff4e0;
      --orange-border: rgba(242, 157, 46, 0.3);

      --bg-page:       #f5f6f8;
      --bg-card:       #ffffff;
      --bg-card-alt:   #ffffff;
      --bg-header:     #ffffff;

      --border:        #e2e5ea;
      --border-strong: #d0d4db;

      --text-primary:  #1a1e2a;
      --text-body:     #4a5568;
      --text-muted:    #6b7280;
      --text-sub:      #9ca3af;

      --shadow-card:   0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
      --shadow-hover:  0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
      --shadow-featured: 0 8px 32px rgba(242,157,46,0.2), 0 2px 8px rgba(242,157,46,0.12);

      --font-body:     'Roboto', Helvetica, Arial, Lucida, sans-serif;
      --font-heading:  'Roboto Condensed', Helvetica, Arial, Lucida, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-body);
      background-color: var(--bg-page);
      line-height: 1.7em;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: var(--orange-dark); text-decoration: none; }
    a:hover { color: var(--orange); }

    /* ─── Utility ─── */
    .container {
      width: 85%;
      max-width: 1080px;
      margin: auto;
      position: relative;
    }

    /* ─── Pricing Section ─── */
    .pricing-section {
      padding: 80px 0 100px;
      background: var(--bg-page);
      position: relative;
      overflow: hidden;
    }

    /* Subtle warm tint at top */
    .pricing-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 35% at 50% 0%, rgba(242,157,46,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 25% at 85% 90%, rgba(242,157,46,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ─── Section Header ─── */
    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .pricing-eyebrow {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange-dark);
      margin-bottom: 16px;
      padding: 6px 18px;
      border: 1px solid var(--orange-border);
      border-radius: 2px;
      background: var(--orange-light);
    }

    .pricing-title {
      font-family: var(--font-heading);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.1em;
      padding-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .pricing-title span {
      color: var(--orange);
    }

    .pricing-subtitle {
      font-size: 16px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.8em;
    }

    /* Divider line */
    .section-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-dark));
      margin: 0 auto 36px;
      border-radius: 2px;
    }

    /* ─── Pricing Grid ─── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
      }
    }

    /* ─── Pricing Card ─── */
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 40px 36px 44px;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      border-color: var(--orange-border);
      box-shadow: var(--shadow-hover);
    }

    /* Featured / Popular card */
    .pricing-card.featured {
      background: var(--bg-card-alt);
      border-color: var(--orange);
      border-width: 2px;
      box-shadow: var(--shadow-featured);
      transform: scale(1.02);
      z-index: 2;
    }

    .pricing-card.featured:hover {
      transform: scale(1.02) translateY(-5px);
      box-shadow: 0 20px 56px rgba(242,157,46,0.25), 0 4px 16px rgba(242,157,46,0.14);
    }

    .featured-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: #ffffff;
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 5px 20px;
      border-radius: 0 0 4px 4px;
      white-space: nowrap;
    }

    /* ─── Card: Plan Name ─── */
    .plan-name {
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 700;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 18px;
      line-height: 1em;
    }

    /* ─── Card: Price Block ─── */
    .plan-price-wrap {
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }

    .plan-price-headline {
      font-family: var(--font-heading);
      font-size: 36px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.1em;
      margin-bottom: 8px;
    }

    .plan-price-note-free {
      font-size: 12px;
      font-style: italic;
      color: var(--text-sub);
    }

    .plan-price-monthly {
      font-size: 13px;
      font-style: italic;
      font-weight: 500;
      color: var(--orange-dark);
    }

    .pricing-card.featured .plan-price-monthly {
      color: var(--orange-dark);
    }

    /* ─── Card: Features ─── */
    .plan-features {
      list-style: none;
      flex: 1;
      margin-bottom: 36px;
    }

    .plan-features li {
      font-size: 13px;
      color: var(--text-body);
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5em;
    }

    .plan-features li:last-child {
      border-bottom: none;
    }

    .plan-features li .check {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      margin-top: 2px;
      color: var(--orange);
    }

    /* ─── Card: CTA Button ─── */
    .plan-cta {
      display: block;
      text-align: center;
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 14px 24px;
      border-radius: 4px;
      border: 2px solid var(--orange);
      color: var(--orange-dark);
      background: transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
      text-decoration: none;
    }

    .plan-cta:hover {
      background: var(--orange);
      color: #ffffff;
      border-color: var(--orange);
      box-shadow: 0 4px 16px rgba(242,157,46,0.35);
    }

    .pricing-card.featured .plan-cta {
      background: var(--orange);
      color: #ffffff;
      border-color: var(--orange);
    }

    .pricing-card.featured .plan-cta:hover {
      background: var(--orange-dark);
      border-color: var(--orange-dark);
      box-shadow: 0 4px 16px rgba(212,134,10,0.35);
    }

    /* ─── Below Grid Note ─── */
    .pricing-footnote {
      text-align: center;
      margin-top: 48px;
      font-size: 13px;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
    }

    .pricing-footnote a {
      color: var(--orange-dark);
      border-bottom: 1px solid var(--orange-border);
    }

    .pricing-footnote a:hover {
      color: var(--orange);
      border-color: var(--orange);
    }
