/**
 * Public Marketing Pages Stylesheet
 *
 * Extracted inline CSS from marketing-style public pages:
 * - about.php
 * - how-it-works.php
 * - sample-report.php
 * - young-athletes.php
 * - contact.php
 *
 * Loaded via PageController page_styles mapping for the public layout.
 *
 * @package SportGene
 */

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ── Dot pattern background texture ── */
.about-dot-pattern {
    display: none;
}

.about-intro-section,
.sg-section--alt {
    position: relative;
    overflow: hidden;
}

.about-dot-pattern--top {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--sg-border) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    opacity: 0.7;
}

.about-dot-pattern--bottom {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--sg-border) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    opacity: 0.5;
}

/* ── Intro section ── */
.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.about-intro__copy p {
    color: var(--sg-muted);
    line-height: 1.8;
    margin: 0 0 1rem;
}

/* ── Dark checklist panel ── */
.about-panel--dark {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 223, 122, 0.24), transparent 34%),
        radial-gradient(circle at 92% 18%, rgba(74, 144, 226, 0.20), transparent 32%),
        linear-gradient(145deg, #031e47 0%, #042a5c 60%, #053268 100%);
    border: 1px solid rgba(0, 223, 122, 0.18);
    box-shadow:
        0 18px 44px rgba(3, 30, 71, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.about-panel--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 32px);
    opacity: 0.7;
}

.about-panel--dark::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.about-panel__kicker {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 16px;
    color: var(--sg-accent-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-panel__kicker--light {
    color: var(--sg-accent);
}

.about-checklist {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: var(--sg-ink);
    font-weight: 700;
    line-height: 1.5;
}

.about-checklist li::before {
    display: none;
}

.about-checklist--light li {
    color: #e8f0fe;
    font-weight: 600;
}

.about-checklist--light svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--sg-accent);
    filter: drop-shadow(0 8px 18px rgba(0, 223, 122, 0.18));
}

/* ── Feature cards with icons and accent borders ── */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-feature {
    padding: 28px 24px;
    border-top: 3px solid transparent;
}

.about-feature--action {
    border-top-color: var(--sg-accent);
}

.about-feature--clarity {
    border-top-color: #4a90e2;
}

.about-feature--context {
    border-top-color: #6366f1;
}

.about-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--sg-surface-alt);
    border: 1px solid var(--sg-border-soft);
}

.about-feature--action .about-feature__icon {
    color: var(--sg-accent-deep);
    background: rgba(0, 223, 122, 0.08);
    border-color: rgba(0, 223, 122, 0.18);
}

.about-feature--clarity .about-feature__icon {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.18);
}

.about-feature--context .about-feature__icon {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.18);
}

.about-feature h3,
.about-step h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--sg-ink);
    font-size: 1.25rem;
}

.about-feature p,
.about-step p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.75;
}

/* ── Our Story — founder photo split layout ── */
.about-story-section {
    padding: 64px 0;
    background: linear-gradient(175deg, #f0f4f8 0%, #ffffff 40%, #f8f9fa 100%);
    border-top: 1px solid var(--sg-border-soft);
    border-bottom: 1px solid var(--sg-border-soft);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.about-story__photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-story__photo img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--sg-radius-lg);
    box-shadow: 0 12px 40px rgba(3, 30, 71, 0.14);
    object-fit: cover;
}

.about-story__photo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    right: 12px;
    top: 12px;
    border-radius: var(--sg-radius-lg);
    border: 2px solid var(--sg-accent);
    opacity: 0.2;
    z-index: -1;
}

.about-story__content .sg-kicker {
    display: block;
    margin-bottom: 12px;
}

.about-story__content {
    max-width: 760px;
}

.about-story__content h2 {
    margin: 0 0 20px;
}

.about-story__content p {
    margin: 0 0 1rem;
    color: var(--sg-muted);
    line-height: 1.8;
}

.about-story__content p:last-child {
    margin-bottom: 0;
}

/* ── Journey steps with connector line ── */
.about-journey {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
}

.about-journey__connector {
    display: none;
    position: absolute;
    top: 46px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    z-index: 0;
}

.about-journey__line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sg-accent) 0%, #4a90e2 50%, #6366f1 100%);
    border-radius: 2px;
    opacity: 0.25;
}

.about-step {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 223, 122, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.96) 100%);
    border: 1px solid rgba(230, 237, 245, 0.98);
    border-radius: 28px;
    padding: 26px;
    box-shadow:
        0 18px 44px rgba(3, 30, 71, 0.09),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    z-index: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-step::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sg-accent) 0%, #4a90e2 52%, #6366f1 100%);
    opacity: 0.9;
}

.about-step::after {
    content: '';
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.10) 0%, rgba(74, 144, 226, 0) 70%);
    pointer-events: none;
}

.about-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 223, 122, 0.28);
    box-shadow:
        0 24px 56px rgba(3, 30, 71, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.about-step__number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.22), rgba(74, 144, 226, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--sg-ink);
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow:
        0 12px 28px rgba(3, 30, 71, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

/* ── CTA section ── */
.about-cta {
    padding: 88px 0;
    background: radial-gradient(circle at top left, rgba(0, 223, 122, 0.18), transparent 28%),
        linear-gradient(135deg, #031e47 0%, #021024 100%);
    color: #f7fbff;
}

.about-cta__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-cta__title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.about-cta__subtitle {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(234, 245, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.about-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f7fbff;
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
}

.about-cta__secondary:hover,
.about-cta__secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* ── About responsive ── */
@media (min-width: 1025px) {
    .about-dot-pattern {
        display: block;
    }

    .about-journey__connector {
        display: block;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .about-journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-story__photo {
        display: flex;
        justify-content: center;
    }

    .about-story__photo img {
        max-width: 320px;
    }

    .about-story__photo::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .about-grid,
    .about-journey {
        grid-template-columns: 1fr;
    }

    .about-step {
        padding: 22px;
    }

    .about-cta {
        padding: 72px 0;
    }

    .about-story-section {
        padding: 48px 0;
    }
}

/* ── About reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .about-dot-pattern,
    .about-story__photo::after {
        display: none;
    }

    .about-step {
        transition: none;
    }

    .about-step:hover {
        transform: none;
    }
}


/* ============================================
   HOW-IT-WORKS PAGE STYLES
   ============================================ */

/* Discover Section Background */
.hiw-discover-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hiw-discover-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('/assets/images/coach2.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.25;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.5) 35%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.5) 35%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* CRITICAL: All content must sit above the background */
.hiw-discover-section>*,
.hiw-discover-section .container,
.hiw-discover-section h2,
.hiw-discover-section h3,
.hiw-discover-section p,
.hiw-discover-section .discover-grid,
.hiw-discover-section .discover-card,
.hiw-discover-section .discover-card__gauge,
.hiw-discover-section .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hiw-discover-section::before {
        opacity: 0.12;
        -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 1) 70%,
                rgba(0, 0, 0, 1) 100%);
        mask-image: linear-gradient(to right,
                transparent 0%,
                rgba(0, 0, 0, 1) 70%,
                rgba(0, 0, 0, 1) 100%);
    }
}


/* ============================================
   SAMPLE REPORT PAGE STYLES
   ============================================ */

/* CSS Variables scoped to sample report */
.sample-report-page {
    --sample-green: #00DF7A;
    --sample-dark: #031E47;
    --sample-navy: #0B1C2E;
    --sample-blue: #4A90E2;
    --sample-red: #d9534f;
    --sample-yellow: #ffc107;
    --sample-success: #2e7d32;
}

/* ── Hero Section ── */
.sample-report-hero {
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.2), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(74, 144, 226, 0.2), transparent 40%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
    color: #f7fbff;
    padding: calc(90px + var(--header-height, 100px)) 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: calc(var(--header-height, 100px) * -1);
}

.sample-report-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 140px);
    opacity: 0.5;
    pointer-events: none;
}

.sample-report-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.sample-report-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 223, 122, 0.18);
    color: #d6ffe9;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 223, 122, 0.4);
}

.sample-report-hero h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #ffffff;
}

.sample-report-intro {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(234, 245, 255, 0.78);
    margin: 0 auto;
    max-width: 680px;
}

/* ── Showcase Section ── */
.sample-report-showcase {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 90px 0 110px;
}

.sample-report-section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.sample-report-section-intro h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--sample-navy);
    margin-bottom: 16px;
}

.sample-report-section-intro p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

/* ── Accordion System ── */
.sample-report-accordions {
    max-width: 980px;
    margin: 0 auto;
}

.sample-report-accordion {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
    overflow: hidden;
}

.sample-report-accordion-header {
    width: 100%;
    padding: 26px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 0;
    border-left: 5px solid transparent;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sample-report-accordion-header:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-left-color: var(--sample-green);
}

.sample-report-accordion-header.active {
    background: linear-gradient(135deg, #e8f5e9 0%, #f0fff4 100%);
    border-left-color: var(--sample-green);
}

.sample-report-accordion-icon {
    flex-shrink: 0;
    background: rgba(0, 223, 122, 0.12);
    color: var(--sample-dark);
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sample-report-accordion-title {
    flex: 1;
    font-weight: 700;
    font-size: 18px;
    color: var(--sample-navy);
    line-height: 1.4;
}

.sample-report-accordion-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 223, 122, 0.1);
    position: relative;
    flex-shrink: 0;
}

.sample-report-accordion-indicator::before,
.sample-report-accordion-indicator::after {
    content: '';
    position: absolute;
    background: var(--sample-green);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sample-report-accordion-indicator::before {
    width: 14px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sample-report-accordion-indicator::after {
    width: 3px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sample-report-accordion-header.active .sample-report-accordion-indicator::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.sample-report-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.sample-report-accordion-inner {
    padding: 0 32px 40px;
}

.sample-report-accordion-explanation {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.sample-report-accordion-explanation p {
    margin-bottom: 14px;
}

.sample-report-accordion-explanation p:last-child {
    margin-bottom: 0;
}

.sample-report-accordion-explanation strong {
    color: var(--sample-navy);
}

.sample-report-accordion-explanation ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.sample-report-accordion-explanation ul li {
    margin-bottom: 0;
    padding-left: 0;
}

.sample-report-accordion-explanation ul li::before {
    display: none;
}

/* ── Scrollable Preview Container ── */
.sample-report-scrollable-preview {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Custom scrollbar styling */
.sample-report-scrollable-preview::-webkit-scrollbar {
    width: 8px;
}

.sample-report-scrollable-preview::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.sample-report-scrollable-preview::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sample-green) 0%, #00b865 100%);
    border-radius: 4px;
}

.sample-report-scrollable-preview::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00c96d 0%, #009e55 100%);
}

.sample-report-scrollable-preview {
    scrollbar-width: thin;
    scrollbar-color: var(--sample-green) #f0f0f0;
    position: relative;
}

.sample-report-scrollable-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.sample-report-scrollable-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 8px;
    height: 40px;
    background: linear-gradient(to top, rgba(248, 249, 250, 1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    z-index: 5;
}

.sample-report-scrollable-wrapper .sample-report-scrollable-preview {
    margin-bottom: 0;
}

/* ── Gauge System ── */
.sample-report-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    margin: 40px 0;
    padding: 20px 0;
}

.sample-report-dashboard-grid-single {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 40px auto;
}

.sample-report-gauge {
    position: relative;
    padding: 28px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sample-report-gauge:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 36px rgba(74, 144, 226, 0.25);
    border-color: var(--sample-blue);
}

.sample-report-gauge:active {
    transform: translateY(-4px) scale(1.01);
}

.sample-report-gauge h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--sample-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 45px 0;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gauge Track */
.sample-report-bar-track {
    height: 28px;
    width: 100%;
    border-radius: 14px;
    position: relative;
    background: linear-gradient(to right,
            #d9534f 0%,
            #e67e22 25%,
            #ffc107 50%,
            #8bc34a 75%,
            #00C853 100%);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.sample-report-bar-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.08) 20px,
            rgba(255, 255, 255, 0.08) 21px);
    z-index: 1;
    border-radius: inherit;
}

.sample-report-bar-track::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    animation: shimmer 3s infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Triangle Marker */
.sample-report-bar-marker {
    position: absolute;
    top: 50%;
    left: var(--needle-percent, 50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 26px solid var(--sample-navy);
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
    animation: markerPulse 2s ease-in-out infinite;
}

.sample-report-bar-marker::after {
    content: '';
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--sample-navy);
}

@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* Value Label */
.sample-report-bar-label {
    position: absolute;
    top: -42px;
    left: var(--needle-percent, 50%);
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 800;
    color: var(--sample-navy);
    background: white;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--sample-blue);
    z-index: 50;
    animation: labelFloat 2s ease-in-out infinite;
}

.sample-report-gauge[data-position="low"] .sample-report-bar-label {
    left: var(--needle-percent, 50%);
    transform: translateX(0);
    animation: labelFloatLeft 2s ease-in-out infinite;
}

.sample-report-gauge[data-position="high"] .sample-report-bar-label {
    left: var(--needle-percent, 50%);
    transform: translateX(-100%);
    animation: labelFloatRight 2s ease-in-out infinite;
}

@keyframes labelFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

@keyframes labelFloatLeft {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(0) translateY(-3px); }
}

@keyframes labelFloatRight {
    0%, 100% { transform: translateX(-100%) translateY(0); }
    50% { transform: translateX(-100%) translateY(-3px); }
}

/* Endpoint labels */
.sample-report-bar-endpoints {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-report-bar-endpoints span {
    width: 48%;
}

.sample-report-bar-endpoints span:first-child {
    text-align: left;
}

.sample-report-bar-endpoints span:last-child {
    text-align: right;
}

/* Special gauge gradients */
.sample-report-gauge-endurance .sample-report-bar-track {
    background: linear-gradient(to right,
            #e57373 0%,
            #64b5f6 50%,
            #0d47a1 100%);
}

.sample-report-gauge-recovery .sample-report-bar-track {
    background: linear-gradient(to right,
            #ff6b6b 0%,
            #ffd93d 50%,
            #6bcf7f 100%);
}

.sample-report-gauge-stress .sample-report-bar-track {
    background: linear-gradient(to right,
            #ffd93d 0%,
            #8bc34a 50%,
            #00C853 100%);
}

/* ── Content Boxes (Traffic Light System) ── */
.sample-report-box {
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid transparent;
    background: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sample-report-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sample-report-box h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.sample-report-box-summary {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left-color: var(--sample-success);
}

.sample-report-box-summary h4 {
    color: var(--sample-success);
}

.sample-report-box-action {
    background: linear-gradient(135deg, #fff3e0 0%, #fffbf0 100%);
    border-left-color: var(--sample-yellow);
}

.sample-report-box-action h4 {
    color: #d98c00;
}

.sample-report-box-critical {
    background: linear-gradient(135deg, #ffebee 0%, #fff5f5 100%);
    border-color: var(--sample-red);
    border: 2px solid var(--sample-red);
    border-left: 6px solid var(--sample-red);
}

.sample-report-box-critical h4 {
    color: var(--sample-red);
}

.sample-report-box-insight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-left-color: var(--sample-blue);
}

.sample-report-box-insight h4 {
    color: var(--sample-blue);
}

/* List Styles */
.sample-report-summary-list,
.sample-report-action-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sample-report-summary-list li,
.sample-report-action-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.sample-report-summary-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--sample-success);
    font-weight: bold;
}

.sample-report-action-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--sample-red);
}

/* ── Outlier Insight Box ── */
.sample-report-outlier {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 32px;
    color: #333;
}

.sample-report-outlier h4 {
    color: #d98c00;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-report-outlier p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.sample-report-outlier p:last-child {
    margin-bottom: 0;
}

.sample-report-outlier ul {
    padding-left: 20px;
    margin: 16px 0;
    list-style: disc;
}

.sample-report-outlier li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.sample-report-outlier li::before {
    display: none;
}

/* ── Traffic Light Key ── */
.sample-report-traffic-key {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.sample-report-traffic-key li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding-left: 0 !important;
}

.sample-report-traffic-key li::before {
    display: none !important;
}

.sample-report-light {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.sample-report-light-red {
    background: var(--sample-red);
}

.sample-report-light-yellow {
    background: var(--sample-yellow);
}

.sample-report-light-green {
    background: var(--sample-success);
}

/* ── CTA Section ── */
.sample-report-cta {
    background: radial-gradient(circle at 85% 15%, rgba(0, 223, 122, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.12), transparent 45%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
    color: #f7fbff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 223, 122, 0.2);
}

.sample-report-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        repeating-linear-gradient(60deg, rgba(0, 223, 122, 0.03), rgba(0, 223, 122, 0.03) 1px, transparent 1px, transparent 140px);
    opacity: 0.4;
    pointer-events: none;
}

.sample-report-cta .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.sample-report-cta h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.sample-report-cta-subtitle {
    font-size: 18px;
    color: rgba(234, 245, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sample-report-price-card {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(3, 30, 71, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 32px 60px;
    border-radius: 20px;
    border: 2px solid var(--sample-green);
    margin-bottom: 36px;
    box-shadow: 0 12px 36px rgba(0, 223, 122, 0.25);
}

.sample-report-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--sample-green);
    line-height: 1;
    letter-spacing: -1px;
}

.sample-report-price-note {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* Animated CTA Button */
.sample-report-cta-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.animated-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 18px 44px;
    border: 4px solid transparent;
    font-size: 18px;
    background-color: transparent;
    border-radius: 100px;
    font-weight: 700;
    color: var(--sample-green);
    box-shadow: 0 0 0 2px var(--sample-green);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    margin: 0 auto;
}

.animated-cta-button svg {
    position: absolute;
    width: 24px;
    fill: var(--sample-green);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-cta-button .arr-1 {
    right: 16px;
}

.animated-cta-button .arr-2 {
    left: -25%;
}

.animated-cta-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--sample-green);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-cta-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-cta-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: var(--sample-navy);
    border-radius: 12px;
}

.animated-cta-button:hover .arr-1 {
    right: -25%;
}

.animated-cta-button:hover .arr-2 {
    left: 16px;
}

.animated-cta-button:hover .text {
    transform: translateX(12px);
}

.animated-cta-button:hover svg {
    fill: var(--sample-navy);
}

.animated-cta-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 0 4px var(--sample-green);
}

.animated-cta-button:hover .circle {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.sample-report-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(234, 245, 255, 0.8);
}

.sample-report-cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sample-report-cta-trust span::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--sample-green);
    border-radius: 50%;
}

/* ── Fade In Animations ── */
.sample-report-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.sample-report-fade-in[data-animate="pending"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sample-report-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Sample Report Responsive ── */
@media (max-width: 900px) {
    .sample-report-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sample-report-hero {
        padding: 90px 0 70px;
    }

    .sample-report-accordion-header {
        padding: 20px 20px;
        gap: 12px;
    }

    .sample-report-accordion-title {
        font-size: 15px;
    }

    .sample-report-accordion-inner {
        padding: 0 20px 30px;
    }

    .sample-report-gauge h4 {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .sample-report-bar-label {
        font-size: 13px;
        padding: 6px 12px;
    }

    .sample-report-outlier {
        padding: 22px 20px;
    }

    .sample-report-cta {
        padding: 70px 0;
    }

    .sample-report-price-card {
        padding: 24px 40px;
    }

    .sample-report-price {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .sample-report-price-card {
        padding: 18px 32px;
    }

    .sample-report-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* ── Sample Report Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .sample-report-gauge,
    .sample-report-box,
    .animated-cta-button,
    .sample-report-bar-track::after,
    .sample-report-bar-marker,
    .sample-report-bar-label,
    .sample-report-cta-button,
    .sample-report-cta-button::before {
        animation: none !important;
        transition: none !important;
    }

    .sample-report-gauge:hover,
    .sample-report-box:hover,
    .animated-cta-button:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
}


/* ============================================
   YOUNG ATHLETES PAGE STYLES
   ============================================ */

.young-athletes-hero {
    position: relative;
    overflow: hidden;
}

.young-athletes-section {
    background: #ffffff;
}

.young-athletes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.young-athletes-grid--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.young-athletes-panel,
.young-athletes-card {
    background: #f7f9fc;
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(3, 30, 71, 0.06);
}

.young-athletes-panel h3,
.young-athletes-card h3 {
    margin-bottom: 0.85rem;
    color: #031E47;
}

.young-athletes-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.young-athletes-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(3, 30, 71, 0.82);
}

.young-athletes-list li + li {
    margin-top: 0.75rem;
}

.young-athletes-list--spaced li + li {
    margin-top: 1rem;
}

.young-athletes-cta {
    background: linear-gradient(135deg, #031E47 0%, #08295f 100%);
}

.young-athletes-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.young-athletes-cta .sg-lead,
.young-athletes-cta .sg-h2,
.young-athletes-cta a:not(.sg-btn) {
    color: #ffffff;
}

.young-athletes-cta .sg-kicker--light {
    color: rgba(255, 255, 255, 0.72);
}

.young-athletes-cta a:not(.sg-btn) {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.young-athletes-cta .sg-btn--ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.young-athletes-cta .sg-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.young-athletes-cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .young-athletes-grid,
    .young-athletes-grid--reverse,
    .young-athletes-cards,
    .young-athletes-cta__inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .young-athletes-cta__actions {
        justify-content: flex-start;
    }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Styles */
.contact-page {
    background: #fff;
    padding: 60px 0 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Contact Details Column */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details__section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 223, 122, 0.2);
}

.contact-details__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #031E47;
    margin-bottom: 20px;
}

.contact-details__heading svg {
    color: #00DF7A;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item__icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 223, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00DF7A;
}

.contact-info-item__icon--green {
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
}

.contact-info-item__icon--blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.contact-info-item__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.contact-info-item__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-item__content strong {
    color: #031E47;
    font-weight: 600;
}

.contact-info-item__content span {
    color: #666;
    font-size: 0.95rem;
}

.contact-info-item__content a {
    color: #00DF7A;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item__content a:hover {
    text-decoration: underline;
}

/* Get Directions Button */
.contact-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00DF7A;
    color: #031E47;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-directions-btn:hover {
    background: #00C96E;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 223, 122, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 223, 122, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #031E47;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #00DF7A;
    box-shadow: 0 0 0 3px rgba(0, 223, 122, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__turnstile {
    display: flex;
    justify-content: flex-start;
}

.contact-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00DF7A;
    color: #031E47;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form__submit:hover {
    background: #00C96E;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 223, 122, 0.4);
}

.contact-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

.form-message--success {
    background: rgba(0, 223, 122, 0.1);
    color: #00A362;
    border: 1px solid rgba(0, 223, 122, 0.3);
}

.form-message--success svg {
    color: #00DF7A;
}

.form-message--error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message--error svg {
    color: #EF4444;
}

/* Map Column */
.contact-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    align-self: stretch;
}

.contact-map__section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 223, 122, 0.2);
}

.contact-map__description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-map__embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 350px;
}

.contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-directions-btn--map {
    margin-top: 0;
}

/* Social Links */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    margin-top: auto;
    border: 1px solid rgba(0, 223, 122, 0.2);
}

.contact-social__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    color: #666;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-social__link:hover {
    background: #00DF7A;
    color: #031E47;
    transform: translateY(-2px);
}

/* Copyright */
.contact-copyright {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 0.85rem;
}

/* Contact responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: -1;
    }
}

@media (max-width: 600px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding: 20px 0 60px;
    }
}

/* Contact reduced motion */
@media (prefers-reduced-motion: reduce) {
    .contact-directions-btn,
    .contact-form__submit,
    .contact-form__input,
    .contact-form__select,
    .contact-form__textarea,
    .contact-social__link {
        transition: none;
    }

    .contact-directions-btn:hover,
    .contact-form__submit:hover,
    .contact-social__link:hover {
        transform: none;
    }
}


/* ============================================
   PRICING SECTION STYLES (used on contact)
   ============================================ */

.pricing-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.pricing-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #031E47;
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 60px rgba(3, 30, 71, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 320px;
    position: relative;
}

.pricing-card__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #00DF7A 0%, #00C96E 100%);
    color: #031E47;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: none;
}

.pricing-card__info {
    padding: 48px;
    padding-top: 72px;
}

.pricing-card__name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #031E47;
    margin: 0 0 8px;
}

.pricing-card__tagline {
    color: #666;
    font-size: 1rem;
    margin: 0 0 32px;
}

.pricing-card__includes-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #031E47;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
}

.pricing-card__includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pricing-card__includes-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}

.pricing-card__includes-item svg {
    width: 18px;
    height: 18px;
    color: #00DF7A;
    flex-shrink: 0;
}

.pricing-card__panel {
    background: linear-gradient(135deg, #031E47 0%, #0A2D5E 100%);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card__price-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.pricing-card__price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card__price-currency {
    font-size: 2rem;
    vertical-align: top;
    position: relative;
    top: 8px;
}

.pricing-card__price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: block;
}

.pricing-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00DF7A;
    color: #031E47;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 24px;
}

.pricing-card__cta:hover {
    background: #00C96E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 223, 122, 0.4);
}

.pricing-card__cta svg {
    width: 20px;
    height: 20px;
}

.pricing-card__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card__trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.pricing-card__trust-item svg {
    width: 16px;
    height: 16px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 32px;
}

.pricing-guarantee__icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 223, 122, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-guarantee__icon svg {
    width: 28px;
    height: 28px;
    color: #00DF7A;
}

.pricing-guarantee__title {
    font-size: 1rem;
    font-weight: 700;
    color: #031E47;
    margin: 0 0 4px;
}

.pricing-guarantee__text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Pricing responsive */
@media (max-width: 800px) {
    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-card__includes-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* Pricing reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pricing-card__cta {
        transition: none;
    }

    .pricing-card__cta:hover {
        transform: none;
    }
}


/* ============================================
   SHARED DISCOVER CARD STYLES
   (Used by landing, how-it-works)
   ============================================ */

.discover-grid {
    perspective: 1400px;
    gap: 1.5rem;
}

.discover-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(8, 24, 52, 0.85), rgba(3, 17, 36, 0.96));
    box-shadow:
        0 18px 40px rgba(2, 10, 24, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.discover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.discover-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 16px;
    background: linear-gradient(130deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

.discover-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    box-shadow:
        0 26px 55px rgba(2, 10, 24, 0.6),
        0 10px 22px rgba(0, 223, 122, 0.18);
}

.discover-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 35%, transparent), rgba(3, 20, 40, 0.9));
    color: var(--accent);
    box-shadow:
        0 12px 20px rgba(2, 10, 24, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateZ(24px);
}

.discover-card__title {
    color: #f8fafc;
    letter-spacing: 0.2px;
}

.discover-card__description {
    color: rgba(226, 232, 240, 0.75);
}

.discover-card__gauge {
    position: relative;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(2, 10, 24, 0.85));
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(2, 10, 24, 0.45);
    overflow: hidden;
    transform: translateZ(18px);
}

.discover-card__gauge::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0,
        rgba(255, 255, 255, 0.06) 6px,
        transparent 6px,
        transparent 16px
    );
    opacity: 0.4;
    pointer-events: none;
}

.discover-card__gauge-fill {
    position: absolute;
    inset: 2px;
    width: var(--gauge-width, 0%);
    border-radius: inherit;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    box-shadow:
        0 0 12px color-mix(in srgb, var(--accent) 60%, transparent),
        inset 0 0 6px rgba(255, 255, 255, 0.35);
}

.discover-card__gauge-thumb {
    position: absolute;
    top: 50%;
    left: var(--gauge-width, 0%);
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, rgba(255, 255, 255, 0.45) 40%, rgba(2, 10, 24, 0.9) 75%);
    border: 2px solid color-mix(in srgb, var(--accent) 55%, #ffffff 45%);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 0 10px color-mix(in srgb, var(--accent) 60%, transparent);
}

.discover-card__gauge-label,
.discover-card__gauge-labels {
    color: rgba(226, 232, 240, 0.7);
}

@media (max-width: 768px) {
    .discover-card {
        transform: none;
    }

    .discover-card:hover {
        transform: translateY(-6px);
    }
}
