:root {
    --bg: #f5f8fb;
    --dark: #071421;
    --dark2: #0d2236;
    --text: #152536;
    --muted: #64748b;
    --line: #e3ebf2;
    --card: #fff;
    --green: #13b66b;
    --green2: #0b8f55;
    --soft: #eaf8f0;
    --shadow: 0 24px 70px rgba(7, 20, 33, .10);
    --radius: 28px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text)
}

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

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

.container {
    width: min(1180px, 92%);
    margin-inline: auto
}

.nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

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

.brand img {
    height: 46px;
    width: auto
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 800;
    color: #405165
}

.menu a {
    padding: 10px 0
}

.menu a:hover,
.menu .active {
    color: var(--green2)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .18s;
    cursor: pointer
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 14px 30px rgba(19, 182, 107, .25)
}

.btn-primary:hover {
    background: var(--green2);
    transform: translateY(-1px)
}

.btn-ghost,
.btn-light {
    background: white;
    color: var(--dark);
    border-color: var(--line)
}

.btn-ghost:hover,
.btn-light:hover {
    border-color: var(--green);
    color: var(--green2)
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--dark);
    color: white;
    border-radius: 14px;
    width: 46px;
    height: 46px;
    font-size: 20px
}

.mobile-panel {
    display: none;
    background: white;
    border-top: 1px solid var(--line);
    padding: 12px 4%
}

.mobile-panel a {
    display: block;
    padding: 14px 0;
    font-weight: 800;
    color: #405165
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eaf8f0 100%);
    padding: 84px 0 48px
}

.hero:before {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: rgba(19, 182, 107, .12)
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    border-radius: 999px;
    background: var(--soft);
    color: var(--green2);
    font-size: 14px;
    font-weight: 900;
    padding: 9px 14px
}

.hero h1,
.page-hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.01;
    letter-spacing: -.055em;
    margin: 22px 0 18px;
    color: var(--dark)
}

.hero h1 span,
.page-hero h1 span {
    color: var(--green2)
}

.lead {
    font-size: 20px;
    line-height: 1.62;
    color: var(--muted);
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    color: #405165;
    font-weight: 800
}

.trust span {
    display: flex;
    gap: 8px;
    align-items: center
}

.hero-visual {
    background: var(--dark);
    border-radius: 38px;
    padding: 26px;
    box-shadow: var(--shadow);
    color: white;
    overflow: hidden
}

.map {
    min-height: 430px;
    border-radius: 30px;
    background: radial-gradient(circle at 70% 24%, rgba(19, 182, 107, .55), transparent 24%), linear-gradient(135deg, #133049, #06111d);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px
}

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

.mini {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 14px
}

.mini strong {
    display: block;
    font-size: 22px
}

.radar {
    align-self: center;
    position: relative;
    width: min(300px, 82%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center
}

.radar:before,
.radar:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(19, 182, 107, .38);
    border-radius: 50%
}

.radar:before {
    inset: 50px
}

.radar:after {
    inset: 100px
}

.pin {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: var(--green);
    display: grid;
    place-items: center;
    font-size: 34px;
    box-shadow: 0 0 0 16px rgba(19, 182, 107, .14)
}

.section {
    padding: 78px 0
}

.section.alt {
    background: white
}

.section-head {
    max-width: 780px;
    margin-bottom: 34px
}

.section-head.center {
    text-align: center;
    margin-inline: auto
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 12px 0;
    color: var(--dark)
}

.section-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 34px rgba(7, 20, 33, .05)
}

.card.lift {
    transition: .18s
}

.card.lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--green2);
    font-size: 23px;
    margin-bottom: 18px
}

.card h3 {
    font-size: 23px;
    margin: 0 0 10px;
    color: var(--dark)
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.65
}

.card ul {
    padding-left: 18px;
    margin: 14px 0 0
}

.stats {
    padding: 34px 0
}

.stat {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(7, 20, 33, .05)
}

.stat strong {
    display: block;
    font-size: 34px;
    color: var(--dark)
}

.stat span {
    font-weight: 800;
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center
}

.panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 36px;
    box-shadow: var(--shadow)
}

.features {
    display: grid;
    gap: 16px
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.check {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--green2);
    display: grid;
    place-items: center;
    font-weight: 900
}

.feature h3 {
    margin: 1px 0 6px;
    color: var(--dark)
}

.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

.page-hero {
    background: linear-gradient(135deg, #f8fbff, #eaf8f0);
    padding: 76px 0
}

.content {
    font-size: 18px;
    line-height: 1.75;
    color: #334155
}

.content h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -.035em
}

.content h3 {
    color: var(--dark)
}

.cta {
    background: var(--dark);
    color: white;
    border-radius: 40px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    box-shadow: var(--shadow)
}

.cta h2 {
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 0 0 12px
}

.cta p {
    color: #c8d6e3;
    font-size: 18px;
    line-height: 1.6;
    margin: 0
}

.table-wrap {
    overflow: auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 12px 34px rgba(7, 20, 33, .05)
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 760px
}

th,
td {
    text-align: left;
    padding: 18px;
    border-bottom: 1px solid var(--line)
}

th {
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em
}

td {
    color: #475569
}

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

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

.faq summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--dark)
}

.faq p {
    color: var(--muted);
    line-height: 1.65
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px
}

.form {
    display: grid;
    gap: 14px
}

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    background: white
}

.form textarea {
    min-height: 140px;
    resize: vertical
}

.form button {
    width: max-content;
    border: 0
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 750
}

.alert.success {
    background: #e7f8ee;
    color: #106b3c;
    border: 1px solid #bfe8cf
}

.alert.error {
    background: #fff1f1;
    color: #9b1c1c;
    border: 1px solid #ffd0d0
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden
}

.captcha-box {
    display: grid;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px
}

.captcha-box span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 800
}

.footer {
    background: #071421;
    color: white;
    padding: 60px 0 26px;
    margin-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 34px
}

.footer img {
    height: 48px;
    width: auto;
    margin-bottom: 16px
}

.footer p,
.footer a {
    display: block;
    color: #b7c6d4;
    line-height: 1.7;
    margin: 0 0 9px
}

.footer a:hover {
    color: white
}

.footer h3 {
    font-size: 16px;
    margin: 0 0 14px
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    margin: 0
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 34px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #b7c6d4;
    font-size: 14px
}

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .32)
}

@media(max-width:980px) {

    .menu,
    .nav-actions .btn-ghost {
        display: none
    }

    .menu-btn {
        display: block
    }

    .mobile-panel.open {
        display: block
    }

    .hero-grid,
    .split,
    .contact-grid,
    .cta {
        grid-template-columns: 1fr
    }

    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 54px
    }

    .map {
        min-height: 340px
    }

    .mini-stats {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column
    }

    .section {
        padding: 58px 0
    }

    .nav-wrap {
        height: 74px
    }

    .brand img {
        height: 40px
    }
}