:root {
    --navy: #111a28;
    --blue: #066dcc;
    --cyan: #10bedb;
    --ink: #1c2531;
    --muted: #667486;
    --light: #f3f8fc;
    --white: #fff;
    --line: #dbe6ef;
    --radius: 22px;
    --shadow: 0 22px 60px rgba(16, 34, 55, 0.13);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff;
}
a {
    color: inherit;
    text-decoration: none;
}

.link-footer {
  color: #ffffff;
  font-weight: 700;
}

.link-footer:hover {
  color: rgb(16, 190, 219);
}

.link-footer2:hover {
  color: rgb(16, 190, 219);
}

img {
    max-width: 100%;
}
.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}
.site-header {
    height: 120px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}
.site-header.inner,
.site-header.scrolled {
    background: rgba(7, 24, 46, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.brand-logo {
    height: 110px;
    padding: 5px 12px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(5, 20, 40, 0.15);
}
.brand-logo img {
    display: block;
    width: 190px;
    height: 100px;
    object-fit: contain;
}

.footer-logo {
    height: 200px;
    padding: 5px 12px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(5, 20, 40, 0.15);
}
.footer-logo img {
    display: block;
    width: 380px;
    height: 200px;
    object-fit: contain;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 0.85rem;
    letter-spacing: -0.06em;
}
.logo small {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    color: #b7c6d9;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}
.main-nav a {
    font-size: 0.9rem;
    font-weight: 650;
    color: #d8e3ef;
    position: relative;
}
.main-nav a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: 0.25s;
}
.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}
.main-nav a.active {
    color: #fff;
}
.nav-cta {
    padding: 11px 18px;
    border-radius: 99px;
    background: var(--blue);
    color: #fff !important;
}
.nav-toggle {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    font-size: 1.6rem;
}
.hero-slider {
    height: min(820px, 100vh);
    min-height: 650px;
    position: relative;
    background: var(--navy);
    overflow: hidden;
}
.slides,
.slide {
    position: absolute;
    inset: 0;
}
.slide {
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 17, 35, 0.94) 0%, rgba(4, 17, 35, 0.66) 53%, rgba(4, 17, 35, 0.15) 100%);
}
.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    font-weight: 800;
}
.eyebrow:before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}
.slide h1 {
    max-width: 800px;
    margin: 20px 0;
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    line-height: 1.02;
    color: #fff;
    letter-spacing: -0.055em;
}
.slide p {
    max-width: 650px;
    margin: 0 0 33px;
    color: #c5d1df;
    font-size: 1.12rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 750;
    transition: 0.25s;
}
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 30px rgba(18, 104, 243, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: #0759dc;
}
.btn-outline {
    border: 1px solid var(--line);
    background: #fff;
}
.slider-ui {
    position: absolute;
    z-index: 4;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.dot {
    border: 0;
    background: transparent;
    color: #93a4b7;
    padding: 8px;
    cursor: pointer;
}
.dot span {
    font: 700 0.75rem Inter;
}
.dot:after {
    content: "";
    display: block;
    margin-top: 6px;
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}
.dot.active {
    color: #fff;
}
.dot.active:after {
    background: var(--cyan);
}
.slider-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.slider-arrows button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}
.slider-count {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
}
.section {
    padding: 105px 0;
}
.section-light {
    background: var(--light);
}
.section-dark {
    background: var(--navy);
    color: #fff;
}
.section-head {
    max-width: 700px;
    margin-bottom: 48px;
}
.section-head h2,
.split h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    margin: 15px 0;
}
.section-head p,
.split p {
    color: var(--muted);
}
.section-dark p {
    color: #aebed0;
}
.grid {
    display: grid;
    gap: 24px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eaf2ff;
    color: var(--blue);
    font-size: 1.4rem;
}
.card h3 {
    font-size: 1.28rem;
    margin: 24px 0 10px;
}
.card p {
    color: var(--muted);
    margin: 0 0 20px;
}
.text-link {
    font-weight: 800;
    color: var(--blue);
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}
.visual-panel {
    min-height: 430px;
    border-radius: 28px;
    background: linear-gradient(145deg, #14283e, #0676d8);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.visual-panel:before,
.visual-panel:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
.visual-panel:before {
    width: 370px;
    height: 370px;
    right: -70px;
    top: -60px;
}
.visual-panel:after {
    width: 230px;
    height: 230px;
    left: -50px;
    bottom: -40px;
}
.metric {
    position: absolute;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 17px;
    box-shadow: var(--shadow);
}
.metric strong {
    display: block;
    font-size: 1.8rem;
    color: var(--blue);
}
.metric.one {
    left: 40px;
    top: 70px;
}
.metric.two {
    right: 35px;
    bottom: 55px;
}
.checks {
    display: grid;
    gap: 13px;
    margin: 25px 0;
}
.checks span:before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 50%;
    background: #dff8f5;
    color: #008d79;
    font-weight: 900;
}
.cta {
    padding: 70px;
    border-radius: 30px;
    background: linear-gradient(120deg, var(--blue), #0644a8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cta h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 0;
}
.cta p {
    color: #d9e6fb;
}
.cta .btn {
    background: #fff;
    color: var(--blue);
    white-space: nowrap;
}
.page-hero {
    padding: 175px 0 90px;
    background: radial-gradient(circle at 80% 20%, #0c5b96 0, transparent 35%), var(--navy);
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    max-width: 850px;
    margin: 20px 0;
}
.page-hero p {
    max-width: 700px;
    color: #bdcada;
    font-size: 1.1rem;
}
.breadcrumb {
    font-size: 0.8rem;
    color: #91a6bb;
}
.breadcrumb a {
    color: var(--cyan);
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.stat {
    padding: 28px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}
.stat strong {
    font-size: 2rem;
    color: var(--blue);
    display: block;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.feature-list li:before {
    content: "→";
    color: var(--blue);
    font-weight: 900;
    margin-right: 12px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 30px;
}
.contact-box,
.contact-form,
.map-box {
    padding: 38px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
}
.map-box {
    padding: 0;
    overflow: hidden;
    min-height: 520px;
}
.map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}
.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.contact-item small {
    display: block;
    color: var(--muted);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    display: grid;
    gap: 7px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 0.84rem;
    font-weight: 750;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccd8e4;
    border-radius: 10px;
    font: inherit;
    background: #fafcfe;
}
.field textarea {
    min-height: 135px;
    resize: vertical;
}
.site-footer {
    padding: 70px 0 25px;
    background: #0d1724;
    color: #aebdce;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-grid h4 {
    color: #fff;
}
.footer-grid a {
    display: block;
    margin: 9px 0;
}
.footer-bottom {
    border-top: 1px solid #1c3048;
    margin-top: 45px;
    padding-top: 22px;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.6s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        padding: 24px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: var(--navy);
        border-radius: 15px;
        box-shadow: var(--shadow);
    }
    .main-nav.open {
        display: flex;
    }
    .grid-3,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .split {
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta {
        padding: 45px;
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1160px);
    }
    .hero-slider {
        min-height: 690px;
    }
    .slide h1 {
        font-size: 2.65rem;
    }
    .slider-ui {
        bottom: 24px;
    }
    .slider-arrows {
        display: none;
    }
    .section {
        padding: 75px 0;
    }
    .stats,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .visual-panel {
        min-height: 350px;
    }
    .cta {
        padding: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
