/*
Theme Name: Ignition Fitness
Theme URI: https://ignitionfitness.com
Author: Ignition Fitness
Author URI: https://ignitionfitness.com
Description: Custom dark theme for Ignition Fitness kettlebell training gym
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ignition-fitness
*/

/* ========================================
   CSS Variables (Design System)
======================================== */
:root {
    /* Primary Colors */
    --red: #C41E1E;
    --red-dark: #8B1515;
    --red-glow: #E63B3B;
    --gold: #F5A623;
    --gold-dark: #D4891A;
    --gold-light: #FFD078;

    /* Background Colors */
    --bg: #0A0A0A;
    --bg-card: #141414;
    --bg-card-hover: #1A1A1A;
    --bg-elevated: #1E1E1E;

    /* Text Colors */
    --text: #F0EDE8;
    --text-dim: #8A8580;
    --text-muted: #5A5550;

    /* Utility */
    --border: #2A2520;
    --success: #34D399;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    min-height: 100vh;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-dim);
}

.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-white { color: var(--text); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--text);
}

.btn-primary:hover {
    background: var(--red-glow);
    box-shadow: 0 0 30px rgba(196, 30, 30, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--bg);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ========================================
   Cards
======================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateY(-4px);
}

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

/* ========================================
   Navigation
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .site-header {
        background: var(--bg);
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--red);
}

.site-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.site-logo-text span {
    color: var(--gold);
}

.site-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.footer-brand .site-logo .custom-logo {
    max-height: 100px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: 3rem;
}

.main-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    transition: color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.current {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition-fast);
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

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

    .nav-cta .btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: var(--spacing-lg);
    z-index: 999;
}

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

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .site-logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 0.875rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.15em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

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

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(196, 30, 30, 0.15) 0%, transparent 50%);
}

.hero-lines {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.hero-logo img {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    background: transparent;
}

@media (min-width: 768px) {
    .hero-logo img {
        max-width: 280px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.hero-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    margin-bottom: var(--spacing-lg);
}

.hero h1 .line-1 { color: var(--text); }
.hero h1 .line-2 { color: var(--red); }
.hero h1 .line-3 {
    color: var(--gold);
    font-size: 0.6em;
    display: block;
    margin-top: 0.25em;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

/* Floating Kettlebells */
.kettlebell-float {
    position: absolute;
    opacity: 0.15;
    fill: var(--text);
}

/* Floating kettlebell images (custom icon) */
img.kettlebell-float {
    opacity: 0.15;
    object-fit: contain;
}

/* ========================================
   Stats Bar
======================================== */
.stats-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--red);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ========================================
   Section Dividers
======================================== */
.section-divider {
    display: flex;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

.section-divider svg {
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
    animation: bounce 2s infinite;
}

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

/* ========================================
   Solution Section
======================================== */
.solution-section {
    padding: 0;
    margin: 0;
    background: var(--bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 968px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.solution-visual {
    --overlay-opacity: 0.5;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.solution-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    opacity: var(--overlay-opacity);
    z-index: 1;
    pointer-events: none;
}

.solution-visual .visual-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
}

.solution-visual .visual-text h3,
.solution-visual .visual-text p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.solution-visual .visual-text h3 {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.solution-visual .visual-text p {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.solution-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 968px) {
    .solution-content {
        padding: var(--spacing-xl);
    }
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checklist-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    color: var(--text-dim);
}

/* ========================================
   Benefits Section
======================================== */
.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.benefits-header h2 {
    color: var(--text);
}

.benefits-header p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.benefit-card .benefit-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--red);
    line-height: 1;
}

.benefit-card .benefit-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin: 0.5rem 0;
}

.benefit-card .benefit-desc {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* ========================================
   How It Works
======================================== */
.steps-section {
    background: var(--bg);
    padding: var(--spacing-3xl) 0;
}

.steps-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #F5A623;
    margin-bottom: 16px;
}

.steps-header h2 {
    color: #F0EDE8;
    margin-bottom: 16px;
}

.steps-header > p {
    font-size: 18px;
    color: #8A8580;
    max-width: 500px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2A2520, #2A2520, transparent);
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps::before {
        display: none;
    }
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #141414;
    border: 2px solid #2A2520;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #F5A623;
    position: relative;
    z-index: 2;
}

.step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #F0EDE8;
}

.step p {
    color: #8A8580;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
    margin: 0 auto;
}

/* ========================================
   Pricing Teaser
======================================== */
.pricing-teaser {
    position: relative;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-teaser .container {
    max-width: 700px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.pricing-teaser h2 {
    color: var(--text);
    margin-bottom: var(--spacing-md);
}

.pricing-teaser p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.pricing-teaser .btn-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Final CTA
======================================== */
.final-cta {
    position: relative;
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(180deg, #0A0A0A 0%, #1a0808 50%, #0A0A0A 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 30, 30, 0.25) 0%, rgba(196, 30, 30, 0.1) 30%, transparent 60%);
    z-index: 0;
    border-radius: 50%;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #F0EDE8;
    margin-bottom: var(--spacing-md);
    font-size: clamp(3rem, 8vw, 5rem);
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dim);
}

/* ========================================
   Page Headers
======================================== */
.page-header {
    position: relative;
    padding: calc(100px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(196, 30, 30, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-header h1 {
    position: relative;
    z-index: 1;
}

/* ========================================
   Our Story Page
======================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.story-photo {
    position: relative;
}

.story-photo-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-photo-frame svg {
    width: 40%;
    height: 40%;
    fill: var(--text-muted);
    opacity: 0.3;
}

.story-photo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(ellipse at top left, rgba(196, 30, 30, 0.2) 0%, transparent 50%);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.story-photo::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at bottom right, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.credential-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: var(--spacing-lg);
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.credential-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.story-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-dim);
}

.story-content p:first-of-type::first-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--red);
}

.story-quote {
    padding: var(--spacing-lg);
    border-left: 3px solid var(--gold);
    background: rgba(245, 166, 35, 0.05);
    margin: var(--spacing-xl) 0;
    font-style: italic;
}

.story-quote p {
    color: var(--gold-light);
    font-size: 1.125rem;
}

/* ========================================
   Pricing Page
======================================== */
.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.pricing-intro .card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: left;
}

.pricing-intro .card svg {
    width: 48px;
    height: 48px;
    fill: var(--gold);
    flex-shrink: 0;
}

.pricing-intro .card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-intro .card {
        flex-direction: column;
        text-align: center;
    }
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-cards.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
}

@media (max-width: 768px) {
    .membership-cards,
    .membership-cards.three-col {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.membership-card {
    display: flex;
    flex-direction: column;
}

.membership-card.featured {
    border-color: var(--red);
    position: relative;
}

.membership-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-glow));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.membership-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
}

.membership-card h3 {
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.membership-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
}

.membership-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.membership-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.membership-features {
    margin: var(--spacing-lg) 0;
    flex-grow: 1;
}

.membership-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.membership-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.membership-card .btn {
    width: 100%;
}

/* Session Packs */
.session-packs {
    margin-bottom: var(--spacing-3xl);
}

.session-packs h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

.pack-card {
    text-align: center;
    position: relative;
}

.pack-card.best-value::after {
    content: 'Best Value';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.pack-sessions {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.pack-sessions span {
    font-size: 1rem;
    color: var(--text-dim);
    display: block;
}

.pack-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0.5rem 0;
}

.pack-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pack-savings {
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 0.5rem;
}

/* Benefits Section */
.pricing-benefits {
    margin-bottom: var(--spacing-3xl);
}

.pricing-benefits h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* FAQ */
.pricing-faq {
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: var(--spacing-md);
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Not Sure CTA */
.not-sure-cta {
    text-align: center;
}

.not-sure-cta .card {
    display: inline-block;
    max-width: 500px;
}

.not-sure-cta h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.not-sure-cta p {
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Schedule Page
======================================== */
.schedule-message {
    text-align: center;
    padding: var(--spacing-xl);
}

.schedule-message p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.schedule-message .btn-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-container {
    max-width: 800px;
    margin: 0 auto;
}

.day-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.day-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.day-tab:hover,
.day-tab.active {
    background: var(--bg-elevated);
    border-color: var(--gold);
    color: var(--gold);
}

.class-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.class-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

.class-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    min-width: 100px;
}

.class-info {
    flex-grow: 1;
}

.class-name {
    font-weight: 600;
    color: var(--text);
}

.class-meta {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.class-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.class-level.all {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
}

.class-level.intermediate {
    background: rgba(196, 30, 30, 0.1);
    color: var(--red);
}

.class-level.advanced {
    background: rgba(139, 21, 21, 0.2);
    color: var(--red-dark);
}

.class-spots {
    font-size: 0.875rem;
    color: var(--text-dim);
    min-width: 80px;
    text-align: center;
}

.class-spots.low {
    color: var(--red);
}

.class-action {
    min-width: 100px;
}

/* ========================================
   My Sessions / Dashboard
======================================== */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    text-align: center;
}

.dashboard-card .card-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--red);
    line-height: 1;
}

.dashboard-card .card-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.upcoming-classes h3 {
    margin-bottom: var(--spacing-lg);
}

.booking-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.booking-day {
    padding: 0.5rem 0.75rem;
    background: var(--red);
    border-radius: var(--radius-sm);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    color: var(--text);
}

.booking-info {
    flex-grow: 1;
}

.booking-name {
    font-weight: 600;
    color: var(--text);
}

.booking-meta {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.empty-state {
    text-align: center;
    padding: var(--spacing-2xl);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    fill: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.empty-state p {
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Login/Signup Modals
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-xl);
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text);
}

.modal h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
    margin-top: var(--spacing-md);
}

.form-switch {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--text-dim);
}

.form-switch a {
    color: var(--gold);
    font-weight: 500;
}

.form-switch a:hover {
    text-decoration: underline;
}

.form-error {
    background: rgba(196, 30, 30, 0.1);
    border: 1px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--red-glow);
    display: none;
}

.form-error.active {
    display: block;
}

/* ========================================
   Toast Notifications
======================================== */
.toast-container {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-color: var(--success);
}

.toast.success svg {
    fill: var(--success);
}

.toast.error {
    border-color: var(--red);
}

.toast.error svg {
    fill: var(--red);
}

.toast svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Hide TrustedSite floating badge on mobile */
@media (max-width: 768px) {
    #trustedsite-tm-floating-badge,
    .trustedsite-floating-badge,
    [class*="trustedsite"],
    [id*="trustedsite"] {
        display: none !important;
    }
}

/* ========================================
   Instagram Section
======================================== */
.instagram-section {
    background: var(--bg);
    padding: var(--spacing-3xl) 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.instagram-header h2 {
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.instagram-header p {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 968px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-feed {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.instagram-embed {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
}

.instagram-embed iframe {
    width: 100% !important;
    min-width: 100% !important;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    gap: 0.75rem;
}

.instagram-cta .btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.instagram-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.instagram-placeholder p {
    font-size: 1.125rem;
    color: var(--text-dim);
}
