/* ============================================================
   ALACA DOKUMA — 1953
   Tasarım dili: minimal, siyah-beyaz, ince altın vurgu
   Fontlar: Montserrat (başlık ince 200 / vurgu 500, menü), Poppins (metin)
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

:root {
    /* Koyu mat tema — düz siyah fon */
    --black: #111111;
    --white: #ffffff;
    --bg: #0c0c0c;
    --bg-alt: #141414;
    --ink: #ecebe7;
    --grey: #a2a6ad;
    --light: #f5f4f2;
    --line: #262626;
    --navy: #0f1e30;
    --header-h: 90px;
    /* Tüm site videoları için ortak renk artırımı (kayıpsız, CSS filtresi) */
    --video-enhance: saturate(1.45) contrast(1.08) brightness(1.03);
    /* Türk halı/kilim motifi: sekiz köşeli yıldız (Selçuk yıldızı) deseni */
    --kilim-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.13' stroke-width='1'%3E%3Crect x='34' y='34' width='28' height='28'/%3E%3Crect x='34' y='34' width='28' height='28' transform='rotate(45 48 48)'/%3E%3Crect x='44' y='44' width='8' height='8' transform='rotate(45 48 48)'/%3E%3Crect x='-14' y='-14' width='28' height='28'/%3E%3Crect x='-14' y='-14' width='28' height='28' transform='rotate(45 0 0)'/%3E%3Crect x='82' y='-14' width='28' height='28'/%3E%3Crect x='82' y='-14' width='28' height='28' transform='rotate(45 96 0)'/%3E%3Crect x='-14' y='82' width='28' height='28'/%3E%3Crect x='-14' y='82' width='28' height='28' transform='rotate(45 0 96)'/%3E%3Crect x='82' y='82' width='28' height='28'/%3E%3Crect x='82' y='82' width='28' height='28' transform='rotate(45 96 96)'/%3E%3Crect x='44' y='-4' width='8' height='8' transform='rotate(45 48 0)'/%3E%3Crect x='44' y='92' width='8' height='8' transform='rotate(45 48 96)'/%3E%3Crect x='-4' y='44' width='8' height='8' transform='rotate(45 0 48)'/%3E%3Crect x='92' y='44' width='8' height='8' transform='rotate(45 96 48)'/%3E%3C/g%3E%3C/svg%3E");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background-color: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    color: var(--white);
    transition: background .4s ease, color .4s ease, box-shadow .4s ease, height .4s ease;
}

header.bg {
    background: rgba(17, 20, 26, .96);
    color: var(--ink);
    height: 70px;
    box-shadow: 0 1px 0 var(--line);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.logo-caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: inherit;
    opacity: .75;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.6rem;
}

#main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    letter-spacing: .22em;
    font-weight: 500;
    position: relative;
    padding: .4em 0;
}

#main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s ease;
}

#main-nav a:hover::after,
#main-nav a.active::after {
    width: 100%;
}

.toggle-push {
    display: none;
}

/* ============ HERO — VİDEO SLIDER ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--navy);
}

.video-slider,
.v-slide {
    position: absolute;
    inset: 0;
}

.v-slide {
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.v-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.v-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--video-enhance);
}

/* 3. banner: daha güçlü renk doygunluğu */
.v-slide.vivid video {
    filter: saturate(1.75) contrast(1.14) brightness(1.05);
}

/* Video yüklenemezse görünen kilim motifli fallback */
.v-fallback {
    position: absolute;
    inset: 0;
    display: none;
}

.v-slide.novideo .v-fallback {
    display: block;
}

.f1 {
    background: var(--kilim-dark),
        linear-gradient(135deg, #0f1e30 0%, #1d3552 60%, #0f1e30 100%);
}

.f2 {
    background: var(--kilim-dark),
        linear-gradient(135deg, #221c10 0%, #4d3d1c 55%, #221c10 100%);
}

.f3 {
    background: var(--kilim-dark),
        linear-gradient(135deg, #101810 0%, #2c402c 55%, #101810 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .45) 100%);
    pointer-events: none;
}

.hero-tagline {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
}

.hero-tagline p {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .5em;
    text-transform: uppercase;
    font-size: .75rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-tagline h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(2.4rem, 6.2vw, 5.5rem);
    line-height: 1.12;
}

.hero-tagline h1 strong {
    display: block;
    font-weight: 500;
}

.hero-tagline h1 {
    transition: opacity .45s ease, transform .45s ease;
}

.hero-tagline h1.fading {
    opacity: 0;
    transform: translateY(14px);
}

.hero-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.2rem;
    z-index: 3;
    color: var(--white);
}

.hero-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-media-links {
    display: flex;
    gap: 1.4rem;
}

.social-media-links a {
    opacity: .8;
    transition: opacity .3s;
}

.social-media-links a:hover {
    opacity: 1;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    letter-spacing: .15em;
}

.slider-nav ul {
    display: flex;
    gap: .7rem;
}

.slider-nav li {
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .3s;
}

.slider-nav li.active {
    background: var(--white);
}

/* ============ BÖLÜM ORTAK ============ */
section {
    position: relative;
}

.section-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: .3em;
    color: var(--ink);
    margin-bottom: 2.5rem;
}

.section-num::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--line);
    vertical-align: middle;
    margin-left: 1.2rem;
}

/* ============ 01 · TARİHÇE ============ */
.home-about {
    padding: 7rem 0 6rem;
}

.home-about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4.5rem;
    align-items: center;
}

.home-about h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.3;
    margin-bottom: 1.8rem;
}

.home-about p {
    color: var(--grey);
    font-weight: 300;
    margin-bottom: 1.2rem;
    font-size: .95rem;
}

.home-about p strong {
    color: var(--ink);
    font-weight: 500;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding-bottom: .35em;
    border-bottom: 1px solid var(--ink);
    transition: gap .3s, color .3s, border-color .3s;
}

.more-link:hover {
    gap: 1.3rem;
    color: var(--grey);
    border-color: var(--grey);
}

/* Görsel placeholder — gerçek fotoğraflar gelene kadar */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, .85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    letter-spacing: .25em;
    font-size: 1.1rem;
    background: var(--kilim-dark),
        linear-gradient(135deg, #0f1e30, #23405f);
}

.video-card {
    position: relative;
    overflow: hidden;
}

.video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--video-enhance);
}

.video-card span {
    position: relative;
    z-index: 1;
    padding: .6em 1.15em;
    background: rgba(17, 20, 26, .38);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.about-img {
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin-left: auto;
}

/* ============ 02 · KOLEKSİYON SLIDER ============ */
.home-products {
    display: grid;
    grid-template-columns: 38% 62%;
    background-color: var(--bg-alt);
}

.home-products .desc {
    padding: 6rem 4rem 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: max(4%, calc((100vw - 1240px) / 2));
}

.summary {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3rem;
}

.summary strong {
    font-size: 3.4rem;
    font-weight: 200;
}

.summary .total {
    font-size: 1.1rem;
    color: var(--grey);
}

.summary .total::before {
    content: "/ ";
}

.sliding-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.sliding-content p {
    color: var(--grey);
    font-weight: 300;
    font-size: .93rem;
    min-height: 4.5em;
}

.sliding-content {
    transition: opacity .35s ease, transform .35s ease;
}

.sliding-content.fading {
    opacity: 0;
    transform: translateY(12px);
}

.home-products .carousel {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.product-track {
    display: flex;
    gap: 2rem;
    transition: transform .6s cubic-bezier(.65, .05, .36, 1);
    padding-left: 2rem;
}

.product {
    flex: 0 0 min(430px, 78%);
}

.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
}

.slider-arrows {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0 0 2rem;
}

.slider-arrows button {
    transition: color .3s, transform .3s;
}

.slider-arrows button:hover {
    color: var(--grey);
}

/* ============ 03 · RAKAMLAR + HARİTA ============ */
.partners {
    padding: 7rem 0 0;
}

.partners-title {
    max-width: 560px;
    margin-bottom: 3.5rem;
}

.partners-title h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .3em;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.partners-title h4::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    background: var(--ink);
    margin-top: .9rem;
}

.partners-title p {
    color: var(--grey);
    font-weight: 300;
    font-size: .95rem;
}

.map-wrapper {
    height: 440px;
    filter: grayscale(1) invert(.92);
    transition: filter .5s;
}

.map-wrapper:hover {
    filter: none;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============ FOOTER ============ */
footer {
    background: #0b0d11;
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: .55;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

.contacts span,
.footer-menu span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .8rem;
}

.contacts a,
.contacts p {
    font-weight: 300;
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
}

.contacts a:hover {
    color: var(--white);
}

.contacts .hours {
    margin-top: .4rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-menu a {
    display: block;
    font-weight: 300;
    font-size: .92rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: .55rem;
    transition: color .3s, padding-left .3s;
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: .4rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    padding: 0;
}

.copyrights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

.copyrights span {
    color: var(--white);
}

.copyrights div {
    display: flex;
    gap: 1.8rem;
}

.copyrights a:hover {
    color: var(--white);
}

/* ---------- Yapımcı imzası ---------- */
.credit {
    text-align: center;
    margin-top: 1.5rem;
}

.credit span {
    display: block;
    margin-bottom: 3px;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
}

.credit a {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, .3);
    background: rgba(0, 0, 0, .4);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22d3ee;
    transition: border-color .3s, box-shadow .3s;
}

.credit a:hover {
    border-color: rgba(34, 211, 238, .8);
    box-shadow: 0 0 18px rgba(34, 211, 238, .4);
    color: #22d3ee;
}

/* ============ ALT SAYFALAR ============ */
.page-hero {
    height: 46vh;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3.5rem;
    color: var(--white);
    position: relative;
    background: var(--bg);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero small {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .4em;
    text-transform: uppercase;
    font-size: .72rem;
    color: var(--white);
    display: block;
    margin-bottom: .8rem;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
}

.page-content {
    padding: 5.5rem 0;
}

.page-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    margin: 2.5rem 0 1rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    color: var(--grey);
    font-weight: 300;
    font-size: .95rem;
    margin-bottom: 1.1rem;
    max-width: 72ch;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 1rem;
}

.section-alt {
    background-color: var(--bg-alt);
    padding: 5.5rem 0;
}

.section-alt .page-content {
    padding: 0;
}

/* Vizyon & Misyon */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.vm-card {
    border-left: 2px solid var(--line);
    padding: .3rem 0 .3rem 1.8rem;
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .9rem;
    color: var(--ink);
}

.vm-card p {
    color: var(--grey);
    font-weight: 300;
    font-size: .95rem;
}

/* Neden ALACA / Sürdürülebilirlik kartları */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.2rem;
    margin-top: 3rem;
}

.feature-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 1.3rem;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.02rem;
    margin-bottom: .5rem;
    color: var(--ink);
}

.feature-card p {
    color: var(--grey);
    font-weight: 300;
    font-size: .88rem;
}

.quality-block {
    max-width: 760px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 3rem;
    margin-top: 3rem;
}

.detail-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
    margin-bottom: 1.4rem;
}

.detail-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.35rem;
    margin-bottom: .6rem;
}

.detail-card p {
    color: var(--grey);
    font-weight: 300;
    font-size: .92rem;
}

.process-steps {
    counter-reset: step;
    margin-top: 3rem;
    display: grid;
    gap: 0;
}

.process-steps .step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    padding: 2.2rem 0;
    border-top: 1px solid var(--line);
}

.process-steps .step:last-child {
    border-bottom: 1px solid var(--line);
}

.process-steps .step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 2.4rem;
    color: var(--ink);
    line-height: 1;
}

.process-steps h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: .4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-list>div {
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: .5rem;
}

.contact-list a,
.contact-list p {
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 400;
}

.contact-list a:hover {
    color: var(--grey);
}

.contact-map {
    height: 100%;
    min-height: 420px;
    filter: grayscale(1) invert(.92);
    transition: filter .5s;
}

.contact-map:hover {
    filter: none;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Alt sayfa header'ı her zaman koyu zemin üstünde açık renk başlar */
body.subpage header:not(.bg) {
    color: var(--white);
}

/* ============ REVEAL ANİMASYON ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.delay-1 {
    transition-delay: .1s;
}

.reveal.delay-2 {
    transition-delay: .2s;
}

.reveal.delay-3 {
    transition-delay: .3s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .home-products {
        grid-template-columns: 1fr;
    }

    .home-products .desc {
        margin-left: 4%;
        padding: 4rem 4% 0 0;
    }

    .home-products .carousel {
        padding: 3rem 0 5rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .toggle-push {
        display: block;
        z-index: 102;
    }

    #main-nav {
        position: fixed;
        inset: 0;
        background: rgba(12, 12, 12, .96);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
    }

    #main-nav.push {
        opacity: 1;
        pointer-events: auto;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    #main-nav a {
        color: var(--white);
        font-size: 1rem;
    }

    header.bg .toggle-push {
        color: var(--ink);
    }

    #main-nav.push~.toggle-push,
    header:has(#main-nav.push) .toggle-push {
        color: var(--white);
    }

    .home-about-wrapper,
    .two-col,
    .detail-grid,
    .contact-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-grid,
    .feature-grid.cols-4 {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .about-img {
        margin: 0 auto;
    }

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

    .footer-menu {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps .step {
        grid-template-columns: 64px 1fr;
        gap: 1.2rem;
    }
}
