/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0e1a;
    color: #e0e0e0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: linear-gradient(135deg, #0055d4, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-red {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.nav-logo span {
    background: linear-gradient(135deg, #ffffff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00b4ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #00b4ff;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 85, 212, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
                linear-gradient(180deg, #0a0e1a 0%, #0d1229 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0,180,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0,102,255,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(0,180,255,0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0,180,255,0.2), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(0,102,255,0.3), transparent);
    background-size: 200px 200px;
    animation: sparkle 4s ease-in-out infinite alternate;
}

@keyframes sparkle {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 180, 255, 0.6);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 0 60px rgba(0, 85, 212, 0.4), 0 0 120px rgba(0, 180, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
    border: 3px solid rgba(0, 180, 255, 0.3);
}

/* France tricolore bar */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0055d4 33%, #ffffff 33%, #ffffff 66%, #e63946 66%);
    opacity: 0.7;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(0, 102, 255, 0.4), 0 0 120px rgba(0, 180, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 80px rgba(0, 102, 255, 0.6), 0 0 160px rgba(0, 180, 255, 0.3);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a0b0c0;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-desc {
    font-size: 1rem;
    color: #707a88;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: rgba(0, 102, 255, 0.1);
    color: #00b4ff;
    border: 2px solid rgba(0, 180, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(0, 180, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: #00b4ff;
    border: 2px solid rgba(0, 180, 255, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 15px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: #707a88;
    font-weight: 400;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1229 0%, #0a0e1a 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: #707a88;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, rgba(15, 20, 40, 0.9), rgba(10, 14, 26, 0.9));
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 180, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #00b4ff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #707a88;
    line-height: 1.5;
}

/* ===== PRICING SECTIONS ===== */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-section.alt-bg {
    background: linear-gradient(180deg, rgba(13, 18, 41, 0.5), rgba(10, 14, 26, 0.5));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3rem;
    color: #00b4ff;
    margin-bottom: 20px;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 20, 40, 0.95), rgba(10, 14, 26, 0.95));
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
}

.pricing-card.popular {
    border-color: rgba(0, 180, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.pricing-card.popular::before {
    height: 4px;
    background: linear-gradient(90deg, #0055d4, #ffffff, #e63946);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.15);
    color: #00b4ff;
}

.pricing-card.popular .pricing-badge {
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-price {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00b4ff;
    vertical-align: super;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: #707a88;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i.fa-check {
    color: #00b4ff;
    font-size: 0.8rem;
}

.pricing-features li i.fa-times {
    color: #ff4444;
    font-size: 0.8rem;
}

.pricing-features li.disabled {
    color: #4a4f5c;
}

/* ===== FREE TEST ===== */
.free-test {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e1a, #0d1229);
    position: relative;
}

.free-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.3), transparent);
}

.free-test-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 200, 80, 0.2), rgba(0, 180, 255, 0.2));
    color: #00c850;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 200, 80, 0.3);
}

.free-test-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.free-test-content > p {
    color: #707a88;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.free-test-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.spec {
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    transition: all 0.3s ease;
}

.spec:hover {
    border-color: rgba(0, 180, 255, 0.4);
    transform: translateY(-3px);
}

.spec i {
    font-size: 1.3rem;
    color: #00b4ff;
}

.spec span {
    font-weight: 600;
    font-size: 0.95rem;
}

.free-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #4a4f5c;
}

/* Free choices */
.free-choices {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.free-choice {
    background: rgba(0, 85, 212, 0.1);
    border: 1px solid rgba(0, 85, 212, 0.25);
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.free-choice i {
    color: #00b4ff;
}

.free-choice:hover {
    background: rgba(0, 85, 212, 0.2);
    border-color: rgba(0, 180, 255, 0.5);
    transform: translateY(-2px);
}

/* Discord order note */
.discord-order-note {
    text-align: center;
    margin-top: 35px;
    padding: 15px 25px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 12px;
    color: #a8b0ff;
    font-size: 0.9rem;
    font-weight: 500;
}

.discord-order-note i {
    margin-right: 8px;
    color: #5865f2;
}

/* ===== PAGE HEADER (for reglement) ===== */
.page-header {
    padding: 140px 20px 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 85, 212, 0.12) 0%, transparent 70%),
                linear-gradient(180deg, #0a0e1a 0%, #0d1229 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0055d4 33%, #ffffff 33%, #ffffff 66%, #e63946 66%);
    opacity: 0.5;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-header-icon {
    font-size: 3rem;
    color: #00b4ff;
    margin-bottom: 20px;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header-content p {
    color: #707a88;
    font-size: 1.05rem;
}

/* Active link */
.active-link {
    color: #00b4ff !important;
}

/* ===== REGLEMENT ===== */
.reglement-section {
    padding: 80px 0;
}

.reglement-card {
    background: linear-gradient(145deg, rgba(15, 20, 40, 0.9), rgba(10, 14, 26, 0.9));
    border: 1px solid rgba(0, 85, 212, 0.15);
    border-radius: 20px;
    padding: 40px 35px;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.reglement-card:hover {
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 85, 212, 0.1);
}

.reglement-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 85, 212, 0.15), rgba(0, 180, 255, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reglement-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reglement-card h2 i {
    color: #00b4ff;
    font-size: 1.2rem;
}

.reglement-card p {
    color: #a0b0c0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.reglement-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.reglement-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #a0b0c0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.reglement-list li i.fa-chevron-right {
    color: #00b4ff;
    font-size: 0.7rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.reglement-list.danger li i.fa-times-circle {
    color: #e63946;
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.reglement-warning {
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 10px;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 500;
}

.reglement-warning i {
    margin-right: 8px;
}

.contact-info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: rgba(0, 85, 212, 0.08);
    border: 1px solid rgba(0, 85, 212, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 1.8rem;
    color: #00b4ff;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.85rem;
    color: #707a88;
    margin: 0;
}

.reglement-footer-note {
    text-align: center;
    padding: 20px;
    color: #4a4f5c;
    font-size: 0.85rem;
    margin-top: 20px;
}

.reglement-footer-note i {
    margin-right: 6px;
    color: #00b4ff;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1229, #0a0e1a);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: linear-gradient(145deg, rgba(15, 20, 40, 0.8), rgba(10, 14, 26, 0.8));
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.why-card i {
    font-size: 2.5rem;
    color: #00b4ff;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: #707a88;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 30px;
    background: #080b15;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #0055d4 33%, #ffffff 33%, #ffffff 66%, #e63946 66%) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    color: #707a88;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #707a88;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00b4ff;
}

.footer-col ul li i {
    margin-right: 8px;
    color: #00b4ff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b4ff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0066ff, #00b4ff);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #4a4f5c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 102, 255, 0.2);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .free-test-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .free-test-content h2 {
        font-size: 1.8rem;
    }

    .free-choices {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-box {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .free-test-specs {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}
