/* =====================================================
   ООО "Спектр" — Лендинг
   Строгий профессиональный дизайн
   ===================================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1C1C1C;
    background-color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--gold {
    background: #C8A84E;
    color: #0B1D3A;
}

.btn--gold:hover {
    background: #B8942E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 78, 0.35);
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 100px 0;
}

.section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #0B1D3A;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C8A84E;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* =====================================================
   БЛОК 1: HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #07152C;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(7, 21, 44, 0.98) 0%, rgba(7, 21, 44, 0.92) 38%, rgba(12, 39, 77, 0.7) 100%),
        radial-gradient(ellipse 70% 48% at 92% 18%, rgba(242, 120, 48, 0.2) 0%, transparent 62%),
        radial-gradient(ellipse 55% 52% at 8% 82%, rgba(200, 168, 78, 0.16) 0%, transparent 64%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px);
    pointer-events: none;
}

.hero::before {
    content: 'SPECTR';
    position: absolute;
    right: -4vw;
    bottom: 4vh;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 17vw, 15rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 70px;
    right: -18vw;
    width: 52vw;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.42), rgba(242, 120, 48, 0.14));
    clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
    opacity: 0.52;
    pointer-events: none;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 29, 58, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
    transition: background 0.3s ease;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.nav__logo-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #C8A84E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav__logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.nav__logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 3px;
    transition: color 0.25s ease;
}

.nav__brand:hover .nav__logo-text {
    color: #C8A84E;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C8A84E;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #FFFFFF;
}

.nav__link:hover::after {
    width: 100%;
}

/* Nav Toggle (burger) */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero content */
.hero__content {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 34px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 128px 24px 72px;
}

.hero__text {
    max-width: 760px;
    position: relative;
    z-index: 3;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.075em;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero__title span {
    display: block;
}

.hero__title-accent {
    display: inline-block;
    width: fit-content;
    margin-top: 10px;
    padding: 10px 16px 12px;
    background: linear-gradient(90deg, #C8A84E 0%, #F27830 100%);
    color: #07152C;
    font-size: 0.34em;
    letter-spacing: 0.04em;
    line-height: 1;
    transform: rotate(-1.5deg);
    box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.08);
}

.hero__subtitle {
    position: relative;
    max-width: 600px;
    padding-left: 22px;
    border-left: 3px solid #C8A84E;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 26px;
    line-height: 1.7;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hero__features span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero__link {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.hero__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #C8A84E;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.hero__link:hover::after {
    transform: scaleX(1);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 620px;
    margin-top: 42px;
    border: 1px solid rgba(200, 168, 78, 0.24);
    background: rgba(200, 168, 78, 0.24);
}

.hero__stats div {
    padding: 18px 18px 16px;
    background: rgba(7, 21, 44, 0.78);
}

.hero__stats strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1;
    color: #E8D5A0;
    margin-bottom: 8px;
}

.hero__stats span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.66);
}

.hero__visual {
    position: relative;
    min-height: 560px;
    isolation: isolate;
    transform: translateX(22px);
}

.hero__visual::before {
    content: '';
    position: absolute;
    inset: 38px 0 22px 42px;
    z-index: -2;
    border: 1px solid rgba(200, 168, 78, 0.38);
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.18), rgba(242, 120, 48, 0.04));
    transform: rotate(4deg);
    pointer-events: none;
}

.hero__visual::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 18px;
    width: 36%;
    height: 86%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(200, 168, 78, 0.9), rgba(242, 120, 48, 0.7));
    clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
    pointer-events: none;
}

.hero__image-frame {
    position: absolute;
    inset: 42px 18px 44px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(8, 22, 45, 0.92), rgba(12, 39, 77, 0.72));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    transform: rotate(-2.4deg);
    overflow: visible;
}

.hero__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.96) contrast(1.05);
}

.hero__visual-card {
    position: absolute;
    left: 0;
    bottom: 24px;
    z-index: 2;
    max-width: 220px;
    padding: 18px 20px;
    border: 1px solid rgba(200, 168, 78, 0.38);
    background: rgba(7, 21, 44, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transform: translateX(-24px);
}

.hero__visual-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    color: #E8D5A0;
    line-height: 1;
    margin-bottom: 6px;
}

.hero__visual-card span {
    display: block;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

/* =====================================================
   БЛОК 2: О КОМПАНИИ
   ===================================================== */
.about {
    background: #FFFFFF;
}

.about__text {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.8;
}

.about__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.about__card {
    background: #F5F6FA;
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    border: 1px solid #E8EAF0;
    transition: all 0.4s ease;
    cursor: default;
}

.about__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(11, 29, 58, 0.1);
    border-color: #C8A84E;
}

.about__icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.1);
    transition: background 0.3s ease;
}

.about__card:hover .about__icon {
    background: rgba(200, 168, 78, 0.18);
}

.about__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0B1D3A;
    margin-bottom: 12px;
}

.about__card-text {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.7;
}

/* =====================================================
   БЛОК 3: НАПРАВЛЕНИЯ
   ===================================================== */
.directions {
    background: #F5F6FA;
}

.directions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.direction-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #E8EAF0;
    transition: all 0.4s ease;
    cursor: default;
}

.direction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(11, 29, 58, 0.1);
    border-color: #C8A84E;
}

.direction-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.1);
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.direction-card:hover .direction-card__icon {
    background: rgba(200, 168, 78, 0.18);
}

.direction-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0B1D3A;
    margin-bottom: 12px;
}

.direction-card__text {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

/* =====================================================
   БЛОК 4: ОБРАТНАЯ СВЯЗЬ
   ===================================================== */
.contact {
    background: #FFFFFF;
}

.contact__text {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.05rem;
    color: #6B7280;
}

.contact__form {
    max-width: 540px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1C1C1C;
    background: #F5F6FA;
    border: 1.5px solid #E8EAF0;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input::placeholder {
    color: #9CA3AF;
}

.form__input:focus {
    border-color: #C8A84E;
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.15);
}

.form__input--error {
    border-color: #DC2626;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__submit {
    width: 100%;
    font-size: 1rem;
    padding: 16px 36px;
    margin-top: 4px;
}

.form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form__status {
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 28px;
}

.form__status--success {
    color: #059669;
}

.form__status--error {
    color: #DC2626;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* =====================================================
   БЛОК 5: ФУТЕР / РЕКВИЗИТЫ
   ===================================================== */
.footer {
    background: #0B1D3A;
    color: rgba(255, 255, 255, 0.85);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.8fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #C8A84E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.footer__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #C8A84E;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer__text strong {
    color: rgba(255, 255, 255, 0.9);
}

.footer__phone {
    margin-bottom: 8px;
}

.footer__phone a,
.footer__email a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__phone a:hover,
.footer__email a:hover {
    color: #C8A84E;
}

.footer__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.footer__table td {
    padding: 5px 8px 5px 0;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.7);
}

.footer__table td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    width: 1%;
    padding-right: 16px;
}

.footer__ogrn-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ (SCROLL REVEAL)
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delays for cards */
.about__card:nth-child(1).visible { transition-delay: 0.1s; }
.about__card:nth-child(2).visible { transition-delay: 0.2s; }

.direction-card:nth-child(1).visible { transition-delay: 0.05s; }
.direction-card:nth-child(2).visible { transition-delay: 0.12s; }
.direction-card:nth-child(3).visible { transition-delay: 0.19s; }
.direction-card:nth-child(4).visible { transition-delay: 0.26s; }

/* =====================================================
   АДАПТИВНОСТЬ
   ===================================================== */

/* Laptop 992+ */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }

    .hero::after {
        right: -34vw;
        width: 72vw;
        opacity: 0.34;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 124px 24px 76px;
    }

    .hero__text {
        max-width: 820px;
    }

    .hero__title {
        font-size: clamp(3rem, 10vw, 5.4rem);
    }

    .hero__visual {
        min-height: 460px;
        transform: none;
    }

    .hero__image-frame {
        inset: 30px 12px 36px;
    }

    .section {
        padding: 80px 0;
    }

    .section__title {
        font-size: 1.8rem;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer__col--wide {
        grid-column: 1 / -1;
    }
}

/* Tablet 768+ */
@media (max-width: 768px) {
    .hero__content {
        padding: 112px 24px 64px;
    }

    .hero__title {
        font-size: clamp(2.5rem, 12vw, 4.3rem);
        letter-spacing: -0.065em;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__title-accent {
        padding: 8px 12px 10px;
        font-size: 0.36em;
    }

    .hero__features {
        margin-bottom: 28px;
    }

    .hero__actions {
        gap: 18px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-top: 32px;
    }

    .hero__visual {
        min-height: 360px;
    }

    .hero__image-frame {
        inset: 24px 0 30px;
        padding: 12px;
        transform: rotate(-1.2deg);
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    /* Mobile nav */
    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(11, 29, 58, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-bottom: 1px solid rgba(200, 168, 78, 0.15);
    }

    .nav__list--open {
        max-height: 320px;
    }

    .nav__logo-wrap {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .nav__logo-img {
        width: 28px;
        height: 28px;
    }

    .nav__logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav__list li {
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav__link::after {
        display: none;
    }

    /* Burger animation */
    .nav__toggle--active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle--active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle--active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Mobile 480- */
@media (max-width: 480px) {
    .nav__logo-wrap {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .nav__logo-img {
        width: 24px;
        height: 24px;
    }

    .nav__logo-text {
        font-size: 1.02rem;
        letter-spacing: 1.7px;
    }

    .footer__logo-wrap {
        width: 64px;
        height: 64px;
    }

    .footer__logo-img {
        width: 42px;
        height: 42px;
    }

    .hero__content {
        padding: 112px 20px 56px;
        gap: 24px;
    }

    .hero__title {
        font-size: clamp(2.15rem, 14vw, 3.1rem);
        margin-bottom: 18px;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 22px;
        padding-left: 14px;
    }

    .hero__features {
        gap: 8px;
    }

    .hero__features span {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 0.78rem;
    }

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

    .hero__stats div {
        padding: 14px;
    }

    .hero__visual {
        min-height: 280px;
    }

    .hero__visual::before {
        inset: 28px 4px 18px 24px;
    }

    .hero__image-frame {
        inset: 18px 0 44px;
        padding: 8px;
    }

    .hero__visual-card {
        left: 16px;
        right: auto;
        bottom: 0;
        max-width: none;
        padding: 13px 14px;
        transform: none;
    }

    .hero__visual-card strong {
        font-size: 1.3rem;
    }

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

    .about__card {
        padding: 28px 24px;
    }

    .direction-card {
        padding: 28px 24px;
    }

    .contact__form {
        padding: 0;
    }
}
