/* Professional HYROX Design System */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-white);
    background-color: var(--primary-black);
    font-weight: 400;
    overflow-x: hidden;
}

/* HYROX Color Scheme with Yellow Accent */
:root {
    --primary-white: #ffffff;
    --primary-black: #000000;
    --hyrox-yellow: #FFD700;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --accent-gray: #cccccc;
    --text-dark: #333333;
    --text-light-gray: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-gray);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h3 {
    color: var(--primary-white);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--lighter-gray);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-white);
    transition: var(--transition);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, var(--primary-white), var(--accent-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    color: var(--lighter-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-white);
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Buttons */
.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid var(--primary-white);
    cursor: pointer;
    border-radius: 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid var(--light-gray);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    display: inline-block;
    border-radius: 0;
}

.btn-secondary:hover {
    background: var(--primary-white);
    border-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 120px 0;
}

/* Hero Section - HYROX 365 Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/hyrox-hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 40px;
}

.hero-badge span {
    color: var(--hyrox-yellow);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--primary-white);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    max-width: 600px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    line-height: 1.4;
    color: var(--lighter-gray);
    margin-bottom: 60px;
    max-width: 500px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-white);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

/* Training + Education Section */
.training-education {
    padding: 0;
    background: var(--primary-white);
}

.section-header {
    background: var(--primary-black);
    padding: 80px 0;
    text-align: center;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.training-education-content {
    padding: 0;
}

.training-block,
.education-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: stretch;
}

.education-block {
    grid-template-columns: 1fr 1fr;
}

.content-text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-white);
}

.content-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    flex-grow: 1;
}

.content-image {
    position: relative;
    overflow: hidden;
    background: var(--dark-gray);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

/* Affiliation Section */
.affiliation {
    padding: 120px 0;
    background: var(--primary-black);
    text-align: center;
}

.affiliation h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.affiliation-content {
    max-width: 800px;
    margin: 0 auto;
}

.affiliation-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--lighter-gray);
    margin-bottom: 40px;
}

.affiliation-cta {
    margin-top: 60px;
}

/* Footer - HYROX Training Club Style */
.footer {
    background: var(--primary-black);
}

.footer-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hyrox-hero-background.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-hero h2 {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    color: var(--primary-white);
    line-height: 0.75;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-content {
    padding: 80px 0 40px;
    background: var(--primary-black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr repeat(4, 200px);
    gap: 60px;
    align-items: start;
}

.footer-logo h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    letter-spacing: 0.1em;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--hyrox-yellow);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 2px solid var(--hyrox-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--hyrox-yellow);
    border-color: var(--hyrox-yellow);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    border-color: var(--hyrox-yellow);
}

/* White Background Section Adjustments */
.training-education .btn-outline,
.contact-section .btn-primary {
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.training-education .btn-outline:hover,
.contact-section .btn-primary:hover {
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    border-color: var(--hyrox-yellow);
}

/* Race Infographic Section */
.race-infographic {
    margin-bottom: 80px;
    background: var(--primary-black);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.race-infographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.infographic-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.infographic-header h3 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.race-overview {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.overview-item {
    text-align: center;
}

.overview-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--hyrox-yellow);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.overview-label {
    font-size: 14px;
    color: var(--lighter-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stations-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--hyrox-yellow) 0%, #ff6b6b 50%, var(--hyrox-yellow) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.station-point {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.station-point:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
}

.station-point:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.point-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    margin: 0 40px;
}

.point-marker.start-marker {
    background: var(--primary-white);
    color: var(--primary-black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.point-marker.killer {
    background: #ff6b6b;
    color: var(--primary-white);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    animation: pulse 2s infinite;
}

.point-marker.final {
    background: var(--hyrox-yellow);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    animation: glow 3s ease-in-out infinite alternate;
}

.point-marker.finish-marker {
    background: var(--hyrox-yellow);
    font-size: 32px;
    width: 80px;
    height: 80px;
    animation: bounce 2s infinite;
}

.station-details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    min-width: 280px;
    transition: var(--transition);
}

.station-details:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--hyrox-yellow);
    transform: scale(1.02);
}

.station-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.station-subtitle {
    font-size: 14px;
    color: var(--lighter-gray);
    margin-bottom: 16px;
    font-style: italic;
}

.station-subtitle.killer-text {
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
}

.station-subtitle.final-text {
    color: var(--hyrox-yellow);
    font-weight: 700;
    text-transform: uppercase;
}

.finish-title {
    color: var(--hyrox-yellow) !important;
    font-size: 24px !important;
}

.difficulty-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    transition: var(--transition);
}

.dot.active {
    background: var(--hyrox-yellow);
}

.dot.active.killer {
    background: #ff6b6b;
}

.dot.active.final {
    background: var(--hyrox-yellow);
    box-shadow: 0 0 6px var(--hyrox-yellow);
}

.run-segment {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    padding: 16px 32px;
    margin: 20px auto;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    max-width: 200px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.run-segment.midpoint {
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    font-weight: 900;
    border-color: var(--hyrox-yellow);
}

.run-segment.final-run {
    background: #ff6b6b;
    color: var(--primary-white);
    border-color: #ff6b6b;
    font-weight: 900;
}

.midpoint-label,
.final-label {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
    to {
        box-shadow: 0 0 50px rgba(255, 215, 0, 1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Station Animation Delays */
.station-point:nth-child(1) { animation-delay: 0.1s; }
.station-point:nth-child(2) { animation-delay: 0.2s; }
.station-point:nth-child(3) { animation-delay: 0.3s; }
.station-point:nth-child(4) { animation-delay: 0.4s; }
.station-point:nth-child(5) { animation-delay: 0.5s; }
.station-point:nth-child(6) { animation-delay: 0.6s; }
.station-point:nth-child(7) { animation-delay: 0.7s; }
.station-point:nth-child(8) { animation-delay: 0.8s; }
.station-point:nth-child(9) { animation-delay: 0.9s; }
.station-point:nth-child(10) { animation-delay: 1.0s; }
.station-point:nth-child(11) { animation-delay: 1.1s; }
.station-point:nth-child(12) { animation-delay: 1.2s; }
.station-point:nth-child(13) { animation-delay: 1.3s; }
.station-point:nth-child(14) { animation-delay: 1.4s; }
.station-point:nth-child(15) { animation-delay: 1.5s; }
.station-point:nth-child(16) { animation-delay: 1.6s; }
.station-point:nth-child(17) { animation-delay: 1.7s; }
.station-point:nth-child(18) { animation-delay: 1.8s; }

/* Race Format Section - New Design */
.race-format-section {
    padding: 0;
    background: var(--primary-black);
}

.format-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.format-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.format-header .section-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.format-header .section-intro {
    font-size: 20px;
    color: var(--accent-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Training Formats Grid */
.training-formats {
    background: var(--primary-white);
    padding: 80px 0;
}

.formats-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.format-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-white);
    border: 2px solid var(--accent-gray);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.format-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.format-item:hover {
    border-color: var(--hyrox-yellow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.format-item:hover::before {
    opacity: 1;
}

.format-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.format-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.format-item p {
    font-size: 14px;
    color: var(--text-light-gray);
    line-height: 1.4;
}

/* Content Blocks - Alternating Layout */
.content-blocks {
    background: var(--primary-white);
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.content-block.reverse {
    background: var(--primary-black);
}

.content-block.reverse .content-text {
    color: var(--primary-white);
}

.content-block.reverse .station-number {
    color: var(--hyrox-yellow);
}

.content-block.reverse .stat-number {
    color: var(--hyrox-yellow);
}

.content-text {
    padding: 80px 60px;
    color: var(--primary-black);
}

.station-number {
    font-size: 120px;
    font-weight: 900;
    color: var(--hyrox-yellow);
    line-height: 0.8;
    margin-bottom: 24px;
    opacity: 0.2;
    font-family: 'Inter', sans-serif;
}

.content-text h3 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.content-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--hyrox-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    font-weight: 600;
}

.content-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

/* Specific exercise background images */
.ski-erg {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="300" text-anchor="middle" fill="%23FFD700" font-size="48" font-weight="bold">SKI ERG</text></svg>');
}

.sled-push {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="300" text-anchor="middle" fill="%23FFD700" font-size="48" font-weight="bold">SLED PUSH</text></svg>');
}

.sled-pull {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="300" text-anchor="middle" fill="%23FFD700" font-size="48" font-weight="bold">SLED PULL</text></svg>');
}

.burpee-jumps {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="280" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">BURPEE</text><text x="400" y="330" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">BROAD JUMPS</text></svg>');
}

.rowing {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="300" text-anchor="middle" fill="%23FFD700" font-size="48" font-weight="bold">ROWING</text></svg>');
}

.farmers-carry {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="280" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">FARMERS</text><text x="400" y="330" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">CARRY</text></svg>');
}

.sandbag-lunges {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="280" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">SANDBAG</text><text x="400" y="330" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">LUNGES</text></svg>');
}

.wall-balls {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23333"/><text x="400" y="280" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">WALL</text><text x="400" y="330" text-anchor="middle" fill="%23FFD700" font-size="36" font-weight="bold">BALLS</text></svg>');
}

.final-station .station-number {
    color: var(--hyrox-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Race Summary */
.race-summary {
    background: var(--dark-gray);
    padding: 80px 0;
    text-align: center;
}

.summary-content h3 {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-stat {
    text-align: center;
}

.big-number {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--hyrox-yellow);
    line-height: 0.9;
    margin-bottom: 16px;
}

.summary-stat .stat-label {
    font-size: 14px;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Mobile Responsive for New Race Format */
@media (max-width: 1200px) {
    .formats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .format-header {
        padding: 80px 0 60px 0;
    }

    .formats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .content-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .content-block.reverse {
        grid-template-columns: 1fr;
    }

    .content-text {
        padding: 60px 40px;
        order: 2;
    }

    .content-block.reverse .content-text {
        order: 2;
    }

    .content-image {
        min-height: 400px;
        order: 1;
    }

    .content-block.reverse .content-image {
        order: 1;
    }

    .station-number {
        font-size: 80px;
        margin-bottom: 16px;
    }

    .content-text h3 {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 16px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .training-formats {
        padding: 60px 0;
    }

    .race-summary {
        padding: 60px 0;
    }
}

.race-format {
    margin-bottom: 80px;
}

.race-format h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.format-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.running-section h4,
.stations-section h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.running-section p {
    color: var(--lighter-gray);
    font-size: 16px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.station {
    background: var(--dark-gray);
    padding: 24px 16px;
    border: 2px solid var(--medium-gray);
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    line-height: 1.2;
    transition: var(--transition);
}

.station:hover {
    border-color: var(--hyrox-yellow);
    background: var(--medium-gray);
}

.station span {
    display: block;
    color: var(--hyrox-yellow);
    font-size: 12px;
    margin-top: 8px;
}

.divisions {
    margin-top: 80px;
}

.divisions h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.division-card {
    background: var(--dark-gray);
    padding: 40px 32px;
    border: 2px solid var(--medium-gray);
    text-align: left;
    transition: var(--transition);
}

.division-card.featured {
    border-color: var(--hyrox-yellow);
    background: var(--medium-gray);
}

.division-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.division-card.featured h4 {
    color: var(--hyrox-yellow);
}

.division-card p {
    color: var(--lighter-gray);
    margin-bottom: 24px;
    font-size: 14px;
}

.division-card ul {
    list-style: none;
    padding: 0;
}

.division-card ul li {
    color: var(--lighter-gray);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.division-card ul li::before {
    content: '•';
    color: var(--hyrox-yellow);
    position: absolute;
    left: 0;
}

/* Events Section */
.events-section {
    padding: 120px 0;
    background: var(--primary-white);
    text-align: center;
}

.events-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.events-section .section-intro {
    font-size: 18px;
    color: var(--text-light-gray);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    max-width: 800px;
    margin: 0 auto 80px;
}

.event-card {
    background: var(--primary-white);
    border: 3px solid var(--text-dark);
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.event-card.featured {
    border-color: var(--hyrox-yellow);
    background: var(--primary-black);
    color: var(--primary-white);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.event-date .month {
    font-size: 14px;
    font-weight: 700;
    color: var(--hyrox-yellow);
    text-transform: uppercase;
}

.event-date .day {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-white);
    line-height: 1;
}

.event-date .year {
    font-size: 16px;
    font-weight: 600;
    color: var(--lighter-gray);
}

.event-details h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.event-details .location {
    font-size: 16px;
    color: var(--hyrox-yellow);
    margin-bottom: 24px;
    font-weight: 600;
}

.event-description {
    font-size: 16px;
    color: var(--lighter-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.event-format {
    margin-bottom: 32px;
}

.event-format h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hyrox-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.event-format ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.event-format ul li {
    font-size: 14px;
    color: var(--lighter-gray);
    padding: 8px;
    background: var(--dark-gray);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.registration-info {
    font-size: 14px;
    color: var(--hyrox-yellow);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.event-btn {
    display: inline-block;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 2px solid var(--hyrox-yellow);
}

.event-btn:hover {
    background: transparent;
    color: var(--hyrox-yellow);
}

.events-cta {
    text-align: center;
}

.events-cta h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.events-cta p {
    font-size: 18px;
    color: var(--text-light-gray);
    margin-bottom: 32px;
}

/* Why Choose Garrett Section */
.why-choose-garrett {
    padding: 120px 0;
    background: var(--primary-white);
}

.why-choose-garrett h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-benefit {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--hyrox-yellow);
    background: var(--text-dark);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coach-benefit h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-benefit p {
    font-size: 16px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

/* What is HYROX Section */
.what-is-hyrox {
    padding: 120px 0;
    background: var(--primary-white);
}

.hyrox-intro {
    text-align: center;
    margin-bottom: 80px;
}

.hyrox-intro h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tagline {
    font-size: 24px;
    color: var(--text-light-gray);
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.explanation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.explanation-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.explanation-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light-gray);
    margin-bottom: 24px;
}

.explanation-text p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.explanation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--text-dark);
    color: var(--primary-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--hyrox-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hyrox-appeal h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.appeal-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--text-dark);
    color: var(--primary-white);
}

.appeal-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.appeal-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.appeal-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--lighter-gray);
}

/* Who is HYROX For Section */
.who-is-hyrox-for {
    padding: 120px 0;
    background: var(--primary-black);
    text-align: center;
}

.who-is-hyrox-for h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.who-is-hyrox-for .section-intro {
    font-size: 20px;
    color: var(--lighter-gray);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--dark-gray);
    padding: 40px 32px;
    text-align: left;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--hyrox-yellow);
    background: var(--medium-gray);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.audience-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.audience-card p {
    font-size: 16px;
    color: var(--lighter-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.audience-card ul {
    list-style: none;
    padding: 0;
}

.audience-card ul li {
    font-size: 14px;
    color: var(--lighter-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.audience-card ul li::before {
    content: '→';
    color: var(--hyrox-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Do HYROX Section */
.why-do-hyrox {
    padding: 120px 0;
    background: var(--primary-white);
    text-align: center;
}

.why-do-hyrox h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-do-hyrox .section-intro {
    font-size: 20px;
    color: var(--text-light-gray);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card.major {
    background: var(--text-dark);
    color: var(--primary-white);
    padding: 40px 32px;
    text-align: left;
    position: relative;
    border: 3px solid var(--text-dark);
    transition: var(--transition);
}

.benefit-card.major:hover {
    border-color: var(--hyrox-yellow);
    transform: translateY(-4px);
}

.benefit-card .benefit-number {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 16px;
    margin-top: 20px;
    text-transform: uppercase;
}

.benefit-card p {
    font-size: 16px;
    color: var(--lighter-gray);
    line-height: 1.7;
}

/* Event Schedule Section */
.event-schedule {
    padding: 120px 0;
    background: var(--primary-black);
}

.event-schedule h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.event-schedule .section-intro {
    font-size: 20px;
    color: var(--lighter-gray);
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.event-slide {
    display: none;
    width: 100%;
}

.event-slide.active {
    display: block;
}

.event-card.major {
    background: var(--dark-gray);
    border: 3px solid var(--hyrox-yellow);
    padding: 40px;
    position: relative;
}

.event-card {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    padding: 40px;
    position: relative;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-header {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    align-items: center;
}

.event-date {
    text-align: center;
    flex-shrink: 0;
}

.event-date .month {
    font-size: 16px;
    font-weight: 700;
    color: var(--hyrox-yellow);
    text-transform: uppercase;
    display: block;
}

.event-date .day {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-white);
    line-height: 1;
    display: block;
}

.event-date .year {
    font-size: 16px;
    font-weight: 600;
    color: var(--lighter-gray);
    display: block;
}

.event-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-info .location {
    font-size: 16px;
    color: var(--hyrox-yellow);
    margin-bottom: 8px;
    font-weight: 600;
}

.event-info .event-type {
    font-size: 14px;
    color: var(--lighter-gray);
    text-transform: uppercase;
}

.event-description {
    font-size: 16px;
    color: var(--lighter-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.pft-format h4,
.prep-timeline h4,
.prep-options h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hyrox-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pft-stations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pft-stations span {
    background: var(--primary-black);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-white);
    text-transform: uppercase;
}

.event-prep ul,
.prep-timeline ul,
.prep-options ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.event-prep ul li,
.prep-timeline ul li,
.prep-options ul li {
    font-size: 14px;
    color: var(--lighter-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.event-prep ul li::before,
.prep-timeline ul li::before,
.prep-options ul li::before {
    content: '→';
    color: var(--hyrox-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.event-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.event-register,
.event-prep-btn {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.event-register {
    background: var(--hyrox-yellow);
    color: var(--primary-black);
    border: 2px solid var(--hyrox-yellow);
}

.event-register:hover {
    background: transparent;
    color: var(--hyrox-yellow);
}

.event-prep-btn {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.event-prep-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.slider-btn {
    background: var(--medium-gray);
    color: var(--primary-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--hyrox-yellow);
    color: var(--primary-black);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--hyrox-yellow);
}

/* Why Choose Garrett Enhanced */
.credentials-highlight {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--text-dark);
    padding: 24px 32px;
    border: 2px solid var(--hyrox-yellow);
    max-width: 400px;
}

.badge-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.badge-text h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.badge-text p {
    font-size: 14px;
    color: var(--lighter-gray);
    line-height: 1.4;
}

/* Calendar Section */
.calendar-section {
    padding: 120px 0;
    background: var(--primary-white);
}

.calendar-section h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.calendar-section .section-intro {
    font-size: 18px;
    color: var(--text-light-gray);
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.calendar-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.calendar-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.calendar-info ul li {
    font-size: 16px;
    color: var(--text-light-gray);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.calendar-info ul li::before {
    content: '✓';
    color: var(--hyrox-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.calendar-info strong {
    color: var(--text-dark);
    font-weight: 700;
}

.consultation-details {
    background: var(--text-dark);
    padding: 32px;
    color: var(--primary-white);
    margin-top: 32px;
}

.consultation-details h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.consultation-details p {
    font-size: 16px;
    color: var(--lighter-gray);
    margin-bottom: 8px;
}

.calendar-placeholder {
    background: var(--primary-black);
    padding: 40px;
    color: var(--primary-white);
    text-align: center;
}

.calendar-placeholder h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.time-slot {
    background: var(--medium-gray);
    color: var(--primary-white);
    border: 2px solid var(--medium-gray);
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--hyrox-yellow);
    background: var(--hyrox-yellow);
    color: var(--primary-black);
}

.contact-alternatives {
    text-align: center;
    background: var(--text-dark);
    padding: 60px;
    color: var(--primary-white);
}

.contact-alternatives h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--hyrox-yellow);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-method p {
    font-size: 16px;
    color: var(--lighter-gray);
}

/* Contact Section Enhanced */
.contact-tagline {
    font-size: 24px;
    color: var(--hyrox-yellow);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 24px;
    text-align: center;
}

.preparation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prep-option h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.prep-option ul {
    list-style: none;
    padding: 0;
}

.prep-option ul li {
    font-size: 16px;
    color: var(--text-light-gray);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.prep-option ul li::before {
    content: '→';
    color: var(--hyrox-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 16px;
    margin-right: 20px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--primary-white);
    text-align: center;
}

.contact-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.contact-content p {
    font-size: 18px;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-container,
    .training-education-content {
        padding: 0 40px;
    }

    .hero-content,
    .training-block,
    .education-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .nav-menu {
        display: none;
    }
}

/* Original Hero Section Backup */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%), url('images/hyrox-hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    padding: 200px 0 120px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    display: inline-block;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent-gray);
    margin-bottom: 48px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, var(--accent-gray), var(--primary-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* HYROX Hero Section */
.hyrox-hero {
    padding: 160px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

/* WHY HYROX and WHO COMPETES within hyrox-hero */
.why-hyrox-content {
    margin: 120px 0 80px 0;
}

.who-competes-content {
    margin: 80px 0 120px 0;
}

.why-hyrox-content h2,
.who-competes-content h2 {
    margin-bottom: 80px;
}

.hyrox-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--lighter-gray);
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    line-height: 1.6;
}

/* Race Format */
.race-format {
    margin-top: 100px;
}

.format-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin: 80px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.running-section, .stations-section {
    background: var(--dark-gray);
    padding: 60px;
    position: relative;
    transition: var(--transition);
}

.running-section::before, .stations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-white);
}

.running-section:hover, .stations-section:hover {
    background: var(--medium-gray);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.running-section h4, .stations-section h4 {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.station {
    background: var(--primary-black);
    border: 1px solid var(--medium-gray);
    color: var(--primary-white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.station::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.station:hover {
    border-color: var(--primary-white);
    color: var(--primary-white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    background: var(--dark-gray);
}

.station:hover::before {
    transform: translateX(100%);
}

/* Comparison Section */
.hyrox-vs-comparison {
    margin-top: 120px;
    padding: 80px 60px;
    background: var(--medium-gray);
    position: relative;
}

.hyrox-vs-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-white);
}

.hyrox-vs-comparison h3 {
    text-align: center;
    color: var(--primary-white);
    margin-bottom: 60px;
    font-size: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-black);
    transition: var(--transition);
    border-top: 3px solid rgb(255, 237, 0);
}

.comparison-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.comparison-item h4 {
    color: var(--primary-white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.comparison-item p {
    color: var(--lighter-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* WHO Section */
.who-section {
    padding: 160px 0;
    background: var(--primary-black);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.audience-card {
    background: var(--dark-gray);
    padding: 50px;
    transition: var(--transition);
    position: relative;
    border-top: 4px solid rgb(255, 237, 0);
}

.audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,237,0,0.1) 0%, transparent 100%);
    transition: width 0.5s ease;
    pointer-events: none;
}

.audience-card:hover::after {
    width: 100%;
}

.audience-card:hover {
    background: var(--medium-gray);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.audience-card h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.audience-card p {
    color: var(--lighter-gray);
    line-height: 1.6;
}

/* Events Section */
.events-section {
    padding: 160px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

.events-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.event-card {
    background: var(--primary-black);
    border: 1px solid var(--dark-gray);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--primary-white);
    transition: left 0.5s ease;
}

.event-card:hover::before {
    left: 0;
}

.event-card:hover {
    border-color: var(--primary-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.event-date {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 30px;
    text-align: center;
    font-weight: 700;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 8px 0;
}

.event-date .year {
    font-size: 16px;
    opacity: 0.8;
}

.event-details {
    padding: 40px;
}

.event-details h3 {
    color: var(--primary-white);
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.event-details .location {
    color: var(--lighter-gray);
    margin-bottom: 12px;
    font-size: 15px;
}

.event-details .registration {
    color: var(--primary-white);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-event {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    display: inline-block;
}

.btn-event:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.events-cta {
    text-align: center;
    margin-top: 100px;
    padding: 80px 60px;
    background: var(--dark-gray);
    position: relative;
}

.events-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-white);
}

.events-cta h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.events-cta p {
    color: var(--lighter-gray);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

/* WHY Section */
.why-section {
    padding: 160px 0;
    background: var(--primary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.benefit-card {
    background: var(--dark-gray);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-top: 4px solid rgb(255, 237, 0);
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.5s ease;
}

.benefit-card:hover::after {
    width: 80%;
}

.benefit-card:hover {
    background: var(--medium-gray);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 32px;
    opacity: 0.8;
}

.benefit-card h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--lighter-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 160px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.option-card {
    background: var(--primary-black);
    padding: 60px 40px;
    transition: var(--transition);
    position: relative;
    border-top: 4px solid rgb(255, 237, 0);
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(270deg, rgba(255,237,0,0.05) 0%, transparent 100%);
    transition: width 0.5s ease;
}

.option-card:hover::before {
    width: 100%;
}

.option-card:hover {
    background: var(--dark-gray);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.option-card.premium {
    border-top-width: 6px;
    position: relative;
}

.option-card.premium::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.option-card h4 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.option-card p {
    color: var(--lighter-gray);
    line-height: 1.6;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 80px 0;
}

.include-item {
    background: var(--primary-black);
    padding: 32px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid var(--primary-white);
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.include-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-white);
    transition: width 0.3s ease;
    opacity: 0.1;
}

.include-item:hover::before {
    width: 100%;
}

.include-item:hover {
    transform: translateX(8px);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.package-card {
    background: var(--primary-black);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255,237,0,0.05) 0%, transparent 100%);
    transition: height 0.5s ease;
}

.package-card:hover::before {
    height: 100%;
}

.package-card:hover {
    border-color: var(--primary-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.package-card.featured {
    border-color: var(--primary-white);
    border-width: 2px;
}

.package-card h4 {
    color: var(--primary-white);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.package-price {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 12px 24px;
    font-weight: 700;
    margin: 20px 0;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Coach Benefits */
.why-choose {
    padding: 160px 0;
    background: var(--primary-black);
}

.coach-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin: 80px 0;
}

.coach-benefit {
    background: var(--dark-gray);
    padding: 60px 50px;
    transition: var(--transition);
    position: relative;
    border-top: 4px solid rgb(255, 237, 0);
}

.coach-benefit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,237,0,0.05) 0%, transparent 70%);
    transition: width 0.6s ease;
}

.coach-benefit:hover::after {
    width: 100%;
}

.coach-benefit:hover {
    background: var(--medium-gray);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--primary-white);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.coach-benefit h3 {
    color: var(--primary-white);
    margin: 20px 0;
    font-size: 1.5rem;
}

.coach-benefit p {
    color: var(--lighter-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), url('images/hyrox-hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    text-align: center;
    padding: 200px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.4) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 32px;
}

.cta-quote {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 40px;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--lighter-gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 160px 0;
    background: var(--dark-gray);
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.credentials {
    margin: 80px 0;
}

.credentials h3 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-white);
    font-size: 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.credential-item {
    background: var(--primary-black);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-top: 3px solid rgb(255, 237, 0);
}

.credential-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.4s ease;
}

.credential-item:hover::after {
    width: 60%;
}

.credential-item:hover {
    background: var(--dark-gray);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.credential-item strong {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--primary-white);
    font-weight: 600;
}

.credential-item span {
    font-size: 14px;
    color: var(--lighter-gray);
    line-height: 1.4;
}

/* Calendar Section */
.calendar-section {
    padding: 160px 0;
    background: var(--primary-black);
}

.calendar-embed {
    max-width: 800px;
    margin: 80px auto;
}

.calendar-placeholder {
    background: var(--dark-gray);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    border-top: 4px solid rgb(255, 237, 0);
}

.calendar-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-white);
}

.calendar-placeholder h3 {
    color: var(--primary-white);
    margin-bottom: 32px;
    font-size: 2rem;
}

.calendar-placeholder p {
    color: var(--lighter-gray);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.calendar-placeholder ul {
    list-style: none;
    margin: 40px auto 60px;
    max-width: 400px;
    text-align: left;
}

.calendar-placeholder li {
    padding: 16px 0;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--lighter-gray);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-placeholder li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .nav-container {
        padding: 0 32px;
    }
    
    .hero-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid var(--dark-gray);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        text-align: center;
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .audience-grid,
    .events-slider,
    .benefits-grid,
    .options-grid,
    .coach-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
    
    .running-section, .stations-section {
        padding: 40px;
    }
    
    .hyrox-vs-comparison {
        padding: 60px 40px;
    }
    
    .events-cta {
        padding: 60px 40px;
    }
    
    .coach-benefits-grid {
        gap: 40px;
    }
    
    .coach-benefit {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .running-section, .stations-section {
        padding: 30px 20px;
    }
    
    .hyrox-vs-comparison {
        padding: 40px 20px;
    }
    
    .events-cta {
        padding: 40px 20px;
    }
    
    .coach-benefit {
        padding: 30px 20px;
    }
    
    .calendar-placeholder {
        padding: 60px 30px;
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--dark-gray);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-section h4 {
    color: var(--primary-white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    color: var(--lighter-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--lighter-gray);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--lighter-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--primary-white);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}