/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&display=swap');

/* --- Reset & Global Variable Setups --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050507;
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-red {
    color: #ff2a2a;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
}

.text-blue {
    color: #38bdf8;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.subtitle {
    display: block;
    color: #38bdf8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* --- Header / Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 5, 7, 0.95);
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #ff2a2a;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff2a2a;
}

.btn-enroll {
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    padding: 90px 0 40px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 42, 42, 0.12) 0%, rgba(5, 5, 7, 0) 65%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 58px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 19px;
    line-height: 1.6;
}

/* --- Pricing Tiers Structure --- */
.pricing-tiers {
    padding: 30px 0 60px 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.tier-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s;
}

/* Recommended Border Glow Red */
.tier-card.recommended {
    border: 1px solid #ff2a2a;
    box-shadow: 0 0 25px rgba(255, 42, 42, 0.15);
    background: linear-gradient(180deg, #0f1222 0%, #0b0f19 100%);
}

.badge-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff2a2a;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.tier-header {
    margin-bottom: 30px;
}

.tier-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.tier-tagline {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
}

.price-block {
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.price-block .currency {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 2px;
}

.price-block .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.price-block .period {
    color: #64748b;
    font-size: 15px;
    align-self: flex-end;
    margin-bottom: 6px;
    margin-left: 4px;
}

/* Feature bullet sets */
.tier-features {
    list-style: none;
    margin-bottom: 35px;
}

.tier-features li {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.tier-features li i {
    font-size: 13px;
    margin-right: 12px;
    margin-top: 4px;
}

/* Tier Actions buttons */
.btn-tier {
    display: block;
    text-align: center;
    padding: 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline {
    border: 1px solid #1e293b;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    border-color: #38bdf8;
    color: #38bdf8;
}

.btn-filled {
    background-color: #ff2a2a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}

.btn-filled:hover {
    background-color: #d61f1f;
}

.disclamer-text {
    margin-top: 40px;
    color: #64748b;
    font-size: 14px;
}

/* --- Comparison Breakdown Matrix Table --- */
.breakdown-section {
    padding: 60px 0;
}

.table-wrapper {
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.breakdown-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.breakdown-table th, .breakdown-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #1e293b;
}

.breakdown-table tr:last-child td {
    border-bottom: none;
}

.breakdown-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #0f172a;
}

.breakdown-table td {
    color: #cbd5e1;
}

.breakdown-table td i {
    font-size: 16px;
}

/* --- Extras / À la carte Section --- */
.extras-section {
    padding: 60px 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.extra-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    padding: 25px;
    border-radius: 6px;
}

.extra-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.extra-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
    color: #fff;
}

.extra-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #ff2a2a;
    font-weight: 700;
}

.extra-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.4;
}

/* --- Assurances / Bottom Section --- */
.assurances-section {
    padding: 60px 0 100px 0;
}

.assurances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.assure-card {
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.4) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.assure-icon {
    color: #ff2a2a;
    font-size: 24px;
    margin-bottom: 15px;
}

.assure-card h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.assure-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.4;
}

.cta-wrapper {
    margin-top: 60px;
}

.btn-primary-action {
    display: inline-block;
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(255, 42, 42, 0.4);
    letter-spacing: 1px;
}

/* --- Footer Area --- */
.footer {
    background-color: #050507;
    border-top: 1px solid #1e293b;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    margin: 20px 0;
}

.social-icons a {
    color: #94a3b8;
    margin-right: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #ff2a2a;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ff2a2a;
}

.contact-info p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 12px;
}

.contact-info p i {
    color: #ff2a2a;
    margin-right: 10px;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 20px;
}

/* --- Media Queries Breakpoints --- */
@media (max-width: 1024px) {
    .tiers-grid, .extras-grid, .assurances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tiers-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .tiers-grid, .extras-grid, .assurances-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .table-wrapper {
        overflow-x: auto;
    }
    .breakdown-table {
        min-width: 600px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

