        :root {
            --primary-orange: #ff8800;
            --secondary-orange: #ff6600;
            --accent-gold: #ffaa00;
            --steel-gray: #c0c0c0;
            --dark-gray: #1a1a1a;
            --bg-black: #000000;
            --text-light: #e0e0e0;
            --glow-orange: rgba(255, 136, 0, 0.4);
        }

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

        body {
            background: var(--bg-black);
            color: var(--text-light);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .bg-circuit {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            opacity: 0.03;
            background-image:
                repeating-linear-gradient(90deg, transparent 0, transparent 70px, var(--steel-gray) 70px, var(--steel-gray) 71px),
                repeating-linear-gradient(0deg, transparent 0, transparent 70px, var(--steel-gray) 70px, var(--steel-gray) 71px);
            animation: grid-shift 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes grid-shift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(70px, 70px); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 136, 0, 0.2);
            animation: nav-slide-down 0.8s ease-out;
        }

        @keyframes nav-slide-down {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-nav {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px var(--glow-orange);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--primary-orange); }
        .nav-links a:hover::after { width: 100%; }

        /* Hero */
        .hero {
            padding: 10rem 5% 6rem;
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: title-reveal 1s ease-out 0.3s backwards;
        }

        @keyframes title-reveal {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--steel-gray);
            max-width: 800px;
            margin: 0 auto;
            animation: fade-in 1s ease-out 0.5s backwards;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Shared */
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--steel-gray);
            margin-bottom: 5rem;
        }

        /* ── CONTACT OPTIONS ── */
        .contact-options {
            padding: 5rem 5%;
            position: relative;
            z-index: 10;
        }

        .contact-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .contact-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
            border: 1px solid rgba(255, 136, 0, 0.2);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
            transition: width 0.4s ease;
        }

        .contact-card:hover::after { width: 100%; }
        .contact-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-8px);
            box-shadow: 0 10px 40px var(--glow-orange);
        }

        .contact-card-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .contact-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            color: var(--primary-orange);
            margin-bottom: 0.8rem;
        }

        .contact-card p {
            font-size: 1rem;
            color: var(--steel-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .availability {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 136, 0, 0.1);
            border: 1px solid rgba(255, 136, 0, 0.3);
            color: var(--primary-orange);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 2px;
        }

        .contact-card a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            display: block;
            margin-top: 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        .contact-card a:hover { color: var(--accent-gold); }

        /* ── PLANS & PRICING ── */
        .plans-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--dark-gray), var(--bg-black));
            position: relative;
            z-index: 10;
        }

        .plans-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .plan-card {
            background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(0,0,0,0.95));
            border: 1px solid rgba(255,136,0,0.2);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            transition: all 0.4s ease;
        }

        .plan-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-6px);
            box-shadow: 0 10px 40px var(--glow-orange);
        }

        .plan-card--featured {
            border-color: var(--primary-orange);
            box-shadow: 0 0 30px var(--glow-orange);
        }

        .plan-badge {
            position: absolute;
            top: -1px;
            right: 1.5rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.35rem 0.8rem;
        }

        .plan-header { text-align: center; }

        .plan-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--steel-gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .plan-card--featured .plan-name { color: var(--primary-orange); }

        .plan-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-orange);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--steel-gray);
        }

        .plan-price--custom {
            font-size: 2rem;
        }

        .plan-hours {
            font-size: 0.9rem;
            color: var(--steel-gray);
            letter-spacing: 0.05em;
        }

        .plan-rates {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            border-top: 1px solid rgba(255,136,0,0.15);
            border-bottom: 1px solid rgba(255,136,0,0.15);
            padding: 1.25rem 0;
        }

        .rate-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .rate-label { color: var(--steel-gray); }

        .rate-val {
            color: var(--text-light);
            font-weight: 600;
        }

        .plan-desc {
            font-size: 0.95rem;
            color: var(--steel-gray);
            line-height: 1.6;
            flex: 1;
        }

        .plan-cta {
            text-align: center;
            padding: 0.9rem 1.5rem;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            width: 100%;
        }

        /* ── ADDITIONAL NOTES ── */
        .notes-section {
            padding: 5rem 5%;
            position: relative;
            z-index: 10;
        }

        .notes-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(0,0,0,0.95));
            border: 1px solid rgba(255,136,0,0.2);
            padding: 3rem;
        }

        .notes-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .notes-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .notes-list li {
            font-size: 1rem;
            color: var(--steel-gray);
            line-height: 1.6;
            padding-left: 1.5rem;
            position: relative;
        }

        .notes-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: 700;
        }

        /* ── SUPPORT TIERS TABLE ── */
        .tiers-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--bg-black), var(--dark-gray));
            position: relative;
            z-index: 10;
        }

        .tiers-table-container {
            max-width: 1400px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .tiers-table {
            width: 100%;
            border-collapse: collapse;
        }

        .tiers-table thead {
            border-bottom: 2px solid rgba(255, 136, 0, 0.2);
        }

        .tiers-table th {
            padding: 1.5rem 2rem;
            text-align: left;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--steel-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tiers-table th:first-child { min-width: 200px; }

        .tiers-table tbody tr {
            border-bottom: 1px solid rgba(255, 136, 0, 0.1);
            transition: background 0.3s ease;
        }

        .tiers-table tbody tr:hover { background: rgba(255, 136, 0, 0.05); }

        .tiers-table td {
            padding: 1.5rem 2rem;
            font-size: 1rem;
        }

        .tier-name {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 136, 0, 0.1);
            border: 1px solid rgba(255, 136, 0, 0.3);
            color: var(--primary-orange);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 2px;
            min-width: 160px;
            text-align: center;
        }

        .tier-val { color: var(--steel-gray); font-size: 0.95rem; }
        .check { color: var(--primary-orange); font-size: 1.2rem; }
        .dash  { color: rgba(192,192,192,0.25); font-size: 1.2rem; }

        /* ── FAQ ── */
        .faq-section {
            padding: 8rem 5%;
            position: relative;
            z-index: 10;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-filters {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 1px solid rgba(255, 136, 0, 0.3);
            color: var(--text-light);
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: rgba(255, 136, 0, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
            border: 1px solid rgba(255, 136, 0, 0.2);
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover { border-color: rgba(255, 136, 0, 0.4); }
        .faq-item.open  { border-color: var(--primary-orange); box-shadow: 0 5px 30px var(--glow-orange); }
        .faq-item.hidden { display: none; }

        .faq-question {
            padding: 2rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            cursor: pointer;
            user-select: none;
        }

        .faq-question h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .faq-item.open .faq-question h3 { color: var(--primary-orange); }

        .faq-toggle {
            font-size: 1.8rem;
            color: var(--primary-orange);
            flex-shrink: 0;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        .faq-item.open .faq-toggle { transform: rotate(45deg); }

        .faq-answer {
            display: none;
            padding: 0 2.5rem 2rem;
            border-top: 1px solid rgba(255, 136, 0, 0.1);
        }

        .faq-item.open .faq-answer { display: block; }

        .faq-answer p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.8;
            padding-top: 1.5rem;
        }

        /* ── SYSTEM STATUS ── */
        .status-section {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--dark-gray), var(--bg-black));
            position: relative;
            z-index: 10;
        }

        .status-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .status-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .status-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
            border: 1px solid rgba(255, 136, 0, 0.2);
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .status-card:hover { border-color: var(--primary-orange); box-shadow: 0 5px 20px var(--glow-orange); }

        .status-dot {
            width: 14px; height: 14px;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        .status-dot.green {
            background: #00cc66;
            box-shadow: 0 0 10px rgba(0, 204, 102, 0.6);
        }

        .status-dot.green::after {
            content: '';
            position: absolute;
            top: -5px; left: -5px;
            width: 24px; height: 24px;
            border-radius: 50%;
            border: 1px solid rgba(0, 204, 102, 0.3);
            animation: ping 2s ease-in-out infinite;
        }

        @keyframes ping {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.4); opacity: 0; }
        }

        .status-info h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 0.25rem;
        }

        .status-info .status-label {
            font-size: 0.85rem;
            color: #00cc66;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .uptime-panel {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
            border: 1px solid rgba(255, 136, 0, 0.2);
            padding: 2.5rem;
        }

        .uptime-panel h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .uptime-track {
            display: flex;
            gap: 3px;
            margin-bottom: 0.8rem;
        }

        .uptime-block {
            flex: 1;
            height: 32px;
            border-radius: 2px;
            background: #00cc66;
            opacity: 0.75;
            transition: opacity 0.2s ease;
            cursor: default;
        }

        .uptime-block:hover { opacity: 1; }
        .uptime-block.incident { background: var(--primary-orange); }

        .uptime-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--steel-gray);
        }

        /* ── CTA ── */
        .cta-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, rgba(255, 136, 0, 0.1), rgba(0, 0, 0, 0.9));
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .cta-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-section p {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            box-shadow: 0 0 30px var(--glow-orange);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 40px var(--glow-orange); }

        /* ── FOOTER ── */
        footer {
            background: var(--dark-gray);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(255, 136, 0, 0.2);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: var(--primary-orange); margin-bottom: 1rem; font-weight: 900; }
        .footer-brand p { color: var(--steel-gray); line-height: 1.8; font-weight: 300; }
        .footer-links h4 { font-family: 'Orbitron', sans-serif; color: var(--primary-orange); margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-links ul { list-style: none; }
        .footer-links ul li { margin-bottom: 0.8rem; }
        .footer-links ul li a { color: var(--text-light); text-decoration: none; transition: color 0.3s ease; font-weight: 300; }
        .footer-links ul li a:hover { color: var(--primary-orange); }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 136, 0, 0.1);
            color: var(--steel-gray);
            font-weight: 300;
        }

        .version-badge {
            position: fixed;
            bottom: 20px; right: 20px;
            background: rgba(255, 136, 0, 0.1);
            border: 1px solid var(--primary-orange);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: var(--primary-orange);
            z-index: 1001;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .contact-grid { grid-template-columns: repeat(2, 1fr); }
            .plans-grid { grid-template-columns: repeat(2, 1fr); }
            .status-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .contact-grid { grid-template-columns: 1fr; }
            .plans-grid { grid-template-columns: 1fr; }
            .status-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
            .notes-container { padding: 2rem; }
        }
