/* LearnWithLucky - Bold Athletic Minimalist */
/* 3-Color Palette: Black, White, Gold */

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

:root {
    --black: #1a1a1a;
    --white: #ffffff;
    --gold: #c8960f;
    --gray: #aaaaaa;
    --dark-gray: #222222;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 215, 0, 0.2);
    --radius: 0px;
    --glide: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-bg: rgba(26, 26, 26, 0.8);
    --nav-scrolled: rgba(0, 0, 0, 0.95);
    --footer-bg: #222222;
    --hero-from: #0d0d0d;
    --hero-to: #1a1a1a;
    --card-text: var(--gray);
}

.light-mode {
    --black: #f8f8f8;
    --white: #1a1a1a;
    --gray: #555555;
    --dark-gray: #e8e8e8;
    --glass: rgba(0, 0, 0, 0.04);
    --glass-border: rgba(255, 215, 0, 0.3);
    --nav-bg: rgba(248, 248, 248, 0.9);
    --nav-scrolled: rgba(240, 240, 240, 0.98);
    --footer-bg: #e0e0e0;
    --hero-from: #f0f0f0;
    --hero-to: #fafafa;
    --card-text: #444444;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    overflow-wrap: break-word;
    font-weight: 300;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.6rem 0;
    transition: var(--glide);
}

.navbar.scrolled {
    background: var(--nav-scrolled);
    padding: 0.4rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--glide);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--glide);
    padding: 0.4rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--glide);
    color: var(--gray);
    z-index: 10;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.theme-toggle .sun-icon { display: block; }
.theme-toggle .moon-icon { display: none; }
.light-mode .theme-toggle .sun-icon { display: none; }
.light-mode .theme-toggle .moon-icon { display: block; }
.light-mode .theme-toggle { color: #1a1a1a; border-color: #1a1a1a; }
.light-mode .theme-toggle:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 768px) {
    .theme-toggle {
        position: absolute;
        right: 3.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-gray);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    transition: var(--glide);
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--white);
    background: rgba(255, 215, 0, 0.08);
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }
}

/* Mobile: dropdown items expand inline */
@media (max-width: 768px) {
    .dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transform: none;
        min-width: auto;
        padding: 0 0 0 1rem;
    }

    .dropdown-menu a {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        white-space: normal;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background: transparent;
        color: var(--gold);
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 50%, var(--hero-from) 100%);
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tag {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-logo {
    max-height: 220px;
    width: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.15)) brightness(1.1);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .hero-logo {
        max-height: 150px;
        filter: none;
        border: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-height: 120px;
        margin-bottom: 0.8rem;
        filter: none;
        border: none;
    }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.hero-newsletter {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.hero-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--dark-gray);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.hero-newsletter button {
    padding: 0.8rem 1.5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
    z-index: 1;
}

/* Page Intro - for pages without hero sections */
.page-intro {
    padding: 6rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Bullet Styles */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--glide);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(4px);
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item li {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
}

.faq-item li::before {
    content: "›";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section Common */
/* Section Glide Animation */
@keyframes glideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-slide {
    padding: 6rem 0;
    position: relative;
    animation: glideIn 0.8s ease-out forwards;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    text-align: center !important;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Split Sections */
.split-section .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-section.reverse .split-grid {
    direction: rtl;
}

.split-section.reverse .split-text,
.split-section.reverse .split-images {
    direction: ltr;
}

.split-text {
    max-width: 500px;
}

.split-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Cards */
.card {
    background: var(--glass);
    padding: 2.5rem 2rem;
    transition: var(--glide);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.card-number {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--white);
    font-weight: 700;
}

.card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Tier Cards */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--glass);
    padding: 3rem 2rem;
    transition: var(--glide);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tier-card.featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
}

.tier-card.premium {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.tier-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tier-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.tier-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-card li {
    color: var(--gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--glide);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--black);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 1rem 2rem;
}

/* Quiz */
/* Pitfalls Card */
.pitfalls-card {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Contact Grid - stacks on mobile */
.contact-card {
    text-align: center;
}
.contact-card p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.contact-card .btn-outline {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    word-break: break-all;
}

/* Contact Form Styles */
#contact-form .container {
    display: flex;
    justify-content: center;
}

#contact-form .contact-grid {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(200, 150, 15, 0.3);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--glide);
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-select {
    cursor: pointer;
    appearance: auto;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
}

.light-mode .form-input,
.light-mode .form-select,
.light-mode .form-textarea {
    background: #fff;
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}

.light-mode .form-input:focus,
.light-mode .form-select:focus,
.light-mode .form-textarea:focus {
    border-color: var(--gold);
}

/* Responsive comparison table */
@media (max-width: 600px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem !important;
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-grid > div:last-child {
        order: 2;
    }
}

@media (max-width: 768px) {
    .pitfalls-card {
        padding: 1.25rem !important;
    }
    .pitfalls-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pitfalls-card {
        padding: 1rem !important;
    }
    .pitfalls-card p {
        font-size: 0.82rem;
    }
}

.quiz-start, .quiz-container, .quiz-results {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-start h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.quiz-start p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.quiz-question {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--white);
    cursor: pointer;
    transition: var(--glide);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.quiz-progress-bar {
    height: 4px;
    background: var(--dark-gray);
    margin: 2rem 0;
    position: relative;
}

.quiz-progress {
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
}

.quiz-results h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.quiz-results p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Drill of the Day */
.drill-container {
    max-width: 800px;
    margin: 0 auto;
}

.drill-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.drill-meta {
    display: flex;
    gap: 2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.drill-instructions {
    background: var(--dark-gray);
    padding: 2rem;
    margin-bottom: 2rem;
}

.drill-instructions h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drill-instructions ol {
    color: var(--gray);
    line-height: 2;
    font-size: 0.95rem;
    padding-left: 1.5rem;
}

.drill-growth-tip {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
}

.drill-growth-tip h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.drill-growth-tip p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.drill-equipment {
    margin-bottom: 3rem;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

.duration-selector {
    text-align: center;
    margin-bottom: 2rem;
}

.duration-selector label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.duration-selector select {
    background: var(--dark-gray);
    color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.duration-selector select:focus {
    outline: none;
    border-color: var(--gold);
}

.drill-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Credentials Section */
.credential-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.credential-list li {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.credential-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.split-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.credential-img-placeholder {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 4px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--dark-gray);
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    border-radius: 50%;
    display: block;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--glide);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--gray);
    transition: var(--glide);
}

.social-icons a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* Mobile: Stack images + stats vertically */
@media (max-width: 768px) {
    .split-images {
        grid-template-columns: 1fr;
    }
    .credential-img-placeholder {
        height: 150px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section .split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .split-section.reverse .split-grid {
        direction: ltr;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: var(--glide);
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    .nav-container {
        justify-content: space-between;
    }
    .nav-logo img {
        height: 40px;
        width: 40px;
    }
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .quiz-options {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0px;
    }
    .hero-tag {
        font-size: 0.7rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .nav-logo img {
        height: 34px;
        width: 34px;
    }
}