/* ============================================================
   titanicplay.com — Main Stylesheet
   Design System: Dark / Neon Yellow-Green (#d6ff3c)
   Font: Inter / Plus Jakarta Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #9ca3af;
    background-color: #0b0b0b;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- CSS Custom Properties --------------------------------- */
:root {
    --primary: #d6ff3c;
    --primary-hover: #bce634;
    --primary-light: #f3ffe1;
    --secondary: #111111;
    --secondary-hover: #000000;
    --secondary-light: #2a2a2a;
    --bg-dark: #0b0b0b;
    --bg-card: #181818;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-medium: #4b5563;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-light: #d1d5db;
    --border: #2a2a2a;
    --container: 1170px;
    --section-py: 90px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 50px;
}

/* ---- Typography -------------------------------------------- */
h1 {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
}

/* ---- Layout ----------------------------------------------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

.section-dark { background-color: var(--bg-dark); }
.section-card { background-color: var(--bg-card); }
.section-light { background-color: var(--bg-light); }

/* ---- Navigation ------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--primary);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #d1d5db;
    transition: color 0.2s ease;
    position: relative;
}

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

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

.nav-cta {
    background: var(--primary);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #d1d5db;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--primary); }

/* ---- Buttons ---------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-dark);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 255, 60, 0.35);
}

.btn-primary:active { transform: scale(0.96); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-white);
    padding: 13px 34px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--border);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ---- Cards ------------------------------------------------- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.card-body { padding: 28px; }

/* ---- Hero Section ----------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.7) 60%, rgba(11,11,11,0.88) 100%);
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(214, 255, 60, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 255, 60, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(214, 255, 60, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    background: rgba(214, 255, 60, 0.06);
}

.hero h1 { margin-bottom: 20px; }

.hero h1 span { color: var(--primary); }

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);

}

.hero-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- Page Hero (inner pages) ------------------------------ */
.page-hero {
    padding: 140px 0 80px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { font-size: 18px; color: #d1d5db; max-width: 600px; }

/* ---- Section headings ------------------------------------- */
.section-heading { margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading h2 span { color: var(--primary); }
.section-heading p { font-size: 18px; color: #d1d5db; max-width: 600px; }

.section-heading-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading-center h2 { margin-bottom: 16px; }
.section-heading-center h2 span { color: var(--primary); }
.section-heading-center p { font-size: 18px; color: #d1d5db; max-width: 600px; margin: 0 auto; }

/* ---- Icon Box --------------------------------------------- */
.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(214, 255, 60, 0.08);
    border: 1px solid rgba(214, 255, 60, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.card:hover .icon-box {
    background: rgba(214, 255, 60, 0.15);
    border-color: var(--primary);
}

/* ---- Services Accordion ----------------------------------- */
.service-item {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

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

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.service-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    min-width: 36px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    margin: 0 20px;
    transition: color 0.2s;
}

.service-item:hover .service-title { color: var(--primary); }

.service-icon-btn {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-item.open .service-icon-btn { transform: rotate(45deg); }

.service-body {
    display: none;
    padding: 0 0 28px 56px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.service-item.open .service-body { display: block; }

/* ---- Stats Grid ------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-card {
    background: var(--bg-card);
    padding: 40px 24px;
    text-align: center;
}

.stat-num {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ---- Bento / Why-Choose Grid ------------------------------ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.bento-card {
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border-color: var(--primary);
}

.bento-card-dark { background: var(--bg-card); }

.bento-card-accent {
    background: var(--primary);
    border-color: var(--primary);
}

.bento-card-accent h3 { color: var(--text-dark); }
.bento-card-accent p { color: rgba(17, 17, 17, 0.7); }
.bento-card-accent .bento-icon { background: rgba(0,0,0,0.12); color: var(--text-dark); }

.bento-card-accent:hover { border-color: var(--primary-hover); background: var(--primary-hover); }

.bento-icon {
    width: 52px;
    height: 52px;
    background: rgba(214, 255, 60, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.bento-card h3 { margin-bottom: 12px; font-size: 22px; }
.bento-card p { font-size: 15px; line-height: 1.7; }

/* ---- Game Review Cards ------------------------------------ */
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.review-body { padding: 24px; }

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.review-score {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(214, 255, 60, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(214, 255, 60, 0.2);
}

.review-card h3 { font-size: 18px; margin-bottom: 8px; }

.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- Session Picks ---------------------------------------- */
.picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pick-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.pick-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pick-body { padding: 24px; }

.pick-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pick-card h3 { font-size: 18px; margin-bottom: 10px; }
.pick-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---- Contact Form ----------------------------------------- */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #6b7280; }

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(214, 255, 60, 0.08);
}

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

/* ---- Contact Info ----------------------------------------- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(214, 255, 60, 0.08);
    border: 1px solid rgba(214, 255, 60, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: #d1d5db;
}

/* ---- Privacy Page ----------------------------------------- */
.privacy-section {
    display: flex;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.privacy-section:last-child { border-bottom: none; }

.privacy-num {
    width: 36px;
    height: 36px;
    background: rgba(214, 255, 60, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.privacy-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.privacy-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ---- About Page Specifics --------------------------------- */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(214, 255, 60, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); }

/* ---- CTA Band --------------------------------------------- */
.cta-band {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 255, 60, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 { color: #ffffff; margin-bottom: 16px; }
.cta-band p { color: #d1d5db; font-size: 18px; max-width: 520px; margin: 0 auto 36px; }

/* ---- Footer ----------------------------------------------- */
.site-footer {
    background-color: #080808;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand { }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo-text span { color: var(--primary); }

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-copy span { color: var(--primary); }

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--primary); }

/* ---- Utility ---------------------------------------------- */
.text-primary { color: var(--primary); }
.text-white { color: #ffffff; }
.text-muted { color: var(--text-muted); }
.text-light { color: #d1d5db; }

.accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* ---- Focus states (accessibility) ------------------------- */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---- Animations ------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(214, 255, 60, 0); }
    50% { box-shadow: 0 0 16px 4px rgba(214, 255, 60, 0.2); }
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1199px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    :root { --section-py: 70px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .picks-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    :root { --section-py: 56px; }
    h1 { font-size: clamp(32px, 8vw, 48px); }
    h2 { font-size: clamp(26px, 6vw, 36px); }
    .review-grid { grid-template-columns: 1fr; }
    .picks-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 479px) {
    .container { padding: 0 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { max-width: 100%; }
}
