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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --border-color: #222222;
    --border-hover: #333333;
    --text-primary: #f0f0f0;
    --text-secondary: #999999;
    --text-muted: #666666;
    --accent-red: #e4002b;
    --accent-red-glow: rgba(228, 0, 43, 0.15);
    --accent-red-dim: rgba(228, 0, 43, 0.6);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --max-width: 1200px;
    --section-padding: 6rem 2rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== LOADING OVERLAY ===== */
#loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.loading-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
}

.loading-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.8s forwards;
}

.loading-tagline {
    color: var(--accent-red);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 1.3s forwards;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    animation: spin 0.8s linear infinite, fadeUp 0.6s ease 1.8s forwards;
}

.loading-status {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 2s forwards;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--accent-red);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    text-decoration-color: var(--accent-red);
    text-decoration-thickness: 3px;
}

.hero-highlight {
    color: var(--accent-red);
}

.hero-subtitle {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 150px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* ===== TICKER ===== */
.ticker-wrapper {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}

.ticker-content {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-red-dim);
    padding-right: 2rem;
}

.ticker-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    padding: 0 1rem;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--accent-red);
}

.section-intro {
    max-width: 700px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 40px var(--accent-red-glow);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-red);
    border: 1px solid var(--accent-red-dim);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.quote-container blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-container blockquote em {
    color: var(--accent-red);
    font-style: italic;
}

.quote-container cite {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ===== CEO LETTER ===== */
.letter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    max-width: 800px;
}

.letter-greeting {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.letter-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.letter-card strong {
    color: var(--text-primary);
}

.letter-card em {
    color: var(--accent-red);
}

.letter-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.letter-sign-name {
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 0.2rem !important;
}

.letter-sign-company {
    color: var(--text-secondary) !important;
    margin-bottom: 0.3rem !important;
}

.letter-sign-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

/* ===== WALL OF FAME ===== */
.wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.wall-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wall-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.wall-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-red);
}

.wall-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.wall-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.wall-type {
    color: var(--text-muted);
}

.wall-freq {
    color: var(--accent-red-dim);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.review-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
}

.review-stars {
    font-size: 1.1rem;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.review-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ===== COMPARISON TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--bg-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td:nth-child(2) {
    color: var(--text-secondary);
}

.comparison-table td:nth-child(3) {
    color: var(--accent-red-dim);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(228, 0, 43, 0.03);
}

/* ===== GLOSSARY ===== */
.glossary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 800px;
}

.glossary-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.glossary-item:hover {
    border-color: var(--border-hover);
}

.glossary-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.glossary-toggle:hover {
    color: var(--accent-red);
}

.glossary-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.glossary-item.open .glossary-arrow {
    transform: rotate(180deg);
}

.glossary-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.glossary-item.open .glossary-body {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.glossary-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.glossary-body p strong {
    color: var(--text-primary);
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.counter-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.counter-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.big-counter {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 60px var(--accent-red-glow);
}

.counter-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.counter-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== BINGO ===== */
.bingo-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.bingo-cell {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.bingo-cell:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.bingo-cell.stamped {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.bingo-free {
    background: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.bingo-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bingo-win {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    animation: pulseGlow 1.5s ease infinite;
}

.bingo-win.hidden {
    display: none;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-red-glow); }
    50% { box-shadow: 0 0 50px rgba(228, 0, 43, 0.4); }
}

/* ===== FAQs ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 800px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== AWARDS ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.award-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 40px var(--accent-red-glow);
    transform: translateY(-2px);
}

.award-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.award-years {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== STEP CARDS ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-hover);
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-card strong {
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
#footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-disclaimer strong {
    color: var(--text-secondary);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    color: var(--accent-red);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.footer-tagline {
    color: var(--text-secondary) !important;
    font-style: italic;
    margin-top: 0.5rem !important;
}

.footer-speed {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.5rem !important;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 2rem;
        gap: 0;
    }

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

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    #hero {
        padding: 7rem 1.25rem 3rem;
        min-height: auto;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem 1.25rem;
        min-width: 130px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cards-grid,
    .wall-grid,
    .reviews-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .letter-card {
        padding: 1.5rem;
    }

    .bingo-board {
        gap: 3px;
    }

    .bingo-cell {
        padding: 0.6rem 0.3rem;
        font-size: 0.6rem;
        min-height: 60px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

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

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

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

    .stat-card {
        min-width: 110px;
        padding: 0.75rem 1rem;
    }

    .bingo-cell {
        font-size: 0.55rem;
        min-height: 50px;
        padding: 0.4rem 0.2rem;
    }
}
