:root {
    --active: #ad9300;
    --bg: #f6f8fb;
    --surface: #fff;
    --ink: #0d1724;
    --muted: #667085;
    --line: #d9e2ec;
    --brand: #0a6f83;
    --brand-2: #08263c;
    --accent: #b7f2e4;
    --shadow: 0 24px 70px rgba(9, 30, 66, .12);
    --radius: 24px;
    --header-h: 74px;
    color-scheme: light dark
}

@media(prefers-color-scheme:dark) {
    :root {
        --bg: #07121d;
        --surface: #0c1b2a;
        --ink: #edf6ff;
        --muted: #a8b5c4;
        --line: #21384e;
        --brand: #31b6be;
        --brand-2: #07121d;
        --accent: #7de7d4;
        --shadow: 0 24px 70px rgba(0, 0, 0, .35)
    }
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    text-rendering: optimizeLegibility
}

img {
    max-width: 100%;
    height: auto
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: auto
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    background: var(--surface);
    padding: .75rem 1rem;
    border-radius: 999px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.navbar {
    min-height: var(--header-h);
    z-index: 10000;
}

.navbar-brand img {
    border-radius: 4px
}

.nav-link {
    color: var(--muted);
    font-weight: 650;
    border-radius: 999px;
    padding: .55rem .85rem !important
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: color-mix(in srgb, var(--brand) 10%, transparent)
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--active);
}

.btn {
    border-radius: 999px;
    font-weight: 750;
    padding: .8rem 1.1rem
}

.btn-sm {
    padding: .55rem .9rem
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    box-shadow: none
}

.btn-primary:hover {
    filter: brightness(.92);
    background: var(--brand);
    border-color: var(--brand)
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .35);
    color: white
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 16px;
    position: relative
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px auto;
    border-radius: 999px;
    transition: transform .28s ease, opacity .2s ease
}

.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0
}

.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-panel,
.menu-backdrop {
    display: none
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b2c, #0a3441 55%, #0c715f);
    color: white
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(183, 242, 228, .28), transparent 32%)
}

.hero .container-xl {
    position: relative
}

.hero-copy {
    padding: clamp(5rem, 9vw, 8rem) 0
}

.col-lg-6.hero-copy+div {
    margin-top: -303px;
}

.eyebrow {
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: .78rem;
    color: var(--brand);
    font-weight: 800
}

.hero .eyebrow,
.page-hero .eyebrow {
    color: var(--accent)
}

h1 {
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 850
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 820
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: color-mix(in srgb, currentColor 78%, transparent);
    max-width: 62ch
}

.hero-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.swiper {
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.hero-slide {
    min-height: 420px;
    display: grid;
    align-items: end;
    background-size: cover;
    background-position: center;
    padding: 2rem
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent)
}

.hero-slide > * {
    position: relative
}

.section {
    padding: clamp(4rem, 7vw, 7rem) 0
}

.section-tight {
    padding: clamp(3rem, 5vw, 5rem) 0
}

.muted {
    color: var(--muted)
}

.kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.kpi div,
.panel,
.service-card,
.info-card,
.timeline li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(9, 30, 66, .04);
    color: var(--muted)
}

.kpi div {
    padding: 1.2rem
}

.kpi strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -.04em
}

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

.service-card {
    padding: 1.4rem;
    transition: transform .2s ease, border-color .2s ease
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--brand) 45%, var(--line))
}

.service-card span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    font-weight: 850
}

.service-card small {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-weight: 750
}

.service-card h3 {
    font-size: 1.15rem;
    margin: .25rem 0 .5rem
}

.feature-list {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none
}

.feature-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start
}

.feature-list li:before {
    content: "";
    margin-top: .65rem;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--brand);
    flex: 0 0 auto
}

.page-hero {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(135deg, #071b2c, #0e3b4a);
    color: white
}

.hero-card-img {
    border-radius: 28px;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    object-fit: cover
}

.panel {
    padding: clamp(1.25rem, 3vw, 2rem)
}

.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

.table-modern th,
.table-modern td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top
}

.table-modern th {
    width: 28%;
    color: var(--muted)
}

.cta {
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: white;
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden
}

.cta:after {
    content: "";
    position: absolute;
    right: -10%;
    top: -40%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12)
}

.form-control,
.form-select {
    border-radius: 16px;
    padding: .9rem 1rem;
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink)
}

.site-footer {
    padding: 4rem 0 2rem;
    background: var(--surface);
    border-top: 1px solid var(--line)
}

.footer-title {
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-list a {
    display: block;
    color: var(--muted);
    padding: .25rem 0
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted)
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem
}

.timeline li {
    padding: 1.25rem
}

.badge-soft {
    display: inline-flex;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--brand) 10%, transparent);
    border-radius: 999px;
    padding: .35rem .7rem;
    color: var(--brand);
    font-weight: 750
}

.icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid #999;
    margin-bottom: 1rem
}

.mini-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.mini-diagram div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface) 86%, var(--brand) 8%)
}

@media(max-width:991.98px) {
    .desktop-nav {
        display: none !important
    }

    .nav-toggle {
        display: block
    }

    .mobile-panel {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(86vw, 380px);
        background: var(--surface);
        z-index: 1002;
        transform: translateX(105%);
        transition: transform .35s cubic-bezier(.22, 1, .36, 1);
        box-shadow: var(--shadow);
        /*padding-top: var(--header-h)*/
        margin-top: var(--header-h)
    }

    .mobile-panel__inner {
        padding: 1rem 1.25rem
    }

    .mobile-panel__head {
        font-weight: 850;
        margin-bottom: 1rem
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 1001;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease
    }

    .menu-open .mobile-panel {
        transform: translateX(0)
    }

    .menu-open .menu-backdrop {
        opacity: 1;
        pointer-events: auto
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .kpi,
    .mini-diagram {
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding-top: 4rem
    }

    .hero .swiper {
        margin-bottom: 3rem
    }
    
    .col-lg-6.hero-copy+div {
    margin-top: 0px;
}
}

@media(max-width:575.98px) {
    .service-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column
    }

    .table-modern th,
    .table-modern td {
        display: block;
        width: 100%;
        padding: .8rem 0
    }

    .hero-slide {
        min-height: 320px;
        padding: 1.25rem
    }

    .section {
        padding: 3rem 0
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important
    }
}
