/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --yellow: #E2E460;
    --yellow-hover: #D5D754;
    --yellow-soft: rgba(226, 228, 96, 0.15);
    --heading: #04086E;
    --text: #4B5563;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --bg: #FFFFFF;
    --bg-warm: #F4F0EC;
    --success: #059669;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --pill: 999px;
    --max-width: 720px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--heading); text-decoration: none; }

/* ── Utility ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--heading);
    background: var(--yellow);
    padding: 0.35rem 0.85rem;
    border-radius: var(--pill);
}

.highlight {
    background: var(--yellow);
    padding: 0 0.15em 0.05em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ── Header ── */
.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.logo-img {
    height: 64px;
    width: auto;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font);
    color: #FFFFFF;
    background: var(--heading);
    border: 2px solid var(--heading);
    border-radius: var(--pill);
    transition: background 0.2s;
    text-decoration: none;
}

.header-cta:hover {
    background: #0A0F8A;
    color: #FFFFFF;
}

/* ── HERO ── */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero .badge {
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--heading);
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--heading);
    opacity: 0.75;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--text);
}

.hero-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--heading);
    flex-shrink: 0;
}

.hero__cta-wrap {
    margin-top: 1.75rem;
}

.hero__cta-wrap .btn {
    display: inline-flex;
    width: auto;
    text-decoration: none;
}

/* ── Buttons ── */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    color: #FFFFFF;
    background: var(--heading);
    border: 2px solid var(--heading);
    border-radius: var(--pill);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.btn:hover { background: #0A0F8A; color: #FFFFFF; }
.btn:active { transform: scale(0.98); }

.btn svg {
    width: 18px;
    height: 18px;
}

/* ── Sections (shared) ── */
.section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.section__heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

/* ── What You'll Learn ── */
.learn-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.learn-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.learn-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--heading);
}

.learn-list li strong {
    color: var(--heading);
    font-weight: 700;
}

/* ── For Who ── */
.for-who-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.for-who-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.for-who-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--success);
}

/* ── Trainer ── */
.trainer-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.trainer-photo {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.trainer-photo-placeholder {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
}

.trainer-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.15rem;
}

.trainer-info .role {
    font-size: 0.85rem;
    color: var(--heading);
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.trainer-info p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* ── Practical Info ── */
.practical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.practical-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-warm);
    border-radius: var(--radius);
}

.practical-item svg {
    width: 24px;
    height: 24px;
    color: var(--heading);
    margin: 0 auto 0.5rem;
}

.practical-item .label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

.practical-item .value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--heading);
}

/* ── Pricing / CTA ── */
.pricing {
    text-align: center;
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
}

.pricing h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.pricing .section-sub {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.price-card__date {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 0.25rem;
}

.price-card__time {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 0.15rem;
}

.price-card .price-note {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
}

.price-card .btn {
    margin-bottom: 1.5rem;
}

.price-includes {
    list-style: none;
    text-align: left;
}

.price-includes li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-includes li .check {
    color: var(--heading);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Trust badges ── */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--heading);
}

/* ── FAQ ── */
.faq {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.faq h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.faq-list {
    margin: 0;
}

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

.faq-item summary {
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--text-light);
    transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
    margin-top: 0.75rem;
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
}

.site-footer a {
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer a:hover { color: var(--heading); }

/* ── Sticky mobile CTA ── */
.sticky-cta {
    display: none;
}

/* ── Thank You Page ── */
.thankyou {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thankyou-content {
    max-width: 540px;
}

.thankyou .check-icon {
    width: 72px;
    height: 72px;
    background: var(--yellow-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thankyou .check-icon svg {
    width: 36px;
    height: 36px;
    color: var(--heading);
}

.thankyou h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.thankyou .message {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.next-steps {
    text-align: left;
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.next-steps h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.75rem;
}

.next-steps ol {
    padding-left: 1.25rem;
}

.next-steps li {
    padding: 0.4rem 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.next-steps li strong {
    color: var(--heading);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .hero { padding: 3rem 0 2rem; }
    .hero h1 { font-size: 1.65rem; }
    .hero h2 { font-size: 1.05rem; }

    .section, .pricing, .faq { padding: 2rem 0; }

    .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero__cta-wrap { display: none; }

    .trainer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border);
        padding: 0.75rem 1.25rem;
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }

    .sticky-cta .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    body { padding-bottom: 5rem; }
}

/* ── Subtle entrance ── */
@media (prefers-reduced-motion: no-preference) {
    .hero, .section, .pricing, .faq, .price-card {
        opacity: 0;
        transform: translateY(16px);
        animation: fadeUp 0.5s ease forwards;
    }

    .hero { animation-delay: 0s; }
    .section:nth-of-type(1) { animation-delay: 0.05s; }
    .section:nth-of-type(2) { animation-delay: 0.1s; }
    .section:nth-of-type(3) { animation-delay: 0.15s; }
    .section:nth-of-type(4) { animation-delay: 0.2s; }
    .pricing { animation-delay: 0.25s; }
    .faq { animation-delay: 0.3s; }
    .price-card { animation-delay: 0.35s; }

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