:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --surface-soft-2: #f2f5fa;
    --text: #202733;
    --muted: #586170;
    --line: #d5d9e0;
    --primary: #2a476f;
    --primary-dark: #1f3656;
    --primary-soft: #eaf0fb;
    --white: #ffffff;
    --wrap: 1120px;
    --radius-lg: 10px;
    --radius-md: 8px;
    --radius-sm: 5px;
    --reveal-duration: 560ms;
    --reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    font-size: 15px;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

section {
    padding: 38px 0;
}

h1, h2, h3, h4 {
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, 2.7vw, 2.1rem);
}

p {
    color: var(--muted);
}

.section-head {
    max-width: 760px;
    margin-bottom: 18px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.section-kicker--tab {
    background: #e8ebf2;
    color: #22406f;
    padding: 6px 12px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

.section-kicker--light {
    color: rgba(255, 255, 255, 0.86);
}

.btn {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.2s ease;
    cursor: pointer;
}

.btn--solid {
    background: var(--primary);
    color: #fff;
}

.btn--solid:hover {
    background: var(--primary-dark);
}

.btn--light {
    background: #fff;
    color: var(--primary-dark);
}

.btn--light:hover {
    background: #f6f8fc;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #e6edf8;
}

.topbar__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
}

.brand img {
    height: 85px;
    width: auto;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a3550;
}

.nav a:hover {
    color: var(--primary);
}

.nav__btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff !important;
}

.nav__btn:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #cfd7e4;
    border-radius: 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #2a3550;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding-top: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.hero__box {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 0;
    min-height: clamp(380px, 44vw, 520px);
    border-radius: 6px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(34, 66, 110, 0.92) 0%, rgba(52, 81, 139, 0.82) 55%, rgba(52, 81, 139, 0.35) 100%),
        url("./obrazy/S1.png") center / cover no-repeat;
}

.hero__content {
    max-width: 660px;
    padding: 42px 38px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-bottom: 14px;
    color: #fff;
}

.hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255,255,255,0.96);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero__points span::before {
    content: "? ";
}

.hero__media {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.intro {
    background: linear-gradient(180deg, #f5f8fd 0%, #ffffff 100%);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 26px;
    align-items: center;
}

.intro__text h2 {
    margin-top: 10px;
    margin-bottom: 14px;
}

.intro__lead {
    font-size: 1rem;
    font-weight: 500;
}

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

.intro__list {
    margin-top: 12px;
    padding-left: 18px;
    display: grid;
    gap: 4px;
    font-size: 0.92rem;
}

.intro__list li {
    color: #3c4a60;
}

.intro__image img {
    width: 100%;
    border-radius: 8px;
}

.offer {
    padding-top: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 20%, #f3f6fb 80%, #f6f8fc 100%);
}

.offer-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 22px;
}

.offer-panel {
    position: relative;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    transition: transform 260ms ease;
}

.offer-panel__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 30, 53, 0.28), rgba(16, 30, 53, 0.62));
}

.offer-panel h3 {
    position: absolute;
    inset: auto 18px 18px 18px;
    color: #fff;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    z-index: 2;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.offer-copy {
    background: transparent;
    border: none;
    padding: 6px 0;
}

.offer-copy h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #2a3344;
}

.offer-copy p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 12px;
}

.offer-copy ul {
    margin: 0 0 12px 16px;
    display: grid;
    gap: 5px;
}

.offer-copy li {
    color: #3f4a5d;
}

.process {
    background: linear-gradient(180deg, #eef3fa 0%, #f7f9fd 100%);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.step {
    background: transparent;
    border: 1px solid #e2e7f1;
    border-radius: 8px;
    padding: 14px;
}

.step span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    background: #eef2f9;
    color: var(--primary-dark);
    border: 1px solid #d7e1f2;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.step p {
    font-size: 0.88rem;
}

.before-after {
    padding-top: 20px;
    background: linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.before-after__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ba-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #d7deea;
}

.ba-card span {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    background: rgba(15, 33, 63, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 8px;
    border-radius: 4px;
}

.ba-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.showcase {
    background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 12px;
}

.shot {
    border-radius: 4px;
    overflow: hidden;
}

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

.shot--tall {
    height: 420px;
}

.shot:not(.shot--tall) {
    height: 340px;
}

.service-highlight {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-highlight__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.service-highlight__media img {
    width: 100%;
    border-radius: 8px;
}

.service-highlight__copy h2 {
    margin-bottom: 12px;
}

.service-highlight__copy p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.reviews {
    background: #f6f8fc;
    padding: 40px 0;
}

.faq {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.contact {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.faq__grid,
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

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

.faq__list details {
    background: #fff;
    border: 1px solid #e1e6ef;
    border-radius: 4px;
    padding: 10px 12px;
}

.faq__list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq__list p {
    margin-top: 8px;
    font-size: 0.92rem;
}

.contact__intro {
    max-width: 760px;
}

.form {
    background: #ffffff;
    border: 1px solid #dfe5ef;
    border-radius: 6px;
    padding: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fbfcfe;
    padding: 11px 12px;
    font-size: 0.92rem;
}

.form textarea {
    min-height: 122px;
    resize: vertical;
    margin-bottom: 10px;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.check input {
    width: auto;
    margin-top: 3px;
}

.site-footer {
    margin-top: 8px;
    background: linear-gradient(180deg, #4c678e 0%, #3e5578 55%, #344a6a 100%);
    color: #eef4ff;
}

.site-footer__main {
    padding: 34px 0 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.site-footer__col {
    display: grid;
    gap: 8px;
    align-content: start;
}

.site-footer__logo {
    height: 52px;
    width: auto;
    margin-bottom: 6px;
}

.site-footer__label {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d2ddf2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__link {
    color: #f0f6ff;
    font-weight: 600;
}

.site-footer__link:hover {
    color: #ffffff;
}

.site-footer__text {
    color: #e2ebfb;
    font-size: 0.94rem;
}

.site-footer__col--nav {
    justify-self: stretch;
    min-width: 0;
    align-content: start;
}

.site-footer__col--nav h3 {
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.site-footer__col--nav a {
    color: #e8f0ff;
    font-size: 0.96rem;
    padding: 2px 0;
}

.site-footer__col--nav a:hover {
    color: #ffffff;
}

.site-footer__bottom {
    background: rgba(13, 24, 44, 0.22);
    border-top: 1px solid rgba(214, 228, 252, 0.24);
}

.site-footer__bottom .wrap {
    padding: 10px 0;
}

.site-footer__bottom p {
    font-size: 0.82rem;
    color: #edf4ff;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process__grid .step.reveal {
    transform: translateY(20px) scale(0.97);
}

.process__grid .step:nth-child(1) {
    --reveal-delay: 80ms;
}

.process__grid .step:nth-child(2) {
    --reveal-delay: 180ms;
}

.process__grid .step:nth-child(3) {
    --reveal-delay: 280ms;
}

.process__grid .step:nth-child(4) {
    --reveal-delay: 380ms;
}

@media (max-width: 1024px) {
    .hero__box,
    .intro__grid,
    .service-highlight__grid,
    .offer-content,
    .before-after__grid,
    .faq__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .topbar__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: auto;
        padding: 10px 0;
        justify-items: center;
    }

    .brand {
        justify-self: center;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        width: 100%;
    }

    .offer-panels,
    .showcase__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .shot--tall,
    .shot:not(.shot--tall) {
        height: 320px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .site-footer__col--nav {
        justify-self: center;
    }

    .site-footer__col {
        justify-items: center;
    }

    .site-footer__col--nav a,
    .site-footer__text,
    .site-footer__label,
    .site-footer__link {
        text-align: center;
    }
}

@media (max-width: 680px) {
    section {
        padding: 32px 0;
    }

    .wrap {
        width: min(calc(100% - 22px), var(--wrap));
    }

    .hero__content {
        padding: 28px 20px;
    }

    .hero__media {
        height: 230px;
    }

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

    .process__grid,
    .showcase__grid,
    .offer-panels {
        grid-template-columns: 1fr;
    }

    .form__row {
        flex-direction: column;
        gap: 12px;
    }

    .offer-panel {
        min-height: 180px;
    }

    .ba-card img {
        height: 220px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero__actions,
    .hero__points {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.hero__points span::before {
    content: "? ";
    color: #ffffff;
    margin-right: 4px;
}

.before-after {
    padding-top: 20px;
    background: linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.ba-slider {
    max-width: 980px;
    margin: 0 auto;
}

.ba-slider__stage {
    position: relative;
    min-height: 420px;
}

.ba-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 500ms ease, transform 500ms ease, visibility 500ms ease;
}

.ba-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.ba-slide__image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #d7deea;
    background: #fff;
}

.ba-slide__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ba-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    background: rgba(15, 33, 63, 0.84);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
}

.ba-badge--after {
    background: rgba(42, 71, 111, 0.92);
}

.ba-slider__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.ba-slider__btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #bcc8db;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ba-slider__btn:hover {
    transform: scale(1.1);
}

.ba-slider__btn.is-active {
    background: var(--primary);
}

@media (max-width: 900px) {
    .ba-slider__stage {
        min-height: auto;
    }

    .ba-slide {
        grid-template-columns: 1fr;
    }

    .ba-slide__image img {
        height: 260px;
    }
}
.contact__video {
    width: 100%;
    max-width: 250px;
    margin-top: 16px;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact__video iframe {
    width: 100%;
    height: 100%;
}

.form {
    max-width: 800px;
    margin: 0 auto;
}

.form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
}

.form textarea {
    min-height: 120px;
    resize: vertical;
    display: block;
    margin-bottom: 15px;
}

.form select {
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

.form input:focus, 
.form textarea:focus, 
.form select:focus {
    border-color: #2c4a73;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    cursor: pointer;
}

.submit-btn {
    background-color: #2c4a73;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #1e3350;
}

.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #5d7596 0%, #506887 100%);
    color: #eef4ff;
    width: 100%;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__top {
    padding: 40px 0 20px;
    text-align: center;
}

.site-footer__logo {
    height: 60px;
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

.site-footer__main {
    padding: 20px 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.site-footer__left,
.site-footer__right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.site-footer__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d7e2f4;
    margin-bottom: 4px;
}

.site-footer__title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.site-footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.site-footer__text {
    color: #edf3ff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav a {
    color: #edf3ff;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-footer__nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom .wrap {
    padding: 15px 0;
}

.site-footer__bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: #f3f7ff;
    margin: 0;
}

@media (max-width: 600px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer__nav {
        align-items: center;
    }
}

.service-highlight {
    padding: 48px 0 30px;
}

.service-highlight__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.service-highlight__media {
    width: min(100%, 540px);
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    margin-inline: auto;
    align-self: start;
    margin-top: 12px;
}

.service-highlight__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-highlight__copy {
    display: grid;
    gap: 14px;
}

.service-highlight__copy h2 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.service-highlight__copy p {
    font-size: 0.98rem;
    line-height: 1.55;
}

.service-highlight__list {
    display: grid;
    gap: 6px;
    font-size: 0.95rem;
    margin: 6px 0;
}

.service-highlight__list li {
    list-style: none;
}

@media (max-width: 900px) {
    .service-highlight__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-highlight__media {
        order: -1;
        width: min(100%, 420px);
        aspect-ratio: 4 / 5;
        margin-top: 6px;
    }
}

@media (max-width: 900px) {
    .topbar__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        min-height: 70px;
        gap: 10px;
    }

    .brand img {
        height: 64px;
    }

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

    .nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin: 6px 0 12px;
        padding: 10px;
        border: 1px solid #e2e8f2;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(24, 39, 61, 0.09);
        gap: 6px;
    }

    .nav.is-open {
        display: grid;
    }

    .nav a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .nav a:hover {
        background: #f3f6fb;
    }

    .nav__btn {
        text-align: center;
        margin-top: 4px;
    }
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.contact__intro {
    max-width: none;
}

.contact__visual {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dfe5ef;
    background: #fff;
    box-shadow: 0 10px 26px rgba(18, 37, 63, 0.08);
    position: static;
    margin-top: 0;
    height: 100%;
    display: flex;
}

.contact__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__visual {
        position: static;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }
}

.process__grid {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    max-width: 1020px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 1024px) {
    .process__grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .process__grid {
        max-width: 420px;
        grid-template-columns: 1fr;
    }
}
