:root {
    --bg-dark: #061326;
    --bg-dark-2: #0d1b31;
    --bg-light: #f6f1ea;
    --surface: #ffffff;
    --surface-2: #f4eee6;
    --text: #101824;
    --text-soft: #6c7380;
    --text-inverse: #f3f7ff;
    --line: rgba(16, 24, 36, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);
    --accent: #f28a22;
    --accent-strong: #ff9b2f;
    --shadow: 0 22px 50px rgba(6, 16, 32, 0.14);
    --radius: 8px;
    --radius-lg: 18px;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #17243a;
    overflow-x: clip;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    min-height: 100vh;
    background: var(--bg-light);
}

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

.section,
.section-light,
.hero,
.contact,
.faq,
.result-banner,
.split {
    padding: 88px 0;
}

.section-light {
    background: var(--surface);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding-top: 30px;
    background: transparent;
    border-bottom: 0;
}

.header__inner {
    width: min(calc(100% - 64px), 1440px);
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 14px 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(243, 247, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-inverse);
    min-width: 0;
}

.brand__mark {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--accent-strong);
    flex: none;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.brand__text strong {
    font-size: 0.92rem;
    letter-spacing: 0;
}

.brand__text small {
    font-size: 0.76rem;
    color: rgba(243, 247, 255, 0.7);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: rgba(243, 247, 255, 0.86);
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 650;
    transition: color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 12px 0 24px;
    background: var(--accent);
    color: #111;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(242, 138, 34, 0.28);
}

.nav-cta::after {
    content: "↗";
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 1rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--accent-strong);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
}

.mobile-nav {
    display: none;
    width: min(calc(100% - 64px), 760px);
    margin: 12px auto 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    flex-direction: column;
    gap: 14px;
    background: rgba(8, 21, 42, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.mobile-nav[hidden] {
    display: none !important;
}

.mobile-nav a {
    color: rgba(243, 247, 255, 0.92);
    font-size: 1rem;
}

.sr-only,
.hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(42, 111, 186, 0.28), transparent 38%),
        #061326;
    color: var(--text-inverse);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 18%;
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.08) brightness(0.92);
}

.hero__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 12, 27, 0.98) 0%, rgba(4, 12, 27, 0.94) 32%, rgba(4, 12, 27, 0.44) 58%, rgba(4, 12, 27, 0.16) 100%),
        linear-gradient(180deg, rgba(4, 12, 27, 0.06) 0%, rgba(4, 12, 27, 0.86) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
}

.hero__copy {
    width: 100%;
    max-width: none;
    padding: 210px 0 86px;
    display: grid;
    gap: 18px;
    align-items: start;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.eyebrow--light {
    color: rgba(243, 247, 255, 0.78);
}

.eyebrow--dark {
    color: var(--text-soft);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    color: rgba(243, 247, 255, 0.82);
    font-size: 0.98rem;
    letter-spacing: 0;
    text-transform: none;
}

.hero__eyebrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 0 5px rgba(242, 138, 34, 0.12);
}

.hero h1,
.intro h2,
.section__head h2,
.split h2,
.result-banner h2,
.faq h2,
.contact h2 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero h1 {
    font-size: 5.85rem;
    max-width: 980px;
    line-height: 0.94;
    font-weight: 380;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    font-weight: 850;
}

.hero__lead {
    margin: 0;
    max-width: 40rem;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(243, 247, 255, 0.8);
}

.hero__bottom {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(140px, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: 28px;
    margin-top: 68px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.hero__rule {
    display: block;
    height: 1px;
    min-width: 100px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.hero__note {
    margin: 0;
    color: rgba(243, 247, 255, 0.88);
    font-size: 1.22rem;
    font-weight: 750;
    line-height: 1.32;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--accent);
    color: #171717;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(242, 138, 34, 0.26);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--accent-strong);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-inverse);
    background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.hero__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: rgba(243, 247, 255, 0.76);
}

.hero__bullets li {
    position: relative;
    padding-left: 18px;
    line-height: 1.45;
}

.hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.intro__inner,
.section__head,
.faq__inner,
.contact__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.intro h2,
.section__head h2,
.split h2,
.result-banner h2,
.faq h2,
.contact h2 {
    font-size: 2.6rem;
    max-width: 15ch;
}

.intro__text,
.section__lead,
.split p,
.result-banner__text,
.contact__copy p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-soft);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--text);
    font-weight: 700;
}

.text-link::after {
    content: "→";
    transition: transform 0.18s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}

.facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.fact {
    min-height: 164px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(17, 24, 34, 0.04);
}

.fact__label,
.benefit__index,
.service-card__index {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-soft);
}

.fact strong {
    display: block;
    margin-top: 22px;
    font-size: 1.3rem;
    line-height: 1.2;
}

.fact p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.section__head {
    margin-bottom: 28px;
}

.section__lead {
    margin: 12px 0 0;
    max-width: 34rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0f1a2d;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 22, 0.08) 12%, rgba(5, 11, 22, 0.62) 100%);
    pointer-events: none;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.service-card__index {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.68);
}

.service-card__body {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 1;
    padding: 20px 18px 18px;
    color: #fff;
}

.service-card__body h3 {
    margin: 0;
    font-size: 1.34rem;
    line-height: 1.18;
    max-width: 14ch;
}

.service-card__body p {
    margin: 10px 0 0;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 28ch;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 0;
    background: #091321;
    color: var(--text-inverse);
}

.split__media {
    height: 520px;
    overflow: hidden;
}

.split__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 42%;
}

.split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 7vw 72px 56px;
}

.split__content p {
    color: rgba(243, 247, 255, 0.78);
}

@media (min-width: 1121px) {
    .split__media {
        min-height: 0;
        height: clamp(540px, 68vh, 720px);
        overflow: hidden;
    }

    .split__media img {
        min-height: 0;
        height: 100%;
        object-position: 50% 42%;
    }

    .split__content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(243, 247, 255, 0.9);
    font-size: 0.92rem;
}

.section--tight {
    padding-bottom: 72px;
}

.section--benefits {
    background: linear-gradient(180deg, var(--bg-light) 0%, #faf7f2 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit {
    position: relative;
    min-height: 220px;
    padding: 26px 24px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(16, 24, 36, 0.1);
    background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
    box-shadow: 0 18px 42px rgba(17, 24, 34, 0.06);
    overflow: hidden;
}

.benefit::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: rgba(242, 138, 34, 0.5);
    opacity: 0;
}

.benefit--highlight {
    background: linear-gradient(145deg, #101824 0%, #17253a 100%);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
    box-shadow: 0 24px 55px rgba(6, 16, 32, 0.18);
}

.benefit--highlight::before {
    opacity: 1;
}

.benefit--highlight .benefit__index {
    color: rgba(243, 247, 255, 0.72);
}

.benefit h3 {
    margin: 28px 0 0;
    font-size: 1.24rem;
    line-height: 1.22;
}

.benefit p {
    margin: 12px 0 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.benefit--highlight p {
    color: rgba(243, 247, 255, 0.74);
}

.result-banner {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: #08152a;
    color: var(--text-inverse);
}

.result-banner__bg,
.result-banner__shade {
    position: absolute;
    inset: 0;
}

.result-banner__bg {
    z-index: 0;
}

.result-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    filter: saturate(1.04) contrast(1.04) brightness(0.9);
}

.result-banner__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 21, 42, 0.96) 0%, rgba(8, 21, 42, 0.9) 34%, rgba(8, 21, 42, 0.52) 63%, rgba(8, 21, 42, 0.34) 100%),
        linear-gradient(180deg, rgba(8, 21, 42, 0.1) 0%, rgba(8, 21, 42, 0.38) 100%);
}

.result-banner__inner {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.result-banner__copy {
    display: grid;
    gap: 20px;
    align-content: center;
    max-width: 560px;
}

.result-banner__copy h2 {
    max-width: 14ch;
    font-size: 2.82rem;
    line-height: 0.98;
}

.result-banner__text {
    margin: 0;
    max-width: 34rem;
    color: rgba(243, 247, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.75;
}

.result-points {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.result-points div {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.result-points span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.result-points strong {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
}

.result-points p {
    margin: 8px 0 0;
    color: rgba(243, 247, 255, 0.64);
    line-height: 1.55;
}

.faq__inner {
    align-items: start;
}

.faq__intro h2 {
    max-width: none;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 18px 52px 18px 18px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--text-soft);
    line-height: 1.7;
}

.contact {
    background: linear-gradient(180deg, #0b1a30 0%, #081429 100%);
    color: var(--text-inverse);
}

.contact__inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 56px;
    align-items: center;
}

.contact__copy {
    max-width: 580px;
}

.contact__copy h2 {
    max-width: 16ch;
}

.contact__copy p {
    color: rgba(243, 247, 255, 0.76);
    max-width: 36rem;
}

.contact__meta {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact__meta div:last-child {
    grid-column: 1 / -1;
}

.contact__meta div {
    padding: 18px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.contact__meta span {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 247, 255, 0.62);
    margin-bottom: 8px;
}

.contact__meta strong {
    display: block;
    line-height: 1.6;
    font-size: 0.98rem;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 18px;
    align-self: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.form-alert {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 600;
}

.form-alert--error {
    background: rgba(255, 102, 102, 0.12);
    border: 1px solid rgba(255, 102, 102, 0.18);
    color: #ffd7d7;
}

.form-alert--success {
    background: rgba(242, 138, 34, 0.14);
    border: 1px solid rgba(242, 138, 34, 0.22);
    color: #ffe9cf;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label span {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 247, 255, 0.62);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: var(--radius);
    padding: 15px 17px;
    outline: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input {
    min-height: 54px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(243, 247, 255, 0.36);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(242, 138, 34, 0.52);
    box-shadow: 0 0 0 4px rgba(242, 138, 34, 0.12);
}

.message-field {
    margin-top: 0;
}

.message-field textarea {
    min-height: 158px;
    resize: vertical;
}

.btn--wide {
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
}

.btn--wide svg {
    transform: translateY(1px);
}

.form-note {
    margin: -2px 0 0;
    color: rgba(243, 247, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
}

.site-footer {
    background: #061120;
    color: rgba(243, 247, 255, 0.72);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.footer__brand {
    display: grid;
    gap: 8px;
}

.footer__brand strong {
    color: #fff;
    font-size: 1rem;
}

.footer__details {
    display: grid;
    gap: 6px;
    text-align: right;
}

@media (max-width: 1120px) {
    .hero h1 {
        font-size: 4.7rem;
        max-width: 820px;
    }

    .hero {
        min-height: 820px;
    }

    .hero__inner {
        min-height: 820px;
    }

    .hero__copy {
        padding: 190px 0 72px;
    }

    .hero__bottom {
        grid-template-columns: auto minmax(70px, 1fr) minmax(250px, 360px);
        gap: 22px;
        margin-top: 54px;
    }

    .hero__note {
        font-size: 1.08rem;
    }

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

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

    .intro__inner,
    .section__head,
    .faq__inner,
    .contact__inner,
    .split {
        grid-template-columns: 1fr;
    }

    .split__content {
        padding: 56px 24px 64px;
    }

    .result-banner__inner {
        min-height: 460px;
    }

    .result-banner__copy h2 {
        max-width: 16ch;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding-top: 14px;
    }

    .header__inner {
        width: min(calc(100% - 28px), 760px);
        min-height: 64px;
        padding: 0 8px 0 18px;
    }

    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        display: none;
        width: min(calc(100% - 28px), 760px);
    }

    .mobile-nav:not([hidden]) {
        display: flex;
    }

    .hero {
        min-height: 760px;
        padding: 0;
    }

    .hero__media img {
        object-position: 62% 14%;
        transform: scale(1.12);
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(4, 12, 27, 0.96) 0%, rgba(4, 12, 27, 0.88) 42%, rgba(4, 12, 27, 0.46) 100%),
            linear-gradient(180deg, rgba(4, 12, 27, 0.08) 0%, rgba(4, 12, 27, 0.9) 100%);
    }

    .hero__inner {
        min-height: 760px;
    }

    .hero__copy {
        max-width: 100%;
        padding: 160px 0 58px;
        gap: 18px;
    }

    .hero h1 {
        font-size: 3.25rem;
        max-width: 720px;
    }

    .hero__lead {
        max-width: 100%;
    }

    .hero__bottom {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
        margin-top: 34px;
        max-width: 520px;
    }

    .hero__rule {
        width: 100%;
        min-width: 0;
    }

    .hero__note {
        max-width: 460px;
    }

    .benefit {
        min-height: auto;
    }

    .split__media {
        height: 410px;
    }

    .result-banner {
        min-height: 620px;
    }

    .result-banner__bg img {
        object-position: 64% 50%;
    }

    .result-banner__shade {
        background:
            linear-gradient(90deg, rgba(8, 21, 42, 0.96) 0%, rgba(8, 21, 42, 0.9) 52%, rgba(8, 21, 42, 0.58) 100%),
            linear-gradient(180deg, rgba(8, 21, 42, 0.1) 0%, rgba(8, 21, 42, 0.44) 100%);
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__details {
        text-align: left;
    }
}

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

    .section,
    .section-light,
    .hero,
    .contact,
    .faq,
    .result-banner,
    .split {
        padding: 68px 0;
    }

    .hero {
        padding: 0;
        min-height: 720px;
    }

    .site-header {
        padding-top: 10px;
    }

    .header__inner {
        min-height: 58px;
        padding-left: 14px;
    }

    .brand__text strong {
        font-size: 0.82rem;
    }

    .brand__text small {
        display: none;
    }

    .hero h1 {
        font-size: 2.55rem;
        max-width: 100%;
        line-height: 0.97;
    }

    .hero__inner {
        min-height: 720px;
    }

    .hero__copy {
        padding: 140px 0 42px;
        gap: 14px;
    }

    .hero__eyebrow {
        font-size: 0.9rem;
    }

    .hero__media img {
        object-position: 64% 8%;
        transform: scale(1.18);
    }

    .intro h2,
    .section__head h2,
    .split h2,
    .result-banner h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
        max-width: none;
    }

    .hero__lead,
    .intro__text,
    .section__lead,
    .split p,
    .result-banner__text,
    .contact__copy p {
        font-size: 0.98rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero__bottom {
        margin-top: 22px;
        gap: 14px;
    }

    .hero__note {
        font-size: 1rem;
    }

    .services-grid,
    .benefits-grid,
    .facts,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .split {
        padding: 0;
    }

    .split__media {
        height: 310px;
    }

    .split__content {
        padding: 46px 20px 52px;
    }

    .tag-cloud {
        gap: 8px;
    }

    .tag-cloud span {
        min-height: 34px;
        padding: 0 11px;
        font-size: 0.84rem;
    }

    .service-card,
    .benefit,
    .fact,
    .contact-form,
    .faq-item {
        border-radius: 8px;
    }

    .service-card {
        min-height: 320px;
    }

    .service-card__body h3 {
        font-size: 1.18rem;
        max-width: none;
    }

    .result-banner {
        min-height: auto;
    }

    .result-banner__inner {
        min-height: auto;
    }

    .result-banner__bg img {
        object-position: 70% 50%;
    }

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

    .contact__meta div:last-child {
        grid-column: auto;
    }

    .contact-form {
        padding: 20px;
    }
}
