:root {
    --color-dark: #171717;
    --color-dark-soft: #222222;
    --color-dark-card: #292929;
    --color-light: #f5f4f0;
    --color-white: #ffffff;
    --color-steel: #66717a;
    --color-border: #e2e4e5;
    --color-orange: #c2410c;
    --color-orange-dark: #9a3412;
    --color-orange-light: #f97316;
    --font-body: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    --container-width: 1240px;
    --header-height: 82px;
    --radius-small: 6px;
    --radius-medium: 12px;
    --shadow-card: 0 18px 50px rgba(23, 23, 23, 0.08);
    --transition: 180ms ease;
}

/* Genel sıfırlama */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--color-dark);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--color-white);
    background: var(--color-orange);
    border-radius: var(--radius-small);
    transform: translateY(-150%);
}

    .skip-link:focus {
        transform: translateY(0);
    }

/* Butonlar */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    gap: 10px;
    color: var(--color-white);
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    border-radius: var(--radius-small);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

    .button:hover {
        color: var(--color-white);
        background: var(--color-orange-dark);
        border-color: var(--color-orange-dark);
        transform: translateY(-2px);
    }

    .button:focus-visible {
        outline: 3px solid rgba(194, 65, 12, 0.3);
        outline-offset: 3px;
    }

    .button svg {
        width: 18px;
        height: 18px;
    }

.button--small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
}

.button--on-dark {
    color: var(--color-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.38);
}

    .button--on-dark:hover {
        background: var(--color-white);
        border-color: var(--color-white);
        color: var(--color-dark);
    }

.button--ghost {
    color: var(--color-dark);
    background: transparent;
    border-color: transparent;
}

    .button--ghost:hover {
        color: var(--color-orange);
        background: #f2f2f2;
        border-color: #f2f2f2;
    }

.button--outline {
    color: var(--color-dark);
    background: var(--color-white);
    border-color: #b9bec2;
}

    .button--outline:hover {
        color: var(--color-dark);
        background: var(--color-light);
        border-color: var(--color-dark);
    }

.link-button {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* Üst menü */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    backdrop-filter: blur(14px);
    transition: height var(--transition), box-shadow var(--transition);
}

    .site-header.is-scrolled {
        box-shadow: 0 8px 30px rgba(23, 23, 23, 0.08);
    }

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    width: 246px;
    height: auto;
}

.brand-mark {
    display: none;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 29px;
}

    .primary-nav a {
        position: relative;
        padding: 29px 0 26px;
        color: #373737;
        font-size: 14px;
        font-weight: 650;
    }

        .primary-nav a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 20px;
            left: 0;
            height: 2px;
            background: var(--color-orange);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform var(--transition);
        }

        .primary-nav a:hover::after,
        .primary-nav a:focus-visible::after {
            transform: scaleX(1);
            transform-origin: left;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    transition: background-color var(--transition);
}

    .language-link:hover {
        background: var(--color-light);
    }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
}

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px auto;
        background: var(--color-dark);
        transition: transform var(--transition), opacity var(--transition);
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Hero alanı */

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    color: var(--color-white);
    background: radial-gradient( circle at 76% 32%, rgba(194, 65, 12, 0.18), transparent 31% ), linear-gradient(135deg, #131313 0%, #1d1d1d 62%, #242424 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent 5%, black 60%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -130px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -20px;
    width: 410px;
    height: 410px;
    border: 1px dashed rgba(249, 115, 22, 0.22);
    border-radius: 50%;
}

.hero-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 26px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 42px;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.32);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.24em;
}

.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
    align-items: center;
    min-height: calc(100svh - var(--header-height) - 106px);
    padding-top: 80px;
    padding-bottom: 70px;
    gap: 90px;
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--color-steel);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

    .eyebrow > span {
        width: 36px;
        height: 2px;
        background: var(--color-orange);
    }

.eyebrow--light {
    color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(52px, 6.3vw, 94px);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-content > p {
    max-width: 670px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.69);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-capability {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
}

    .hero-capability::before {
        content: "";
        position: absolute;
        top: -1px;
        right: -1px;
        width: 78px;
        height: 4px;
        background: var(--color-orange);
    }

.capability-mark {
    display: flex;
    justify-content: flex-end;
}

    .capability-mark img {
        width: 104px;
        height: 100px;
        object-fit: contain;
        opacity: 0.22;
    }

.capability-spec {
    margin-top: auto;
}

    .capability-spec > span {
        display: block;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.56);
        font-size: 12px;
        font-weight: 750;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .capability-spec strong {
        display: block;
        margin-bottom: 6px;
        font-family: var(--font-heading);
        font-size: clamp(52px, 5vw, 76px);
        line-height: 1;
        letter-spacing: -0.04em;
    }

        .capability-spec strong small {
            color: var(--color-orange-light);
            font-family: var(--font-body);
            font-size: 14px;
            letter-spacing: 0;
        }

    .capability-spec p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.58);
        font-size: 14px;
    }

.hero-facts {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 106px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

    .hero-facts > div {
        display: flex;
        align-items: center;
        padding: 24px 36px;
        gap: 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

        .hero-facts > div:first-child {
            padding-left: 0;
        }

        .hero-facts > div:last-child {
            border-right: 0;
        }

    .hero-facts strong {
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 24px;
        line-height: 1;
    }

    .hero-facts span {
        color: rgba(255, 255, 255, 0.48);
        font-size: 12px;
        line-height: 1.35;
    }

/* Bölüm başlıkları */

.section-heading {
    margin-bottom: 56px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 80px;
}

    .section-heading--split > p {
        margin-bottom: 3px;
        color: var(--color-steel);
        line-height: 1.75;
    }

.section-heading--center {
    max-width: 820px;
    margin-right: auto;
    margin-bottom: 64px;
    margin-left: auto;
    text-align: center;
}

    .section-heading--center p {
        max-width: 630px;
        margin: 22px auto 0;
        color: var(--color-steel);
    }

.section-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-kicker--orange {
    color: var(--color-orange-light);
}

.section-heading h2,
.about-content h2,
.sectors-grid h2 {
    margin-bottom: 0;
    font-size: clamp(40px, 4.4vw, 65px);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

/* Hizmet kartları */

.services-section {
    background: var(--color-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d4d6d7;
    border-left: 1px solid #d4d6d7;
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 34px;
    background: transparent;
    border-right: 1px solid #d4d6d7;
    border-bottom: 1px solid #d4d6d7;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .service-card:hover {
        z-index: 2;
        background: var(--color-white);
        box-shadow: var(--shadow-card);
        transform: translateY(-5px);
    }

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 54px;
}

    .service-card__top span {
        color: #999fa3;
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 700;
    }

    .service-card__top svg {
        width: 38px;
        height: 38px;
        color: var(--color-orange);
        stroke-width: 1.4;
    }

.service-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.service-card p {
    margin-bottom: 30px;
    color: var(--color-steel);
    font-size: 14px;
    line-height: 1.75;
}

.service-card > a {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    color: var(--color-dark);
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    font-weight: 750;
}

    .service-card > a svg {
        width: 18px;
        height: 18px;
        color: var(--color-orange);
        transition: transform var(--transition);
    }

    .service-card > a:hover svg {
        transform: translateX(5px);
    }

/* Hakkımızda */

.about-section {
    overflow: hidden;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 100px;
}

.about-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    color: var(--color-white);
    background: linear-gradient(150deg, transparent 46%, rgba(194, 65, 12, 0.92) 46.2%), var(--color-dark);
}

    .about-visual::before {
        content: "";
        position: absolute;
        top: 10%;
        right: -35%;
        width: 110%;
        height: 110%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
    }

    .about-visual::after {
        content: "";
        position: absolute;
        top: 28%;
        right: -16%;
        width: 70%;
        height: 70%;
        border: 1px dashed rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

.about-year {
    position: absolute;
    top: 46px;
    left: 46px;
    color: rgba(255, 255, 255, 0.16);
    font-family: var(--font-heading);
    font-size: clamp(90px, 12vw, 160px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.about-lines {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
    background-size: 46px 46px;
}

.about-visual__caption {
    position: absolute;
    right: 44px;
    bottom: 42px;
    left: 44px;
    z-index: 2;
}

    .about-visual__caption span {
        display: block;
        margin-bottom: 9px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.18em;
    }

    .about-visual__caption strong {
        display: block;
        max-width: 330px;
        font-family: var(--font-heading);
        font-size: 36px;
        line-height: 1.08;
    }

.about-content h2 {
    margin-bottom: 34px;
}

.about-content > p {
    color: var(--color-steel);
    line-height: 1.85;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
    gap: 22px;
}

    .principles > div {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .principles svg {
        width: 28px;
        height: 28px;
        color: var(--color-orange);
    }

    .principles span {
        font-size: 13px;
        font-weight: 750;
    }

/* Makine parkı */

.machinery-section {
    color: var(--color-white);
    background: var(--color-dark);
}

.section-heading--light h2 {
    color: var(--color-white);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.58);
}

.machine-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.machine-row {
    display: grid;
    grid-template-columns: 72px minmax(220px, 1fr) minmax(300px, 0.8fr) 30px;
    align-items: center;
    min-height: 112px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    gap: 24px;
    transition: background-color var(--transition), padding var(--transition);
}

    .machine-row:hover {
        padding-right: 18px;
        padding-left: 18px;
        background: rgba(255, 255, 255, 0.045);
    }

.machine-index {
    color: var(--color-orange-light);
    font-size: 11px;
    font-weight: 800;
}

.machine-row h3 {
    margin-bottom: 0;
    font-size: 27px;
}

.machine-row strong {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.machine-row > svg {
    width: 19px;
    height: 19px;
    color: rgba(255, 255, 255, 0.42);
}

.machinery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 42px;
    gap: 30px;
}

    .machinery-footer p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.48);
        font-size: 14px;
    }

/* Üretim süreci */

.process-section {
    background: var(--color-white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

    .process-list li {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 240px;
        padding: 25px 22px;
        border-right: 1px solid var(--color-border);
    }

        .process-list li:last-child {
            border-right: 0;
        }

        .process-list li::after {
            content: "";
            position: absolute;
            top: -3px;
            right: -4px;
            z-index: 2;
            width: 7px;
            height: 7px;
            background: var(--color-orange);
            border-radius: 50%;
        }

        .process-list li:last-child::after {
            display: none;
        }

    .process-list span {
        color: #a0a5a8;
        font-size: 11px;
        font-weight: 800;
    }

    .process-list svg {
        width: 34px;
        height: 34px;
        margin: auto 0 30px;
        color: var(--color-orange);
        stroke-width: 1.5;
    }

    .process-list strong {
        font-size: 13px;
        line-height: 1.45;
    }

/* Sektörler */

.sectors-section {
    background: var(--color-light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 100px;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .sector-tags span {
        padding: 14px 18px;
        color: #3d4449;
        background: var(--color-white);
        border: 1px solid #dadddf;
        border-radius: var(--radius-small);
        font-size: 13px;
        font-weight: 650;
        transition: color var(--transition), border-color var(--transition), transform var(--transition);
    }

        .sector-tags span:hover {
            color: var(--color-orange);
            border-color: var(--color-orange);
            transform: translateY(-2px);
        }

/* İletişim çağrı alanı */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: var(--color-white);
    background: var(--color-dark-soft);
}

    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 7px;
        height: 100%;
        background: var(--color-orange);
    }

.contact-lines {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: linear-gradient( 118deg, transparent 48%, rgba(255, 255, 255, 0.2) 48.2%, rgba(255, 255, 255, 0.2) 48.5%, transparent 48.7% );
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 100px;
}

    .contact-grid h2 {
        max-width: 780px;
        margin-bottom: 0;
        font-size: clamp(44px, 5vw, 72px);
        letter-spacing: -0.04em;
    }

.contact-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

    .contact-card p {
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.75;
    }

    .contact-card .button {
        width: 100%;
    }

.contact-email {
    display: block;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-align: center;
}

    .contact-email:hover {
        color: var(--color-orange-light);
    }

/* Footer */

.site-footer {
    padding: 72px 0 24px;
    color: rgba(255, 255, 255, 0.62);
    background: #101010;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.7fr;
    padding-bottom: 58px;
    gap: 70px;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 22px;
}

.footer-grid p {
    max-width: 390px;
    margin-bottom: 0;
    font-size: 14px;
}

.footer-title {
    display: block;
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-grid address {
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.footer-grid a {
    font-size: 14px;
}

    .footer-grid a:hover,
    .footer-bottom a:hover,
    .footer-bottom button:hover {
        color: var(--color-orange-light);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 12px;
}

    .footer-bottom > div {
        display: flex;
        align-items: center;
        gap: 24px;
    }

/* Çerez paneli */

.cookie-panel {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3000;
    display: block;
    width: auto;
    max-width: 1180px;
    max-height: calc(100svh - 48px);
    padding: 30px;
    margin-inline: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.5);
}

    .cookie-panel[hidden],
    .cookie-preferences[hidden],
    .cookie-summary[hidden] {
        display: none;
    }

/* İlk açılan çerez özeti */

.cookie-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 38px;
}

.cookie-copy .eyebrow,
.cookie-preferences__header .eyebrow {
    margin-bottom: 8px;
}

.cookie-copy h2,
.cookie-preferences__header h2 {
    margin-bottom: 8px;
    font-size: 27px;
}

.cookie-copy p {
    max-width: 690px;
    margin-bottom: 0;
    color: var(--color-steel);
    font-size: 13px;
    line-height: 1.7;
}

.cookie-actions,
.cookie-preferences__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

/* Ayrıntılı tercih ekranı */

.cookie-preferences {
    width: 100%;
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
    gap: 24px;
}

    .cookie-preferences__header h2 {
        margin-bottom: 0;
    }

.cookie-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--color-dark);
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

    .cookie-back:hover {
        color: var(--color-white);
        background: var(--color-orange);
        border-color: var(--color-orange);
    }

    .cookie-back:focus-visible {
        outline: 3px solid rgba(194, 65, 12, 0.25);
        outline-offset: 3px;
    }

    .cookie-back svg {
        width: 19px;
        height: 19px;
    }

/* Çerez kategorileri */

.cookie-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 134px;
    padding: 22px;
    background: #ffffff;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    gap: 24px;
}

.cookie-option__content {
    min-width: 0;
}

    .cookie-option__content strong {
        display: block;
        margin-bottom: 7px;
        color: var(--color-dark);
        font-size: 14px;
    }

    .cookie-option__content p {
        margin-bottom: 0;
        color: var(--color-steel);
        font-size: 12px;
        line-height: 1.65;
    }

/* Açma-kapama anahtarı */

.cookie-switch {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    cursor: pointer;
}

    .cookie-switch input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

.cookie-switch__visual {
    position: relative;
    display: block;
    width: 50px;
    height: 28px;
    background: #c9ced1;
    border: 1px solid #b9bfc3;
    border-radius: 999px;
    transition: background-color var(--transition), border-color var(--transition);
}

    .cookie-switch__visual::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform var(--transition);
    }

.cookie-switch input:checked + .cookie-switch__visual {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

    .cookie-switch input:checked + .cookie-switch__visual::after {
        transform: translateX(22px);
    }

.cookie-switch input:focus-visible + .cookie-switch__visual {
    outline: 3px solid rgba(194, 65, 12, 0.25);
    outline-offset: 3px;
}

.cookie-switch--locked {
    cursor: not-allowed;
}

    .cookie-switch--locked .cookie-switch__visual {
        opacity: 0.72;
    }

.cookie-preferences__actions {
    align-items: center;
    padding-top: 2px;
}

/* Hata sayfası */

.error-page {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 100px 0;
    text-align: center;
}

    .error-page h1 {
        margin-bottom: 20px;
        font-size: clamp(46px, 7vw, 86px);
    }

    .error-page p {
        margin-bottom: 30px;
        color: var(--color-steel);
    }

/* Tablet */

@media (max-width: 1120px) {
    :root {
        --header-height: 74px;
    }

    .header-inner {
        gap: 20px;
    }

    .brand-logo {
        width: 205px;
    }

    .primary-nav {
        gap: 20px;
    }

        .primary-nav a {
            font-size: 13px;
        }

    .header-actions .button {
        display: none;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        gap: 45px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 60px;
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }

        .process-list li:nth-child(3) {
            border-right: 0;
        }

        .process-list li:nth-child(-n + 3) {
            border-bottom: 1px solid var(--color-border);
        }

        .process-list li:nth-child(3)::after {
            display: none;
        }

    .contact-grid {
        gap: 60px;
    }
}

/* Mobil menü ve küçük tablet */

@media (max-width: 860px) {
    .container {
        width: min(calc(100% - 36px), var(--container-width));
    }

    .section {
        padding: 82px 0;
    }

    .brand-logo {
        width: 218px;
    }

    .menu-toggle {
        display: block;
    }

    .site-header {
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        min-height: calc(100dvh - var(--header-height));
        padding: 38px 24px;
        background-color: #ffffff;
        opacity: 1;
        box-shadow: 0 20px 40px rgba(23, 23, 23, 0.12);
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 240ms ease, visibility 240ms ease;
    }

        .primary-nav.is-open {
            background-color: #ffffff;
            transform: translateX(0);
            visibility: visible;
        }

    .header-actions {
        gap: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero-rail {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 64px;
        gap: 50px;
    }

    .hero-capability {
        min-height: 300px;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

        .hero-facts > div,
        .hero-facts > div:first-child {
            padding: 20px 0;
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

            .hero-facts > div:last-child {
                border-bottom: 0;
            }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        min-height: 470px;
    }

    .machine-row {
        grid-template-columns: 48px 1fr 24px;
        padding: 24px 0;
    }

        .machine-row strong {
            grid-column: 2 / 3;
        }

        .machine-row > svg {
            grid-row: 1 / 3;
            grid-column: 3;
        }

    .sectors-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

        .footer-grid > div:first-child {
            grid-column: 1 / -1;
        }

    .cookie-panel {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: flex-start;
    }

    .cookie-panel {
        right: 18px;
        bottom: 18px;
        left: 18px;
        max-height: calc(100svh - 36px);
    }

    .cookie-summary {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 24px;
    }

    .cookie-actions,
    .cookie-preferences__actions {
        justify-content: flex-start;
    }

    .cookie-options {
        grid-template-columns: 1fr;
    }
}


/* Telefon */

@media (max-width: 600px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .section {
        padding: 68px 0;
    }

    .brand-logo {
        display: none;
    }

    .brand-mark {
        display: block;
    }

    .header-actions .language-link {
        min-width: 34px;
    }

    .hero-layout {
        padding-top: 68px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .button {
            width: 100%;
        }

    .hero-capability {
        min-height: 275px;
        padding: 25px;
    }

    .capability-spec strong {
        font-size: 52px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

        .section-heading h2,
        .about-content h2,
        .sectors-grid h2 {
            font-size: 39px;
        }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
        padding: 28px;
    }

        .service-card > a {
            right: 28px;
            left: 28px;
        }

    .about-visual {
        min-height: 410px;
    }

    .about-year {
        top: 34px;
        left: 28px;
        font-size: 92px;
    }

    .about-visual__caption {
        right: 28px;
        bottom: 30px;
        left: 28px;
    }

        .about-visual__caption strong {
            font-size: 29px;
        }

    .principles {
        grid-template-columns: 1fr;
    }

        .principles > div {
            flex-direction: row;
            align-items: center;
        }

    .machine-row {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

        .machine-row h3 {
            font-size: 23px;
        }

        .machine-row strong {
            grid-column: 2;
        }

        .machine-row > svg {
            display: none;
        }

    .machinery-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .process-list {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

        .process-list li {
            display: grid;
            grid-template-columns: 42px 48px 1fr;
            align-items: center;
            min-height: 110px;
            padding: 20px 0;
            border-right: 0;
            border-bottom: 1px solid var(--color-border);
            gap: 12px;
        }

            .process-list li:nth-child(-n + 3) {
                border-bottom: 1px solid var(--color-border);
            }

            .process-list li::after {
                display: none;
            }

        .process-list svg {
            width: 30px;
            height: 30px;
            margin: 0;
        }

    .contact-section {
        padding: 76px 0;
    }

        .contact-section::before {
            width: 4px;
        }

    .contact-grid h2 {
        font-size: 43px;
    }

    .contact-card {
        padding: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

        .footer-grid > div:first-child {
            grid-column: auto;
        }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
    .cookie-panel {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-height: calc(100svh - 24px);
        padding: 20px;
        border-radius: 9px;
    }

    .cookie-copy h2,
    .cookie-preferences__header h2 {
        font-size: 23px;
    }

    .cookie-preferences__header {
        gap: 14px;
    }

    .cookie-options {
        margin: 20px 0;
    }

    .cookie-option {
        min-height: 0;
        padding: 18px 14px;
        gap: 14px;
    }

    .cookie-option__content p {
        font-size: 11px;
    }

    .cookie-switch__visual {
        width: 46px;
        height: 26px;
    }

        .cookie-switch__visual::after {
            width: 18px;
            height: 18px;
        }

    .cookie-switch input:checked + .cookie-switch__visual::after {
        transform: translateX(20px);
    }

    .cookie-actions,
    .cookie-preferences__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .cookie-actions .button,
        .cookie-preferences__actions .button {
            width: 100%;
        }
}

/* Hareket azaltma tercihi */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* JPEG logoların koyu zeminlerde beyaz görünmesi */

.capability-mark img,
.footer-logo {
    filter: invert(1);
    mix-blend-mode: screen;
}

/* Yukarı çık butonu */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #ffffff;
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    border-radius: var(--radius-small);
    box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
}

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--color-orange-dark);
        border-color: var(--color-orange-dark);
        transform: translateY(-3px);
    }

    .back-to-top:focus-visible {
        outline: 3px solid rgba(194, 65, 12, 0.3);
        outline-offset: 3px;
    }

    .back-to-top svg {
        width: 22px;
        height: 22px;
    }

@media (max-width: 600px) {
    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
    }
}

/* Contact page */
.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height, 88px) + 78px) 0 82px;
    color: #fff;
    background: radial-gradient(circle at 82% 30%, rgba(200, 59, 11, 0.28), transparent 32%), #171717;
}

.contact-page-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, #000 30%, #000);
}

.contact-page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.contact-page-hero h1 {
    max-width: 850px;
    margin: 24px 0 22px;
    font-size: clamp(2.75rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.contact-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.contact-form-section {
    padding: 96px 0 120px;
    background: #f5f5f2;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(620px, 1.35fr);
    gap: 72px;
    align-items: start;
}

.contact-information {
    position: sticky;
    top: calc(var(--header-height, 88px) + 34px);
}

    .contact-information h2 {
        margin: 20px 0;
        color: #171717;
        font-size: clamp(2rem, 3.2vw, 3.35rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .contact-information > p {
        margin: 0;
        color: #68717a;
        font-size: 1.02rem;
        line-height: 1.75;
    }

.contact-information__items {
    display: grid;
    gap: 1px;
    margin-top: 40px;
    border: 1px solid #d9dddf;
    background: #d9dddf;
}

.contact-information__item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 25px;
    background: #fff;
}

    .contact-information__item svg {
        width: 28px;
        height: 28px;
        color: #c83b0b;
        stroke: currentColor;
    }

    .contact-information__item span {
        display: block;
        margin-bottom: 7px;
        color: #737c84;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .contact-information__item a,
    .contact-information__item address {
        margin: 0;
        color: #171717;
        font-size: 0.98rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.6;
        text-decoration: none;
    }

        .contact-information__item a:hover {
            color: #c83b0b;
        }

.contact-information__note {
    margin-top: 28px;
    padding: 24px 26px;
    border-left: 3px solid #c83b0b;
    background: #ecece8;
}

    .contact-information__note strong {
        display: block;
        margin-bottom: 8px;
        color: #171717;
    }

    .contact-information__note p {
        margin: 0;
        color: #68717a;
        font-size: 0.92rem;
        line-height: 1.65;
    }

.contact-form-card {
    padding: 46px;
    border: 1px solid #d9dddf;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(23, 23, 23, 0.08);
}

.contact-form-card__heading {
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e1e3e4;
}

    .contact-form-card__heading > span {
        color: #c83b0b;
        font-size: 0.74rem;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .contact-form-card__heading h2 {
        margin: 12px 0 9px;
        color: #171717;
        font-size: clamp(1.85rem, 3vw, 2.65rem);
        line-height: 1.12;
        letter-spacing: -0.04em;
    }

    .contact-form-card__heading p {
        margin: 0;
        color: #737c84;
        font-size: 0.87rem;
    }

.required-mark {
    color: #c83b0b;
    font-weight: 800;
}

.contact-success {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid #a8d6b6;
    border-radius: 3px;
    background: #edf8f0;
    color: #194d2a;
}

    .contact-success svg {
        width: 30px;
        height: 30px;
        stroke: currentColor;
    }

    .contact-success strong {
        display: block;
        margin-bottom: 5px;
    }

    .contact-success p {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.55;
    }

.contact-form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    margin-bottom: 9px;
    color: #222;
    font-size: 0.87rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd4d7;
    border-radius: 2px;
    outline: none;
    background: #fff;
    color: #171717;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 54px;
    padding: 0 16px;
}

.form-field textarea {
    min-height: 170px;
    padding: 15px 16px;
    line-height: 1.65;
    resize: vertical;
}

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: #9aa1a6;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        border-color: #c83b0b;
        box-shadow: 0 0 0 3px rgba(200, 59, 11, 0.12);
    }

.form-field__meta {
    display: flex;
    min-height: 22px;
    gap: 16px;
    justify-content: space-between;
    margin-top: 7px;
}

    .form-field__meta small {
        margin-left: auto;
        color: #8a9297;
        font-size: 0.74rem;
        white-space: nowrap;
    }

.field-validation-error,
.privacy-validation {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 0.79rem;
    font-weight: 700;
}

.input-validation-error {
    border-color: #b42318 !important;
    background: #fffafa !important;
}

.form-validation-summary {
    display: none;
}

    .form-validation-summary.validation-summary-errors {
        display: block;
        margin-bottom: 24px;
        padding: 17px 20px;
        border-left: 3px solid #b42318;
        background: #fff1f0;
        color: #8f1d14;
        font-size: 0.87rem;
    }

    .form-validation-summary ul {
        margin: 0;
        padding-left: 18px;
    }

    .form-validation-summary li + li {
        margin-top: 5px;
    }

.privacy-checkbox {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 28px;
    color: #555f66;
    font-size: 0.84rem;
    line-height: 1.6;
    cursor: pointer;
}

    .privacy-checkbox input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

.privacy-checkbox__control {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid #b9c0c4;
    border-radius: 2px;
    background: #fff;
    transition: 160ms ease;
}

.privacy-checkbox input:checked + .privacy-checkbox__control {
    border-color: #c83b0b;
    background: #c83b0b;
}

    .privacy-checkbox input:checked + .privacy-checkbox__control::after {
        position: absolute;
        top: 3px;
        left: 7px;
        width: 5px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        content: "";
        transform: rotate(45deg);
    }

.privacy-checkbox input:focus-visible + .privacy-checkbox__control {
    outline: 3px solid rgba(200, 59, 11, 0.2);
    outline-offset: 2px;
}

.turnstile-container {
    display: flex;
    margin-top: 26px;
    justify-content: flex-start;
}

.contact-form__footer {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e1e3e4;
}

    .contact-form__footer p {
        max-width: 350px;
        margin: 0;
        color: #7b8388;
        font-size: 0.78rem;
        line-height: 1.55;
    }

.contact-submit-button {
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
}

    .contact-submit-button svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }

.contact-honeypot {
    position: fixed !important;
    top: -10000px !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1080px) {
    .contact-form-layout {
        grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
        gap: 40px;
    }

    .contact-form-card {
        padding: 34px;
    }
}

@media (max-width: 860px) {
    .contact-page-hero {
        padding: calc(var(--header-height, 72px) + 58px) 0 64px;
    }

    .contact-form-section {
        padding: 72px 0 90px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-information {
        position: static;
    }
}

@media (max-width: 620px) {
    .contact-page-hero {
        padding-bottom: 52px;
    }

        .contact-page-hero h1 {
            font-size: clamp(2.5rem, 13vw, 4rem);
        }

    .contact-form-section {
        padding: 48px 0 70px;
    }

    .contact-form-card {
        padding: 26px 20px;
        box-shadow: 0 18px 45px rgba(23, 23, 23, 0.07);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-field--full {
        grid-column: auto;
    }

    .form-field__meta {
        display: block;
    }

        .form-field__meta small {
            display: block;
            margin-top: 6px;
            white-space: normal;
        }

    .contact-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit-button {
        width: 100%;
        justify-content: center;
    }

    .turnstile-container {
        max-width: 100%;
        overflow: hidden;
    }
}

/* JSON contact form status */
.contact-form-status {
    margin: 28px 0 0;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-left-width: 4px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
    outline: none;
}

    .contact-form-status:not([hidden]) + .contact-form__footer {
        margin-top: 18px;
    }

.contact-form-status--success {
    border-color: #8fc7a0;
    border-left-color: #237a3c;
    background: #edf8f0;
    color: #194d2a;
}

.contact-form-status--error {
    border-color: #e9aaa5;
    border-left-color: #b42318;
    background: #fff1f0;
    color: #8f1d14;
}

.contact-submit-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.contact-submit-button.is-loading svg {
    display: none;
}

/* Google Maps */
.location-section {
    padding: 100px 0 120px;
    background: #fff;
}

.location-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 42px;
}

    .location-heading h2 {
        max-width: 760px;
        margin: 18px 0 0;
        color: #171717;
        font-size: clamp(2.25rem, 4.5vw, 4.6rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

.location-address {
    padding-left: 28px;
    border-left: 2px solid #c83b0b;
}

    .location-address strong {
        display: block;
        margin-bottom: 8px;
        color: #171717;
        font-size: 1.05rem;
    }

    .location-address address {
        margin: 0 0 14px;
        color: #68717a;
        font-style: normal;
        line-height: 1.65;
    }

    .location-address a {
        display: inline-flex;
        gap: 7px;
        align-items: center;
        color: #c83b0b;
        font-size: 0.86rem;
        font-weight: 800;
        text-decoration: none;
    }

        .location-address a:hover {
            color: #912b08;
        }

    .location-address svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
    }

.location-map {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid #d9dddf;
    background: #ecece8;
}

    .location-map iframe {
        display: block;
        width: 100%;
        height: 480px;
        border: 0;
    }

.location-map__placeholder {
    display: flex;
    min-height: 480px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(23, 23, 23, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 23, 23, 0.06) 1px, transparent 1px), #f1f1ee;
    background-size: 48px 48px;
}

    .location-map__placeholder svg {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
        color: #c83b0b;
        stroke: currentColor;
    }

    .location-map__placeholder strong {
        color: #171717;
        font-size: 1.35rem;
    }

    .location-map__placeholder p {
        max-width: 580px;
        margin: 12px 0 24px;
        color: #68717a;
        font-size: 0.9rem;
        line-height: 1.7;
    }

@media (max-width: 860px) {
    .location-section {
        padding: 72px 0 90px;
    }

    .location-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-address {
        padding-left: 20px;
    }

    .location-map,
    .location-map iframe,
    .location-map__placeholder {
        min-height: 390px;
        height: 390px;
    }
}

@media (max-width: 620px) {
    .location-section {
        padding: 58px 0 70px;
    }

    .location-map,
    .location-map iframe,
    .location-map__placeholder {
        min-height: 340px;
        height: 340px;
    }

    .location-map__placeholder {
        padding: 26px 20px;
    }
}

/* Hidden map elements must remain hidden */
.location-map__placeholder[hidden],
.location-map iframe[hidden] {
    display: none !important;
}

/* Büyük başlıklarda okunabilir harf ve satır aralığı */
.hero h1,
.contact-page-hero h1 {
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
}

@media (max-width: 620px) {
    .hero h1,
    .contact-page-hero h1 {
        line-height: 1.07;
        letter-spacing: -0.01em;
    }
}

/* Privacy and cookie policy */
.policy-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height, 88px) + 76px) 0 78px;
    background: #171717;
    color: #fff;
}

.policy-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 72px 72px;
}

.policy-hero__content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.policy-hero h1 {
    margin: 24px 0 22px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
}

.policy-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.75;
}

.policy-updated {
    display: block;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-section {
    padding: 96px 0 120px;
    background: #f5f5f2;
}

.policy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 850px);
    gap: 80px;
    justify-content: center;
    align-items: start;
}

.policy-navigation {
    position: sticky;
    top: calc(var(--header-height, 88px) + 34px);
    display: grid;
    border-top: 2px solid #171717;
}

    .policy-navigation > span {
        padding: 18px 0;
        color: #171717;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .policy-navigation a {
        padding: 13px 0;
        border-top: 1px solid #d7dbdd;
        color: #68717a;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        transition: color 160ms ease, padding-left 160ms ease;
    }

        .policy-navigation a:hover {
            padding-left: 7px;
            color: #c83b0b;
        }

.policy-content {
    padding: 48px 54px;
    border: 1px solid #d9dddf;
    background: #fff;
    box-shadow: 0 24px 70px rgba(23, 23, 23, 0.07);
}

    .policy-content > section {
        scroll-margin-top: calc(var(--header-height, 88px) + 30px);
    }

        .policy-content > section + section {
            margin-top: 58px;
            padding-top: 52px;
            border-top: 1px solid #dde0e2;
        }

.policy-number {
    display: block;
    margin-bottom: 12px;
    color: #c83b0b;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.policy-content h2 {
    margin: 0 0 22px;
    color: #171717;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.policy-content h3 {
    margin: 30px 0 10px;
    color: #171717;
    font-size: 1.1rem;
}

.policy-content p,
.policy-content li {
    color: #5f6970;
    font-size: 0.98rem;
    line-height: 1.8;
}

.policy-content p {
    margin: 0 0 18px;
}

.policy-content ul {
    margin: 20px 0 24px;
    padding-left: 22px;
}

.policy-content li + li {
    margin-top: 8px;
}

.policy-content code {
    padding: 3px 7px;
    border-radius: 3px;
    background: #ecece8;
    color: #343a3e;
    font-size: 0.86em;
}

.policy-contact-box {
    margin-top: 25px;
    padding: 24px 26px;
    border-left: 3px solid #c83b0b;
    background: #f1f1ee;
}

    .policy-contact-box strong {
        display: block;
        margin-bottom: 8px;
        color: #171717;
    }

    .policy-contact-box address {
        margin-bottom: 10px;
        color: #68717a;
        font-style: normal;
        line-height: 1.65;
    }

    .policy-contact-box a,
    .policy-email {
        color: #c83b0b;
        font-weight: 800;
        text-decoration: none;
    }

        .policy-contact-box a:hover,
        .policy-email:hover {
            text-decoration: underline;
        }

.policy-table-wrapper {
    width: 100%;
    margin: 26px 0;
    overflow-x: auto;
}

.policy-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

    .policy-table th,
    .policy-table td {
        padding: 16px;
        border: 1px solid #d9dddf;
        text-align: left;
        vertical-align: top;
    }

    .policy-table th {
        background: #171717;
        color: #fff;
        font-size: 0.77rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .policy-table td {
        color: #5f6970;
        font-size: 0.88rem;
        line-height: 1.6;
    }

        .policy-table td:first-child {
            color: #171717;
            font-weight: 800;
        }

.policy-actions {
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid #dde0e2;
}

.privacy-checkbox a {
    color: #c83b0b;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .policy-navigation {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 25px;
    }

        .policy-navigation > span {
            grid-column: 1 / -1;
        }
}

@media (max-width: 620px) {
    .policy-hero {
        padding: calc(var(--header-height, 72px) + 56px) 0 58px;
    }

        .policy-hero h1 {
            font-size: clamp(2.45rem, 12vw, 3.8rem);
            line-height: 1.07;
            letter-spacing: -0.01em;
        }

    .policy-section {
        padding: 48px 0 72px;
    }

    .policy-navigation {
        grid-template-columns: 1fr;
    }

        .policy-navigation > span {
            grid-column: auto;
        }

    .policy-content {
        padding: 32px 21px;
    }

        .policy-content > section + section {
            margin-top: 44px;
            padding-top: 40px;
        }

    .policy-table-wrapper {
        margin-right: -21px;
        width: calc(100% + 21px);
    }
}

/* Contact form privacy consent */
.privacy-consent {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 28px;
}

.privacy-consent__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.privacy-consent__control {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid #b9c0c4;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.privacy-consent__input:checked ~ .privacy-consent__control {
    border-color: #c83b0b;
    background: #c83b0b;
}

    .privacy-consent__input:checked ~ .privacy-consent__control::after {
        position: absolute;
        top: 3px;
        left: 7px;
        width: 5px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        content: "";
        transform: rotate(45deg);
    }

.privacy-consent__input:focus-visible ~ .privacy-consent__control {
    outline: 3px solid rgba(200, 59, 11, 0.2);
    outline-offset: 2px;
}

.privacy-consent__input.input-validation-error ~ .privacy-consent__control {
    border-color: #b42318;
    background-color: #fffafa;
}

.privacy-consent__text {
    color: #555f66;
    font-size: 0.84rem;
    line-height: 1.65;
}

    .privacy-consent__text label {
        cursor: pointer;
    }

    .privacy-consent__text a {
        color: #c83b0b;
        font-weight: 800;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .privacy-consent__text a:hover {
            color: #912b08;
        }

/* Hash bağlantısıyla iletişim formuna kaydırma */
#iletisim {
    scroll-margin-top: calc(var(--header-height, 88px) + 28px);
    outline: none;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 860px) {
    #iletisim {
        scroll-margin-top: calc(var(--header-height, 72px) + 18px);
    }
}

/* İletişim formu başlıklarının okunabilirliği */
.contact-information h2,
.contact-form-card__heading h2 {
    letter-spacing: -0.01em;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
}

.contact-information h2 {
    line-height: 1.14;
}

.contact-form-card__heading h2 {
    line-height: 1.16;
}

@media (max-width: 620px) {
    .contact-information h2,
    .contact-form-card__heading h2 {
        line-height: 1.17;
        letter-spacing: 0;
    }
}

.privacy-consent {
    position: relative;
}

.privacy-consent__control {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    cursor: pointer;
    pointer-events: auto !important;
}

.privacy-consent__text {
    position: relative;
    z-index: 1;
}

    .privacy-consent__text label {
        cursor: pointer;
    }

.privacy-consent.has-error .privacy-consent__control {
    border-color: #c9380b;
    background-color: #fff7f4;
}

.privacy-consent__input:focus-visible + .privacy-consent__control {
    outline: 3px solid rgb(201 56 11 / 25%);
    outline-offset: 3px;
}