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

    /* ── HERO ── */
    .pricing-hero { padding: 80px 24px 60px; position: relative; overflow: hidden; }
    .pricing-hero::before {
      content: '';
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    /* .container { max-width: 1200px; margin: 0 auto; } */
    .heading-xl { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; text-align: center; margin-bottom: 16px; }
    .text-gradient { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .pricing-subtitle { text-align: center; color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto 40px; }

    /* ── TABS ── */
    .plan-tabs-container {
      display: flex; justify-content: center; gap: 4px;
      background: rgba(255,255,255,.04); border: 1px solid var(--border-light);
      border-radius: 12px; padding: 4px;
      width: fit-content; margin: 0 auto 48px;
    }
    .plan-tab {
      padding: 9px 22px; border-radius: 9px; cursor: pointer;
      font-size: 13px; font-weight: 600; color: var(--text-muted);
      transition: all .25s; position: relative; white-space: nowrap;
    }
    .plan-tab.active { background: var(--bg-card); color: var(--text-primary); box-shadow: 0 1px 8px rgba(0,0,0,.4); }
    .tab-badge {
      display: inline-block; background: var(--gradient-gold);
      color: #5a5a5a; font-size: 9px; font-weight: 800; padding: 2px 7px;
      border-radius: 20px; margin-left: 7px; text-transform: uppercase; letter-spacing: .5px;
    }

    /* ── PRICING GRID ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      align-items: start;
    }
    .pricing-grid.cols-1 { grid-template-columns: minmax(0,420px); justify-content: center; }
    .pricing-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 720px; margin: 0 auto; }
    .pricing-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .pricing-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 18px; padding: 28px;
      position: relative; overflow: hidden;
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .pricing-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
    .pricing-card.popular {
      border-color: var(--brand-gold);
      background: linear-gradient(160deg, rgba(212,175,55,.07) 0%, var(--bg-card) 60%);
    }
    .pricing-card.popular:hover { box-shadow: 0 0 60px rgba(212,175,55,.25); }
    .hidden-card { display: none !important; }

    .popular-tag {
      position: absolute; top: 0; right: 0;
      background: var(--gradient-gold); color: #000;
      font-size: 11px; font-weight: 800; padding: 5px 16px;
      border-bottom-left-radius: 10px; letter-spacing: .5px; text-transform: uppercase;
    }

    .plan-header { margin-bottom: 20px; }
    .plan-name {
      font-size: 17px; font-weight: 800; margin-bottom: 4px;
      display: flex; align-items: center; gap: 8px;
    }
    .plan-name svg { color: var(--brand-gold); }
    .plan-subtitle { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; font-style: italic; }
    .contacts-badge {
      display: inline-block; background: rgba(212,175,55,.12);
      color: var(--brand-gold); font-size: 12px; font-weight: 700;
      padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
      border: 1px solid rgba(212,175,55,.2);
    }
    .price-wrap { margin-bottom: 4px; }
    .price-orig { font-size: 13px; color: var(--text-dim); text-decoration: line-through; }
    .plan-price { font-size: 32px; font-weight: 900; }
    .plan-price span { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .billed-text { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
    .savings-badge {
      display: inline-block; background: rgba(74,222,128,.1);
      color: var(--success); font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(74,222,128,.2);
      margin-top: 4px;
    }
    .gst-note { font-size: 11px; color: var(--text-dim); margin-top: 8px; }
    .gst-note span { color: var(--warning); font-weight: 600; }
    .gst-disclaimer {
      text-align: center; font-size: 12px; color: var(--text-dim);
      margin-top: -28px; margin-bottom: 36px;
    }
    .gst-disclaimer span { color: var(--warning); font-weight: 700; }

    .feature-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
    .feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }
    .feature-list li svg { flex-shrink: 0; margin-top: 1px; }
    .feature-list li svg.success { color: var(--success); }
    .feature-list li svg.warning { color: var(--warning); }
    .feature-list li svg.gold { color: var(--brand-gold); }
    .feature-list li span strong { color: var(--text-primary); }
    .feature-list li.dim { opacity: .4; }

    /* ── COMPARISON TABLE ── */
    .comparison-section { padding: 60px 24px; }
    .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; text-align: center; margin-bottom: 8px; }
    .section-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
    .comparison-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border-light); }
    .comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
    .comparison-table th {
      padding: 16px 18px; background: rgba(212,175,55,.05);
      font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
      color: var(--brand-gold); border-bottom: 1px solid var(--border-light);
      text-align: center;
    }
    .comparison-table th:first-child { text-align: left; color: var(--text-muted); }
    .comparison-table td {
      padding: 13px 18px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.04);
      text-align: center; color: var(--text-muted);
    }
    .comparison-table td:first-child { text-align: left; color: var(--text-primary); font-weight: 500; }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:hover td { background: rgba(255,255,255,.015); }
    .check { color: var(--success); }
    .cross { color: var(--text-dim); }
    .highlight-col { background: rgba(212,175,55,.04); }

    /* ── FADE ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pricing-grid.cols-4, .pricing-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .pricing-grid, .pricing-grid.cols-2, .pricing-grid.cols-3, .pricing-grid.cols-4 { grid-template-columns: 1fr; }
      .plan-tabs-container { flex-wrap: wrap; width: 90%; }
    }