/* ══════════════════════════════════════════════════
   SportsFolio Landing Page — Brand Identity 2026
   Fonts: Sora (headings) + Inter (body)
   Palette: Midnight Navy + Electric Teal + Victory Lime
   ══════════════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --midnight-navy: #0B1220;
    --electric-teal: #00C2B3;
    --teal-bright: #00E0CF;
    --victory-lime: #B7F000;
    --signal-coral: #FF5A5F;
    --sky-mist: #E8F3FF;
    --graph-slate: #6B7280;
    --clean-white: #FFFFFF;

    /* Backgrounds */
    --bg-deep: #0B1220;
    --bg-dark: #0F1A2E;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(0, 194, 179, 0.06);
    --bg-soft: #E8F3FF;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 194, 179, 0.3);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #6B7280;

    /* Accent */
    --accent: #00C2B3;
    --accent-bright: #00E0CF;
    --accent-glow: rgba(0, 194, 179, 0.25);

    /* Semantic */
    --success: #B7F000;
    --danger: #FF5A5F;
    --warning: #f59e0b;

    /* Typography */
    --font-heading: 'Sora', 'Space Grotesk', 'Montserrat', system-ui, sans-serif;
    --font-body: 'Inter', 'Roboto', 'Helvetica Neue', Arial, system-ui, sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease);
}

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

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay {
    transition-delay: 0.15s;
}

/* ═══ TEXT HELPERS ═══ */
.text-accent {
    color: var(--electric-teal);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--electric-teal);
    color: var(--midnight-navy);
    font-weight: 600;
}
.btn--primary:hover {
    background: var(--teal-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 179, 0.3);
}

.btn--glow {
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}
.btn--glow:hover {
    box-shadow: 0 0 35px var(--accent-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    border-color: var(--electric-teal);
    color: var(--electric-teal);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
.btn--outline:hover {
    border-color: var(--electric-teal);
    color: var(--electric-teal);
    background: rgba(0, 194, 179, 0.05);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform 0.25s var(--ease);
}
.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ═══ STICKY HEADER ═══ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s var(--ease);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}
.logo-icon {
    font-size: 1.5rem;
}

.header-nav {
    display: flex;
    gap: 32px;
}
.header-nav a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: var(--electric-teal);
}

.header-cta {
    background: var(--electric-teal);
    color: var(--midnight-navy);
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s var(--ease);
}
.header-cta:hover {
    background: var(--teal-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 194, 179, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ═══ HERO SECTION ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(165deg, #0B1220 0%, #0d1a30 40%, #0a2535 70%, #0B1220 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 194, 179, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}
.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 194, 179, 0.12);
    top: -10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}
.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 194, 179, 0.06);
    bottom: 0;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 194, 179, 0.1);
    border: 1px solid rgba(0, 194, 179, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-teal);
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-proof p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.avatar-stack {
    display: flex;
}
.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-deep);
    margin-right: -8px;
}

/* ═══ CAROUSEL ═══ */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding-bottom: 20px; /* Prevent cut-off of carousel dots */
}

.carousel-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: carouselFadeOut 0.5s var(--ease) forwards;
}
.carousel-slide.active {
    display: block;
    animation: carouselFadeIn 0.5s var(--ease) forwards;
}

@keyframes carouselFadeIn {
    from { opacity: 0; transform: translateX(30px) scale(0.97); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes carouselFadeOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(-30px) scale(0.97); }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 8px; /* Ensure labels are fully visible */
}

.carousel-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0;
}
.carousel-dot:hover {
    border-color: rgba(0, 194, 179, 0.4);
    background: rgba(0, 194, 179, 0.08);
    transform: scale(1.1);
}
.carousel-dot.active {
    border-color: var(--electric-teal);
    background: rgba(0, 194, 179, 0.15);
    box-shadow: 0 0 16px rgba(0, 194, 179, 0.25);
    transform: scale(1.1);
}

/* ═══ ATHLETE AVATAR PHOTO ═══ */
.mockup-avatar-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(0, 194, 179, 0.3);
    flex-shrink: 0;
}
.avatar-initials {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    display: none; /* Hidden when real photo is present */
}
.avatar-sport-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    z-index: 2;
    border: 1.5px solid rgba(0, 194, 179, 0.3);
}

/* ═══ MEDIA GALLERY THUMBNAILS ═══ */
.mockup-media {
    margin-bottom: 14px;
}
.media-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.media-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.media-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    pointer-events: none;
}
.media-thumb--video {
    cursor: pointer;
}
.media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.media-duration {
    position: absolute;
    bottom: 3px;
    right: 4px;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1px 4px;
    border-radius: 3px;
    z-index: 1;
    font-variant-numeric: tabular-nums;
}

/* ═══ DASHBOARD MOCKUP ═══ */
.dashboard-mockup {
    background: rgba(11, 18, 32, 0.9);
    border: 1px solid rgba(0, 194, 179, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 194, 179, 0.08);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s var(--ease);
}
.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 20px;
}

.mockup-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.mockup-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 194, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.mockup-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}
.mockup-sport {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--electric-teal);
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.stat-trend {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 4px;
}
.stat-trend.up {
    color: var(--victory-lime);
}

.mockup-chart {
    margin-bottom: 14px;
}
.chart-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.mini-chart {
    width: 100%;
    height: 60px;
}

.mockup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mockup-badges .badge {
    padding: 5px 10px;
    background: rgba(0, 194, 179, 0.08);
    border: 1px solid rgba(0, 194, 179, 0.2);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--electric-teal);
    font-weight: 500;
}

/* ═══ TRUST STRIP ═══ */
.trust-strip {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 194, 179, 0.1);
    border-bottom: 1px solid rgba(0, 194, 179, 0.1);
    background: rgba(11, 18, 32, 0.6);
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.trust-sports {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-sports > span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.sport-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.sport-tag {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-stat {
    text-align: center;
}
.trust-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.trust-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.trust-quote {
    text-align: center;
}
.trust-quote p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}
.trust-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ═══ PAIN SECTION ═══ */
.pain-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(15, 15, 26, 1) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 16px;
    transition: all 0.3s var(--ease);
}
.pain-card:hover {
    border-color: rgba(255, 90, 95, 0.3);
    background: rgba(255, 90, 95, 0.03);
}
.pain-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.pain-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}
.pain-card strong {
    color: var(--text-primary);
}

/* Before / After Visual */
.pain-visual {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.pain-before, .pain-after {
    flex: 1;
    max-width: 400px;
    border-radius: 14px;
    padding: 24px;
}
.pain-before {
    background: rgba(255, 90, 95, 0.04);
    border: 1px solid rgba(255, 90, 95, 0.15);
}
.pain-after {
    background: rgba(0, 194, 179, 0.04);
    border: 1px solid rgba(0, 194, 179, 0.2);
}

.pain-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.pain-label--bad { color: var(--signal-coral); }
.pain-label--good { color: var(--electric-teal); }

.chaos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chaos-item {
    padding: 6px 12px;
    background: rgba(255, 90, 95, 0.06);
    border: 1px solid rgba(255, 90, 95, 0.12);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transform: rotate(var(--rotate, 0deg));
}
.chaos-item:nth-child(1) { --rotate: -2deg; }
.chaos-item:nth-child(2) { --rotate: 1deg; }
.chaos-item:nth-child(3) { --rotate: -1deg; }
.chaos-item:nth-child(4) { --rotate: 2deg; }
.chaos-item:nth-child(5) { --rotate: -1.5deg; }
.chaos-item:nth-child(6) { --rotate: 1.5deg; }

.pain-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.organized-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.org-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.org-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.org-dot.green { background: var(--electric-teal); }

/* ═══ SOLUTION SECTION ═══ */
.solution-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}
.solution-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 194, 179, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-teal), var(--teal-bright));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.solution-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══ HOW IT WORKS ═══ */
.how-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    position: relative;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 194, 179, 0.08);
    line-height: 1;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.step-connector {
    width: 60px;
    height: 2px;
    margin-top: 80px;
    flex-shrink: 0;
    border: none;
    border-top: 2px dashed rgba(0, 194, 179, 0.4);
    background: none;
    position: relative;
}
.step-connector::before,
.step-connector::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric-teal);
}
.step-connector::before { left: -4px; }
.step-connector::after { right: -4px; }

/* ═══ FEATURES SECTION ═══ */
.features-section {
    padding: 100px 0;
    background: var(--bg-deep);
    position: relative;
}
.features-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 194, 179, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
    transition: all 0.3s var(--ease);
}
.feature-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
}
.testimonial-card:hover {
    border-color: rgba(0, 194, 179, 0.25);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card blockquote em {
    color: var(--electric-teal);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-proof-extra {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.proof-divider {
    color: var(--border);
}

/* ═══ PRICING ═══ */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.pricing-card--featured {
    border-color: var(--electric-teal);
    background: rgba(0, 194, 179, 0.04);
    box-shadow: 0 0 40px rgba(0, 194, 179, 0.1);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-teal);
    color: var(--midnight-navy);
    padding: 4px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.pricing-best-for {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.check {
    color: var(--electric-teal);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══ FAQ ═══ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--electric-teal);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--electric-teal);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    font-weight: 300;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0a1e35 50%, var(--bg-deep) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(0, 194, 179, 0.08), transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}
.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.final-cta-content > p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 36px;
}

.final-cta-buttons {
    margin-bottom: 24px;
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.final-cta-trust span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.sample-link {
    color: var(--electric-teal);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.sample-link:hover {
    color: var(--teal-bright);
}

/* ═══ FOOTER ═══ */
.site-footer {
    padding: 64px 0 32px;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}
.footer-brand .logo-icon {
    font-size: 1.3rem;
}
.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}
.footer-tagline {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    gap: 56px;
}
.footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-weight: 700;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--electric-teal);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.footer-bottom a {
    color: var(--text-secondary);
}
.footer-bottom a:hover {
    color: var(--electric-teal);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }
    .dashboard-mockup {
        transform: none;
    }
    .carousel-dots {
        gap: 10px;
        margin-top: 16px;
    }
    .carousel-dot {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-proof {
        justify-content: center;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }
    .solution-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto 40px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 32px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 18, 32, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .header-nav.open {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-headline {
        font-size: 2.2rem;
    }

    /* Carousel mobile/tablet optimizations */
    .carousel-track {
        min-height: 520px;
    }
    .mockup-body {
        padding: 18px;
    }
    .stat-card {
        padding: 10px;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.68rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        border-top: none;
        border-left: 2px dashed rgba(0, 194, 179, 0.4);
        background: none;
    }
    .step-connector::before,
    .step-connector::after {
        display: none;
    }

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

    .pain-visual {
        flex-direction: column;
    }
    .pain-arrow {
        transform: rotate(90deg);
    }
    .pain-before, .pain-after {
        max-width: 100%;
    }

    .trust-stats {
        gap: 20px;
    }
    .trust-divider {
        display: none;
    }

    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-ctas .btn {
        justify-content: center;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .trust-number {
        font-size: 1.3rem;
    }

    /* Carousel mobile optimizations */
    .carousel-track {
        min-height: 480px;
    }
    .dashboard-mockup {
        font-size: 14px; /* Scale down entire mockup */
    }
    .mockup-body {
        padding: 16px;
    }
    .mockup-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .stat-card {
        padding: 8px;
    }
    .stat-value {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .mockup-name {
        font-size: 0.95rem;
    }
    .mockup-sport {
        font-size: 0.75rem;
    }
    .mockup-avatar-photo {
        width: 42px;
        height: 42px;
    }
    .avatar-initials {
        font-size: 0.85rem;
    }
    .media-grid {
        gap: 4px;
    }
    .mockup-badges .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    .carousel-dot {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    /* Extra small mobile devices */
    .carousel-track {
        min-height: 450px;
    }
    .dashboard-mockup {
        font-size: 13px;
    }
    .mockup-body {
        padding: 14px;
    }
    .stat-value {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .mockup-avatar-photo {
        width: 38px;
        height: 38px;
    }
    .carousel-dot {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
}
