﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.cdnfonts.com/css/akrobat");

:root {
    --bg: #e9ecef;
    --bg-soft: #f4f6f9;
    --bg-panel: #f2f4f8;
    --text: #21272a;
    --text-soft: #697077;
    --line: #0065ca;
    --line-soft: #d7dee8;
    --blue: #0065ca;
    --blue-dark: #004080;
    --white: #ffffff;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-hard: 4px 4px 20px rgba(0, 0, 0, 0.25);
    --font-main: "Montserrat", "Segoe UI", Arial, sans-serif;
    --font-display: "Akrobat", "Montserrat", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
}

a {
    color: inherit;
}

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

.section {
    padding: 72px 0;
}

.section-title {
    margin: 0 0 26px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
p {
    margin: 0;
}

p + p {
    margin-top: 10px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 16px 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 16, 30, 0.86);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand::before {
    content: "";
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
}

.brand strong {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.brand span {
    display: none;
}

.main-nav {
    position: relative;
    display: inline-flex;
    gap: 16px;
    padding-bottom: 4px;
}

.nav-link {
    position: relative;
    padding: 4px 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -4px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.header-right a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.header-right a:first-child {
    opacity: 0.74;
}

.socials {
    display: none;
}

.hero {
    position: relative;
    min-height: 900px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 10, 22, 0.78) 0%, rgba(2, 10, 22, 0.46) 55%, rgba(2, 10, 22, 0.2) 100%),
        url("../images/hero-handshake.jpg") center/cover no-repeat;
}

.hero-grid {
    position: relative;
    z-index: 1;
    padding-top: 110px;
}

.hero-content {
    max-width: 589px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.2vw, 64px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-content p {
    max-width: 589px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn,
button.btn,
.lead-form button {
    border: 0;
    border-radius: var(--radius-sm);
    min-height: 48px;
    padding: 12px 24px;
    background: linear-gradient(113.37deg, var(--blue) 10.78%, var(--blue-dark) 120.28%);
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.hero .hero-actions .btn {
    min-height: 56px;
    padding: 16px 32px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.btn:hover,
button.btn:hover,
.lead-form button:hover {
    filter: brightness(1.05);
}

.btn-outline {
    border: 2px solid var(--blue);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn-white {
    background: #fff;
    color: #1e3f6f;
}

.btn-white:hover {
    background: #eef5ff;
}

.section-services {
    background: linear-gradient(180deg, #f2f4f6 0%, #eaedf1 100%);
}

.service-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
}

.pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0078db, #0f5eb1);
    color: #fff;
    font-size: 13px;
}

.service-copy h2 {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 46px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}

.service-cards {
    display: grid;
    gap: 16px;
}

.service-card {
    min-height: 154px;
    border-radius: 14px;
    padding: 26px;
    color: #fff;
    box-shadow: var(--shadow-soft);
    background:
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.48) 0%, transparent 28%),
        radial-gradient(circle at 68% 50%, rgba(255, 255, 255, 0.24) 0%, transparent 36%),
        linear-gradient(120deg, #1b79d5 0%, #034f9f 60%, #08396f 100%);
}

.service-card h3 {
    margin-top: 18px;
    max-width: 320px;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.03;
    text-transform: uppercase;
}

.service-tag {
    display: inline-block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    padding: 5px 14px;
    font-size: 12px;
}

.section-directions {
    background: #eceff3;
}

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

.direction-card {
    border-radius: 10px;
    min-height: 170px;
    overflow: hidden;
    color: #fff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(160deg, rgba(16, 107, 190, 0.86), rgba(6, 60, 113, 0.92)),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
}

.direction-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.direction-card p {
    font-size: 13px;
    opacity: 0.92;
}

.direction-card-2,
.direction-card-5 {
    background:
        linear-gradient(160deg, rgba(11, 103, 186, 0.78), rgba(5, 54, 104, 0.9)),
        url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
}

.direction-card-3,
.direction-card-6 {
    background:
        linear-gradient(160deg, rgba(21, 117, 201, 0.8), rgba(8, 73, 136, 0.9)),
        url("https://images.unsplash.com/photo-1578574577315-3fbeb0cecdc2?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
}

.section-process {
    background: #eef2f6;
}

.process-timeline {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 12px;
    overflow-x: auto;
    cursor: grab;
    padding-bottom: 6px;
}

.process-step {
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.process-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 2px;
    background: #6ab6ff;
    transform: translateX(-50%);
}

.process-step .dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0f74d5;
}

.process-step strong {
    display: block;
    font-size: 12px;
    margin-bottom: 7px;
    color: #1c2e44;
}

.process-step p {
    font-size: 13px;
    color: #394a5d;
}

.process-cta {
    margin-top: 24px;
    text-align: center;
}

.section-cases {
    background: #e9edf2;
}

.slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
}

.case-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(-8.34deg, #0065ca 34.53%, #004080 92.54%);
}

.case-image {
    min-height: 662px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 24px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(5, 34, 63, 0.18), rgba(9, 82, 157, 0.24));
}

.case-chip,
.case-label {
    position: relative;
    z-index: 1;
}

.case-chip {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    border-radius: 40px;
    background: rgba(1, 101, 202, 0.6);
    color: #fff;
    font-size: 16px;
}

.case-label {
    margin: 0;
    max-width: 260px;
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
}

.case-body {
    background: linear-gradient(-8.34deg, #0065ca 34.53%, #004080 92.54%);
    color: #fff;
    padding: 58px 70px 48px 54px;
    min-height: 662px;
}

.case-body span {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
}

.case-caption {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.case-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 18px;
    margin-bottom: 10px;
    padding: 0 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.case-body h3 {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: 60px;
    line-height: 0.93;
    text-transform: uppercase;
}

.case-body p {
    margin-top: 14px;
    font-size: 36px;
    line-height: 1.4;
    opacity: 0.95;
}

.case-body .case-caption + p,
.case-body .case-result + p {
    font-family: var(--font-main);
    font-size: 36px;
    line-height: 1.25;
    max-width: 460px;
}

.slider-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    min-height: 34px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    transform: translateY(-50%);
    background: #e8ebef;
    color: #222f42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    pointer-events: auto;
}

.slider-arrow[data-slide="prev"] {
    left: 8px;
}

.slider-arrow[data-slide="next"] {
    right: 8px;
}

.section-advantages {
    background: #edf1f5;
}

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

.adv-card {
    min-height: 315px;
    border-radius: 12px;
    border: 1px solid #d8e1ea;
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
    box-shadow: 0 8px 20px rgba(20, 34, 52, 0.08);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.adv-icon {
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 138px;
    height: 138px;
    object-fit: contain;
    opacity: 0.42;
    pointer-events: none;
}

.adv-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: #6e8199;
    margin-bottom: 14px;
}

.adv-card h3 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 0.98;
    text-transform: uppercase;
    color: #243549;
    max-width: 80%;
}

.adv-card p {
    margin-top: 12px;
    color: #44576d;
    max-width: 78%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.adv-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.section-trust {
    background: #f1f4f8;
    padding-top: 30px;
    padding-bottom: 34px;
}

.partners-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 26px;
    align-items: center;
    padding-top: 6px;
}

.partner-pill {
    min-height: 72px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 auto;
}

.partner-logo {
    max-height: 46px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-mark {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f3147;
    max-width: 180px;
}

.section-reviews {
    background: #f1f4f8;
    padding-top: 30px;
}

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

.testimonial {
    border-radius: 10px;
    border: 1px solid #d6e0ea;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 32, 51, 0.09);
    padding: 18px 20px 40px;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial.is-hidden {
    display: none;
}

.testimonial-head {
    font-size: 11px;
    line-height: 1.35;
    color: #6a7d95;
    min-height: 30px;
}

.testimonial-company {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #172436;
    margin-top: 8px;
    margin-bottom: 6px;
    width: fit-content;
    letter-spacing: 0.01em;
}

.testimonial-line {
    height: 2px;
    width: 100%;
    background: #2f7fda;
    margin-bottom: 10px;
}

.testimonial p {
    color: #3c4e63;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
}

.testimonial-meta {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #6f839a;
}

.testimonial-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #7fc0ff 0%, #2f7fda 60%, #1f69bf 100%);
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(47, 127, 218, 0.16);
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.show-more-reviews {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 2px;
}

.section-questions {
    background: linear-gradient(90deg, #095fb8, #0f72d0);
    color: #fff;
    padding: 30px 0;
}

.questions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.questions-bar h2 {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
}

.section-faq {
    background: #f4f6f9;
}

.faq-list {
    display: grid;
    gap: 16px;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px;
    background: #fff;
    border: 0;
    font-family: var(--font-main);
    font-size: 19px;
    line-height: 1.1;
    font-weight: 700;
    color: #21272a;
    cursor: pointer;
    position: relative;
    padding-right: 48px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
}

.faq-item.is-open .faq-question::after {
    content: "×";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.16s ease-out, opacity 0.16s ease-out;
    opacity: 0;
    padding: 0 16px;
}

.faq-answer p {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(0, 25, 50, 0.7);
}

.faq-item.is-open .faq-answer {
    max-height: 320px;
    padding-bottom: 14px;
    opacity: 1;
}

.section-about-form {
    position: relative;
    background:
        linear-gradient(180deg, rgba(244, 246, 249, 0.95), rgba(243, 245, 248, 0.95)),
        url("https://images.unsplash.com/photo-1532634993-15f421e42ec0?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 712px;
    gap: 69px;
    align-items: center;
}

.about-copy h2 {
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-copy p {
    color: #36485d;
    max-width: 500px;
    font-size: 18px;
    line-height: 1.3;
}

.about-copy ul {
    margin: 20px 0 0;
    padding-left: 20px;
    color: #2c3f56;
}

.about-copy li + li {
    margin-top: 6px;
}

.about-copy-light h2,
.about-copy-light p,
.about-copy-light li {
    color: #fff;
}

.lead-form {
    border-radius: var(--radius-lg);
    border: 0;
    background: #fff;
    box-shadow: var(--shadow-hard);
    padding: 48px;
    display: grid;
    gap: 16px;
}

.lead-form h3 {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #21272a;
}

.lead-form-subtitle {
    font-size: 17px;
    line-height: 1.4;
    color: #21272a;
    margin-top: -8px;
}

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form label span {
    font-size: 14px;
    color: #21272a;
}

.lead-form input:not([type="checkbox"]),
.lead-form textarea {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-panel);
    border-radius: 0;
    padding: 12px 16px;
    font: inherit;
    color: #21272a;
}

.lead-form input:not([type="checkbox"])::placeholder,
.lead-form textarea::placeholder {
    color: #697077;
    opacity: 1;
}

.lead-form button {
    width: 100%;
    margin-top: 0;
}

.lead-form--simple {
    padding: 32px;
    border-radius: 14px;
}

.lead-form--simple h3 {
    font-size: 36px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #21272a;
    cursor: pointer;
}

.checkbox-row input {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    min-height: 16px;
    flex: 0 0 16px;
    accent-color: var(--blue);
}

.checkbox-row span {
    line-height: 1.3;
}

.form-note {
    font-size: 14px;
    line-height: 1.4;
    color: #21272a;
}

.form-status {
    padding: 9px 11px;
    border-radius: 6px;
    font-size: 13px;
}

.form-status.success {
    color: #22663e;
    background: #dbf2e5;
}

.form-status.error {
    color: #912f2f;
    background: #fde8e8;
}

.site-footer {
    background: #0a58aa;
    color: #dcecff;
    padding: 30px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer strong {
    color: #fff;
}

.site-footer ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.site-footer a {
    color: #eef6ff;
    text-decoration: none;
    font-size: 14px;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
}

.modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, 0.65);
}

.modal-dialog {
    position: relative;
    width: min(760px, calc(100% - 24px));
    margin: 40px auto;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(241, 245, 249, 0.95);
    font-size: 28px;
    line-height: 1;
    color: #5f728a;
    cursor: pointer;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.modal-close:hover {
    background: #e3ebf5;
    color: #304863;
}

.prose {
    border-radius: 12px;
    border: 1px solid #d6dee8;
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.inner-hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0;
}

.inner-hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(6, 14, 26, 0.8) 0%, rgba(6, 14, 26, 0.42) 58%, rgba(6, 14, 26, 0.22) 100%),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.service-hero .inner-hero-backdrop {
    background:
        linear-gradient(95deg, rgba(6, 14, 26, 0.8) 0%, rgba(6, 14, 26, 0.45) 58%, rgba(6, 14, 26, 0.28) 100%),
        url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 110px;
    max-width: 720px;
}

.inner-kicker {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.86);
}

.inner-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.inner-hero-content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
}

.page-light {
    background: #f4f7fa;
}

.page-soft {
    background: #edf1f5;
}

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

.simple-card {
    border-radius: 10px;
    border: 1px solid #d6dde6;
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 18px;
    min-height: 130px;
}

.simple-card-wide {
    min-height: 0;
}

@media (max-width: 1240px) {
    .container {
        width: min(1280px, calc(100% - 24px));
    }

    .service-copy h2 {
        font-size: 38px;
    }

    .lead-form h3 {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .site-header {
        position: sticky;
        background: rgba(12, 20, 35, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .header-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .brand {
        min-height: 0;
    }

    .brand::before {
        display: none;
    }

    .main-nav,
    .header-right {
        justify-content: flex-start;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content h1 {
        font-size: clamp(32px, 8vw, 54px);
    }

    .service-layout,
    .form-grid,
    .case-card {
        grid-template-columns: 1fr;
    }

    .case-image,
    .case-body {
        min-height: 320px;
    }

    .case-label {
        font-size: 34px;
    }

    .case-body h3 {
        font-size: 38px;
    }

    .case-body {
        padding: 28px;
    }

    .case-body p,
    .case-body .case-caption + p,
    .case-body .case-result + p {
        font-size: 22px;
    }

    .direction-grid,
    .advantages-grid,
    .testimonials,
    .simple-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-track {
        gap: 18px;
    }

    .questions-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 52px 0;
    }

    .main-nav {
        gap: 14px;
        flex-wrap: wrap;
    }

    .nav-link,
    .header-right a {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-copy h2 {
        font-size: 30px;
    }

    .hero .hero-actions .btn {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 16px;
    }

    .case-image {
        padding: 16px 20px 20px;
    }

    .case-label {
        font-size: 30px;
    }

    .case-body h3 {
        font-size: 30px;
    }

    .case-caption,
    .case-result {
        font-size: 14px;
    }

    .case-body p,
    .case-body .case-caption + p,
    .case-body .case-result + p {
        font-size: 16px;
    }

    .direction-grid,
    .advantages-grid,
    .testimonials,
    .simple-grid {
        grid-template-columns: 1fr;
    }

    .partners-track {
        gap: 14px;
    }

    .testimonial {
        min-height: 270px;
    }

    .adv-card p,
    .adv-card h3 {
        max-width: 100%;
    }

    .adv-card p {
        opacity: 1;
        transform: none;
    }

    .adv-icon {
        width: 120px;
        height: 120px;
    }

    .lead-form {
        padding: 20px;
    }

    .lead-form h3 {
        font-size: 28px;
    }

    .questions-bar h2 {
        font-size: 30px;
    }
}
