:root {
    --navy: #173f4f;
    --navy-dark: #102f3b;
    --teal: #0c7c86;
    --teal-light: #eaf6f3;
    --teal-soft: #d8eee9;
    --orange: #e99550;
    --orange-dark: #db8642;
    --white: #ffffff;
    --background: #f7fbfa;
    --text: #294553;
    --muted: #667b84;
    --border: #dce9e6;
    --shadow: 0 18px 50px rgba(23, 63, 79, 0.12);
    --container: 1180px;
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.skip-link {
    position: absolute;
    top: 10px;
    left: -9999px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
}

.skip-link:focus {
    left: 10px;
}

.topbar {
    color: var(--white);
    background: var(--navy);
    font-size: 14px;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 20px;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 233, 230, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 25px;
}

.site-logo {
    flex-shrink: 0;
}

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

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 750;
}

.main-menu > a:not(.button) {
    position: relative;
    padding: 10px 0;
}

.main-menu > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-menu > a:not(.button):hover {
    color: var(--teal);
}

.main-menu > a:not(.button):hover::after {
    transform: scaleX(1);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: 13px;
    background: var(--teal-light);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 20px;
    background: var(--navy);
    transition: 0.2s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.button-small {
    min-height: 45px;
    padding: 11px 18px;
}

.button-orange {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 27px rgba(233, 149, 80, 0.25);
}

.button-orange:hover {
    background: var(--orange-dark);
}

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

.button-white:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 62px;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(255, 255, 255, 0.9),
            transparent 27%
        ),
        linear-gradient(
            115deg,
            #f1faf7 0%,
            #e3f3ef 59%,
            #ffffff 59%
        );
}

.hero::after {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    content: "";
    background: rgba(233, 149, 80, 0.1);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--teal);
    background: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.section-label::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--orange);
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--navy);
    line-height: 1.16;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(43px, 5.6vw, 72px);
    letter-spacing: -2.5px;
}

h1 span {
    display: block;
    color: var(--teal);
}

.hero-description {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
}

.hero-features span::before {
    margin-right: 7px;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.hero-image-area {
    position: relative;
    min-height: 565px;
}

.hero-image-shape {
    position: absolute;
    inset: 0 20px 0 50px;
    overflow: hidden;
    border-radius: 44px 44px 135px 44px;
    background: var(--teal-light);
    box-shadow: var(--shadow);
}

.hero-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.rating-card {
    position: absolute;
    bottom: 34px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 220px;
    padding: 16px 19px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.rating-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 14px;
    color: var(--orange);
    background: #fff6ed;
    font-size: 23px;
}

.rating-card strong {
    display: block;
    color: var(--teal);
    font-size: 22px;
    line-height: 1.1;
}

.rating-card span {
    color: var(--muted);
    font-size: 13px;
}

.trust-section {
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(23, 63, 79, 0.08);
    transform: translateY(35px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 23px 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: grid;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 14px;
    background: var(--teal-light);
    font-size: 22px;
}

.trust-item strong {
    display: block;
    color: var(--navy);
    line-height: 1.3;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 105px 0;
}

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

.two-column {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 65px;
}

.illustration-card {
    position: relative;
    padding: 28px;
    border-radius: 32px;
    background: var(--teal-light);
}

.illustration-card > img {
    width: 100%;
    border-radius: 25px;
}

.illustration-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    max-width: 225px;
    padding: 20px;
    border-radius: 18px;
    color: var(--white);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.illustration-badge strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
}

.illustration-badge span {
    color: #d8e8ec;
    font-size: 14px;
}

.section-content h2,
.section-heading h2 {
    margin-top: 18px;
    margin-bottom: 16px;
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -1.3px;
}

.section-content p,
.section-heading p {
    color: var(--muted);
}

.section-heading {
    max-width: 770px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.check-list li {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    color: var(--navy);
    background: var(--background);
    font-weight: 720;
}

.check-list li::before {
    margin-right: 8px;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.service-card {
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    border-color: #bfddd7;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-icon {
    display: grid;
    width: 59px;
    height: 59px;
    margin-bottom: 21px;
    place-items: center;
    border-radius: 17px;
    background: var(--teal-light);
    font-size: 27px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.training-card {
    padding: 33px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: var(--white);
}

.training-card h3 {
    margin-bottom: 22px;
    font-size: 26px;
}

.training-card ul {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    color: var(--muted);
}

.training-card li {
    margin-bottom: 11px;
    break-inside: avoid;
}

.statistics-section {
    padding: 54px 0;
    color: var(--white);
    background: var(--navy);
}

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

.statistic-item {
    padding: 5px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.statistic-item:last-child {
    border-right: 0;
}

.statistic-item strong {
    display: block;
    color: var(--white);
    font-size: 42px;
    line-height: 1.2;
}

.statistic-item span {
    color: #cfe1e5;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.region-list span {
    padding: 11px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--navy);
    background: var(--white);
    font-weight: 750;
    transition: 0.2s ease;
}

.region-list span:hover {
    color: var(--white);
    border-color: var(--teal);
    background: var(--teal);
}

.city-silhouette {
    width: 100%;
    margin-top: 28px;
}

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

.testimonial-card {
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
}

.stars {
    margin-bottom: 14px;
    color: var(--orange);
    letter-spacing: 4px;
}

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

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

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 23px;
    border: 0;
    color: var(--navy);
    background: var(--white);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-plus {
    flex: 0 0 auto;
    font-size: 24px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 23px 22px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.contact-cta {
    padding: 0 0 95px;
}

.contact-cta-box {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 49px;
    border-radius: 32px;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            var(--teal),
            #135669
        );
}

.contact-cta-box::after {
    position: absolute;
    top: -120px;
    right: -90px;
    width: 330px;
    height: 330px;
    border: 58px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.contact-cta-box h2 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 38px;
}

.contact-cta-box p {
    margin: 0;
    color: #d9edeb;
}

.contact-cta-box .button {
    position: relative;
    z-index: 2;
}

.site-footer {
    padding: 58px 0 24px;
    color: #d4e0e4;
    background: var(--navy-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 48px;
}

.footer-about img {
    width: 255px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    max-width: 420px;
    color: #afc3c9;
}

.footer-column h3 {
    color: var(--white);
}

.footer-column a,
.footer-column span {
    display: block;
    margin: 9px 0;
    color: #d4e0e4;
}

.footer-column a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 38px;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9fb6bd;
    font-size: 13px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: grid;
    width: 59px;
    height: 59px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #20b85a;
    box-shadow: 0 15px 35px rgba(32, 184, 90, 0.35);
    font-size: 27px;
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
}

.mobile-contact-bar {
    display: none;
}

@media (max-width: 980px) {

    .menu-button {
        display: block;
    }

    .main-menu {
        position: fixed;
        top: 98px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 21px;
        background: var(--white);
        box-shadow: var(--shadow);
        flex-direction: column;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu .button {
        width: 100%;
    }

    .hero {
        background:
            linear-gradient(
                180deg,
                #eef8f5,
                #ffffff
            );
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-image-area {
        min-height: 510px;
    }

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

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .statistics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 0;
    }

    .statistic-item:nth-child(2) {
        border-right: 0;
    }

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

@media (max-width: 680px) {

    body {
        padding-bottom: 64px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .topbar {
        display: none;
    }

    .header-content {
        min-height: 74px;
    }

    .site-logo img {
        width: 210px;
    }

    .main-menu {
        top: 84px;
    }

    .hero {
        padding: 50px 0 42px;
    }

    h1 {
        font-size: 43px;
        letter-spacing: -1.6px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-image-area {
        min-height: 420px;
    }

    .hero-image-shape {
        inset: 0 15px;
        border-radius: 30px 30px 90px 30px;
    }

    .rating-card {
        bottom: 8px;
        left: 0;
        min-width: 205px;
        padding: 13px 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        transform: translateY(20px);
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 78px 0;
    }

    .illustration-badge {
        right: 10px;
        bottom: 10px;
        max-width: 210px;
    }

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

    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .training-card ul {
        columns: 1;
    }

    .statistic-item strong {
        font-size: 32px;
    }

    .contact-cta-box {
        grid-template-columns: 1fr;
        padding: 34px 25px;
    }

    .contact-cta-box h2 {
        font-size: 31px;
    }

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

    .floating-whatsapp {
        bottom: 82px;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: grid;
        height: 64px;
        grid-template-columns: 1fr 1fr;
        background: var(--white);
        box-shadow: 0 -8px 25px rgba(23, 63, 79, 0.13);
    }

    .mobile-contact-bar a {
        display: grid;
        place-items: center;
        color: var(--navy);
        font-weight: 850;
    }

    .mobile-contact-bar a:last-child {
        color: var(--white);
        background: var(--orange);
    }
}