:root {
    --bg: #f4f8ff;
    --bg-soft: #ebf2ff;
    --surface: #ffffff;
    --ink: #0f1f4d;
    --ink-soft: #556486;
    --brand: #0c2e83;
    --brand-dark: #081f57;
    --accent: #ff9f1c;
    --accent-dark: #f18805;
    --line: #d8e2fb;
    --success: #1f9d5b;
    --error: #cc304d;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 45px rgba(9, 31, 87, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 8% 0%, #f8fbff 0%, var(--bg) 46%, #edf3ff 100%);
}

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

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.top-strip {
    background: linear-gradient(90deg, #03226f, #0d3a9b);
    color: #dfe9ff;
    font-size: 14px;
}

.top-strip-inner {
    text-align: center;
    padding: 11px 0;
    font-weight: 600;
    letter-spacing: 0.2px;
}

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

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 18px;
    background: linear-gradient(145deg, #0e46b0, #08235e);
    box-shadow: 0 9px 20px rgba(12, 46, 131, 0.28);
}

.logo-text strong {
    display: block;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    letter-spacing: -0.25px;
}

.logo-text small {
    display: block;
    color: var(--ink-soft);
    font-size: 12px;
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a {
    font-weight: 600;
    color: #223b77;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.24s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.call-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 11px 14px;
    font-weight: 700;
    font-size: 14px;
}

.menu-btn {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: #20336a;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    box-shadow: 0 10px 22px rgba(255, 159, 28, 0.26);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(255, 159, 28, 0.35);
}

.primary-btn.mini {
    padding: 11px 16px;
    font-size: 14px;
}

.ghost-btn {
    border: 1px solid #cad9ff;
    color: #18336d;
    background: #fff;
}

.ghost-btn:hover {
    border-color: #a8bdf8;
    transform: translateY(-1px);
}

.hero {
    padding: 46px 0 26px;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}

.hero-content {
    padding: 10px 6px;
    animation: rise-in 0.62s ease both;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 13px;
    background: #e8efff;
    color: #1b3f99;
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    margin: 14px 0 13px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    letter-spacing: -1px;
    font-size: clamp(33px, 5vw, 58px);
    line-height: 1.07;
    max-width: 14ch;
}

.hero-content p {
    margin: 0 0 19px;
    max-width: 60ch;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 18px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-stats article {
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 11px 12px;
}

.hero-stats strong {
    display: block;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    margin-bottom: 2px;
}

.hero-stats span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.35;
}

.hero-media {
    position: relative;
    animation: fade-in 0.8s ease both;
}

.hero-photo-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 510px;
}

.hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid #d7e2ff;
    box-shadow: 0 10px 24px rgba(11, 34, 94, 0.14);
    border-radius: 14px;
    padding: 10px 12px;
    max-width: 210px;
}

.floating-card strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.floating-card span {
    display: block;
    font-size: 12px;
    color: var(--ink-soft);
}

.card-a {
    left: -18px;
    bottom: 70px;
}

.card-b {
    right: -16px;
    top: 70px;
}

.section-head {
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0 0 8px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.8px;
}

.section-head p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.section-head.center {
    text-align: center;
}

.section-head.narrow {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.programs {
    padding: 28px 0 52px;
}

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

.program-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(8, 30, 84, 0.08);
    opacity: 0;
    transform: translateY(16px);
    animation: card-in 0.5s ease forwards;
}

.program-card:nth-child(2) {
    animation-delay: 0.08s;
}

.program-card:nth-child(3) {
    animation-delay: 0.16s;
}

.program-card:nth-child(4) {
    animation-delay: 0.24s;
}

.program-card:nth-child(5) {
    animation-delay: 0.32s;
}

.program-card:nth-child(6) {
    animation-delay: 0.4s;
}

.program-thumb {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.program-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

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

.program-body {
    padding: 14px;
}

.program-body h3 {
    margin: 0 0 7px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
}

.program-body p {
    margin: 0 0 10px;
    color: var(--ink-soft);
    line-height: 1.5;
    min-height: 74px;
}

.program-meta {
    display: grid;
    gap: 5px;
    margin-bottom: 9px;
    color: #2d4682;
    font-size: 13px;
    font-weight: 600;
}

.inline-link {
    font-weight: 700;
    color: #1c4db8;
}

.advantages {
    padding: 16px 0 58px;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.adv-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
}

.adv-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(130deg, #0e4abe, #0a2a72);
}

.adv-card h3 {
    margin: 10px 0 6px;
    font-size: 19px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.adv-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.53;
}

.campaign-strip {
    padding: 4px 0 56px;
}

.campaign-inner {
    background: linear-gradient(120deg, #081f57, #0d3e9d);
    color: #ecf2ff;
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.campaign-badge {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #ffe2ba;
    background: rgba(255, 159, 28, 0.2);
}

.campaign-inner h3 {
    margin: 10px 0 7px;
    font-size: 31px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.campaign-inner p {
    margin: 0;
    color: #cfdcff;
    line-height: 1.55;
}

.assessment {
    padding: 0 0 58px;
}

.assessment-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(130deg, #062068, #0c3b95);
}

.assessment-copy {
    padding: 30px;
    color: #eff4ff;
}

.assessment-copy h2 {
    margin: 0 0 10px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
}

.assessment-copy p {
    margin: 0 0 14px;
    line-height: 1.6;
    color: #d0deff;
}

.assessment-copy ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #ddebff;
}

.assessment-form-wrap {
    background: #fff;
    padding: 24px;
}

.alert {
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
}

.alert.success {
    background: #e8f9f0;
    color: var(--success);
}

.alert.error {
    background: #ffedf1;
    color: var(--error);
}

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

.assessment-form label {
    display: grid;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #203369;
}

.assessment-form label span {
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #50628f;
}

.assessment-form input,
.assessment-form select {
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 12px;
    font: inherit;
}

.assessment-form .check {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #4d5f87;
}

.assessment-form .check span {
    text-transform: none;
}

.assessment-form .check input {
    margin-top: 2px;
    width: auto;
}

.assessment-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.trainers {
    padding: 0 0 56px;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trainer-card {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 15px;
    padding: 14px;
}

.trainer-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e6edff;
}

.trainer-card h3 {
    margin: 0 0 4px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 21px;
}

.trainer-card p {
    margin: 0 0 3px;
    color: #2e457f;
    font-weight: 600;
}

.trainer-card small {
    color: var(--ink-soft);
}

.testimonials {
    padding: 0 0 56px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.testimonial-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 15px;
    padding: 16px;
}

.stars {
    color: #f0a319;
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    margin: 8px 0 10px;
    color: var(--ink-soft);
    line-height: 1.57;
    min-height: 98px;
}

.testimonial-card strong {
    display: block;
    font-size: 16px;
}

.testimonial-card small {
    color: var(--ink-soft);
}

.bottom-cta {
    padding: 0 0 52px;
}

.bottom-cta-inner {
    background: linear-gradient(110deg, #08215c, #0d3b96);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bottom-cta-inner h2 {
    margin: 0 0 6px;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
}

.bottom-cta-inner p {
    margin: 0;
    color: #d5e2ff;
}

.footer {
    background: #051941;
    color: #d6e2ff;
    padding-top: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 20px;
    padding-bottom: 22px;
}

.footer h3,
.footer h4 {
    margin: 0 0 9px;
    color: #fff;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.footer p {
    margin: 0;
    color: #b5c8f0;
    line-height: 1.6;
}

.footer a {
    display: block;
    margin-bottom: 7px;
    color: #d7e4ff;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(168, 188, 228, 0.24);
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #a9bce3;
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 95;
    background: #20ab67;
    color: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 700;
    box-shadow: 0 13px 23px rgba(17, 90, 54, 0.34);
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-media,
    .program-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .program-grid,
    .adv-grid,
    .trainer-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-shell,
    .assessment-shell {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }

    .hero-photo-wrap {
        min-height: 390px;
    }
}

@media (max-width: 920px) {
    .header-actions {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .menu-btn {
        margin-left: auto;
        display: inline-flex;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .assessment-form {
        grid-template-columns: 1fr;
    }

    .assessment-form .check,
    .assessment-actions {
        grid-column: auto;
    }

    .campaign-inner,
    .bottom-cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .program-grid,
    .adv-grid,
    .trainer-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-photo-wrap {
        min-height: 330px;
    }
}
