
        /* Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --bg: #0e0e0e; --text: #ffffff; --muted: #e6e6e6; --accent: #59bba3; --accent-darker: #3d9d87; }
        body { background-color: var(--bg); color: var(--text); font-family: 'Work Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        section { padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,0.06); content-visibility: auto; contain-intrinsic-size: 600px; }

        /* Typography */
        h1 { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 3rem; margin-bottom: 20px; color: var(--text); }
        h2 { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 40px; text-align: center; margin-bottom: 32px; color: #ffffff; text-transform: uppercase; letter-spacing: 0.5px; }
        h3 { font-family: 'Work Sans', sans-serif; font-weight: 400; font-size: 22px; margin-bottom: 12px; color: var(--accent); }
        p, li { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 10px; color: var(--muted); }
        .btn { display: inline-block; background-color: var(--accent); color: var(--bg); padding: 10px 24px; border-radius: 24px; text-decoration: none; font-family: 'Work Sans', sans-serif; font-weight: 700; transition: transform 0.2s ease, background-color 0.2s ease; border: none; cursor: pointer; font-size: 1rem; }
        .btn:hover { background-color: var(--accent-darker); transform: translateY(-2px); }
        .center { text-align: center; }

        /* Hero — gradient background only */
        .hero { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%); min-height: 56vh; display: flex; align-items: center; text-align: center; }
        .hero-content { max-width: 800px; margin: 0 auto; padding: 24px 0; }
        .hero p { font-size: 14px; margin-bottom: 20px; }

        /* Card */
        .card { background-color: rgba(30,30,30,0.6); border-radius: 10px; padding: 24px; margin-bottom: 20px; border: 1px solid rgba(89,187,163,0.18); transition: transform 0.2s ease; }
        .card:hover { transform: translateY(-4px); }
        .card h3 { border-bottom: 2px solid var(--accent); padding-bottom: 8px; margin-bottom: 10px; }
        .card-icon { font-size: 2rem; color: var(--accent); margin-bottom: 12px; }

        /* Grid */
        .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

        /* Tiers */
        .tier { padding: 28px 24px; text-align: left; }
        .tier .tier-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
        .tier-icon { font-size: 2rem; line-height: 1; }
        .tier.gold .tier-icon { color: #ffd700; }
        .tier.platinum .tier-icon { color: #e5e4e2; }
        .tier.diamond .tier-icon { color: #b9f2ff; }
        .progress-container { width: 100%; height: 8px; background-color: rgba(255,255,255,0.08); border-radius: 5px; margin: 10px 0 12px; overflow: hidden; }
        .progress-bar { height: 100%; width: 0; background-color: var(--accent); transition: width 0.8s ease-in-out; }
        .gold .progress-bar { background-color: #ffd700; }
        .platinum .progress-bar { background-color: #e5e4e2; }
        .diamond .progress-bar { background-color: #b9f2ff; }
        .tier ul { list-style: disc; padding-left: 18px; }

        /* FAQ Accordion */
        .faq-item { border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; margin-bottom: 12px; overflow: hidden; background: rgba(30,30,30,0.5); }
        .faq-question { width: 100%; text-align: left; background: transparent; color: #ffffff; border: none; padding: 14px 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 18px; }
        .faq-toggle { color: var(--accent); transition: transform 0.2s ease; }
        .faq-answer { max-height: 0; opacity: 0; padding: 0 16px; transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease; }
        .faq-item.open .faq-answer { max-height: 280px; opacity: 1; padding: 12px 16px 14px; }
        .faq-item.open .faq-toggle { transform: rotate(90deg); }

        /* Modal */
        .modal { position: fixed; inset: 0; display: none; }
        .modal.open { display: block; }
        .modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
        .modal-dialog { position: relative; width: 92%; max-width: 420px; margin: 10vh auto; background: rgba(30,30,30,0.95); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 18px; }
        .modal-dialog h3 { margin: 0 0 10px; }
        .modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px; }
        .input { width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(20,20,20,0.9); color: #fff; font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 14px; }

        /* Animations — lightweight + respect reduced motion */
        .fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.35s ease, transform 0.35s ease; }
        .fade-in.active { opacity: 1; transform: translateY(0); }
        @media (prefers-reduced-motion: reduce) { .fade-in, .btn, .card, .progress-bar { transition: none !important; } }

        /* Responsive */
        @media (max-width: 768px) { h1 { font-size: 2.4rem; } h2 { font-size: 34px; } .hero { min-height: 52vh; } .grid { grid-template-columns: 1fr; } section { padding: 52px 0; } }
        @media (max-width: 480px) { h1 { font-size: 2rem; } h2 { font-size: 28px; } .hero p { font-size: 14px; } .btn { padding: 10px 22px; } }
    