:root {
    --ink: #17202a;
    --muted: #64707d;
    --paper: #ffffff;
    --soft: #f4f7f9;
    --line: #dfe6ee;
    --green: #176b58;
    --green-dark: #0e4f41;
    --gold: #d89b2b;
    --red: #b23b3b;
    --shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--green);
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 230, 238, 0.7);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 25px rgba(23, 32, 42, 0.09);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand img,
.footer-brand img {
    width: 86px;
    height: auto;
}

.brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    max-width: 210px;
    color: var(--muted);
    font-size: 0.76rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav > a,
.nav-dropdown > button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #293541;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.93rem;
    font-weight: 600;
}

.main-nav > a:hover,
.nav-dropdown > button:hover,
.main-nav .active,
.nav-dropdown > button.active {
    color: var(--green);
    background: #edf5f2;
}

.nav-cta {
    color: var(--paper) !important;
    background: var(--green) !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 210px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #293541;
    font-size: 0.92rem;
}

.dropdown-menu a:hover {
    color: var(--green);
    background: var(--soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--paper);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.hero-overlay {
    background: rgba(13, 21, 30, 0.68);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 150px 0 84px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1 {
    max-width: 720px;
    font-size: 3.15rem;
    font-weight: 800;
}

h2 {
    font-size: 2.15rem;
    font-weight: 800;
}

h3 {
    font-size: 1.22rem;
}

p {
    margin: 0;
}

.hero p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.15rem;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.btn.primary {
    color: var(--paper);
    background: var(--green);
}

.btn.primary:hover {
    background: var(--green-dark);
}

.btn.secondary {
    color: var(--green);
    background: #edf5f2;
}

.btn.ghost {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
}

.stats-band {
    background: var(--green);
    color: var(--paper);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card strong {
    font-size: 2.4rem;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.78);
}

.section {
    padding: 92px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    max-width: 680px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-head h2 + p,
.section-head p + h2 {
    margin-top: 8px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 58px;
}

.split-grid p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--muted);
}

.image-stack {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 28px;
    background: var(--soft);
    border-radius: var(--radius);
}

.image-stack img {
    max-height: 390px;
}

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

.mini-grid span {
    padding: 13px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 700;
}

.feature-grid,
.program-grid,
.blog-grid,
.price-grid,
.testimonial-grid,
.achievement-grid,
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card,
.program-card,
.blog-card,
.price-card,
.testimonial-card,
.achievement-card,
.info-card,
.faq-item,
.legal-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(23, 32, 42, 0.06);
}

.feature-card {
    min-height: 210px;
    padding: 26px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--paper);
    background: var(--green);
    border-radius: 6px;
    font-size: 1.35rem;
    font-weight: 800;
}

.feature-card p,
.program-card p,
.blog-card p,
.price-card p,
.testimonial-card p,
.achievement-card p,
.info-card p,
.legal-card p {
    margin-top: 10px;
    color: var(--muted);
}

.cta-panel {
    color: var(--paper);
    background: var(--ink);
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.cta-grid p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.program-card,
.blog-card {
    overflow: hidden;
}

.program-card img,
.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.program-card div,
.blog-card div {
    padding: 22px;
}

.program-card h2,
.blog-card h2,
.achievement-card h2,
.info-card h2,
.form-card h2,
.legal-card h2 {
    font-size: 1.24rem;
}

.program-card a,
.blog-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green);
    font-weight: 800;
}

.testimonials-section {
    background: #101820;
    color: var(--paper);
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 42px;
}

.testimonial-layout p:not(.eyebrow) {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
}

.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.slider-controls button {
    width: 44px;
    height: 44px;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
}

.testimonial-slider {
    position: relative;
    min-height: 290px;
}

.testimonials-page .testimonial-slider {
    min-height: 360px;
}

.testimonial-slider .testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    color: var(--ink);
    opacity: 0;
    transform: translateX(22px);
    visibility: hidden;
    transition: 0.35s ease;
}

.testimonial-slider .testimonial-card p {
    color: var(--muted);
}

.testimonial-slider .testimonial-card strong {
    color: var(--ink);
}

.testimonial-slider .testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.testimonial-card strong {
    margin-top: 20px;
}

.testimonial-card span {
    color: var(--gold);
    font-weight: 700;
}

.price-card {
    padding: 30px;
}

.price-card.featured {
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.price-card strong {
    display: block;
    margin-top: 18px;
    color: var(--green);
    font-size: 2.8rem;
    line-height: 1;
}

.price-card .btn {
    margin-top: 22px;
}

.inner-hero {
    padding: 154px 0 72px;
    color: var(--paper);
    background: var(--ink);
}

.inner-hero .container {
    max-width: 900px;
}

.inner-hero p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.78);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.content-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
}

.content-panel h2 + p,
.content-panel h3 + p {
    margin-top: 14px;
}

.content-panel h3 {
    margin-top: 28px;
}

.panel-image {
    width: 100%;
    max-height: 360px;
    margin-bottom: 28px;
    border-radius: var(--radius);
    object-fit: cover;
}

.content-panel p + p,
.content-panel ul + p,
.content-panel p + ul {
    margin-top: 16px;
}

.content-panel p,
.content-panel li {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
}

.side-card {
    position: sticky;
    top: 108px;
    padding: 26px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.side-card p {
    margin-top: 10px;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.info-card {
    padding: 24px;
}

.info-card a {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-weight: 700;
}

.info-card + .info-card {
    margin-top: 14px;
}

.form-card {
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field.full {
    grid-column: 1 / -1;
}

label {
    color: #293541;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: 0;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23, 107, 88, 0.12);
}

input.error,
textarea.error,
select.error {
    border-color: var(--red);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    color: var(--muted);
}

.form-status.success {
    color: var(--green);
    font-weight: 700;
}

.form-status.error {
    color: var(--red);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-question {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    font-weight: 800;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-question span {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--paper);
    background: var(--green);
    border-radius: 6px;
}

.faq-item.open .faq-question span {
    background: var(--gold);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-btn {
    min-height: 40px;
    padding: 0 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--paper);
    background: var(--green);
    border-color: var(--green);
}

.achievement-card {
    padding: 24px;
}

.achievement-photo {
    height: 220px;
    display: grid;
    place-items: center;
    margin: -24px -24px 20px;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.achievement-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.achievement-card.hidden {
    display: none;
}

.achievement-card.extra {
    display: block;
}

.achievement-card.hidden {
    display: none;
}

.load-more-achievements {
    display: none;
}

.country-pill {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 9px;
    color: var(--green);
    background: #edf5f2;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.blog-tools {
    max-width: 520px;
    margin: 0 auto 28px;
}

.blog-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 800;
}

.payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.payment-option + .payment-option {
    margin-top: 12px;
}

.payment-option input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.order-summary {
    padding: 28px;
    color: var(--paper);
    background: var(--green);
    border-radius: var(--radius);
}

.order-summary strong {
    display: block;
    margin: 18px 0;
    font-size: 2.6rem;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #07382d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 1.1fr;
    gap: 34px;
    padding: 58px 0;
}

.site-footer h2 {
    margin-bottom: 16px;
    color: var(--paper);
    font-size: 1.05rem;
}

.site-footer a {
    display: block;
    margin-top: 9px;
}

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

.footer-brand {
    margin-bottom: 18px;
}

.footer-brand img {
    width: 108px;
    background: var(--paper);
    border-radius: 6px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 44px;
    height: 44px;
    color: var(--paper);
    background: var(--green);
    border: 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    cursor: pointer;
    font-weight: 800;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.animate-ready [data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

body.animate-ready [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .main-nav > a,
    .nav-dropdown > button {
        padding-inline: 8px;
        font-size: 0.86rem;
    }
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        max-height: calc(100vh - 100px);
        overflow: auto;
        padding: 14px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .main-nav > a,
    .nav-dropdown > button {
        width: 100%;
        justify-content: flex-start;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 4px 0 10px 14px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    h1 {
        font-size: 3.3rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .stats-grid,
    .feature-grid,
    .program-grid,
    .blog-grid,
    .price-grid,
    .testimonial-grid,
    .achievement-grid,
    .sitemap-grid,
    .footer-grid,
    .content-grid,
    .contact-grid,
    .payment-layout,
    .split-grid,
    .testimonial-layout {
        grid-template-columns: 1fr 1fr;
    }

    .content-grid,
    .contact-grid,
    .payment-layout,
    .split-grid,
    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand img {
        width: 66px;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 86vh;
    }

    .hero-content {
        padding: 124px 0 58px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .section {
        padding: 62px 0;
    }

    .stats-grid,
    .feature-grid,
    .program-grid,
    .blog-grid,
    .price-grid,
    .testimonial-grid,
    .achievement-grid,
    .sitemap-grid,
    .footer-grid,
    .mini-grid,
    .form-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .testimonial-slider {
        min-height: 380px;
    }

    .testimonials-page .testimonial-slider {
        min-height: 460px;
    }

    .testimonial-slider .testimonial-card {
        padding: 24px;
    }

    .content-panel,
    .form-card {
        padding: 22px;
    }
}
