/* ===========================
   Cleobetra Casino - Stylesheet
   Dark luxury Egyptian theme
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors - Light theme (default) */
    --color-bg: #f5f0e6;
    --color-bg-elevated: #ffffff;
    --color-bg-card: #ffffff;
    --color-bg-panel: #ede5d3;

    --color-fg: #1a1a2e;
    --color-fg-muted: #6b7280;
    --color-fg-soft: #475569;

    --color-primary: #0d9488;
    --color-primary-hover: #14b8a6;

    --color-accent: #b8860b;
    --color-accent-hover: #d4af37;
    --color-accent-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b6508 100%);

    --color-border: #d4c9b0;
    --color-border-hover: #0d9488;

    --color-navy: #1e3a8a;
    --color-gold: #b8860b;
    --color-turquoise: #0d9488;
    --color-cream: #1a1a2e;

    --color-header-bg: rgba(245, 240, 230, 0.9);

    /* Typography */
    --font-display: 'Cinzel Decorative', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --space-section: 56px;
    --space-section-lg: 100px;
    --space-card-padding: 24px;
    --space-card-padding-lg: 32px;
    --gap-grid: 16px;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;

    /* Transitions */
    --transition: 300ms ease-out;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 24px rgba(184, 134, 11, 0.2);
    --shadow-glow-turq: 0 0 24px rgba(13, 148, 136, 0.15);
}

html.dark {
    /* Colors - Dark theme */
    --color-bg: #070b18;
    --color-bg-elevated: #0d1325;
    --color-bg-card: #101830;
    --color-bg-panel: #0a1020;

    --color-fg: #f2e8cf;
    --color-fg-muted: #94a3b8;
    --color-fg-soft: #cbd5e1;

    --color-primary: #14b8a6;
    --color-primary-hover: #2dd4bf;

    --color-accent: #d4af37;
    --color-accent-hover: #f0c75e;
    --color-accent-gradient: linear-gradient(135deg, #f0c75e 0%, #d4af37 50%, #b8860b 100%);

    --color-border: #2a3550;
    --color-border-hover: #14b8a6;

    --color-navy: #0d1325;
    --color-gold: #d4af37;
    --color-turquoise: #14b8a6;
    --color-cream: #f2e8cf;

    --color-header-bg: rgba(7, 11, 24, 0.85);

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(212, 175, 55, 0.25);
    --shadow-glow-turq: 0 0 24px rgba(20, 184, 166, 0.2);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-fg);
    background-color: var(--color-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-fg);
}

h1 {
    font-size: 28px;
    font-weight: 900;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

p {
    margin-bottom: 28px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 48px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent-gradient);
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
    color: #1a1a2e;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-fg);
    border: 1.5px solid var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--pill {
    border-radius: 999px;
    padding: 14px 36px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: hidden;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.site-brand .logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-fg-soft);
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.08);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

.nav-cta-group .btn {
    padding: 8px 20px;
    font-size: 14px;
    min-height: 40px;
}

/* Header controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: var(--color-fg-soft);
    transition: all var(--transition);
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile menu open state */
.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    padding: 24px;
    gap: 8px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

.primary-nav.is-open .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
}

.primary-nav.is-open .nav-cta-group {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
}

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
    justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 56px;
    background: radial-gradient(ellipse at 70% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
                var(--color-bg);
}

.hero__bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__burst {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.04) 30%, transparent 60%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero__content {
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero__badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__title {
    font-size: 40px;
    font-weight: 900;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--color-fg-soft);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero__highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-fg);
}

.hero__highlight-icon {
    font-size: 16px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero__micro {
    font-size: 13px;
    color: var(--color-fg-muted);
    margin: 0;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.hero__mascot {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(212, 175, 55, 0.15));
}

.hero__speech-bubble {
    position: absolute;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-accent);
    -webkit-text-stroke: 2px var(--color-primary);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero__speech-bubble--win {
    top: 10%;
    left: 5%;
}

.hero__speech-bubble--gold {
    bottom: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--space-section) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section__title {
    font-size: 24px;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------- Prose ---------- */
.prose {
    max-width: 800px;
}

.prose--centered {
    margin: 0 auto;
    text-align: center;
}

.prose p {
    color: var(--color-fg-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.prose a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.3);
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--color-accent-hover);
    text-decoration-color: var(--color-accent);
}

.prose strong {
    color: var(--color-fg);
    font-weight: 600;
}

/* ---------- Stats Row ---------- */
.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* ---------- Stat Block ---------- */
.stat-block {
    text-align: center;
    padding: var(--space-card-padding);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.stat-block__icon {
    color: var(--color-accent);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-block__label {
    display: block;
    font-size: 15px;
    color: var(--color-fg-soft);
    line-height: 1.5;
}

.stat-block__source {
    display: block;
    font-size: 13px;
    color: var(--color-fg-muted);
    margin-top: 10px;
}

/* ---------- Card Grid ---------- */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-grid);
}

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

.card--grid:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}

.card__media {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--color-bg-panel);
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__body {
    padding: var(--space-card-padding);
}

.card__title {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.card__text {
    font-size: 15px;
    color: var(--color-fg-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

.card__link:hover {
    color: var(--color-primary-hover);
}

/* ---------- VIP Teaser ---------- */
.vip-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
}

.vip-teaser__visual {
    display: flex;
    justify-content: center;
}

.vip-teaser__img {
    max-width: 280px;
    filter: drop-shadow(0 4px 24px rgba(212, 175, 55, 0.2));
}

.vip-teaser__content p {
    color: var(--color-fg-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vip-teaser__content a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vip-teaser__list {
    margin-bottom: 20px;
}

.vip-teaser__list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-fg-soft);
    font-size: 15px;
}

.vip-teaser__list li:last-child {
    border-bottom: none;
}

.vip-teaser__level {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    min-width: 140px;
}

.vip-teaser__cta {
    margin-top: 8px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: 56px 24px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
                var(--color-bg-panel);
    overflow: hidden;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.05) 20%, transparent 40%, rgba(20, 184, 166, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.cta-banner__title {
    font-size: 24px;
    font-weight: 600;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.cta-banner__btn {
    margin-bottom: 12px;
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--color-fg-muted);
    margin: 0;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: var(--color-primary);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-fg);
    user-select: none;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::marker {
    display: none;
}

.faq-item__question {
    flex: 1;
    padding-right: 16px;
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    transition: transform var(--transition);
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    color: var(--color-fg-muted);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
    padding: 48px 0 32px;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo {
    height: 36px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-fg-muted);
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-nav-list a {
    font-size: 15px;
    color: var(--color-fg-soft);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--color-accent);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal p {
    font-size: 13px;
    color: var(--color-fg-muted);
    margin: 0;
    line-height: 1.5;
}

.age-notice {
    font-weight: 600;
    color: var(--color-fg-soft) !important;
}

.copyright {
    margin-top: 8px !important;
}

/* ---------- Bonus Table ---------- */
.bonus-table {
    width: 100%;
    max-width: 800px;
    margin: 32px auto 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.bonus-table thead {
    background: var(--color-bg-panel);
}

.bonus-table th {
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-border);
}

.bonus-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: var(--color-fg-soft);
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
}

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

.bonus-table tbody tr {
    background: var(--color-bg-card);
    transition: background var(--transition);
}

.bonus-table tbody tr:hover {
    background: var(--color-bg-panel);
}

/* ---------- Provider Grid ---------- */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.provider-grid__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all var(--transition);
    text-align: center;
}

.provider-grid__item span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-fg-muted);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.provider-grid__item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.provider-grid__item:hover span {
    color: var(--color-accent);
}

/* ---------- Sitemap List ---------- */
.sitemap-list__item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-turq);
}

.sitemap-list__item a:hover {
    color: var(--color-accent-hover);
}

/* ---------- Animations ---------- */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive: Tablet (≥768px) ---------- */
@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }

    .section { padding: 72px 0; }

    .section__title { font-size: 30px; }

    .hero { padding: 64px 0 72px; }

    .hero__container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
        text-align: left;
    }

    .hero__content { text-align: left; }

    .hero__subtitle { margin: 0 0 24px; }

    .hero__highlights { justify-content: flex-start; }

    .hero__cta-group { justify-content: flex-start; }

    .hero__visual { order: 0; }

    .hero__mascot { max-width: 420px; }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-block__number { font-size: 42px; }

    .card-grid[data-columns="3"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid[data-columns="2"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-teaser {
        grid-template-columns: 0.8fr 1.2fr;
        padding: 40px;
    }

    .cta-banner { padding: 72px 24px; }
    .cta-banner__title { font-size: 30px; }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }

    .footer-nav-list {
        grid-template-columns: 1fr;
    }

    .provider-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Responsive: Desktop (≥1024px) ---------- */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }

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

    .section__title { font-size: 36px; }

    .primary-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .brand-name {
        display: block;
    }

    .hero__title { font-size: 52px; }
    .hero__subtitle { font-size: 18px; max-width: 560px; }
    .hero__mascot { max-width: 500px; }

    .stats-row { gap: 24px; }

    .stat-block__number { font-size: 48px; }
    .stat-block__label { font-size: 17px; }

    .card-grid[data-columns="3"] {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid[data-columns="2"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner { padding: 100px 24px; }
    .cta-banner__title { font-size: 36px; }

    .vip-teaser { padding: 48px; }
    .vip-teaser__img { max-width: 360px; }

    .provider-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
