/* БАЗА */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-main: #070c12;
    --bg-dark: #111822;
    --bg-card-dark: #141a22;
    --bg-light: #f5f1ea;
    --accent: #3fa6c8;
    --accent-soft: #2e7e9d;
    --accent-warm: #c8b38c;
    --text-main: #f7f7f7;
    --text-muted: #aeb7c4;
    --text-dark: #222831;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* ОБЩИЕ КОНТЕЙНЕРЫ */

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-dark {
    color: var(--text-main);
}

/* ФОНЫ СЕКЦИЙ */

.section-bg-about {
    background-image:
        linear-gradient(180deg, rgba(245, 241, 234, 0.35), rgba(245, 241, 234, 0.5)),
        url("img/about-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-services {
    background-image:
        linear-gradient(180deg, rgba(245, 241, 234, 0.35), rgba(245, 241, 234, 0.5)),
        url("img/services-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-process {
    background-image:
        linear-gradient(180deg, rgba(7, 12, 18, 0.45), rgba(7, 12, 18, 0.7)),
        url("img/process-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-reasons {
    background-image:
        linear-gradient(180deg, rgba(7, 12, 18, 0.7), rgba(7, 12, 18, 0.95)),
        url("img/reasons-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-banks {
    background-image: url("img/banks-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-reviews {
    background-image:
        linear-gradient(180deg, rgba(7, 12, 18, 0.5), rgba(7, 12, 18, 0.8)),
        url("img/reviews-bg.jpg");
    background-size: cover;
    background-position: center;
}

.section-bg-contact {
    background-image:
        linear-gradient(180deg, rgba(245, 241, 234, 0.35), rgba(245, 241, 234, 0.55)),
        url("img/contact-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* ШАПКА */

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 12, 18, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 96px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 26px;
    font-size: 16px;
    margin-left: auto;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding: 8px 0 6px;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-warm);
    transition: width 0.2s ease;
}

.nav a:hover {
    color: #ffffff;
}

.nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    position: relative;
    padding: 120px 0 130px;
    background-image:
        linear-gradient(120deg, rgba(7, 12, 18, 0.3), rgba(7, 12, 18, 0.65)),
        url("img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 360px;
}

.hero-text {
    max-width: 700px;
}

.hero h1 {
    font-family: "Oswald", "Montserrat", system-ui, sans-serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 540px;
}

/* КНОПКИ / ССЫЛКИ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease, color 0.15s ease;
}

.hero-actions {
    margin-top: 28px;
}

.btn-hero {
    background: transparent;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent-warm);
    transition: width 0.2s ease;
}

.btn-hero:hover {
    color: #ffffff;
}

.btn-hero:hover::after {
    width: 100%;
}

.section-light .btn-hero {
    color: var(--text-dark);
}

.section-light .btn-hero:hover {
    color: var(--text-dark);
}

.section-light .btn-hero::after {
    background: var(--accent-warm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.btn-block {
    width: 100%;
}

/* СТРИП СО СТАТИСТИКОЙ */

.strip {
    background: radial-gradient(circle at left, #263245 0, #070c12 55%);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* анимированный текст */

.strip-text {
    font-size: 14px;
    max-width: 430px;
    color: #f5eee0;
    letter-spacing: 0.04em;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4), 0 0 12px rgba(0, 0, 0, 0.65);
    animation: stripGlow 6s ease-in-out infinite;
}

@keyframes stripGlow {
    0%, 100% {
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.65);
    }
    50% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 18px rgba(0, 0, 0, 0.9);
    }
}

.strip-stats {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.strip-stat {
    display: flex;
    flex-direction: column;
}

.strip-value {
    font-size: 20px;
    font-weight: 600;
}

.strip-label {
    font-size: 13px;
    color: #f5eee0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* КАРТОЧКИ В ЛИНИЮ */

.about-cards,
.reasons-grid,
.steps,
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 10px;
    overflow: visible;
}

.about-card,
.reason-item,
.step,
.review-card {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 240px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* волна */

.about-cards > *:nth-child(odd),
.reasons-grid > *:nth-child(odd),
.steps > *:nth-child(odd),
.reviews-grid > *:nth-child(odd) {
    transform: translateY(-16px);
}

.about-cards > *:nth-child(even),
.reasons-grid > *:nth-child(even),
.steps > *:nth-child(even),
.reviews-grid > *:nth-child(even) {
    transform: translateY(16px);
}

.about-card:hover,
.reason-item:hover,
.step:hover,
.review-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* О КОМПАНИИ */

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 32px;
}

.about-inner p {
    font-size: 14px;
    margin-bottom: 12px;
}

/* карточки О компании */

.about-card {
    padding: 22px 20px 22px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    color: #f9fafb;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 18, 0.35), rgba(5, 10, 18, 0.85));
    mix-blend-mode: multiply;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.about-card:hover::before {
    opacity: 0.6;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.about-card p {
    font-size: 13px;
    color: #e5e7eb;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

/* левый текстовый блок */

.about-text {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.section-bg-about .about-text h2,
.section-bg-about .about-text p {
    color: #111827;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.95),
        0 0 14px rgba(0, 0, 0, 0.25);
}

/* ПОЧЕМУ ВЫБИРАЮТ */

.section-bg-reasons h2 {
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

.reason-item {
    padding: 22px 18px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    border-radius: 0;
    border: 1px solid rgba(63, 166, 200, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.reason-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(15, 28, 48, 0.35), transparent 55%),
        linear-gradient(to bottom, rgba(6, 12, 20, 0.85), rgba(6, 12, 20, 0.95));
    mix-blend-mode: multiply;
    opacity: 0.1;
    transition: opacity 0.25s ease;
}

.reason-item::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 16px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: rgba(200, 179, 140, 0.95);
}

.reason-item span,
.reason-item strong,
.reason-item {
    position: relative;
    z-index: 1;
    text-shadow:
        0 0 3px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.95);
}

/* hover */

.reason-item:hover {
    transform: translateY(-22px) scale(1.03);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
    border-color: rgba(200, 179, 140, 0.85);
}

.reason-item:hover::before {
    opacity: 0.65;
}

/* УСЛУГИ */

.services-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background-size: cover;
    background-position: center;
    padding: 22px 20px 24px;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 12, 18, 0.2), rgba(7, 12, 18, 0.85));
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card h3::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 999px;
    margin-top: 8px;
    background: rgba(200, 179, 140, 0.9);
}

.service-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* CTA */

.services-cta {
    grid-column: 2 / span 2;
    grid-row: 3;
    justify-self: flex-start;
    align-self: flex-start;
    max-width: 520px;
    font-size: 28px;
    line-height: 1.7;
    text-align: left;
    text-transform: none;
    letter-spacing: 0.01em;
}

/* ЭТАПЫ РАБОТЫ */

.section-bg-process.section {
    color: var(--text-main);
}

.steps {
    position: relative;
}

.steps::before {
    content: "";
    display: none;
}

.step {
    padding: 26px 20px 22px;
    border: 1px solid rgba(63, 166, 200, 0.22);
    font-size: 13px;
    position: relative;
    overflow: hidden;
    color: #f9fafb;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 12, 18, 0.25), rgba(7, 12, 18, 0.82));
}

.step > * {
    position: relative;
    z-index: 1;
}

.step::after {
    content: attr(data-step);
    position: absolute;
    top: -6px;
    right: 10px;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: rgba(63, 166, 200, 0.12);
    pointer-events: none;
}

.step h3 {
    font-size: 15px;
    margin-bottom: 10px;
    max-width: 75%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step h3::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    margin-top: 6px;
    background: rgba(200, 179, 140, 0.9);
}

/* БАНКИ */

.banks-subtitle {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
}

.banks-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.bank-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    box-shadow: none;
}

.bank-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 4px;
}

.bank-card span {
    display: block;
    font-size: 13px;
    color: #111827;
}

/* ОТЗЫВЫ */

.review-card {
    padding: 22px 20px 22px;
    border: 1px solid rgba(63, 166, 200, 0.22);
    position: relative;
    overflow: hidden;
    color: #f9fafb;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 12, 18, 0.88), rgba(7, 12, 18, 0.25));
}

.review-card > * {
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 13px;
    color: rgba(249, 250, 251, 0.9);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.review-author {
    font-size: 13px;
    color: #f5e1b5;
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* КОНТАКТЫ */

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
    gap: 48px;
    align-items: stretch;
}

/* Левая колонка: карточка эксперта */

.contact-owner {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.contact-owner-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    background: rgba(245, 241, 234, 0.96);
    padding: 18px 20px 20px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* рамка с фото во всю высоту карточки, без белого фона */

.contact-owner-frame {
    position: relative;
    flex: 1 1 auto;
    margin-bottom: 12px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.contact-owner-photo-tilt {
    flex: 1 1 auto;
    transform: none;
    transform-origin: center center;
}

.contact-owner-frame img,
.contact-owner-photo,
.contact-owner-photo-tilt img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* подпись под фото */

.contact-owner-text {
    margin-top: 4px;
}

.contact-owner-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.75),
        0 0 10px rgba(0, 0, 0, 0.9);
}

/* если используются name/role — спокойный стиль без лишнего декора */

.contact-owner-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.75),
        0 0 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 2px;
    position: static;
    padding-bottom: 0;
}

.contact-owner-name::after {
    display: none;
}

.contact-owner-role {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.75),
        0 0 10px rgba(0, 0, 0, 0.9);
}

/* Правая панель с формой */

.contact-panel {
    background: rgba(245, 241, 234, 0.96);
    color: #111827;
    padding: 24px 26px 26px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.contact-panel h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-lead {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
}

.contact-panel .contact-list {
    list-style: none;
    font-size: 13px;
    margin-bottom: 18px;
    padding-left: 0;
    color: #374151;
}

.contact-panel .contact-list li + li {
    margin-top: 4px;
}

/* форма внутри панели */

.contact-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #374151;
}

/* поля формы */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 13px;
    color: #111827;
    resize: vertical;
}

.contact-panel .form-group label {
    color: #374151;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    color: #111827;
}

.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(63, 166, 200, 0.35);
}

/* Кнопка отправки */

.contact-panel .btn-primary {
    background: linear-gradient(135deg, #f5eee0, #c8b38c);
    color: #111827;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.contact-panel .btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #e8d7b5, #b79e6f);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.form-note {
    margin-top: 8px;
    font-size: 11px;
    color: #6b7280;
}

/* ПОДВАЛ */

.footer {
    background: #05070b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 0 18px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* ФОНОВЫЕ КАРТИНКИ КАРТОЧЕК */

/* О компании */
.about-card-1 {
    background-image: url("img/about-card-1.jpg");
}

.about-card-2 {
    background-image: url("img/about-card-2.jpg");
}

.about-card-3 {
    background-image: url("img/about-card-3.jpg");
}

/* Почему выбирают */
.reason-1 {
    background-image: url("img/reason-1.jpg");
}

.reason-2 {
    background-image: url("img/reason-2.jpg");
}

.reason-3 {
    background-image: url("img/reason-3.jpg");
}

.reason-4 {
    background-image: url("img/reason-4.jpg");
}

.reason-5 {
    background-image: url("img/reason-5.jpg");
}

.reason-6 {
    background-image: url("img/reason-6.jpg");
}

/* Услуги */
.service-consumer {
    background-image: url("img/service-consumer.jpg");
}

.service-cards {
    background-image: url("img/service-cards.jpg");
}

.service-auto {
    background-image: url("img/service-auto.jpg");
}

.service-mortgage {
    background-image: url("img/service-mortgage.jpg");
}

.service-refinance {
    background-image: url("img/service-refinance.jpg");
}

.service-business {
    background-image: url("img/service-business.jpg");
}

.service-collateral {
    background-image: url("img/service-collateral.jpg");
}

.service-investors {
    background-image: url("img/service-investors.jpg");
}

.service-support {
    background-image: url("img/service-support.jpg");
}

/* Этапы работы */
.step-1 {
    background-image: url("img/step-1.jpg");
}

.step-2 {
    background-image: url("img/step-2.jpg");
}

.step-3 {
    background-image: url("img/step-3.jpg");
}

.step-4 {
    background-image: url("img/step-4.jpg");
}

.step-5 {
    background-image: url("img/step-5.jpg");
}

.step-6 {
    background-image: url("img/step-6.jpg");
}

/* Отзывы */
.review-1 {
    background-image: url("img/review-1.jpg");
}

.review-2 {
    background-image: url("img/review-2.jpg");
}

.review-3 {
    background-image: url("img/review-3.jpg");
}

.review-4 {
    background-image: url("img/review-4.jpg");
}

.review-5 {
    background-image: url("img/review-5.jpg");
}

/* АДАПТИВ */

@media (max-width: 960px) {
    .hero {
        padding: 90px 0 100px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: 0.1em;
    }

    .hero-inner {
        min-height: auto;
    }

    .strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-cta {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .step::after {
        font-size: 56px;
        top: -6px;
        right: 8px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-panel {
        padding: 20px 18px 22px;
    }

    .contact-owner {
        justify-content: flex-start;
    }

    .contact-owner-card {
        max-width: 340px;
    }
}

@media (max-width: 720px) {
    .header-inner {
        justify-content: space-between;
    }

    .nav {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 80px 0 90px;
    }

    .strip {
        padding: 18px 0;
    }

    .strip-stats {
        gap: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-cards,
    .reasons-grid,
    .steps,
    .reviews-grid {
        flex-wrap: wrap;
    }

    .about-card,
    .reason-item,
    .step,
    .review-card {
        flex: 1 1 100%;
        min-width: 100%;
        transform: none !important;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        grid-column: 1 / -1;
        font-size: 15px;
    }

    .step::after {
        font-size: 48px;
        top: -4px;
        right: 6px;
    }

    .contact-inner {
        gap: 24px;
    }

    .contact-panel h2 {
        font-size: 24px;
    }
}
/* ==== Точечная правка подписи под фото Василия ==== */

.contact-owner-name {
    font-size: 22px;              /* имя крупнее */
    font-weight: 700;
    color: var(--accent);         /* цвет как у кнопки "Отправить заявку" */
}

.contact-owner-role {
    margin-top: 6px;
    font-size: 15px;              /* должность тоже чуть крупнее */
    font-weight: 500;
    color: var(--accent);         /* тот же цвет, что и у имени */
}
/* === Подпись под фото Василия: цвета как у кнопки === */

.contact-owner-text {
    margin-top: 8px;
}

/* Имя и фамилия — тёплый бежево-бронзовый как у кнопки */
.contact-owner-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-warm);      /* тот же цвет, что и тёплая кнопка */
    text-shadow: none;
}

/* Должность — чуть темнее/спокойнее, но в той же гамме */
.contact-owner-role {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #9b8258;                 /* чуть более тёмный тёплый оттенок */
    text-shadow: none;
}

/* Дополнительное описание */
.contact-owner-desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;                 /* спокойный тёмно-серый, хорошо читается */
}
/* === Правка подписи под фото Василия === */

/* центрируем подпись относительно фото */
.contact-owner-overlay,
.contact-owner-text {
    text-align: center;
}

/* Имя и фамилия: чёрный текст + бежево-бронзовая тень по контуру */
.contact-owner-name {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    text-shadow:
        0 0 3px rgba(200, 179, 140, 0.9),
        0 0 6px rgba(200, 179, 140, 0.7);
    margin-bottom: 4px;
}

/* Должность — наоборот: тёплый бежево-бронзовый текст + лёгкая тёмная тень */
.contact-owner-role {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent-warm); /* тот же тёплый цвет, что и у кнопки */
    text-shadow:
        0 0 3px rgba(0, 0, 0, 0.15),
        0 0 6px rgba(0, 0, 0, 0.2);
}
/* === Мягкая правка подписи под фото Василия === */

/* оставляем выравнивание по центру */
.contact-owner-overlay,
.contact-owner-text {
    text-align: center;
}

/* Имя и фамилия — тёмно-серый, без контура и лишней тени */
.contact-owner-name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2933;        /* не черный, а мягкий тёмно-серый */
    text-shadow: none;     /* убираем "свечение" */
    margin-bottom: 4px;
}

/* Должность — тёплый цвет как у кнопки, без размытости */
.contact-owner-role {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent-warm);  /* тот же бежево-бронзовый */
    text-shadow: none;          /* убираем размытую тень */
}
/* === Улучшение читабельности карточки "Связаться с Aurex" === */

/* общий цвет текста по-насыщеннее */
.contact-panel {
    color: #1f2933; /* тёмный серый вместо бледного */
    font-size: 14px;
}

/* заголовок — чуть крупнее и плотнее */
.contact-panel h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

/* подзаголовок под заголовком */
.contact-lead {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
}

/* контакты */
.contact-panel .contact-list {
    font-size: 14px;
    color: #111827;
    line-height: 1.7;
}

/* подписи к полям формы */
.contact-panel .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* сами поля — текст чуть крупнее и плотнее */
.contact-panel input,
.contact-panel select,
.contact-panel textarea {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

/* плейсхолдеры по-контрастнее, но всё ещё светлее основного текста */
.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
    color: #9ca3af;
}

/* кнопка — текст поувереннее */
.contact-panel .btn-primary {
    font-weight: 700;
}

/* подпись под кнопкой */
.contact-panel .form-note {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}
