:root {
    --navy: #163454;
    --blue: #2f80ed;
    --pink: #ff6b9a;
    --coral: #ff8a65;
    --mint: #43c6ac;
    --gold: #ffc857;
    --ink-soft: #526070;
    --paper: #fffaf4;
    --white: #ffffff;
    --line: #e7edf4;
    --shadow: 0 18px 45px rgba(22, 52, 84, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--paper);
    color: var(--navy);
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    width: 176px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
    color: var(--pink);
}

.btn,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(255, 107, 154, 0.28);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--navy);
}

.btn:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 92px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: 54px;
    padding: 46px 0 62px;
}

.eyebrow,
.section-tag {
    color: var(--pink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section h2 {
    font-family: "Fredoka", "Poppins", Arial, sans-serif;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin: 10px 0 16px;
    padding-top: 0.1em;
    font-size: clamp(2.65rem, 6vw, 5.45rem);
    line-height: 1.08;
}

.hero-copy {
    max-width: 650px;
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-content {
    min-width: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid var(--white);
    background: var(--white);
}

.hero-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.stat {
    min-height: 158px;
    padding: 16px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(22, 52, 84, 0.06);
}

.stat img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.stat dt {
    font-size: 1rem;
    font-weight: 800;
}

.stat dd {
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.35;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
    background: var(--navy);
}

.trust-strip p {
    padding: 20px 16px;
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

.trust-strip p:nth-child(2) {
    background: var(--blue);
}

.trust-strip p:nth-child(3) {
    background: var(--mint);
}

.trust-strip p:nth-child(4) {
    background: var(--coral);
}

.section {
    padding: 88px max(16px, calc((100vw - 1180px) / 2));
}

.section-header {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
}

.resources-hero h1 {
    margin-top: 10px;
    font-family: "Fredoka", "Poppins", Arial, sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.04;
}

.section-header p:last-child,
.video-copy p,
.about-content p,
.contact p,
.resource-preview-copy p,
.resources-hero p,
.resource-card p {
    color: var(--ink-soft);
    line-height: 1.75;
}

.programs,
.packages,
.faq {
    background: var(--white);
}

.program-grid,
.package-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.program-grid {
    max-width: 940px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card,
.package-card,
blockquote {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(22, 52, 84, 0.07);
}

.program-card img {
    width: min(310px, 88%);
    height: 230px;
    object-fit: contain;
    margin: 0 auto 28px;
}

.card-tag,
.package-focus {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff0c7;
    color: #8a5c00;
    font-size: 0.82rem;
    font-weight: 800;
}

.program-card h3,
.package-card h3 {
    margin: 14px 0 10px;
    font-size: 1.35rem;
}

.program-card p,
.package-card p,
blockquote p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.program-card ul {
    margin-top: 18px;
    padding-left: 20px;
    color: var(--navy);
    line-height: 1.9;
    font-weight: 600;
}

.resource-preview {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: center;
    background: #fff8fb;
}

.resource-preview-copy h2 {
    margin: 10px 0 16px;
}

.resource-preview-copy .btn {
    margin-top: 24px;
}

.resource-preview-covers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.resource-preview-covers img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border: 6px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(22, 52, 84, 0.12);
}

.resource-preview-covers img:nth-child(2) {
    transform: translateY(-18px);
}

.resources-hero {
    padding-bottom: 48px;
}

.resources-list {
    padding-top: 40px;
    background: var(--white);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.resource-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(22, 52, 84, 0.07);
}

.resource-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #f6f8fb;
    border-bottom: 1px solid var(--line);
}

.resource-card-body {
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.resource-card h2 {
    margin-bottom: 10px;
    font-family: "Fredoka", "Poppins", Arial, sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.resource-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 22px;
}

.resource-actions .btn,
.resource-actions .btn-secondary {
    min-height: 44px;
    padding: 11px 16px;
}

.resource-note {
    max-width: 780px;
    margin: 34px auto 0;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.7;
}

.video-section,
.about,
.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
}

.video-copy h2,
.about-content h2,
.contact h2 {
    margin: 10px 0 16px;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.video-grid video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    background: #0f2237;
    box-shadow: var(--shadow);
}

.about {
    background: #f1fbf8;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.highlight {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--white);
    border-left: 5px solid var(--mint);
    font-weight: 700;
}

.package-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.currency-control {
    max-width: 940px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
}

.currency-control select {
    width: auto;
    min-width: 116px;
    padding: 10px 36px 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.package-price {
    color: var(--pink);
    font-family: "Fredoka", "Poppins", Arial, sans-serif;
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 800;
}

.package-base-price {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.currency-note {
    max-width: 940px;
    margin: 18px auto 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
}

.package-card .btn,
.package-card .btn-secondary {
    margin-top: auto;
}

.featured {
    border-color: rgba(255, 107, 154, 0.38);
    box-shadow: 0 18px 40px rgba(255, 107, 154, 0.16);
}

.payment-info {
    max-width: 940px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 22px;
    background: #f8fbff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.payment-info h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.payment-info p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.payment-providers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.provider-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 46px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(22, 52, 84, 0.06);
}

.provider-logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-separator {
    color: var(--ink-soft);
    font-weight: 800;
}

.booking-flow {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.4;
}

.booking-flow li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.booking-flow li:not(:last-child)::after {
    content: ">";
    color: var(--pink);
    font-weight: 800;
}

.reviews {
    background: var(--paper);
}

blockquote {
    position: relative;
    min-height: 190px;
}

blockquote::before {
    content: '"';
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 0.8;
}

blockquote cite {
    display: block;
    margin-top: 18px;
    color: var(--navy);
    font-style: normal;
    font-weight: 800;
}

blockquote cite span:last-child {
    display: block;
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 600;
}

.privacy-blur {
    display: inline-block;
    filter: blur(4px);
    user-select: none;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 20px;
}

summary {
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
}

details p {
    margin-top: 12px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.contact {
    background: var(--navy);
    color: var(--white);
}

.contact .section-tag {
    color: var(--gold);
}

.contact p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link svg path {
    fill: currentColor;
    stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
    color: var(--white);
    background: var(--pink);
    transform: translateY(-2px);
}

.footer-social-links {
    justify-content: center;
    margin-top: 14px;
}

.site-footer .social-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
    background: var(--pink);
    border-color: var(--pink);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-status {
    min-height: 1.5em;
    color: var(--ink-soft);
    font-weight: 700;
    line-height: 1.5;
}

.form-status.is-success {
    color: #157347;
}

.form-status.is-error {
    color: #b42318;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cdd8e4;
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
    color: var(--navy);
    background: var(--white);
}

textarea {
    resize: vertical;
}

.site-footer {
    padding: 24px 16px;
    color: var(--white);
    background: #10263d;
    text-align: center;
    font-size: 0.9rem;
}

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

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

    .nav-links {
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
    }

    .hero,
    .resource-preview,
    .video-section,
    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-media {
        max-width: 560px;
    }

    .stats,
    .program-grid,
    .package-grid,
    .review-grid,
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .navbar {
        min-height: 82px;
    }

    .logo {
        width: 132px;
        height: 68px;
    }

    .logo img {
        width: 120px;
    }

    .nav-links {
        top: 82px;
    }

    .hero {
        width: min(100% - 24px, 1180px);
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.55rem);
    }

    .resources-hero h1 {
        font-size: clamp(2rem, 9vw, 2.35rem);
    }

    .hero-buttons,
    .btn,
    .btn-secondary {
        width: 100%;
    }

    .stats,
    .trust-strip,
    .program-grid,
    .package-grid,
    .review-grid,
    .resource-grid,
    .highlight-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .resource-preview-covers {
        grid-template-columns: 1fr;
    }

    .resource-preview-covers img:nth-child(2) {
        transform: none;
    }

    .resource-actions .btn,
    .resource-actions .btn-secondary {
        width: 100%;
    }

    .currency-control {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .payment-info {
        grid-template-columns: 1fr;
    }

    .payment-providers {
        justify-content: flex-start;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .program-card,
    .package-card,
    .resource-card-body,
    blockquote,
    .contact-form {
        padding: 22px;
    }
}
