
:root {
    --bg: #eef6ff;
    --bg-soft: #f8fbff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --text: #10213e;
    --muted: #4b6287;
    --line: rgba(20, 63, 128, 0.12);
    --blue: #0788e8;
    --blue-strong: #005fbe;
    --blue-soft: rgba(7, 136, 232, 0.09);
    --shadow: 0 24px 80px rgba(18, 53, 102, 0.14);
    --radius: 28px;
    --radius-sm: 20px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(85, 178, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 120, 220, 0.12), transparent 24%),
        linear-gradient(180deg, #f5fbff 0%, #edf6ff 56%, #f7fbff 100%);
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.85rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand__text {
    display: grid;
    gap: 0.16rem;
}

.brand__text strong {
    font-size: 0.96rem;
    letter-spacing: -0.02em;
}

.brand__text span {
    font-size: 0.78rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.28rem;
    flex-wrap: wrap;
}

.site-nav a,
.nav-toggle-button {
    border-radius: 999px;
    padding: 0.46rem 0.72rem;
    font-size: 0.83rem;
    color: var(--muted);
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--blue-soft);
    color: var(--text);
}

.nav-toggle,
.nav-toggle-button {
    display: none;
}

.page-shell {
    padding: 1rem 0 4rem;
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero,
.page-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.2rem, 3vw, 2rem);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.46rem 0.82rem;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
    margin: 1rem 0 0.9rem;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero__lead,
.page-intro p,
.panel p,
.feature-card p,
.contact-card,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.hero__actions,
.cta-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.button,
button {
    border: 0;
    cursor: pointer;
    appearance: none;
    border-radius: 999px;
    font: inherit;
    padding: 0.95rem 1.25rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary,
button {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-strong) 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 95, 190, 0.24);
}

.button--secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}

.hero__media,
.page-intro__media,
.split-section__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__media img,
.page-intro__media img,
.split-section__media img,
.service-card > img {
    width: 100%;
    border-radius: calc(var(--radius) - 10px);
}

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

.stat-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 84, 170, 0.08);
    border-radius: var(--radius-sm);
}

.stat-card span {
    display: block;
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.stat-card strong {
    display: block;
    line-height: 1.3;
}

.services-preview,
.content-stack {
    margin-top: 1.25rem;
    display: grid;
    gap: 1.25rem;
}

.services-preview {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    overflow: hidden;
}

.service-card__body {
    padding: 1.25rem 1.25rem 1.35rem;
}

.service-card h2,
.panel h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--blue-strong);
    font-weight: 700;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

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

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.44rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--blue), var(--blue-strong));
    box-shadow: 0 0 0 6px rgba(7, 136, 232, 0.09);
}

.check-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-card,
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 84, 170, 0.08);
    border-radius: var(--radius-sm);
    padding: 1.15rem;
}

.feature-card h3,
.contact-card strong,
.contact-card a {
    font-size: 0.96rem;
}

.feature-card h3 {
    margin: 0 0 0.4rem;
}

.contact-card__label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.cta-banner {
    padding: 1.45rem;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: center;
}

.form-panel {
    padding: 1.4rem;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 1.4rem;
}

.site-form {
    display: grid;
    gap: 1rem;
}

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

label {
    display: grid;
    gap: 0.45rem;
}

label span {
    font-size: 0.95rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 58, 120, 0.16);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(7, 136, 232, 0.22);
    border-color: rgba(7, 136, 232, 0.3);
}

.alert {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    font-weight: 700;
}

.alert--success {
    background: rgba(0, 174, 101, 0.12);
    color: #0a7046;
}

.alert--error {
    background: rgba(213, 49, 70, 0.12);
    color: #9f1b36;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
}

.site-footer__inner {
    min-height: 94px;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-contact {
    display: grid;
    gap: 0.35rem;
    text-align: right;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero,
    .page-intro,
    .split-section,
    .form-panel,
    .services-preview,
    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-banner,
    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 860px) {
    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle-button {
        display: inline-flex;
        justify-self: end;
        background: var(--blue-soft);
        color: var(--blue-strong);
        font-weight: 800;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1rem), var(--max));
    }

    .site-header__inner {
        min-height: 80px;
        gap: 0.8rem;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand__text span {
        display: none;
    }

    .hero h1,
    .page-intro h1 {
        font-size: 2rem;
    }
}


.hero__media {
    width: 100%;
}

.hero-slider {
    position: relative;
    width: min(100%, 500px);
    min-height: 320px;
    margin-inline: auto;
    border-radius: calc(var(--radius) - 10px);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(230,241,255,0.92));
    border: 1px solid rgba(16, 58, 120, 0.08);
    box-shadow: 0 24px 60px rgba(18, 53, 102, 0.16);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 320ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 0.45rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: rgba(16, 58, 120, 0.22);
    box-shadow: none;
}

.hero-slider__dot.is-active {
    background: var(--blue-strong);
}

@media (max-width: 860px) {
    .brand__text span {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand__text {
        display: none;
    }

    .hero-slider {
        min-height: 250px;
    }
}
