/* ====================================
   ENGLISH FIGHT - Foreigner Landing Page V3
   ZEAL Brand: Light, Bold & Energetic
   ==================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - ZEAL Light Brand Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8fa;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --bg-elevated: #ffffff;

    /* Purple Section Backgrounds */
    --bg-purple: #8a10a0;
    --bg-purple-dark: #6d0d80;

    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-on-purple: #ffffff;

    /* ZEAL Orange - Primary Accent/CTA */
    --accent: #ff8d02;
    --accent-hover: #e67f00;
    --accent-glow: rgba(255, 141, 2, 0.25);
    --accent-soft: rgba(255, 141, 2, 0.1);

    /* ZEAL Purple - Brand Identity */
    --brand-purple: #8a10a0;
    --brand-purple-light: #a855f7;
    --brand-purple-hover: #7a0e8e;
    --brand-purple-glow: rgba(138, 16, 160, 0.2);
    --brand-purple-soft: rgba(138, 16, 160, 0.08);

    /* CTA Blue (like main site) */
    --cta-blue: #00b4d8;
    --cta-blue-hover: #0096b7;

    /* Status Colors */
    --bad: #ff5757;
    --bad-bg: rgba(255, 87, 87, 0.08);
    --good: #4ade80;
    --good-bg: rgba(74, 222, 128, 0.08);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-pill: 999px;

    /* Shadows for light theme */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Container */
    --container-max: 1100px;
    --container-padding: 1.5rem;
}


/* ===== RESET & BASE ===== */
*,
*::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: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

em {
    font-style: italic;
    color: var(--accent);
}

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

.accent-text {
    color: var(--accent);
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline-flex;
    }
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

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

.btn-glow {
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.875rem 1rem;
}

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

.btn-nav {
    background: transparent;
    color: #ffffff;
    /* White for hero */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    text-shadow: none;
}

/* Scrolled state for button */
.navbar.scrolled .btn-nav {
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.navbar.scrolled .btn-nav:hover {
    color: #000;
    border-color: var(--accent);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: var(--text-primary);
}

.navbar.scrolled .logo-text {
    color: var(--text-primary);
    text-shadow: none;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    /* White for purple hero */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.logo-accent {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    /* White for purple hero */
    transition: color var(--transition-fast);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.nav-link:hover {
    color: var(--accent);
}

/* ===== HERO — V4 ZEAL DIAGONAL STYLE ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Full width gradient for readability */
    background: linear-gradient(to right,
            rgba(138, 16, 160, 0.9) 0%,
            rgba(138, 16, 160, 0.7) 50%,
            rgba(138, 16, 160, 0.4) 100%);
    opacity: 1;
}

@media (max-width: 900px) {
    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(138, 16, 160, 0.85) 0%,
                rgba(109, 13, 128, 0.6) 100%);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: var(--space-4xl);
}

.hero-content {
    max-width: 600px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.75rem, 10vw, 5rem);
    line-height: 0.95;
    margin-bottom: var(--space-xl);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* IG DM Primary CTA Button */
.btn-ig-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8a10a0, #c13584, #e1306c);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 0 30px rgba(193, 53, 132, 0.35);
}

.btn-ig-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(193, 53, 132, 0.45);
}

.btn-ig-primary svg:first-child {
    flex-shrink: 0;
}

/* ===== MESSAGE CHOOSER (Platform Picker Popover) ===== */
.message-chooser {
    position: relative;
    display: inline-block;
}

.btn-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8a10a0, #c13584, #e1306c);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg, 12px);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-message:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(193, 53, 132, 0.45);
}

.btn-message svg:first-child {
    flex-shrink: 0;
}

.message-options {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border-radius: var(--radius-lg, 12px);
    padding: 0.5rem;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-options.open {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: fadeInPop 0.2s ease;
}

@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Popover arrow */
.message-options::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #1a1a2e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}

/* Upward popover (floating CTA) */
.message-chooser[data-popover-direction="up"] .message-options {
    top: auto;
    bottom: calc(100% + 0.75rem);
}

.message-chooser[data-popover-direction="up"] .message-options::before {
    top: auto;
    bottom: -6px;
    border-left: none;
    border-top: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInPopUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.message-chooser[data-popover-direction="up"] .message-options.open {
    animation: fadeInPopUp 0.2s ease;
}

.message-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.message-option svg {
    flex-shrink: 0;
}

.message-option--ig:hover {
    background: rgba(193, 53, 132, 0.25);
}

.message-option--fb:hover {
    background: rgba(0, 132, 255, 0.25);
}

.message-option--line:hover {
    background: rgba(6, 199, 85, 0.25);
}

/* Mid-page chooser */
.mid-page-cta .message-chooser {
    display: block;
    text-align: center;
}

.mid-page-cta .btn-message {
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    max-width: 280px;
}

/* Floating CTA chooser */
.floating-cta .message-chooser {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.floating-cta .btn-message {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
}

/* Form section chooser */
.message-chooser--form {
    width: 100%;
}

.message-chooser--form .btn-message {
    width: 100%;
    background: linear-gradient(135deg, #8a10a0, #6d0d80);
    color: #fff;
    justify-content: center;
}

.message-chooser--form .btn-message:hover {
    background: linear-gradient(135deg, #9b12b5, #7e0f94);
}

/* Hero reply reassurance */
.hero-reply-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

/* Hero verification links */
.hero-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-xs);
}

.hero-verify a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.hero-verify a:hover {
    color: #fff;
    border-bottom-color: var(--accent);
}

.hero-verify-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
}

/* Hero form link (secondary) */
.hero-form-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.hero-form-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Hero stakes micro-copy */
.hero-stakes {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    font-family: var(--font-body);
    max-width: 320px;
    line-height: 1.5;
    margin-top: var(--space-xs);
}

/* ===== SCROLL INDICATOR (HIDDEN — content peek replaces it) ===== */
.hero-scroll-indicator {
    display: none;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: mouse-scroll 1.5s infinite;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: -4px auto 0;
    animation: arrow-scroll 1.5s infinite;
}

.arrow-scroll span:nth-child(2) {
    animation-delay: 0.1s;
}

.arrow-scroll span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes mouse-scroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

@keyframes arrow-scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* ===== VERIFY US STRIP ===== */
.verify-strip {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.verify-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.verify-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 1px solid transparent;
}

.verify-item:hover {
    color: var(--brand-purple);
    background: var(--brand-purple-soft);
    border-color: rgba(138, 16, 160, 0.15);
}

.verify-item svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.verify-item:hover svg {
    color: var(--brand-purple);
}

.verify-item--cta {
    background: var(--accent-soft);
    color: var(--text-primary);
    font-weight: 600;
}

.verify-item--cta svg {
    color: var(--accent);
}

.verify-item--cta:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ===== EMPATHY SECTION ===== */
.empathy-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.empathy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.empathy-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--space-2xl);
    color: var(--text-secondary);
}

.empathy-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.empathy-punchline {
    font-size: 1.375rem !important;
    color: var(--accent) !important;
    font-weight: 600;
    margin-top: var(--space-2xl) !important;
}

/* ===== RELIEF SECTION (Trust Signals) ===== */
.relief-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-purple-soft);
    box-shadow: var(--shadow-card-hover);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-purple-soft);
    border-radius: var(--radius-md);
    color: var(--brand-purple-light);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.trust-card-highlight {
    border: 2px solid var(--brand-purple);
    background: var(--bg-card);
    box-shadow: 0 4px 30px var(--brand-purple-glow);
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
}

.testimonial-quote {
    padding: var(--space-xl);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-left: 3px solid var(--brand-purple);
    margin: var(--space-lg);
    padding-left: var(--space-lg);
}

.testimonial-author {
    padding: 0 var(--space-xl) var(--space-xl);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.author-tag {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== SECTIONS (Common) ===== */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== COACHES SECTION ===== */
.coaches-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.coaches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

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

.coach-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.coach-img-wrapper {
    position: relative;
    overflow: hidden;
}

.coach-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-smooth);
}

.coach-card:hover .coach-img {
    transform: scale(1.05);
}

.coach-info {
    padding: var(--space-xl);
}

.coach-name {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.coach-origin {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.coach-origin svg {
    width: 14px;
    height: 14px;
}

.coach-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.coach-style {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.style-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.boxing-fitness-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--accent);
}

.boxing-fitness-note .note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent);
}

.boxing-fitness-note .note-icon svg {
    width: 20px;
    height: 20px;
}

.boxing-fitness-note .note-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.boxing-fitness-note .note-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GYM GALLERY SECTION ===== */
.gym-section {
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0;
}

.gym-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gym-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.gym-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    display: block;
}

.gym-photo:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .gym-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== SESSION FLOW SECTION ===== */
.session-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

.session-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 900px) {
    .session-flow {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flow-phase {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.flow-phase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.phase-image {
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
}

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

.phase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 20, 30, 0.4) 0%, rgba(20, 20, 30, 0.9) 100%);
}

.flow-phase .phase-header,
.flow-phase .phase-content {
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.flow-phase.phase-highlight {
    border: 2px solid var(--accent);
}

.phase-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.phase-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.phase-name {
    font-size: 1.125rem;
    color: #ffffff;
    flex: 1;
}

.phase-time {
    font-size: 0.75rem;
    color: #ffffff;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    width: 100%;
    margin-top: 0.25rem;
    display: inline-block;
    text-align: left;
    max-width: fit-content;
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.phase-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.phase-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.phase-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.phase-item span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);

}

.session-note {
    text-align: center;
    margin-top: var(--space-3xl);
    font-size: 1rem;
    color: var(--text-secondary);
}

.session-note em {
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== FRICTION SECTION (Comparison - Sport Style) ===== */
.friction-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .comparison-wrapper {
        grid-template-columns: 1fr auto 1fr;
    }
}

.comparison-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-md); /* Sharper corners for sport look */
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* --- BAD CARD (The Usual Gym) --- */
.card-bad {
    background: #f4f4f5; /* Concrete Gray */
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #71717a; /* Muted text */
}

.card-bad .card-label {
    color: #a1a1aa; /* Even lighter label */
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
    text-align: center;
    text-transform: uppercase;
}

.card-bad .list-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #a1a1aa;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bad .list-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.card-bad li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-bad strong {
    color: #52525b; /* Darker gray, not black */
    font-weight: 500;
}

/* --- GOOD CARD (English Fight - Nike/Adidas Vibe) --- */
.card-good {
    background: #09090b; /* Deep Black */
    color: #ffffff;
    border: 1px solid #27272a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

@media (min-width: 768px) {
    .card-good {
        transform: scale(1.05);
    }
}

.card-good::before {
    /* Top accent line */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent); /* Brand Orange */
}

.card-good .card-label {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.card-good .card-label.accent {
    color: #ffffff; /* Keep white for cleanliness */
}

.card-good .list-icon {
    background: transparent;
    color: var(--accent); /* Neon Orange Icons */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 141, 2, 0.3);
    box-shadow: 0 0 10px rgba(255, 141, 2, 0.1);
}

.card-good .list-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.card-good li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-good strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
}

/* Common List Styles */
.comparison-list {
    flex: 1;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* VS Badge */
.comparison-divider {
    display: none;
}

@media (min-width: 768px) {
    .comparison-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 20;
        width: 0; /* Don't take up grid space */
        overflow: visible;
    }

    .divider-text {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 700;
        color: #000;
        background: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 4px solid var(--bg-primary);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: flex-start;
    }
}

.step-card {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.step-divider {
    display: none;
}

@media (min-width: 768px) {
    .step-divider {
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--accent), transparent);
        align-self: center;
        margin-top: 2rem;
    }
}

/* ===== SCHEDULE ===== */
.schedule-section {
    background: var(--bg-primary);
}

.schedule-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .schedule-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.schedule-card {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.schedule-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.schedule-card-header h3 {
    font-size: 1.5rem;
}

.schedule-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
}

.schedule-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.scarcity-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.scarcity-note svg {
    flex-shrink: 0;
    color: var(--accent);
}

.scarcity-note strong {
    color: var(--accent-hover);
}

.schedule-times {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--space-md);
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.day {
    font-weight: 600;
    font-size: 0.875rem;
}

.time {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.schedule-note {
    text-align: center;
    margin-top: var(--space-2xl);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.note-label {
    color: var(--text-secondary);
}

/* ===== PRICING ===== */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.price-card-inner {
    padding: var(--space-2xl);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-featured {
    border: 2px solid var(--brand-purple);
    background: var(--bg-card);
}

.card-featured:hover {
    box-shadow: 0 10px 50px var(--brand-purple-glow);
}

@media (min-width: 768px) {
    .card-featured {
        transform: scale(1.05);
        z-index: 10;
    }

    .card-featured:hover {
        transform: scale(1.05) translateY(-4px);
    }
}

.price-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-purple);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.price-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.price-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

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

.price-intro {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: var(--space-xs);
}

.price-features {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.price-features li {
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features strong {
    color: var(--text-primary);
}

/* Trial guarantee badge */
.trial-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    margin: var(--space-md) 0;
    background: var(--good-bg);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.trial-guarantee svg {
    flex-shrink: 0;
    color: var(--good);
}

.trial-guarantee span {
    font-weight: 500;
}

/* ===== MID-PAGE CTA ===== */
.mid-page-cta {
    text-align: center;
    padding: var(--space-2xl) 0 0;
}

.mid-page-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.mid-page-cta .btn-instagram {
    display: inline-flex;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-purple);
    padding: var(--space-5xl) 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-content {
    max-width: 480px;
    color: var(--text-on-purple);
}

.cta-content .section-tag {
    color: var(--accent);
}

.cta-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: var(--space-lg);
    color: var(--text-on-purple);
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    border-left: 2px solid var(--accent);
}

.cta-form-area {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: var(--bg-card);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-card-hover);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-reassurance {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* ===== BOOKING FORM ===== */
.cta-box-form {
    max-width: 520px;
    text-align: left;
    padding: var(--space-xl);
}

.cta-box-form h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.form-schedule-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group .required {
    color: var(--bad);
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px var(--brand-purple-glow);
}

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

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

.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.date-time-row input,
.date-time-row select {
    width: 100%;
}

.booking-form .btn {
    margin-top: var(--space-sm);
}

.booking-form .cta-reassurance {
    text-align: center;
}

/* ===== LINE CTA ===== */
.line-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

.line-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.line-divider::before,
.line-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.line-divider-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #06C755;
    color: #fff;
    border-radius: var(--radius-lg, 12px);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-line:hover {
    background: #05b34c;
    transform: translateY(-1px);
}

.line-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.line-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ===== ALT CTA (IG + LINE below form) ===== */
.alt-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

.alt-cta__divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.alt-cta__divider::before,
.alt-cta__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.alt-cta__divider-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #8a10a0, #c13584, #e1306c);
    color: #fff;
    border-radius: var(--radius-lg, 12px);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.instagram-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.alt-cta__note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.alt-cta__separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: var(--space-md) 0;
}

.alt-cta .btn-line {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    opacity: 0.85;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0084FF;
    color: #fff;
    border-radius: var(--radius-lg, 12px);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-facebook:hover {
    background: #0073e6;
    transform: translateY(-1px);
}

.facebook-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.alt-cta .btn-facebook {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-link svg {
    width: 18px;
    height: 18px;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-link-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-link-content strong {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-link-content em {
    font-size: 0.75rem;
    font-style: normal;
    color: var(--text-muted);
}

.footer-link:hover .footer-link-content strong {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* ===== FLOATING CTA (Mobile) ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, var(--bg-primary) 60%, transparent);
    z-index: 900;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.floating-cta.visible {
    transform: translateY(0);
}

.btn-floating {
    width: 100%;
    max-width: 320px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-floating-ig {
    background: linear-gradient(135deg, #8a10a0, #c13584, #e1306c);
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-floating-ig svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for nav button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 141, 2, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 141, 2, 0);
    }
}

.btn-nav.pulse {
    animation: pulse 2s infinite;
}

/* ===== ACCESS / LOCATION ===== */
.access-section {
    background: var(--bg-primary);
    padding: var(--space-4xl) 0;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (min-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: center;
    }
}

.access-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.access-address p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-primary);
}

.access-address-jp {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.access-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.access-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.access-detail-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.access-detail-item span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.access-map {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.access-map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

@media (min-width: 768px) {
    .access-map iframe {
        height: 400px;
    }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    /* Override heavy sections that use 8rem (--space-5xl) */
    .relief-section,
    .coaches-section,
    .empathy-section,
    .community-section,
    .friction-section,
    .session-section {
        padding: var(--space-2xl) 0;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card,
    .schedule-card,
    .price-card-inner,
    .cta-box {
        padding: var(--space-xl);
    }

    .testimonial-img {
        height: 220px;
    }

    .empathy-text p {
        font-size: 1rem;
    }

    /* Fix for mobile spacing */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: flex-start;
        padding-bottom: var(--space-2xl);
    }

    .hero-container {
        padding-top: 7rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .navbar {
        padding: var(--space-md) 0;
    }

    .eyebrow {
        margin-bottom: var(--space-sm);
    }

    .btn-ig-primary {
        width: 100%;
    }

    .hero-form-link {
        font-size: 0.85rem;
    }

    .hero-stakes {
        text-align: center;
        max-width: 280px;
    }

    .hero-reply-note {
        text-align: center;
    }

    .verify-grid {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .verify-item {
        justify-content: center;
    }

    .hero-verify {
        flex-direction: column;
        gap: 0.25rem;
    }

    .hero-verify-sep {
        display: none;
    }

    /* Gallery: horizontal scroll on mobile */
    .gym-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding-bottom: var(--space-md);
        -webkit-overflow-scrolling: touch;
    }

    .gym-photo {
        min-width: 75vw;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* Session flow: accordion on mobile */
    .flow-phase .phase-content {
        display: none;
    }

    .flow-phase.expanded .phase-content {
        display: flex;
    }

    .flow-phase .phase-header {
        cursor: pointer;
        position: relative;
        padding-right: 2rem;
    }

    .flow-phase .phase-header::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-body);
        font-size: 1.25rem;
        color: var(--accent);
        font-weight: 600;
    }

    .flow-phase.expanded .phase-header::after {
        content: '−';
    }
}