 /* ─── PREMIUM DARK DESIGN TOKENS (ABYSS THEME) ─── */
    :root {
      /* Pushed backgrounds to an extremely deep, near-black midnight */
      --bg-base: #07090f;
      --bg-subtle: #0f1423;
      --bg-surface: #141a2e;
      --bg-element: rgba(255, 255, 255, 0.03);
      
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      
      /* FIXED: Balanced subtle borders (No more harsh white lines) */
      --border-light: rgba(255, 255, 255, 0.4); 
      --border-hover: rgba(255, 255, 255, 0.6);
      
      /* Midas Touch (Gold replacing all vibrant colors) */
      --brand-gold: #fbbf24;
      --brand-gold-light: #fde047;
      --brand-gold-dark: #d97706;
      
      /* UI Primary variables */
      --brand-primary: var(--brand-gold); 
      --brand-primary-hover: var(--brand-gold-light);
      --brand-gradient: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold-dark));
      
      /* Semantic Colors */
      --success: #10b981;      
      --warning: #fbbf24;      
      --danger: #ef4444;
      
      /* Theme specific UI properties */
      --header-bg: rgba(7, 9, 15, 0.85);
      --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
      --shadow-md: 0 10px 20px rgba(0,0,0,0.5);
      --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.7);
      --shadow-glow: 0 10px 30px -10px rgba(251, 191, 36, 0.15);
      
      --font-main: 'Plus Jakarta Sans', sans-serif;
      --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      
      --max-w: 1280px; 
      
      /* Bento-style large radii */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --radius-full: 9999px;
    }

    /* ─── RESET & BASE ─── */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-main);
      background-color: var(--bg-base);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    button { border: none; background: none; font-family: inherit; cursor: pointer; outline: none; }
    ul { list-style: none; }
    .container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

    /* ─── FIXED AMBIENT LIGHT BLOOMS ─── */
    /* Safely contained in the background, reduced opacity to prevent messy overlap */
    .fixed-bg-blooms {
      position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
    }
    .ambient-bloom {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.15; /* Much softer, elegant glow */
    }
    .bloom-gold { background: var(--brand-gold); }
    .bloom-dark-purple { background: #581c87; }

    /* ─── TYPOGRAPHY ─── */
    h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.04em; }
    .heading-xl { font-size: clamp(3rem, 5vw, 4rem); }
    .heading-md { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
    .text-gradient { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

    /* ─── BUTTONS ─── */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 800; font-size: 15px; transition: var(--transition); cursor: pointer; border: 1px solid transparent; }
    .btn-primary { background: var(--brand-gradient); color: #000 !important; box-shadow: var(--shadow-glow); border-color: rgba(255,255,255,0.2); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -5px rgba(251, 191, 36, 0.3); }
    .btn-secondary { background: var(--bg-surface); color: var(--text-main); border-color: var(--border-light); box-shadow: var(--shadow-sm); }
    .btn-secondary:hover { box-shadow: var(--shadow-md); border-color: var(--brand-primary); transform: translateY(-1px); }

    /* ─── HEADER ─── */
    .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--header-bg); backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: var(--transition); }
    .header.scrolled { border-bottom-color: var(--border-light); box-shadow: var(--header-shadow); }
    .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1400px; }
    .nav-left { display: flex; align-items: center; gap: 48px; }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 24px; color: var(--text-main); letter-spacing: -0.05em; margin-left: -24px; }
    .brand-icon { width: 32px; height: 32px; background: var(--brand-gradient); border-radius: 8px; display: grid; place-items: center; color: #000; border: 1px solid rgba(255,255,255,0.2); }
    .nav-links { display: flex; gap: 32px; font-weight: 600; font-size: 15px; color: var(--text-muted); }
    .nav-links a:hover { color: var(--brand-primary); }
    .nav-actions { display: flex; gap: 12px; align-items: center; }

    /* ─── PRICING HERO & TABS ─── */
    .pricing-hero { padding: 160px 0 80px; text-align: center; position: relative; z-index: 10; }
    .pricing-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 650px; margin: 24px auto 40px; font-weight: 500; }

    .plan-tabs-container { 
      max-width: 500px; 
      margin: 0 auto 64px auto; 
      display: flex; 
      background: var(--bg-surface);
      padding: 6px;
      border-radius: var(--radius-full);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      position: relative; 
    }
    
    .plan-tab { 
      flex: 1; 
      text-align: center; 
      padding: 12px 24px; 
      font-size: 1rem; 
      font-weight: 700; 
      color: var(--text-muted); 
      cursor: pointer; 
      border-radius: var(--radius-full);
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative; 
      z-index: 2; 
    }
    
    .plan-tab:hover:not(.active) { color: var(--text-main); }

    .plan-tab.active { 
      color: #000;
      background: var(--brand-gradient);
      box-shadow: var(--shadow-glow);
    }

    .tab-badge { 
      position: absolute; 
      top: -12px; 
      right: -10px; 
      background: var(--success); 
      color: #000; 
      padding: 4px 10px; 
      border-radius: var(--radius-full); 
      font-size: 10px; 
      font-weight: 800; 
      text-transform: uppercase; 
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0,0,0,0.1);
    }

    /* ─── PRICING CARDS DYNAMIC GRID ─── */
    .pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: stretch; margin-bottom: 100px; width: 100%; position: relative; z-index: 10; }
    .pricing-card { 
      flex: 1 1 280px; max-width: 340px; 
      background: var(--bg-surface); border: 1px solid var(--border-light); 
      border-radius: var(--radius-lg); padding: 32px 24px; 
      box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; 
      position: relative; display: flex; flex-direction: column; 
    }
    .pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-primary); }
    
    .pricing-card.popular { 
      border: 1px solid var(--brand-primary); 
      box-shadow: var(--shadow-glow); transform: scale(1.02); 
      background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(251, 191, 36, 0.03) 100%); 
    }
    .pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
    
    .popular-tag { 
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%); 
      background: var(--brand-gradient); color: #000; padding: 6px 16px; 
      border-radius: var(--radius-full); font-size: 12px; font-weight: 800; 
      text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; 
      border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow-glow);
    }

    .hidden-card { display: none !important; }

    .plan-header { margin-bottom: 24px; border-bottom: 1px solid var(--border-light); padding-bottom: 24px; }
    .plan-name { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text-main); display: flex; align-items: center; justify-content: space-between; }
    .plan-name i { color: var(--brand-primary); }
    .contacts-badge { display: inline-block; background: var(--bg-subtle); border: 1px solid var(--border-light); padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 800; color: var(--text-muted); margin-bottom: 16px; }
    .popular .contacts-badge { background: rgba(251, 191, 36, 0.1); color: var(--brand-primary); border-color: rgba(251, 191, 36, 0.2); }
    .price-wrap { display: flex; flex-direction: column; margin-bottom: 16px; }
    .price-orig { text-decoration: line-through; color: var(--text-muted); font-size: 15px; font-weight: 600; opacity: 0.7; margin-bottom: -4px; height: 20px; }
    .plan-price { font-size: 36px; font-weight: 900; color: var(--text-main); letter-spacing: -0.05em; display: flex; align-items: baseline; gap: 4px; }
    .plan-price span { font-size: 15px; color: var(--text-muted); font-weight: 600; letter-spacing: 0; }
    .billed-text { font-size: 12px; color: var(--text-muted); font-weight: 600; }

    .feature-list { display: flex; flex-direction: column; gap: 14px; font-weight: 600; font-size: 13px; margin-top: 24px; flex-grow: 1; }
    .feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); line-height: 1.5; }
    .feature-list li strong { color: var(--text-main); }
    .feature-list i { color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
    .feature-list i.success { color: var(--success); }
    .feature-list i.warning { color: var(--warning); }

    /* ─── COMPARE TABLE ─── */
    .compare-section { padding: 100px 0; background: var(--bg-subtle); position: relative; z-index: 10; border-top: 1px solid var(--border-light); }
    .compare-header { text-align: center; margin-bottom: 64px; }
    .table-container { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow-x: auto; }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 800px; text-align: left; }
    .compare-table th, .compare-table td { padding: 18px 24px; border-bottom: 1px solid var(--border-light); }
    .compare-table th { background: var(--bg-surface); position: sticky; top: 0; z-index: 10; font-size: 16px; font-weight: 800; color: var(--text-main); }
    .compare-table th:first-child { width: 28%; }
    .compare-table tbody th { background: var(--bg-element); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); padding: 12px 24px; border-bottom: 1px solid var(--border-light); }
    .compare-table td { font-size: 14px; color: var(--text-muted); font-weight: 600; }
    .compare-table td.feature-name { font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
    .compare-table tr:last-child td { border-bottom: none; }
    
    /* Highlight the ORO III column using Abyss Theme colors safely */
    .compare-table th:nth-child(5), .compare-table td:nth-child(5) { 
      background: rgba(251, 191, 36, 0.03); 
      border-left: 1px solid rgba(251, 191, 36, 0.1); 
      border-right: 1px solid rgba(251, 191, 36, 0.1); 
    }
    .compare-table th:nth-child(5) { color: var(--brand-primary); }
    
    .icon-check { color: var(--success); }
    .icon-x { color: var(--text-muted); opacity: 0.4; } /* Subtle X */

    /* ─── FAQ SECTION ─── */
    .faq-section { padding: 100px 0; background: var(--bg-base); position: relative; z-index: 10; border-top: 1px solid var(--border-light); }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); }
    .faq-item.active { border-color: var(--brand-primary); }
    .faq-question { padding: 24px; width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 700; color: var(--text-main); cursor: pointer; transition: var(--transition); }
    .faq-question:hover { color: var(--brand-primary); }
    .faq-question i { color: var(--brand-primary); transition: transform 0.3s ease; }
    .faq-item.active .faq-question i { transform: rotate(180deg); }
    .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; color: var(--text-muted); font-size: 15px; line-height: 1.6; font-weight: 500; transition: max-height 0.3s ease, padding 0.3s ease; }
    .faq-item.active .faq-answer { padding: 0 24px 24px; max-height: 200px; }

    /* ─── FOOTER ─── */
    .footer { padding: 60px 0; background: var(--bg-subtle); border-top: 1px solid var(--border-light); position: relative; z-index: 10; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-col h4 { font-weight: 800; margin-bottom: 20px; font-size: 14px; text-transform: uppercase; color: var(--text-main); }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { color: var(--text-muted); font-weight: 500; font-size: 15px; }
    .footer-col a:hover { color: var(--brand-primary); }
    .footer-bottom { border-top: 1px solid var(--border-light); padding-top: 32px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 14px; font-weight: 500; }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1200px) {
      .pricing-grid { margin: 0 auto 80px; }
      .pricing-card.popular { transform: scale(1); }
      .pricing-card.popular:hover { transform: translateY(-4px); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-left .brand { margin-left: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .plan-tabs-container { flex-direction: column; border-radius: 12px; padding: 12px; gap: 8px; }
      .plan-tab { border-radius: 8px; }
      .tab-badge { top: 4px; right: 8px; }
    }