/* ===== PadelStorm Landing Page - Style System ===== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- Design Tokens --- */
:root {
    --accent: #A855F7;
    --accent-hover: #C084FC;
    --accent-dark: #7E22CE;
    --accent-glow: rgba(168, 85, 247, 0.28);
    --cta: #A855F7;
    --cta-hover: #9333EA;
    --cta-glow: rgba(168, 85, 247, 0.35);
    --dark: #1a1a2e;
    --dark-deep: #080816;
    --dark-mid: #0f0f23;
    --dark-light: #2d2d44;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e5e5ea;
    --gray-300: #d1d1d9;
    --gray-500: #6b6b80;
    --gray-600: #52526a;
    --gray-700: #3d3d56;
    --white: #ffffff;
    --green-check: #22c55e;
    --section-pad: 100px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-entrance > * { opacity: 1; transform: none; }
}

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

/* --- Icon System --- */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    flex-shrink: 0;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, height 0.4s;
    height: 80px;
}
.header.scrolled {
    background: rgba(15, 8, 24, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25), 0 1px 0 rgba(168, 85, 247, 0.08);
    height: 64px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
    filter: drop-shadow(0 2px 12px rgba(168, 85, 247, 0.25));
}
.header.scrolled .logo-img {
    height: 54px;
}
/* Footer variant */
.footer .logo-img {
    height: 96px;
    filter: drop-shadow(0 4px 16px rgba(168, 85, 247, 0.25));
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav a:hover, .nav a.active {
    color: var(--white);
    background: rgba(168, 85, 247, 0.12);
}
.nav-cta {
    margin-left: 12px;
    padding: 10px 22px !important;
    background: var(--accent) !important;
    color: var(--dark) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    transition: all 0.25s var(--ease-out) !important;
    box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--accent-glow) !important;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 1001;
    width: 0%;
    transition: none;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}
.header:not(.scrolled) .menu-toggle span { background: var(--white); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 20px 24px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all 0.2s;
    min-height: 52px;
    display: flex;
    align-items: center;
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--dark); }
.mobile-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark-deep) 0%, var(--dark-mid) 35%, var(--dark) 100%);
}
.hero-bg-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
/* Radial glow blobs */
.hero-glow {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background:
        radial-gradient(ellipse 600px 500px at 15% 50%, var(--accent) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 75% 25%, #22c55e 0%, transparent 60%),
        radial-gradient(ellipse 500px 300px at 55% 85%, var(--accent) 0%, transparent 50%);
}
/* Animated spotlight */
.hero-spotlight {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: radial-gradient(ellipse 800px 600px at 50% 50%, var(--accent), transparent 70%);
    animation: spotlight 12s ease-in-out infinite;
}
@keyframes spotlight {
    0%, 100% { transform: translate(-10%, -5%); }
    33% { transform: translate(15%, 10%); }
    66% { transform: translate(-5%, -10%); }
}
/* Film grain */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}
/* Court wireframe SVG */
.hero-court {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 55%;
    max-width: 700px;
    opacity: 0.06;
}
.hero-court svg {
    width: 100%;
    height: auto;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 140px 0 80px;
}

/* Hero entrance animation */
.hero-entrance > * {
    opacity: 0;
    transform: translateY(24px);
}
body.loaded .hero-entrance > *:nth-child(1) { animation: heroIn 0.7s var(--ease-out) 0.15s forwards; }
body.loaded .hero-entrance > *:nth-child(2) { animation: heroIn 0.7s var(--ease-out) 0.35s forwards; }
body.loaded .hero-entrance > *:nth-child(3) { animation: heroIn 0.7s var(--ease-out) 0.5s forwards; }
body.loaded .hero-entrance > *:nth-child(4) { animation: heroIn 0.7s var(--ease-out) 0.65s forwards; }
body.loaded .hero-entrance > *:nth-child(5) { animation: heroIn 0.7s var(--ease-out) 0.8s forwards; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}
.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.hero .highlight {
    color: var(--accent);
    text-shadow: 0 0 60px rgba(168, 85, 247, 0.25);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-features {
    display: flex;
    gap: 36px;
    margin-top: 64px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    font-weight: 500;
}
.hero-feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-feature-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.35);
    fill: none;
    stroke-width: 2;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px var(--accent-glow);
    min-height: 56px;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    border-radius: inherit;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px var(--accent-glow);
}

/* Glow pulse on hero CTA */
.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}
.btn-glow:hover { animation: none; }
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
    50% { box-shadow: 0 4px 40px rgba(168, 85, 247, 0.5); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    min-height: 56px;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    min-height: 48px;
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--gray-100); }
.section-dark {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
    color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.section-dark .section-label { color: var(--accent); }
.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-subtitle {
    font-size: 1.08rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Stagger children */
.reveal-group .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-group .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-group .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-group .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-group .reveal:nth-child(5) { transition-delay: 320ms; }

/* ===== CARDS (unified system) ===== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    position: relative;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border-color: var(--accent);
}
.card--dark {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.card--dark:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.06);
}

/* ===== REZERVACE ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.step { text-align: center; padding: 40px 28px; }
.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-card ul { display: flex; flex-direction: column; gap: 14px; }
.info-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.check-icon { color: var(--green-check); flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.tip-note { margin-top: 20px; font-size: 0.88rem; color: var(--gray-600); }
.tip-note strong { color: var(--dark); }

/* ===== LOKALITY ===== */
.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.location-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-info h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.location-info .tagline { color: var(--gray-600); margin-bottom: 28px; font-size: 1.02rem; }
.location-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.location-feature { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--gray-700); }
.location-feature .icon-check { color: var(--green-check); font-size: 1.1rem; }
.location-address { padding-top: 24px; border-top: 1px solid var(--gray-200); }
.location-address p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 4px; }
.location-address strong { color: var(--dark); }

.map-container { min-height: 400px; background: var(--gray-100); position: relative; }
.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    transition: background 0.3s;
    gap: 12px;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}
.map-placeholder:hover { background: linear-gradient(135deg, var(--gray-200), var(--gray-300)); }
.map-placeholder svg { width: 40px; height: 40px; stroke: var(--accent-dark); fill: none; stroke-width: 1.5; }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border: none; }
.map-container.loaded .map-placeholder { display: none; }

.coming-soon { text-align: center; margin-top: 40px; }
.badge-soon {
    display: inline-flex;
    padding: 5px 14px;
    background: rgba(168, 85, 247, 0.12);
    color: var(--accent-dark);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.coming-soon p { margin-top: 10px; color: var(--gray-600); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card { padding: 36px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--accent); }
.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent);
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--white); }
.testimonial-role { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ===== AKCE ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-type {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(168, 85, 247, 0.12);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.event-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.event-detail svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 2; }
.btn-event {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.25s var(--ease-out);
    min-height: 44px;
    box-shadow: 0 2px 10px var(--accent-glow);
}
.btn-event:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ===== TRENINK ===== */
.training-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.training-content h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.training-content > p { color: var(--gray-600); margin-bottom: 32px; font-size: 1.02rem; line-height: 1.7; }
.training-benefits { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.training-benefit { display: flex; gap: 16px; align-items: flex-start; }
.training-benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.training-benefit-icon svg { width: 22px; height: 22px; stroke: var(--accent-dark); fill: none; stroke-width: 2; }
.training-benefit h4 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.training-benefit p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; }

.training-visual {
    background: linear-gradient(160deg, var(--dark-deep), var(--dark));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.training-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247,0.06) 0%, transparent 65%);
}
.training-visual-content { position: relative; z-index: 1; }
.training-visual svg { width: 80px; height: 80px; stroke: var(--accent); fill: none; stroke-width: 1.5; margin-bottom: 24px; opacity: 0.8; }
.training-visual h4 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.training-visual p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item { padding: 28px 32px; }
.faq-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}
.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -2px;
}
.faq-icon svg { width: 16px; height: 16px; stroke: var(--accent-dark); fill: none; stroke-width: 2; }
.faq-item p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.65;
    padding-left: 40px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--dark-deep) 0%, var(--dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-deep);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    min-height: 44px;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer h4 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 6px; }
.footer li a { font-size: 0.9rem; transition: color 0.2s; display: inline-block; padding: 6px 0; min-height: 36px; }
.footer li a:hover { color: var(--accent); }
.footer li { font-size: 0.9rem; padding: 4px 0; }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-primary { width: 100%; padding: 16px; font-size: 0.95rem; }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    z-index: 950;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    transform: translateY(120%);
    transition: transform 0.4s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; flex: 1; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    min-height: 36px;
    transition: all 0.2s;
}
.btn-cookie-accept { background: var(--accent); color: var(--dark); }
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-decline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.btn-cookie-decline:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

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

@media (max-width: 768px) {
    :root { --section-pad: 72px; }
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-content { padding: 120px 0 100px; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); letter-spacing: -1px; }
    .hero-features { flex-direction: column; gap: 16px; }
    .hero-court { display: none; }
    .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
    .info-grid { grid-template-columns: 1fr; }
    .location-card { grid-template-columns: 1fr; }
    .map-container { min-height: 280px; }
    .map-container iframe { min-height: 280px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .training-layout { grid-template-columns: 1fr; gap: 32px; }
    .training-visual { min-height: 300px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .footer { padding-bottom: 80px; } /* Space for sticky CTA */
    .sticky-cta { display: block; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons a { width: 100%; justify-content: center; }
    .cookie-banner { flex-direction: column; left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; justify-content: center; }
    .section-title { font-size: 1.75rem; }
}
