@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;1,400&family=Inter:wght@100..900&display=swap");

@font-face {
    font-family: "area-variable";
    src: url("../fonts/area-variable/fonts/area-variable-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "area-variable";
    src: url("../fonts/area-variable/fonts/area-variable-bold.otf") format("opentype");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/Cormorant_Garamond/static/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik Dirt";
    src: url("../fonts/Rubik_Dirt/RubikDirt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #ffffff;
    --surface: #0f1115;
    --text: #cad0d8;
    --text-strong: #ffffff;
    --muted: #8a9098;
    --line: rgba(255, 255, 255, 0.1);
    --line-soft: rgba(255, 255, 255, 0.07);
    --red: #d71919;
    --header-bg: transparent;
    --header-min-height: 86px;
    --header-height: 86px;
    --app-height: 100vh;
    --transition-fast: 200ms ease;
}

@supports (height: 100lvh) {
    :root {
        --app-height: 100lvh;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    background: #000000;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #000000;
    color: var(--text);
    line-height: 1.5;
    min-height: var(--app-height, 100vh);
}

body.page-anasayfa {
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
}

.kvkk-consent[hidden] {
    display: none !important;
}

.kvkk-consent {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 5000;
    width: min(100% - 2rem, 24rem);
}

.kvkk-consent-dialog {
    position: relative;
    width: 100%;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow:
        inset 0 1.2px 0 rgba(255, 255, 255, 0.85),
        inset 0 -1.5px 2px rgba(0, 0, 0, 0.08),
        inset 0 0 18px rgba(255, 255, 255, 0.18),
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(var(--floating-contact-glass-blur, 26px)) saturate(180%) brightness(var(--floating-contact-glass-brightness, 1.15));
    -webkit-backdrop-filter: blur(var(--floating-contact-glass-blur, 26px)) saturate(180%) brightness(var(--floating-contact-glass-brightness, 1.15));
    font-family: "area-variable", "Montserrat", sans-serif;
    overflow: hidden;
    transform: translateZ(0);
}

.kvkk-consent-dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 11, 14, 0.48) 0%, rgba(10, 11, 14, 0.34) 100%),
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.55), transparent 42%),
        radial-gradient(circle at 70% 82%, rgba(255, 255, 255, 0.18), transparent 48%);
    opacity: 0.9;
    pointer-events: none;
}

.kvkk-consent-dialog::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(0, 0, 0, 0.08) 100%);
    box-shadow:
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.85),
        inset 0 -1px 1px rgba(0, 0, 0, 0.18);
    opacity: 0.95;
    pointer-events: none;
}

.kvkk-consent-dialog > * {
    position: relative;
    z-index: 1;
}

.kvkk-consent-eyebrow {
    margin: 0;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.kvkk-consent-title {
    margin: 0.55rem 0 0;
    color: #ffffff;
    font-family: "area-variable", "Montserrat", sans-serif;
    font-size: clamp(1.08rem, 1.3vw, 1.35rem);
    line-height: 1.12;
}

.kvkk-consent-text {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.55;
}

.kvkk-consent-link {
    display: inline;
    margin-top: 0;
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(215, 25, 25, 0.85);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.kvkk-consent-link:hover,
.kvkk-consent-link:focus-visible {
    color: var(--red);
    border-color: var(--red);
}

.kvkk-consent-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.95rem;
}

.kvkk-consent-button {
    min-height: 42px;
    flex: 1 1 0;
    position: relative;
    border: 1px solid var(--red);
    background: var(--red);
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    font-family: "area-variable", "Montserrat", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

.kvkk-consent-button::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.kvkk-consent-button:hover::before,
.kvkk-consent-button:focus-visible::before {
    transform: translateX(0);
}

.kvkk-consent-button span {
    position: relative;
    z-index: 1;
    transition: color 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.kvkk-consent-button-secondary {
    border-color: rgba(255, 255, 255, 0.26);
    background: transparent;
    color: #ffffff;
}

.kvkk-consent-button::before {
    background: #8f1212;
}

.kvkk-consent-button:hover span,
.kvkk-consent-button:focus-visible span {
    color: #ffffff;
}

.kvkk-consent-button:focus,
.kvkk-consent-button:focus-visible {
    outline: none;
    box-shadow: none;
}

.kvkk-consent-button-secondary:hover,
.kvkk-consent-button-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.kvkk-consent-button-secondary::before {
    background: rgba(255, 255, 255, 0.12);
}

.kvkk-consent-button-secondary:hover span,
.kvkk-consent-button-secondary:focus-visible span {
    color: #ffffff;
}

.floating-contact {
    --floating-contact-size: 54px;
    --floating-contact-icon-size: 22px;
    --floating-contact-gap: 12px;
    --floating-contact-right: clamp(1rem, 2vw, 1.6rem);
    --floating-contact-bottom: clamp(1rem, 2vw, 1.6rem);
    --floating-contact-glass-blur: 26px;
    --floating-contact-glass-brightness: 1.15;
    position: fixed;
    right: calc(var(--floating-contact-right) + env(safe-area-inset-right, 0px));
    bottom: calc(var(--floating-contact-bottom) + env(safe-area-inset-bottom, 0px));
    z-index: 1600;
    display: flex;
    flex-direction: column;
    gap: var(--floating-contact-gap);
    pointer-events: none;
}

.floating-contact-slot {
    position: relative;
    pointer-events: none;
}

.floating-contact-button {
    position: relative;
    width: var(--floating-contact-size);
    height: var(--floating-contact-size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgb(255, 0, 0);
    text-decoration: none;
    pointer-events: auto;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 1.2px 0 rgba(255, 255, 255, 0.85),
        inset 0 -1.5px 2px rgba(0, 0, 0, 0.08),
        inset 0 0 18px rgba(255, 255, 255, 0.18),
        0 14px 34px rgba(0, 0, 0, 0.22),
        0 2px 6px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(var(--floating-contact-glass-blur)) saturate(180%) brightness(var(--floating-contact-glass-brightness));
    -webkit-backdrop-filter: blur(var(--floating-contact-glass-blur)) saturate(180%) brightness(var(--floating-contact-glass-brightness));
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.floating-contact-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.55), transparent 42%),
        radial-gradient(circle at 70% 82%, rgba(255, 255, 255, 0.18), transparent 48%);
    opacity: 0.9;
    pointer-events: none;
}

.floating-contact-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(0, 0, 0, 0.08) 100%);
    box-shadow:
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.85),
        inset 0 -1px 1px rgba(0, 0, 0, 0.18);
    opacity: 0.95;
    pointer-events: none;
}

.floating-contact-button svg {
    position: relative;
    z-index: 1;
    width: var(--floating-contact-icon-size);
    height: var(--floating-contact-icon-size);
    display: block;
    fill: currentColor;
    stroke: none;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.floating-contact-button-whatsapp {
    color: #ffffff;
    background: linear-gradient(155deg, rgba(37, 211, 102, 0.75), rgba(18, 140, 70, 0.7));
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-contact-button-whatsapp::after {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 0, 0, 0.12) 100%);
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
    transform: translateY(-3px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1.5px 2px rgba(0, 0, 0, 0.1),
        inset 0 0 22px rgba(255, 255, 255, 0.24),
        0 20px 42px rgba(0, 0, 0, 0.26),
        0 3px 8px rgba(0, 0, 0, 0.18);
    outline: none;
}

.floating-contact-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translate(6px, -50%);
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1d1f24;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 12px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.floating-contact-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    transform: rotate(45deg) translateX(-4px);
    background: inherit;
    border-right: 1px solid rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 2px;
}

.floating-contact-slot-phone:hover .floating-contact-tooltip,
.floating-contact-button-phone:focus-visible + .floating-contact-tooltip {
    opacity: 1;
    transform: translate(0, -50%);
}

.wa-chat {
    position: absolute;
    right: calc(100% + 14px);
    top: auto;
    bottom: 0;
    width: 320px;
    max-width: calc(100vw - 2rem);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(20, 22, 26, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 24px 60px rgba(0, 0, 0, 0.32),
        0 4px 14px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: #fff;
    font-family: inherit;
    pointer-events: none;
    opacity: 0;
    transform: translate(10px, 0) scale(0.96);
    transform-origin: right bottom;
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.floating-contact-slot-whatsapp:hover .wa-chat,
.wa-chat.is-open,
.wa-chat:focus-within {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
}

.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 70, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wa-chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 7px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.wa-chat-avatar-icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.wa-chat-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wa-chat-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

.wa-chat-status {
    margin: 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.wa-chat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7cf59a;
    box-shadow: 0 0 0 2px rgba(124, 245, 154, 0.25);
}

.wa-chat-body {
    padding: 1rem 0.9rem 0.4rem;
    min-height: 96px;
    max-height: 210px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
        rgba(14, 16, 19, 0.35);
}

.wa-chat-bubble {
    position: relative;
    max-width: 85%;
    padding: 0.6rem 0.8rem 1.25rem;
    border-radius: 14px;
    font-size: 0.86rem;
    line-height: 1.35;
    color: #eef1f3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    margin-bottom: 0.55rem;
    word-wrap: break-word;
}

.wa-chat-bubble p {
    margin: 0;
}

.wa-chat-bubble p + p {
    margin-top: 0.2rem;
}

.wa-chat-bubble-in {
    border-top-left-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: auto;
}

.wa-chat-time {
    position: absolute;
    right: 10px;
    bottom: 6px;
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.55);
}

.wa-chat-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.6rem 0.7rem;
    background: rgba(10, 12, 14, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-chat-input {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.wa-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.wa-chat-input:focus {
    border-color: rgba(37, 211, 102, 0.7);
    background: rgba(255, 255, 255, 0.16);
}

.wa-chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(140deg, #25d366, #128c46);
    box-shadow: 0 6px 14px rgba(18, 140, 70, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wa-chat-send svg {
    width: 16px;
    height: 16px;
}

.wa-chat-send:hover,
.wa-chat-send:focus-visible {
    transform: scale(1.06);
    box-shadow: 0 8px 18px rgba(18, 140, 70, 0.55);
    outline: none;
}

.wa-chat-send:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 640px) {
    .floating-contact {
        --floating-contact-size: 48px;
        --floating-contact-icon-size: 20px;
        --floating-contact-gap: 10px;
        --floating-contact-right: 1rem;
        --floating-contact-bottom: 1rem;
    }

    .wa-chat {
        width: 280px;
    }

    .floating-contact-tooltip {
        display: none;
    }

    .kvkk-consent {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .kvkk-consent-dialog {
        padding: 0.95rem;
    }

    .kvkk-consent-actions {
        flex-direction: column;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    font-family: Arial, sans-serif;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: transform 260ms ease, background-color 220ms ease, border-color 220ms ease;
}

.header-shell {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0;
    min-height: var(--header-min-height);
    padding-top: calc(0.9rem + env(safe-area-inset-top, 0px));
    padding-right: clamp(0.9rem, 2vw, 1.7rem);
    padding-bottom: 0.9rem;
    padding-left: clamp(0.9rem, 2vw, 1.7rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
    transition: background-color 220ms ease;
}

.header-shell::before {
    content: none;
}

.header-shell::after {
    content: none;
}

.header-shell > * {
    position: relative;
    z-index: 1;
}

.header-shell > .desktop-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(0.45rem, 0.9vw, 1rem);
}

.desktop-nav-left > ul {
    justify-content: flex-start;
}

.desktop-nav-right > ul {
    justify-content: flex-end;
}

.desktop-item {
    position: relative;
}

.link-label {
    display: inline-block;
}

.wolf-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    margin-right: 0.4rem;
    opacity: 0;
    overflow: hidden;
    color: var(--red);
    transform: translateX(0) scale(1);
    filter: blur(0);
    will-change: opacity;
    transition: opacity 220ms ease-out;
    flex: 0 0 auto;
}

.boru-icon {
    width: 1.4rem;
    height: 1.4rem;
    display: block;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.34rem 0.38rem;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: calc(clamp(0.79rem, 0.74vw, 0.9rem) + 3px);
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
}

.lang-button,
.header-lang-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgb(255, 0, 0);
    background: transparent;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.lang-button {
    min-height: 34px;
    padding: 0.36rem 0.66rem;
}

.header-lang-chip {
    display: none;
}

.lang-button:hover,
.lang-button:focus-visible,
.header-lang-chip:hover,
.header-lang-chip:focus-visible {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.desktop-item:hover > .nav-link,
.nav-link:focus-visible {
    color: var(--red);
}

.desktop-item.is-active > .nav-link {
    color: var(--red);
}

.desktop-item:hover > .nav-link .wolf-slot,
.desktop-item.is-active > .nav-link .wolf-slot,
.nav-link:focus-visible .wolf-slot,
.mega-item:hover .wolf-slot,
.mega-item:focus-visible .wolf-slot,
.mega-item.is-previewed .wolf-slot,
.mobile-links > li.is-active > .mobile-link .wolf-slot,
.mobile-link:focus-visible .wolf-slot,
.mobile-sublink:focus-visible .wolf-slot {
    opacity: 1;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(124px, 14vw, 186px);
    justify-self: center;
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.has-mega {
    position: static;
}

body.page-urunler .site-header {
    --header-min-height: 76px;
}

body.page-urunler .site-header .header-shell {
    min-height: var(--header-min-height);
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
    align-items: center;
}

body.page-urunler .site-header .nav-link,
body.page-urunler .site-header .lang-button,
body.page-urunler .site-header .header-lang-chip,
body.page-urunler .site-header .nav-toggle,
body.page-urunler .site-header .brand-logo {
    align-self: center;
}

.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: var(--header-height);
    z-index: 1305;
    border: 1px solid rgba(16, 19, 23, 0.16);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow:
        0 14px 26px rgba(16, 19, 23, 0.16);
    overflow: clip;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.site-header.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.1rem clamp(1rem, 2.8vw, 2.4rem) 1.3rem;
}

.mega-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(1rem, 2vw, 1.8rem);
    align-items: stretch;
}

.mega-columns-wrap {
    min-width: 0;
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.2vw, 1.4rem);
}

.mega-column {
    margin: 0;
    padding: 0 0.95rem 0 0;
    list-style: none;
    border-right: 1px solid rgba(16, 19, 23, 0.16);
}

.mega-column:last-child {
    border-right: 0;
    padding-right: 0;
}

.mega-item {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: rgba(16, 19, 23, 0.95);
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
    padding: 0.66rem 0;
    transition: color var(--transition-fast);
}

.mega-item .link-label {
    position: relative;
    display: inline-block;
}

.mega-item .link-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.28rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(215, 25, 25, 1) 0%,
        rgba(215, 25, 25, 0.92) 58%,
        rgba(215, 25, 25, 0.38) 82%,
        rgba(215, 25, 25, 0) 100%
    );
    opacity: 0;
    transform: scaleX(0.3);
    transform-origin: left center;
    transition: opacity 500ms ease, transform 500ms ease;
    pointer-events: none;
}

.mega-item:hover,
.mega-item:focus-visible,
.mega-item.is-active,
.mega-item.is-previewed {
    color: var(--red);
}

.mega-item:hover .link-label::after,
.mega-item:focus-visible .link-label::after,
.mega-item.is-active .link-label::after,
.mega-item.is-previewed .link-label::after {
    opacity: 1;
    transform: scaleX(1);
}

.mega-preview {
    display: flex;
    flex-direction: column;
    border: 0;
    background: transparent;
    min-height: 340px;
}

.mega-preview.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
}

.mega-preview.is-hidden .mega-preview-media {
    background: transparent;
}

.mega-preview-media {
    min-height: 340px;
    flex: 1;
    background: transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

#megaPreviewImage {
    width: min(100%, 360px);
    max-height: 320px;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

#megaPreviewImage.is-visible {
    opacity: 1;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #101317;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-panel {
    display: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-lang-wrap {
    margin-top: 0.25rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line-soft);
}

.page-content {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 1;
    background: var(--bg);
    min-height: calc(var(--app-height, 100vh) - var(--header-height, 86px));
}

.page-content.page-content-home {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg);
}

.home-bc200 {
    background: #ffffff;
    color: #101317;
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.home-bc200-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(var(--app-height, 100vh) * 0.8);
    text-align: center;
    padding: 2rem 1rem;
}

.home-bc200-title {
    margin: 0 0 1.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12em;
    line-height: 0.96;
    color: #101317;
    font-family: "area-variable", "Montserrat", sans-serif;
}

.home-bc200-title-thin {
    display: block;
    font-size: clamp(2.2rem, 7vw, 5.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.home-bc200-title-strong {
    display: block;
    font-size: clamp(2.8rem, 8.8vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-bc200-subtitle {
    margin: 0;
    font-size: clamp(1rem, 1.7vw, 1.36rem);
    color: rgba(16, 19, 23, 0.7);
    font-family: "area-variable", "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.home-bc200 [data-home-bc200-reveal] {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

.home-bc200.is-bc200-intro-visible [data-home-bc200-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-bc200.is-bc200-intro-visible .home-bc200-title [data-home-bc200-reveal]:nth-child(1) {
    transition-delay: 0.05s;
}

.home-bc200.is-bc200-intro-visible .home-bc200-title [data-home-bc200-reveal]:nth-child(2) {
    transition-delay: 0.18s;
}

.home-bc200.is-bc200-intro-visible .home-bc200-title [data-home-bc200-reveal]:nth-child(3) {
    transition-delay: 0.31s;
}

.home-bc200.is-bc200-intro-visible .home-bc200-subtitle[data-home-bc200-reveal] {
    transition-delay: 0.46s;
}

.home-bc200-comparison-wrap {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    overflow-x: hidden;
}

.home-bc200-comparison {
    position: relative;
    width: 100%;
    height: calc(var(--app-height, 100vh) - var(--header-height, 70px) - 2rem);
    max-height: 680px;
    min-height: 260px;
    overflow: hidden;
}

.home-bc200-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-bc200-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-bc200-image-after {
    overflow: hidden;
    transform: translate(100%, 0);
}

.home-bc200-image-after img {
    transform: translate(-100%, 0);
}

.home-bc200-slider {
    display: none;
}

@media (max-width: 1080px), (hover: none) and (pointer: coarse), (any-pointer: coarse) {
    .home-bc200-comparison {
        --bc200-slider-pos: 50%;
        contain: layout paint;
    }

    .home-bc200-image-after {
        transition: none;
    }

    .home-bc200-image-after img {
        transition: none;
    }

    .home-bc200-comparison.is-bc200-dragging .home-bc200-image-after,
    .home-bc200-comparison.is-bc200-dragging .home-bc200-image-after img,
    .home-bc200-comparison.is-bc200-dragging .home-bc200-slider {
        will-change: transform;
    }

    .home-bc200-slider {
        display: flex;
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: var(--bc200-slider-pos);
        width: 48px;
        transform: translateX(-50%);
        align-items: center;
        justify-content: center;
        touch-action: pan-y pinch-zoom;
        cursor: ew-resize;
        z-index: 4;
        pointer-events: none;
    }

    .home-bc200-slider:focus-visible {
        outline: none;
    }

    .home-bc200-slider:focus-visible .home-bc200-slider-thumb {
        box-shadow: 0 0 0 3px rgba(16, 19, 23, 0.35), 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    .home-bc200-slider-bar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        background: rgba(16, 19, 23, 0.55);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
        pointer-events: none;
    }

    .home-bc200-slider-thumb {
        position: relative;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #101317;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        pointer-events: auto;
        touch-action: none;
        cursor: ew-resize;
        user-select: none;
        -webkit-user-select: none;
    }

    .home-bc200-slider-arrow {
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .home-bc200-slider-arrow--l {
        border-right: 8px solid #101317;
    }

    .home-bc200-slider-arrow--r {
        border-left: 8px solid #101317;
    }

    .home-bc200-slider.is-bc200-dragging .home-bc200-slider-thumb {
        transform: scale(1.06);
    }

    .home-bc200 [data-home-bc200-reveal],
    .home-bc200.is-bc200-intro-visible [data-home-bc200-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.page-anasayfa .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.page-haberler .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.page-hero {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    padding: clamp(1.2rem, 3vw, 2.5rem);
}

.page-hero h1 {
    margin: 0 0 0.55rem;
    color: var(--text-strong);
    font-family: "Rubik Dirt", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.04;
}

.page-hero p {
    margin: 0;
    max-width: 74ch;
    color: var(--muted);
}

.info-hero {
    position: relative;
    min-height: calc(var(--app-height, 100vh) - var(--header-height));
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    border: 0;
}

.info-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.info-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(104deg, rgba(8, 10, 14, 0.78) 0%, rgba(8, 10, 14, 0.4) 42%, rgba(8, 10, 14, 0.78) 100%),
        radial-gradient(70% 90% at 78% 16%, rgba(215, 25, 25, 0.16), rgba(215, 25, 25, 0));
}

.info-hero-content {
    position: relative;
    z-index: 1;
    min-height: inherit;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(1.2rem, 3.2vw, 2.6rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.95rem;
    color: #ffffff;
    max-width: min(78ch, 100%);
}

.info-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.info-breadcrumb a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.info-breadcrumb a:hover,
.info-breadcrumb a:focus-visible {
    color: #ffffff;
}

.info-hero h1 {
    margin: 0;
    font-family: "Rubik Dirt", sans-serif;
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
}

.info-hero p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
}

.page-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: clamp(0.35rem, 1.2vh, 0.85rem);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.page-hero-scroll-line {
    display: block;
    width: 1px;
    height: clamp(36px, 5vh, 48px);
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.page-hero-scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d71919;
    animation: pageHeroScrollPulse 2s 1.5s ease-in-out infinite;
}

@keyframes pageHeroScrollPulse {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: -100%; }
}

.page-content > .info-hero:first-child {
    margin-top: -2rem;
}

.general-info-content {
    background: #ffffff;
    padding: clamp(1.2rem, 2.8vw, 2.4rem) 0 0;
}

.general-info-inner {
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 1.05rem;
}

.general-info-inner p {
    margin: 0;
    color: #171b20;
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.72;
}

.page-anasayfa .home-intro-stack {
    --page-padding: 1.5rem;
    --color-text: #fff;
    --color-bg: #12100e;
    --color-bg-1: #2f251e;
    --color-bg-2: #43392f;
    --color-bg-3: #18130e;
    --color-bg-4: var(--color-bg-1);
    --color-bg-5: var(--color-bg-2);
    --color-bg-6: var(--color-bg-3);
    position: relative;
    width: 100%;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: "area-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 150, "wght" 500, "INKT" 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-anasayfa .home-intro-stack *,
.page-anasayfa .home-intro-stack *::before,
.page-anasayfa .home-intro-stack *::after {
    box-sizing: border-box;
}

.page-anasayfa .home-intro-stack i {
    font-style: normal;
    font-family: "area-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400, "INKT" 400;
}

.page-anasayfa .home-intro-stack .content {
    padding: var(--page-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-anasayfa .home-intro-stack .content--sticky {
    width: 100vw;
    position: sticky;
    top: 0;
    height: var(--app-height, 100vh);
}

.page-anasayfa .home-intro-stack .content--half {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    text-align: center;
}

.page-anasayfa .home-intro-stack .content--half:nth-child(odd) {
    margin-left: auto;
}

.page-anasayfa .home-intro-stack .content__img {
    width: 50%;
    max-width: 300px;
    height: auto;
}

.page-anasayfa .home-intro-stack .content__img--small {
    height: 35%;
    width: auto;
}

.page-anasayfa .home-intro-stack .content__title {
    letter-spacing: -0.095em;
    text-transform: uppercase;
    line-height: 1;
    font-weight: normal;
    font-size: clamp(2rem, 6vw, 5rem);
    margin: 0;
    font-family: "area-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 400, "wght" 900, "INKT" 400;
}

.page-anasayfa .home-intro-stack .content__text {
    margin: 0;
    max-width: 500px;
    text-align: center;
    line-height: 1.5;
    padding: 0 1rem;
    backface-visibility: hidden;
}

.page-anasayfa .home-intro-stack .content__text--narrow {
    max-width: 300px;
}

.page-anasayfa .home-intro-stack .bg-1 {
    background: #000 url("../../assets/images/home-intro/stack-scene.webp") center/cover no-repeat;
}

.page-anasayfa .home-intro-stack .bg-2 { background: var(--color-bg-2); }

.page-anasayfa .home-intro-stack .bg-3 {
    background: #000 url("../../assets/images/anasayfa.webp") center/cover no-repeat;
}

.page-anasayfa .home-intro-stack .bg-4 { background: var(--color-bg-4); }

.page-anasayfa .home-intro-stack .bg-5 {
    background: #000 url("../../assets/images/arkaplansss.webp") center/cover no-repeat;
}

.page-anasayfa .home-intro-stack .bg-6 { background: var(--color-bg-6); }

@media screen and (min-width: 63em) and (hover: hover) and (pointer: fine) {
    .page-anasayfa .home-intro-stack {
        --page-padding: 2rem 3rem;
    }

    .page-anasayfa .home-intro-stack .content--half {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .page-anasayfa .home-intro-stack {
        --page-padding: clamp(1.2rem, 2vw, 2rem);
    }

    .page-anasayfa .home-intro-stack .content--sticky {
        width: 100%;
        margin-left: 0 !important;
        top: var(--header-height, 86px);
        height: calc(var(--app-height, 100vh) - var(--header-height, 86px));
        min-height: calc(var(--app-height, 100vh) - var(--header-height, 86px));
    }

    .page-anasayfa .home-intro-stack .content--half {
        width: 100%;
        gap: clamp(1.25rem, 2.4vh, 2.2rem);
    }

    .page-anasayfa .home-intro-stack .content__img {
        width: min(58vw, 320px);
        max-width: 320px;
    }

    .page-anasayfa .home-intro-stack .content__img--small {
        width: auto;
        height: auto;
        max-width: min(34vw, 260px);
        max-height: min(28vh, 300px);
        object-fit: contain;
    }

    .page-anasayfa .home-intro-stack .content__title {
        font-size: clamp(2.6rem, 7vw, 5rem);
    }

    .page-anasayfa .home-intro-stack .content__text {
        max-width: min(72vw, 460px);
    }

    .page-anasayfa .home-intro-stack .bg-1,
    .page-anasayfa .home-intro-stack .bg-3,
    .page-anasayfa .home-intro-stack .bg-5 {
        background-position: center center;
    }
}

@media ((min-width: 768px) and (max-width: 1080px)),
    ((hover: none) and (pointer: coarse) and (min-width: 768px)) {
    .page-anasayfa .home-intro-stack {
        --page-padding: clamp(1.4rem, 2.4vw, 2.4rem) clamp(1.5rem, 3vw, 2.4rem);
    }

    .page-anasayfa .home-intro-stack .content--sticky {
        width: 100%;
        margin-left: 0 !important;
        top: var(--header-height, 86px);
        height: calc(var(--app-height, 100vh) - var(--header-height, 86px));
        min-height: calc(var(--app-height, 100vh) - var(--header-height, 86px));
    }

    .page-anasayfa .home-intro-stack .content--half {
        width: 100%;
        gap: clamp(1.6rem, 2.4vh, 2.4rem);
    }

    .page-anasayfa .home-intro-stack .content--half:nth-child(odd) {
        margin-left: 0;
    }

    .page-anasayfa .home-intro-stack .content__img {
        width: min(42vw, 360px);
        max-width: 360px;
    }

    .page-anasayfa .home-intro-stack .content__img--small {
        width: auto;
        height: auto;
        max-width: min(34vw, 300px);
        max-height: min(34vh, 320px);
        object-fit: contain;
    }

    .page-anasayfa .home-intro-stack .content__title {
        font-size: clamp(3.2rem, 7vw, 5.6rem);
    }

    .page-anasayfa .home-intro-stack .content__text {
        max-width: min(72vw, 520px);
        font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    }

    .page-anasayfa .home-intro-stack .bg-1,
    .page-anasayfa .home-intro-stack .bg-3,
    .page-anasayfa .home-intro-stack .bg-5 {
        background-position: center center;
    }
}

@media ((min-width: 768px) and (max-width: 1080px) and (orientation: landscape)),
    ((hover: none) and (pointer: coarse) and (min-width: 768px) and (orientation: landscape)) {
    .page-anasayfa .home-intro-stack .content__img--small {
        max-width: min(24vw, 220px);
        max-height: min(32vh, 260px);
    }

    .page-anasayfa .home-intro-stack .content__title {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .page-anasayfa .home-intro-stack .content__text {
        max-width: min(52vw, 440px);
    }
}

.site-footer {
    --footer-bg-desktop: url("../images/footer/bgdesktop.webp");
    --footer-bg-tablet: url("../images/footer/bgtablet.webp");
    --footer-bg-mobile: url("../images/footer/bgmobile.webp");
    --footer-bg-image: var(--footer-bg-desktop);
    --footer-bg-position: center bottom;
    --footer-bg-size: 100% auto;
    --footer-bg-lead: 65vh;
    --footer-bg-lead-negative: -65vh;
    --footer-bg-fade: 30vh;
    --footer-slogan-inset: clamp(2rem, 6vh, 4.5rem);
    position: relative;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    z-index: 0;
    margin-top: var(--footer-bg-lead);
    background: #020203;
    color: rgba(255, 255, 255, 0.85);
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: clamp(2.5rem, 6vh, var(--header-height, 86px));
    min-height: var(--app-height, 100vh);
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: none;
    isolation: isolate;
    transition: background 0.5s ease, color 0.35s ease;
}

@media (max-width: 1080px) {
    .site-footer {
        --footer-bg-image: var(--footer-bg-tablet);
        --footer-bg-position: center bottom;
        --footer-bg-size: 100% auto;
        --footer-bg-lead: 36vh;
        --footer-bg-lead-negative: -36vh;
        --footer-bg-fade: 20vh;
        --footer-slogan-inset: clamp(1.5rem, 4vh, 2.8rem);
        transition: none;
    }

    .footer-slogan {
        width: min(1200px, calc(100% - 2rem));
    }

    .footer-slogan-word-large {
        font-size: clamp(4.2rem, 13vw, 10rem);
    }

    .footer-slogan-word-sub {
        font-size: clamp(1.15rem, 3.8vw, 2.7rem);
    }
}

@media (max-width: 640px) {
    .site-footer {
        --footer-bg-image: var(--footer-bg-mobile);
        --footer-bg-position: center bottom;
        --footer-bg-size: 100% auto;
        --footer-bg-lead: 30vh;
        --footer-bg-lead-negative: -30vh;
        --footer-bg-fade: 18vh;
        --footer-slogan-inset: clamp(1rem, 3vh, 1.8rem);
        transition: none;
    }

    .footer-slogan {
        width: min(100%, calc(100% - 1.5rem));
    }

    .footer-slogan-title {
        gap: 0.8rem;
        line-height: 0.88;
    }

    .footer-slogan-word-large {
        font-size: clamp(3.1rem, 16vw, 6rem);
    }

    .footer-slogan-word-sub {
        font-size: clamp(1rem, 5.6vw, 2rem);
        letter-spacing: 0.06em;
    }
}

.page-anasayfa .site-footer {
    min-height: var(--app-height, 100vh);
}

@media (min-height: 600px) {
    .site-footer {
        min-height: var(--app-height, 100vh);
    }
}

.site-footer::before {
    content: "";
    position: absolute;
    top: var(--footer-bg-lead-negative);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 46%, rgba(255, 255, 255, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44));
}

.site-footer::after {
    content: "";
    position: absolute;
    top: var(--footer-bg-lead-negative);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--footer-bg-image) var(--footer-bg-position) / var(--footer-bg-size) no-repeat #020203;
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 10vh,
        rgba(0, 0, 0, 1) var(--footer-bg-fade)
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 10vh,
        rgba(0, 0, 0, 1) var(--footer-bg-fade)
    );
}

.footer-astronaut {
    position: absolute;
    left: 50%;
    bottom: clamp(10%, 16vh, 24%);
    width: clamp(500px, 52vw, 900px);
    aspect-ratio: 1500 / 1424;
    z-index: 2;
    pointer-events: none;
    transform: translate3d(-30%, 0, 0);
    will-change: transform;
    animation: footer-astronaut-float 7.5s ease-in-out infinite;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.footer-astronaut-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

@keyframes footer-astronaut-float {
    0%, 100% {
        transform: translate3d(-30%, 0, 0) rotate(-0.6deg);
    }
    50% {
        transform: translate3d(-30%, -14px, 0) rotate(0.6deg);
    }
}

@media (max-width: 1080px) {
    .footer-astronaut {
        width: clamp(480px, 80vw, 780px);
        bottom: clamp(14%, 22vh, 30%);
        transform: translate3d(-40%, 0, 0);
        animation-name: footer-astronaut-float-tablet;
    }

    @keyframes footer-astronaut-float-tablet {
        0%, 100% { transform: translate3d(-40%, 0, 0) rotate(-0.5deg); }
        50% { transform: translate3d(-40%, -12px, 0) rotate(0.5deg); }
    }
}

@media (max-width: 640px) {
    .footer-astronaut {
        width: clamp(320px, 86vw, 500px);
        bottom: clamp(18%, 28vh, 38%);
        transform: translate3d(-42%, 0, 0);
        animation-name: footer-astronaut-float-mobile;
    }

    @keyframes footer-astronaut-float-mobile {
        0%, 100% { transform: translate3d(-42%, 0, 0) rotate(-0.5deg); }
        50% { transform: translate3d(-42%, -10px, 0) rotate(0.5deg); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-astronaut {
        animation: none;
    }
}

.footer-stars {
    position: absolute;
    top: var(--footer-bg-lead-negative);
    left: 0;
    right: 0;
    height: 70vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%);
}

.footer-star {
    position: absolute;
    width: var(--star-size, 2px);
    height: var(--star-size, 2px);
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 var(--star-glow, 6px) rgba(255, 255, 255, 0.95),
        0 0 calc(var(--star-glow, 6px) * 2) rgba(255, 255, 255, 0.45);
    will-change: opacity, transform;
    animation: footer-star-twinkle var(--star-duration, 3.4s) ease-in-out var(--star-delay, 0s) infinite;
}

@keyframes footer-star-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.7); }
    50% { opacity: var(--star-peak, 1); transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    .footer-star {
        animation: none;
        opacity: var(--star-peak, 0.8);
    }
}

.footer-reveal-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
}

.footer-slogan {
    position: absolute;
    top: calc(var(--footer-bg-lead-negative) + var(--footer-slogan-inset));
    left: 50%;
    z-index: 3;
    width: min(1400px, calc(100% - 2rem));
    margin: 0;
    min-height: 0;
    display: block;
    padding: 0.16em 0 0.2em;
    pointer-events: none;
    transform: translateX(-50%);
    overflow-x: clip;
    overflow-y: visible;
    contain: layout paint;
}

.footer-slogan-title {
    margin: 0;
    display: grid;
    gap: clamp(0.9rem, 2.4vh, 1.8rem);
    text-align: center;
    line-height: 0.92;
    color: #fff;
    overflow: visible;
    padding: 0.05em 0 0.14em;
}

.footer-slogan-word {
    display: block;
    white-space: nowrap;
    max-width: 100%;
    overflow: visible;
    line-height: 1;
    padding: 0.04em 0 0.08em;
}

.footer-slogan-word-large {
    font-family: "area-variable", "Montserrat", sans-serif;
    font-size: clamp(4.8rem, 16vw, 16rem);
    font-weight: 800;
    letter-spacing: 0;
}

.footer-slogan-word-sub {
    font-family: "Montserrat", "area-variable", sans-serif;
    font-size: clamp(1.2rem, 4.6vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: none;
}

.footer-slogan-char {
    display: inline-block;
    will-change: transform, opacity;
    line-height: 1;
    transform: translate3d(var(--footer-slogan-x, 0px), var(--footer-slogan-y, 0px), 0);
    opacity: var(--footer-slogan-opacity, 1);
}

.site-footer {
    overflow-x: clip;
}

.footer-main {
    flex: 1 1 auto;
    display: flex;
    width: 100%;
    min-height: 0;
    position: relative;
    z-index: 2;
    transition: opacity 0.28s ease, filter 0.28s ease;
}

.footer-bottom {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: opacity 0.28s ease, filter 0.28s ease;
}

.footer-main-inner {
    width: min(1340px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(1.6rem, 4.5vh, 4rem) 0 clamp(1rem, 3vh, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(1rem, 2.6vh, 2rem);
    flex: 1;
    min-height: 0;
}

.footer-main-inner-contact-only {
    justify-content: flex-end;
    align-items: flex-start;
    width: min(1340px, calc(100% - clamp(8px, 1.6vw, 16px)));
    padding-left: clamp(4px, 0.7vw, 8px);
    padding-right: 0;
}

.footer-contact-block-only {
    max-width: min(calc(100% - clamp(6px, 0.9vw, 12px)), 34rem);
    margin-left: clamp(4px, 0.7vw, 8px);
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}

.footer-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 1.4rem;
}

.footer-contact-title {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 0.55rem;
}

.footer-contact-title::after {
    content: "";
    display: block;
    width: min(100%, 11rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.24) 70%, rgba(255, 255, 255, 0) 100%);
}

.footer-mini-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer-mini-links a:hover,
.footer-mini-links a:focus-visible {
    color: var(--red);
    transform: translateX(4px);
}

.footer-mini-links-separator {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
}

.footer-address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.footer-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-contact-lines p {
    margin: 0;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-address a:hover,
.footer-address a:focus-visible {
    color: var(--red);
}

.footer-social-links {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0.2rem;
    width: 100%;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    color: var(--red);
    transform: translateY(-2px);
}

.footer-bottom-inner {
    width: min(1340px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.8rem;
}

.footer-rights-phrase {
    display: inline-block;
}

.footer-sonart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.footer-sonart-link:hover,
.footer-sonart-link:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
}

.footer-sonart-logo {
    display: block;
    width: clamp(38px, 4vw, 58px);
    height: auto;
}

.footer-mini-links {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-self: end;
    justify-content: flex-end;
    padding-right: calc(54px + clamp(1rem, 2vw, 1.6rem));
}

.footer-contact-block {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.site-footer.is-revealed .footer-contact-block {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

@media (max-width: 1080px), (hover: none) and (pointer: coarse), (any-pointer: coarse) {
    .site-footer::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.38));
    }

    .site-footer::after {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .footer-main,
    .footer-bottom,
    .footer-contact-block {
        transition: none;
    }

    .footer-contact-block,
    .site-footer.is-revealed .footer-contact-block {
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }

    .footer-contact-group:first-child .footer-contact-title,
    .footer-contact-group:first-child .footer-contact-lines a {
        display: inline-block;
        text-shadow:
            0 5px 24px rgba(0, 0, 0, 1),
            0 0 48px rgba(0, 0, 0, 0.96);
    }
}

@media (max-width: 1280px) {
    .header-shell {
        gap: 0.68rem;
    }

    .header-shell > .desktop-nav > ul {
        gap: 0.34rem;
    }

    .nav-link {
        font-size: calc(0.76rem + 3px);
    }

    .mega-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    }

}

@media (max-width: 1160px) {
    .mega-layout {
        grid-template-columns: 1fr;
    }

    .mega-preview {
        min-height: 280px;
    }

    .mega-preview-media {
        min-height: 200px;
    }
}

@media (max-width: 1220px), (hover: none), (pointer: coarse) {
    :root {
        --header-min-height: 58px;
    }

    .header-shell {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 1fr;
        min-height: var(--header-min-height);
        padding-top: calc(0.45rem + env(safe-area-inset-top, 0px));
        padding-right: 0.8rem;
        padding-bottom: 0.45rem;
        padding-left: 0.8rem;
        gap: 0.35rem;
        border-radius: 0;
    }

    .desktop-nav,
    .mega-menu {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        color: #ffffff;
        width: 34px;
        height: 34px;
        padding: 0;
        margin: 0;
        position: relative;
        top: 0;
    }

    .header-lang-chip {
        display: inline-flex;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
        min-height: 34px;
        padding: 0.28rem 0.56rem;
        font-size: 0.7rem;
        margin: 0;
    }

    body.page-urunler .site-header {
        --header-min-height: 58px;
    }

    body.page-urunler .site-header .header-shell {
        min-height: var(--header-min-height);
        padding-top: 0.34rem;
        padding-bottom: 0.34rem;
    }

    body.page-urunler .site-header .nav-toggle {
        top: 0;
    }

    .brand-logo {
        position: absolute;
        grid-row: 1;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        grid-column: auto;
        justify-self: auto;
        align-self: auto;
        width: clamp(124px, 40vw, 172px);
        margin: 0;
    }

    .mobile-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #000;
        border-top: 0;
        transition: max-height var(--transition-fast), padding var(--transition-fast);
        padding: 0 1rem;
    }

    .site-header.menu-open .mobile-panel {
        max-height: var(--mobile-menu-height, calc(100vh - var(--header-height)));
        max-height: var(--mobile-menu-height, calc(100dvh - var(--header-height)));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.7rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
    }

    body.mobile-menu-open .site-header {
        top: 0;
    }

    body.mobile-menu-open .site-header .header-shell {
        min-height: var(--mobile-menu-header-height, var(--header-height, var(--header-min-height)));
    }

    .mobile-links {
        margin: 0;
        padding: 0 0 0.35rem;
        list-style: none;
        display: grid;
        gap: 0.1rem;
    }

    .mobile-link,
    .mobile-sublink {
        width: 100%;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        color: var(--text-strong);
        text-decoration: none;
        background: transparent;
        border: 0;
        padding: 0.45rem 0;
        text-align: left;
        font-size: 0.94rem;
        font-family: inherit;
    }

    .mobile-sublink {
        min-height: 38px;
        padding: 0.38rem 0;
        font-size: 0.88rem;
        color: var(--text-strong);
    }

    .mobile-products-toggle::after {
        content: "+";
        margin-left: auto;
        font-size: 1.1rem;
        line-height: 1;
        color: rgba(255, 255, 255, 0.82);
        transition: transform var(--transition-fast);
    }

    .mobile-products.is-open .mobile-products-toggle::after {
        transform: rotate(45deg);
    }

    .mobile-submenu {
        margin: 0;
        padding: 0 0 0 0.68rem;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        background: #000;
        border-left: 1px solid rgba(255, 255, 255, 0.11);
        transition: max-height var(--transition-fast), opacity var(--transition-fast);
    }

    .mobile-products.is-open .mobile-submenu {
        max-height: 2200px;
        overflow: visible;
        opacity: 1;
    }

    .mobile-links > li.is-active > .mobile-link,
    .mobile-link:focus-visible,
    .mobile-sublink:focus-visible {
        color: var(--red);
    }

}

@media (max-width: 640px) {
    .page-content {
        width: calc(100% - 1rem);
        padding-top: 1.2rem;
    }

    .page-hero {
        padding: 1rem;
    }

    .page-hero h1 {
        font-size: clamp(1.55rem, 8vw, 2.3rem);
    }

    .info-hero {
        min-height: calc(var(--app-height, 100vh) - var(--header-height));
    }

    .info-hero-content {
        width: calc(100% - 1rem);
        padding: 1rem;
    }

    .info-hero h1 {
        font-size: clamp(1.7rem, 10vw, 2.35rem);
    }

    .info-breadcrumb {
        font-size: 0.72rem;
        gap: 0.35rem;
    }

    .info-hero p {
        font-size: 0.92rem;
    }

    .general-info-content {
        padding-top: 0.95rem;
    }

    .general-info-inner {
        width: calc(100% - 1rem);
        gap: 0.85rem;
    }

    .general-info-inner p {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .home-bc200 {
        padding: 2.5rem 0 2.8rem;
    }

    .home-bc200-intro {
        min-height: calc(var(--app-height, 100vh) * 0.6);
    }

    .home-bc200-comparison {
        height: 56vw;
        max-height: 400px;
        min-height: 200px;
    }

    .footer-main-inner {
        gap: 1.5rem;
        padding: clamp(1.25rem, 3.4vh, 3rem) 0 clamp(0.9rem, 2.2vh, 2rem);
    }

    .page-content > .info-hero:first-child {
        margin-top: -1.2rem;
    }
}

@media (max-width: 480px) {
    .home-bc200-comparison {
        height: 72vw;
        max-height: 300px;
    }

    .home-bc200-title {
        margin-bottom: 1.2rem;
        gap: 0.08em;
        line-height: 0.98;
    }

    .home-bc200-title-thin {
        font-size: clamp(1.7rem, 9vw, 2.8rem);
        letter-spacing: 0.05em;
    }

    .home-bc200-title-strong {
        font-size: clamp(2rem, 11vw, 3.3rem);
    }

    .home-bc200-subtitle {
        white-space: normal;
        max-width: min(92vw, 28rem);
    }

    .footer-main-inner-contact-only {
        align-items: stretch;
    }

    .footer-contact-block-only {
        max-width: calc(100% - 14px);
        margin-left: 6px;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        align-items: flex-start;
    }

}

@media (max-height: 820px) {
    .footer-main-inner {
        padding: clamp(1rem, 2.8vh, 2rem) 0 clamp(0.8rem, 2vh, 1.5rem);
        gap: clamp(0.7rem, 1.8vh, 1.2rem);
    }

    .footer-mini-links a,
    .footer-address {
        font-size: 0.9rem;
    }

    .footer-contact-title {
        margin-bottom: 0.9rem;
    }

    .footer-bottom-inner {
        padding-top: 0.8rem;
    }
}

@media (max-height: 680px) {
    .footer-main-inner {
        padding: 0.9rem 0 0.7rem;
        gap: 0.65rem;
    }

    .footer-mini-links a,
    .footer-address,
    .footer-bottom-inner p {
        font-size: 0.82rem;
    }

    .footer-contact-title {
        font-size: 0.64rem;
        margin-bottom: 0.65rem;
    }

    .footer-bottom-inner {
        padding-top: 0.7rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 0.6rem;
    }

    .footer-bottom-inner p {
        font-size: 0.72rem;
    }

    .footer-sonart-logo {
        width: 34px;
    }

    .footer-mini-links a {
        font-size: 0.78rem;
    }

    .footer-mini-links {
        padding-right: calc(48px + 1rem);
    }

    .footer-contact-block-only {
        max-width: calc(100% - 8px);
        margin-left: 4px;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 900px) {
    .footer-bottom-inner {
        grid-template-columns: minmax(0, 1fr);
        justify-items: start;
        gap: 0.85rem;
        padding-right: calc(52px + 1rem);
    }

    .footer-bottom-inner p,
    .footer-sonart-link,
    .footer-mini-links {
        justify-self: start;
    }

    .footer-sonart-link {
        order: 3;
        justify-self: center;
    }

    .footer-mini-links {
        order: 2;
        justify-content: flex-start;
        padding-right: 0;
        max-width: 100%;
        gap: 0.45rem 0.85rem;
    }

    .footer-mini-links-separator {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        padding-right: calc(52px + 0.85rem);
    }

    .footer-mini-links {
        display: grid;
        gap: 0.55rem;
    }

    .footer-mini-links a {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-contact-block {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}

.home-marquee {
    width: 100%;
    background: #ffffff;
    padding: 100px 0 clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
    position: relative;
}

.home-marquee-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.home-marquee-label {
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: 1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0;
    user-select: none;
}

.home-marquee-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    width: max-content;
    will-change: transform;
}

.home-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 12vw, 160px);
    height: clamp(48px, 6vw, 72px);
}

.home-marquee-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .home-marquee {
        padding-top: 100px;
        padding-bottom: clamp(2.5rem, 6vw, 4rem);
    }

    .home-marquee-track {
        gap: clamp(1.5rem, 5vw, 2.5rem);
    }

    .home-marquee-item {
        width: clamp(80px, 18vw, 120px);
        height: clamp(36px, 8vw, 56px);
    }
}

.home-hero {
    --hh-red: #d71919;
    --hh-ink: #f4f4f4;
    --hh-muted: rgba(244, 244, 244, 0.48);
    --hh-offset: var(--header-height, 86px);
    --hh-stage-top-gap: clamp(1.8rem, 4.6vh, 3.2rem);
    --hh-eyebrow-gap: clamp(2.85rem, 6.2vh, 4.85rem);
    --hh-scrim-side-start: 0.75;
    --hh-scrim-side-mid: 0.52;
    --hh-scrim-side-soft: 0.18;
    --hh-scrim-side-end: 0.04;
    --hh-scrim-top: 0.15;
    --hh-scrim-upper: 0.02;
    --hh-scrim-lower: 0.5;
    --hh-scrim-bottom: 0.8;
    position: relative;
    width: 100%;
    height: calc(var(--app-height, 100vh) + var(--hh-offset));
    min-height: calc(min(600px, var(--app-height, 100vh)) + var(--hh-offset));
    overflow: hidden;
    background: #000;
    isolation: isolate;
    margin-top: calc(var(--hh-offset) * -1);
    color: var(--hh-ink);
}

.home-hero.is-slide-2-active,
.home-hero.is-slide-3-active {
    --hh-scrim-side-start: 0.42;
    --hh-scrim-side-mid: 0.28;
    --hh-scrim-side-soft: 0.08;
    --hh-scrim-side-end: 0.02;
    --hh-scrim-top: 0.08;
    --hh-scrim-upper: 0;
    --hh-scrim-lower: 0.26;
    --hh-scrim-bottom: 0.46;
}

.hh-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hh-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.07);
    transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 10s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hh-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hh-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(0, 0, 0, var(--hh-scrim-side-start)) 0%, rgba(0, 0, 0, var(--hh-scrim-side-mid)) 35%, rgba(0, 0, 0, var(--hh-scrim-side-soft)) 60%, rgba(0, 0, 0, var(--hh-scrim-side-end)) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, var(--hh-scrim-top)) 0%, rgba(0, 0, 0, var(--hh-scrim-upper)) 40%, rgba(0, 0, 0, var(--hh-scrim-lower)) 80%, rgba(0, 0, 0, var(--hh-scrim-bottom)) 100%);
}

.hh-stage {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding:
        calc(var(--hh-offset) + var(--hh-stage-top-gap))
        clamp(2rem, 5.5vw, 5.5rem)
        clamp(5rem, 12vh, 8rem);
}

.hh-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 64%;
    padding-top: 0;
}

.hh-eyebrow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.7rem, 0.3vw + 0.62rem, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hh-red);
    margin: 0 0 var(--hh-eyebrow-gap);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    transform: none;
    flex: 0 0 auto;
}

.hh-eyebrow-line {
    display: block;
    width: 2.2rem;
    height: 1px;
    background: var(--hh-red);
    flex-shrink: 0;
}

.hh-headline {
    display: block;
    font-family: "area-variable", sans-serif;
    font-weight: 900;
    font-size: clamp(4.5rem, 12vw, 12rem);
    line-height: 0.87;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 0 2rem;
    user-select: none;
    white-space: nowrap;
}

.hh-hl-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: clamp(1.5px, 0.15vw, 2.5px) var(--hh-ink);
}

.hh-hl-fill {
    display: block;
    color: var(--hh-ink);
}

.hh-divider {
    display: none;
}

.hh-tagline {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.82rem, 1.1vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--hh-muted);
    margin: 0 0 2.4rem;
}

.hh-ctas {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.hh-cta {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.92rem 2.2rem;
    border: 1px solid transparent;
    overflow: hidden;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.hh-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.hh-cta:hover::before {
    transform: translateX(0);
}

.hh-cta span {
    position: relative;
    z-index: 1;
    transition: color 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.hh-cta--primary {
    background: var(--hh-red);
    color: #fff;
    border-color: var(--hh-red);
}

.hh-cta--primary::before {
    background: #fff;
}

.hh-cta--primary:hover span {
    color: var(--hh-red);
}

.hh-cta--ghost {
    background: transparent;
    color: rgba(244, 244, 244, 0.7);
    border-color: rgba(244, 244, 244, 0.28);
}

.hh-cta--ghost::before {
    background: rgba(244, 244, 244, 0.12);
}

.hh-cta--ghost:hover {
    border-color: rgba(244, 244, 244, 0.7);
}

.hh-cta--ghost:hover span {
    color: #fff;
}

.hh-specs {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    flex-shrink: 0;
    padding-bottom: 0.2rem;
}

.hh-spec {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0.95rem 0;
}

.hh-spec-val {
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: var(--hh-ink);
    letter-spacing: 0.06em;
    line-height: 1;
}

.hh-spec-lbl {
    font-family: "Montserrat", sans-serif;
    font-size: 0.57rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hh-muted);
    margin-top: 0.3rem;
}

.hh-spec-rule {
    width: 100%;
    height: 1px;
    background: rgba(244, 244, 244, 0.1);
}

.hh-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.6rem clamp(2rem, 5.5vw, 5.5rem);
}

.hh-dots {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.hh-dot-btn {
    width: 20px;
    height: 2px;
    padding: 0;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hh-dot-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hh-dot-btn.is-active {
    background: var(--hh-red);
    width: 38px;
}

@media (max-width: 1024px) {
    .hh-slide {
        background-position: center center;
    }
}

@media (max-width: 960px) {
    .hh-specs {
        display: none;
    }

    .hh-content {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .home-hero {
        --hh-stage-top-gap: clamp(1.5rem, 4vh, 2.4rem);
        --hh-eyebrow-gap: clamp(2.2rem, 5vh, 3.35rem);
    }

    .hh-stage {
        padding-left: clamp(1.5rem, 5vw, 3rem);
        padding-right: clamp(1.5rem, 5vw, 3rem);
        padding-bottom: clamp(4.5rem, 11vh, 6.5rem);
    }

    .hh-content {
        max-width: 100%;
    }

    .hh-headline {
        font-size: clamp(4rem, 18vw, 6.5rem);
    }
}

@media (max-width: 767px) {
    .home-hero {
        --hh-mobile-side-pad: clamp(1.25rem, 4.8vw, 1.55rem);
        --hh-mobile-copy-bottom: clamp(7.4rem, 11.5svh, 9.25rem);
        --hh-mobile-copy-top: calc(var(--hh-offset) + clamp(7rem, 14.5svh, 8.75rem));
        --hh-scrim-side-start: 0.32;
        --hh-scrim-side-mid: 0.16;
        --hh-scrim-side-soft: 0.05;
        --hh-scrim-side-end: 0.02;
        --hh-scrim-top: 0.2;
        --hh-scrim-upper: 0.05;
        --hh-scrim-lower: 0.28;
        --hh-scrim-bottom: 0.62;
    }

    .hh-slide {
        background-position: center center;
    }

    .hh-stage {
        display: block;
        padding: 0;
    }

    .hh-content {
        position: absolute;
        left: var(--hh-mobile-side-pad);
        right: var(--hh-mobile-side-pad);
        bottom: var(--hh-mobile-copy-bottom);
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .home-hero.is-slide-1-active .hh-content,
    .home-hero.is-slide-2-active .hh-content,
    .home-hero.is-slide-5-active .hh-content {
        top: var(--hh-mobile-copy-top);
        bottom: auto;
    }

    .home-hero.is-slide-2-active .hh-content {
        top: calc(var(--hh-mobile-copy-top) + 10px);
    }

    .home-hero.is-slide-3-active .hh-content {
        bottom: calc(var(--hh-mobile-copy-bottom) - 10px);
    }

    .home-hero.is-slide-4-active .hh-content {
        top: auto;
        bottom: calc(clamp(5.9rem, 9.5svh, 7.1rem) - 10px);
    }

    .hh-eyebrow {
        gap: 0.65rem;
        margin-bottom: 0.65rem;
        font-size: 0.64rem;
        letter-spacing: 0.24em;
    }

    .home-hero.is-slide-1-active .hh-eyebrow,
    .home-hero.is-slide-2-active .hh-eyebrow,
    .home-hero.is-slide-4-active .hh-eyebrow,
    .home-hero.is-slide-5-active .hh-eyebrow {
        color: #ffffff;
    }

    .home-hero.is-slide-4-active .hh-eyebrow {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 0.65rem;
    }

    .hh-eyebrow-line {
        width: 1.4rem;
    }

    .hh-headline {
        display: flex;
        align-items: flex-end;
        gap: 0.02em;
        margin-bottom: 0.72rem;
        font-size: clamp(3.05rem, 15.4vw, 4.8rem);
        line-height: 0.92;
        letter-spacing: -0.055em;
    }

    .hh-hl-outline,
    .hh-hl-fill {
        display: inline-block;
        flex: 0 0 auto;
    }

    .hh-hl-outline {
        -webkit-text-stroke: 1px var(--hh-ink);
    }

    .hh-divider {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        width: min(100%, 21rem);
        margin: 0 0 0.9rem;
    }

    .hh-divider-line {
        flex: 1 1 auto;
        height: 1px;
        background: rgba(255, 255, 255, 0.54);
    }

    .hh-divider-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.2rem;
        color: var(--hh-red);
        flex: 0 0 auto;
    }

    .hh-divider-icon .boru-icon {
        display: block;
        width: 100%;
        height: auto;
    }

    .hh-tagline {
        width: min(100%, 21rem);
        margin-bottom: 1rem;
        font-size: 0.8rem;
        line-height: 1.55;
        color: rgba(244, 244, 244, 0.92);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .home-hero.is-slide-1-active .hh-tagline {
        color: #ffffff;
    }

    .home-hero.is-slide-5-active .hh-tagline {
        color: #ffffff;
    }

    .home-hero.is-slide-2-active .hh-tagline {
        color: #111111;
    }

    .hh-ctas {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        width: min(100%, 21rem);
        flex-wrap: nowrap;
    }

    .hh-ctas {
        display: none;
    }

    .hh-cta {
        justify-content: center;
        min-height: 2.9rem;
        padding: 0.74rem 0.5rem;
        font-size: 0.56rem;
        letter-spacing: 0.11em;
    }

    .home-hero.is-slide-1-active .hh-cta--ghost span {
        color: #ffffff;
    }

    .home-hero.is-slide-2-active .hh-cta--ghost {
        color: #111111;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.34) 100%);
        border-color: rgba(255, 255, 255, 0.42);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .home-hero.is-slide-2-active .hh-cta--ghost span {
        color: #111111;
    }

    .hh-bar {
        padding:
            0.9rem
            1.25rem
            calc(1rem + env(safe-area-inset-bottom));
    }

    .hh-dots {
        gap: 0.7rem;
    }

    .hh-dot-btn {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.48);
        transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    }

    .hh-dot-btn.is-active {
        width: 0.6rem;
        transform: scale(1.08);
        background: var(--hh-red);
    }
}

@media (max-width: 520px) {
    .home-hero {
        --hh-stage-top-gap: 1.3rem;
        --hh-eyebrow-gap: 1.9rem;
    }

    .hh-bar {
        padding: 1.1rem 1.5rem;
        gap: 0.75rem;
    }

    .hh-cta {
        padding: 0.78rem 1.5rem;
        font-size: 0.64rem;
    }

    .hh-headline {
        font-size: clamp(2.75rem, 15.8vw, 4rem);
    }

    .hh-tagline {
        font-size: 0.76rem;
    }

    .hh-content {
        max-width: 100%;
    }

    .hh-eyebrow {
        font-size: clamp(0.6rem, 1.9vw, 0.72rem);
        letter-spacing: 0.24em;
        gap: 0.55rem;
    }

    .hh-eyebrow-line {
        width: 1.5rem;
    }

    .hh-cta {
        min-height: 2.75rem;
        padding: 0.72rem 0.35rem;
        font-size: 0.54rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .hh-slide {
        transform: none;
        transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity;
    }

    .hh-slide.is-active {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hh-slide {
        transition: opacity 0.4s ease !important;
        transform: none !important;
    }
}

.page-anasayfa .home-intro-stack .content--intro {
    padding: 0;
    display: block;
    background: #000;
    z-index: 2;
    width: 100%;
}

.hm-manifesto {
    --hm-ink: #fff;
    --hm-muted: rgba(255, 255, 255, 0.48);
    --hm-faint: rgba(255, 255, 255, 0.10);
    --hm-red: #d71919;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: clamp(4.5rem, 11vh, 8rem) clamp(1.5rem, 5vw, 6rem);
    background: #000;
    color: var(--hm-ink);
    overflow: hidden;
    font-family: "area-variable", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(2rem, 5vh, 3.5rem);
}

.hm-wolf-mark {
    position: absolute;
    left: 50%;
    top: clamp(7rem, 16vh, 10rem);
    width: clamp(320px, 42vw, 760px);
    transform: translateX(-50%);
    color: rgba(215, 25, 25, 0.12);
    pointer-events: none;
    z-index: 1;
    max-width: min(78vw, 760px);
}

.hm-wolf-mark .boru-icon {
    display: block;
    width: 100%;
    height: auto;
}

.hm-brackets {
    position: absolute;
    inset: clamp(1.25rem, 2.5vw, 2rem);
    pointer-events: none;
    z-index: 1;
}

.hm-bracket {
    position: absolute;
    width: 26px;
    height: 26px;
}

.hm-bracket::before,
.hm-bracket::after {
    content: "";
    position: absolute;
    background: var(--hm-ink);
    opacity: 0;
    transition: opacity 0.6s ease 0.1s, transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.hm-bracket::before {
    height: 1px;
}

.hm-bracket::after {
    width: 1px;
}

.hm-bracket--tl {
    top: 0;
    left: 0;
}

.hm-bracket--tl::before {
    top: 0;
    left: 0;
    width: 26px;
    transform-origin: left;
    transform: scaleX(0);
}

.hm-bracket--tl::after {
    top: 0;
    left: 0;
    height: 26px;
    transform-origin: top;
    transform: scaleY(0);
}

.hm-bracket--tr {
    top: 0;
    right: 0;
}

.hm-bracket--tr::before {
    top: 0;
    right: 0;
    width: 26px;
    transform-origin: right;
    transform: scaleX(0);
}

.hm-bracket--tr::after {
    top: 0;
    right: 0;
    height: 26px;
    transform-origin: top;
    transform: scaleY(0);
}

.hm-bracket--bl {
    bottom: 0;
    left: 0;
}

.hm-bracket--bl::before {
    bottom: 0;
    left: 0;
    width: 26px;
    transform-origin: left;
    transform: scaleX(0);
}

.hm-bracket--bl::after {
    bottom: 0;
    left: 0;
    height: 26px;
    transform-origin: bottom;
    transform: scaleY(0);
}

.hm-bracket--br {
    bottom: 0;
    right: 0;
}

.hm-bracket--br::before {
    bottom: 0;
    right: 0;
    width: 26px;
    transform-origin: right;
    transform: scaleX(0);
}

.hm-bracket--br::after {
    bottom: 0;
    right: 0;
    height: 26px;
    transform-origin: bottom;
    transform: scaleY(0);
}

.hm-manifesto.is-revealed .hm-bracket::before,
.hm-manifesto.is-revealed .hm-bracket::after {
    opacity: 1;
    transform: scale(1);
}

.hm-headline {
    display: block;
    font-family: "area-variable", sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 8vw, 8rem);
    line-height: 1.28;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 2;
    padding-bottom: 0.28em;
    text-align: center;
    align-self: center;
    width: fit-content;
    max-width: 100%;
}

.hm-hl-row {
    display: block;
    padding: 0.04em 0 0.12em;
    margin: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-hl-row > span {
    display: inline;
    transform: none;
    transition: none;
}

.hm-manifesto.is-revealed .hm-hl-row:nth-child(1) {
    transition-delay: 0.30s;
}

.hm-manifesto.is-revealed .hm-hl-row:nth-child(2) {
    transition-delay: 0.45s;
}

.hm-manifesto.is-revealed .hm-hl-row:nth-child(3) {
    transition-delay: 0.60s;
}

.hm-manifesto.is-revealed .hm-hl-row {
    opacity: 1;
    transform: translateY(0);
}

.hm-hl-accent {
    font-style: normal;
    display: inline-block;
    position: relative;
    padding: 0 0.18em;
    color: var(--hm-ink);
    isolation: isolate;
    line-height: 1.08;
}

.hm-hl-accent::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.08em;
    bottom: 0.22em;
    background: var(--hm-red);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.hm-manifesto.is-revealed .hm-hl-accent::before {
    transform: scaleX(1);
    transition-delay: 0.45s;
}

.hm-body {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    padding-top: clamp(2rem, 4vh, 3rem);
    border-top: 1px solid var(--hm-faint);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.hm-manifesto.is-revealed .hm-body {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.95s;
}

.hm-body-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
    max-width: 760px;
}

.hm-body-text strong {
    color: var(--hm-ink);
    font-weight: 600;
}

.hm-body-break {
    display: block;
    margin-top: 0.22em;
}

.hm-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: clamp(1.8rem, 3.5vh, 2.8rem) 0;
    border-top: 1px solid var(--hm-faint);
    border-bottom: 1px solid var(--hm-faint);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.hm-manifesto.is-revealed .hm-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.15s;
}

.hm-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 clamp(0.8rem, 2.2vw, 2.2rem);
    text-align: center;
}

.hm-stat-rule {
    width: 1px;
    align-self: stretch;
    background: var(--hm-faint);
    flex-shrink: 0;
}

.hm-stat-num-wrap {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
}

.hm-stat-num,
.hm-stat-num-sym {
    font-family: "area-variable", sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    line-height: 1;
    color: var(--hm-ink);
    letter-spacing: -0.02em;
}

.hm-stat-plus {
    font-family: "area-variable", sans-serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--hm-red);
    line-height: 1;
    margin-left: 0.08em;
    margin-top: 0.15em;
}

.hm-stat-num-sym {
    color: var(--hm-red);
}

.hm-stat-lbl {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--hm-muted);
    line-height: 1.55;
    text-align: center;
}

.hm-ticker {
    overflow: hidden;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.hm-ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    width: max-content;
    animation: hm-ticker 48s linear infinite;
}

.hm-ticker-item {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hm-muted);
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
}

.hm-ticker-item em {
    font-style: normal;
    color: var(--hm-red);
    font-size: 0.85rem;
    line-height: 1;
}

@keyframes hm-ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .hm-wolf-mark {
        top: clamp(7.5rem, 15vw, 10rem);
        width: clamp(280px, 48vw, 540px);
        color: rgba(215, 25, 25, 0.14);
        max-width: 72vw;
    }

    .hm-body {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .hm-manifesto {
        padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 5vw, 2.5rem);
        gap: 2rem;
    }

    .hm-wolf-mark {
        left: 50%;
        top: clamp(6.5rem, 14vw, 8.5rem);
        width: clamp(240px, 64vw, 420px);
        transform: translateX(-50%);
        color: rgba(215, 25, 25, 0.18);
        max-width: 82vw;
    }

    .hm-brackets {
        inset: 0.9rem;
    }

    .hm-bracket {
        width: 20px;
        height: 20px;
    }

    .hm-bracket::before {
        width: 20px !important;
    }

    .hm-bracket::after {
        height: 20px !important;
    }

    .hm-headline {
        font-size: clamp(2.4rem, 13vw, 4.5rem);
    }

    .hm-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .hm-stats {
        flex-wrap: wrap;
        padding: 1.5rem 0;
    }

    .hm-stat {
        flex: 1 1 50%;
        padding: 1.1rem 0.75rem;
        min-width: 0;
    }

    .hm-stat:nth-child(1) {
        border-right: 1px solid var(--hm-faint);
        border-bottom: 1px solid var(--hm-faint);
    }

    .hm-stat:nth-child(3) {
        border-bottom: 1px solid var(--hm-faint);
    }

    .hm-stat:nth-child(5) {
        border-right: 1px solid var(--hm-faint);
    }

    .hm-stat-rule {
        display: none;
    }

    .hm-ticker-item {
        font-size: 0.6rem;
        letter-spacing: 0.26em;
    }

    .hm-manifesto.is-revealed .hm-hl-row:nth-child(1),
    .hm-manifesto.is-revealed .hm-hl-row:nth-child(2),
    .hm-manifesto.is-revealed .hm-hl-row:nth-child(3),
    .hm-manifesto.is-revealed .hm-hl-accent::before,
    .hm-manifesto.is-revealed .hm-body,
    .hm-manifesto.is-revealed .hm-stats {
        transition-delay: 0s;
    }
}

@media (max-width: 480px) {
    .hm-wolf-mark {
        top: clamp(6rem, 16vw, 7.5rem);
        width: clamp(220px, 74vw, 320px);
        color: rgba(215, 25, 25, 0.2);
        max-width: 88vw;
    }

    .hm-headline {
        font-size: clamp(2.1rem, 14vw, 3.6rem);
    }

    .hm-body-text {
        font-size: 0.9rem;
    }

    .hm-stat-num,
    .hm-stat-num-sym {
        font-size: 2.2rem;
    }

    .hm-stat-lbl {
        font-size: 0.5rem;
        letter-spacing: 0.2em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hm-manifesto *,
    .hm-manifesto *::before,
    .hm-manifesto *::after {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .hm-hl-accent::before {
        transform: scaleX(1) !important;
    }
}

.site-header,
.page-anasayfa .site-header,
.page-haberler .site-header {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

.site-header .header-shell,
.page-anasayfa .site-header .header-shell,
.page-haberler .site-header .header-shell {
    background: transparent !important;
}

.site-header.is-scrolled,
.site-header.mega-open,
.site-header.menu-open,
.site-header.is-scrolled:hover,
.site-header.is-scrolled:focus-within,
.site-header.mega-open:hover,
.site-header.mega-open:focus-within,
.site-header.menu-open:hover,
.site-header.menu-open:focus-within {
    background: #000000 !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.site-header.is-scrolled .header-shell,
.site-header.mega-open .header-shell,
.site-header.menu-open .header-shell,
.site-header.is-scrolled:hover .header-shell,
.site-header.is-scrolled:focus-within .header-shell,
.site-header.mega-open:hover .header-shell,
.site-header.mega-open:focus-within .header-shell,
.site-header.menu-open:hover .header-shell,
.site-header.menu-open:focus-within .header-shell {
    background: #000000 !important;
}

.site-header.is-on-footer:not(.mega-open):not(.menu-open),
.site-header.is-on-footer:not(.mega-open):not(.menu-open):hover,
.site-header.is-on-footer:not(.mega-open):not(.menu-open):focus-within {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

.site-header.is-on-footer:not(.mega-open):not(.menu-open) .header-shell,
.site-header.is-on-footer:not(.mega-open):not(.menu-open):hover .header-shell,
.site-header.is-on-footer:not(.mega-open):not(.menu-open):focus-within .header-shell {
    background: transparent !important;
    box-shadow: none !important;
}

.site-header.is-on-footer:not(.mega-open):not(.menu-open) .nav-link,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .header-lang-chip,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .lang-button,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .nav-toggle {
    color: #ffffff !important;
}

.site-header.is-on-footer:not(.mega-open):not(.menu-open) .desktop-item.is-active > .nav-link,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .desktop-item:hover > .nav-link,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .nav-link:focus-visible {
    color: var(--red) !important;
}

.site-header.is-on-footer:not(.mega-open):not(.menu-open) .lang-button:hover,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .lang-button:focus-visible,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .header-lang-chip:hover,
.site-header.is-on-footer:not(.mega-open):not(.menu-open) .header-lang-chip:focus-visible {
    color: #ffffff !important;
}

.site-header:not(.is-scrolled):not(.mega-open):not(.menu-open):hover,
.site-header:not(.is-scrolled):not(.mega-open):not(.menu-open):focus-within {
    background: transparent !important;
    border-bottom-color: transparent !important;
}

.site-header:not(.is-scrolled):not(.mega-open):not(.menu-open):hover .header-shell,
.site-header:not(.is-scrolled):not(.mega-open):not(.menu-open):focus-within .header-shell {
    background: transparent !important;
}

.site-header .nav-link,
.site-header .header-lang-chip,
.site-header .lang-button,
.site-header .nav-toggle {
    color: #ffffff !important;
}

.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .nav-link,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .header-lang-chip,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .lang-button,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .nav-toggle {
    color: #101317 !important;
}

.site-header .desktop-item.is-active > .nav-link,
.site-header .desktop-item:hover > .nav-link,
.site-header .nav-link:focus-visible,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .desktop-item.is-active > .nav-link,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .desktop-item:hover > .nav-link,
.site-header.is-transparent-initial-dark:not(.is-scrolled):not(.mega-open):not(.menu-open) .nav-link:focus-visible,
.site-header .mobile-links > li.is-active > .mobile-link,
.site-header .mobile-link:focus-visible,
.site-header .mobile-sublink.is-active,
.site-header .mobile-sublink:hover,
.site-header .mobile-sublink:focus-visible {
    color: var(--red) !important;
}

.site-header.menu-open .mobile-panel,
.site-header.menu-open .mobile-submenu {
    background: #000000 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.site-header.menu-open .mobile-link,
.site-header.menu-open .mobile-sublink,
.site-header.menu-open .mobile-products-toggle::after {
    color: #ffffff !important;
}

.site-header.menu-open .mobile-links > li.is-active > .mobile-link,
.site-header.menu-open .mobile-link:focus-visible,
.site-header.menu-open .mobile-sublink.is-active,
.site-header.menu-open .mobile-sublink:hover,
.site-header.menu-open .mobile-sublink:focus-visible {
    color: var(--red) !important;
}

.home-domains {
    --hd-ink: #f4f4f4;
    --hd-muted: rgba(244, 244, 244, 0.55);
    --hd-faint: rgba(244, 244, 244, 0.14);
    --hd-red: #d71919;
    --hd-bg: #050505;
    --hd-card-gap: clamp(1.25rem, 2vw, 2rem);
    --hd-card-ratio: 3 / 2;
    --hd-card-max-h: calc(var(--app-height, 100vh) - var(--header-height, 86px) - var(--hd-head-h) - clamp(3rem, 6vh, 5rem));
    --hd-card-w: min(78vw, calc(var(--hd-card-max-h) * 1.5), 1080px);
    --hd-side: clamp(1.5rem, 5vw, 4.5rem);
    --hd-head-h: clamp(8.5rem, 13vh, 12rem);
    position: relative;
    width: 100%;
    background: var(--hd-bg);
    color: var(--hd-ink);
    overflow: hidden;
    font-family: "area-variable", "Montserrat", sans-serif;
    isolation: isolate;
}

.home-domains::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 50% at 10% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 60%),
        radial-gradient(60% 60% at 95% 100%, rgba(215, 25, 25, 0.06) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.hd-pin {
    position: relative;
    width: 100%;
    height: calc(var(--app-height, 100vh));
    min-height: 640px;
    display: grid;
    grid-template-rows: var(--hd-head-h) 1fr;
    z-index: 1;
    overflow: hidden;
    padding-top: var(--header-height, 86px);
}

.hd-head {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    column-gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 4vh, 3rem) var(--hd-side) clamp(1rem, 2.2vh, 1.6rem);
    border-bottom: 1px solid var(--hd-faint);
}

.hd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hd-muted);
    font-weight: 500;
}

.hd-eyebrow-line {
    display: inline-block;
    width: clamp(1.4rem, 2.4vw, 2.4rem);
    height: 1px;
    background: var(--hd-red);
    transform-origin: left center;
}

.hd-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.92;
    color: var(--hd-ink);
    justify-self: start;
}

.hd-title-row {
    display: block;
    overflow: hidden;
}

.hd-title-row--thin {
    font-family: "Cormorant Garamond", "area-variable", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.01em;
    color: rgba(244, 244, 244, 0.78);
    margin-bottom: -0.05em;
}

.hd-title-row--thin em {
    font-style: italic;
}

.hd-title-row--strong {
    font-family: "area-variable", sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hd-meter {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    column-gap: 0.35rem;
    align-items: baseline;
    justify-self: end;
    font-family: "area-variable", monospace;
    color: var(--hd-muted);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.hd-meter-num {
    color: var(--hd-ink);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 600;
    min-width: 1.8ch;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.hd-meter-sep {
    opacity: 0.5;
    padding: 0 0.1rem;
}

.hd-meter-total {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.hd-meter-bar {
    grid-column: 1 / -1;
    margin-top: 0.55rem;
    display: block;
    width: clamp(8rem, 12vw, 11rem);
    height: 1px;
    background: var(--hd-faint);
    position: relative;
    overflow: hidden;
}

.hd-meter-bar-fill {
    position: absolute;
    inset: 0;
    background: var(--hd-ink);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s linear;
}

[data-hd-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-domains.is-hd-ready [data-hd-reveal] {
    opacity: 1;
    transform: translateY(0);
}

.home-domains.is-hd-ready .hd-title {
    transition-delay: 0.1s;
}

.home-domains.is-hd-ready .hd-meter {
    transition-delay: 0.2s;
}

.hd-stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hd-track {
    display: flex;
    align-items: center;
    gap: var(--hd-card-gap);
    height: 100%;
    padding: clamp(1.5rem, 3vh, 2.5rem) var(--hd-side);
    will-change: transform;
}

.hd-card {
    position: relative;
    flex: 0 0 auto;
    width: var(--hd-card-w);
    height: auto;
    aspect-ratio: var(--hd-card-ratio);
    max-height: none;
    overflow: hidden;
    background: #0b0b0b;
    isolation: isolate;
    box-shadow:
        0 40px 80px -60px rgba(0, 0, 0, 0.9),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.hd-card-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hd-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.92) contrast(1.06);
    transform: none;
    will-change: transform;
}

.hd-card-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.15) 45%,
            transparent 100%);
    pointer-events: none;
}

.hd-card-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px 3px);
    background-size: 100% 3px;
}

.hd-card-frame {
    position: absolute;
    inset: clamp(1rem, 1.8vw, 1.5rem);
    z-index: 3;
    pointer-events: none;
}

.hd-bracket {
    position: absolute;
    width: 22px;
    height: 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hd-bracket::before,
.hd-bracket::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
}

.hd-bracket::before {
    height: 1px;
    width: 100%;
}

.hd-bracket::after {
    width: 1px;
    height: 100%;
}

.hd-bracket--tl { top: 0; left: 0; }
.hd-bracket--tl::before { top: 0; left: 0; }
.hd-bracket--tl::after { top: 0; left: 0; }

.hd-bracket--tr { top: 0; right: 0; }
.hd-bracket--tr::before { top: 0; right: 0; }
.hd-bracket--tr::after { top: 0; right: 0; }

.hd-bracket--bl { bottom: 0; left: 0; }
.hd-bracket--bl::before { bottom: 0; left: 0; }
.hd-bracket--bl::after { bottom: 0; left: 0; }

.hd-bracket--br { bottom: 0; right: 0; }
.hd-bracket--br::before { bottom: 0; right: 0; }
.hd-bracket--br::after { bottom: 0; right: 0; }

.hd-card.is-hd-active .hd-bracket { opacity: 1; }

.hd-card-index {
    position: absolute;
    top: clamp(1.5rem, 2.4vw, 2.2rem);
    right: clamp(1.5rem, 2.6vw, 2.4rem);
    z-index: 4;
    font-family: "area-variable", sans-serif;
    font-weight: 300;
    font-size: clamp(3.6rem, 6vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.22);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    font-variant-numeric: tabular-nums;
}

.hd-card-content {
    position: absolute;
    left: clamp(1.8rem, 3vw, 2.8rem);
    right: clamp(1.8rem, 3vw, 2.8rem);
    bottom: clamp(1.8rem, 3.5vw, 3rem);
    z-index: 5;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hd-card-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 2.9vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hd-card-text {
    margin: 0;
    font-size: clamp(0.85rem, 1vw, 0.98rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 46ch;
    font-weight: 400;
}

.hd-card-content .hd-card-title,
.hd-card-content .hd-card-text,
.hd-card .hd-card-index {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hd-card.is-hd-inview .hd-card-index { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.hd-card.is-hd-inview .hd-card-title { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.hd-card.is-hd-inview .hd-card-text  { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }

@media (max-width: 1080px) {
    .home-domains {
        --hd-card-w: calc(100% - 2rem);
        --hd-card-ratio: 4 / 5;
        --hd-card-max-h: none;
    }
    .hd-pin {
        height: auto;
        min-height: 0;
        grid-template-rows: auto auto;
    }
    .hd-head {
        grid-template-columns: 1fr;
        align-items: flex-start;
        row-gap: 1rem;
        padding-top: clamp(3rem, 8vw, 4.5rem);
        padding-bottom: clamp(1.5rem, 4vw, 2.2rem);
    }
    .hd-title {
        justify-self: start;
    }
    .hd-meter {
        display: none;
    }
    .hd-stage {
        height: auto;
        overflow: visible;
    }
    .hd-track {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        height: auto;
        padding: 1.5rem 1rem 3rem;
        transform: none !important;
    }
    .hd-card {
        width: 100%;
        max-height: none;
    }
    .hd-card-content {
        gap: 0.65rem;
    }

    [data-hd-reveal],
    .hd-card-content .hd-card-title,
    .hd-card-content .hd-card-text,
    .hd-card .hd-card-index {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hd-bracket {
        opacity: 1;
        transition: none;
    }
}

@media (max-width: 520px) {
    .home-domains {
        --hd-card-ratio: 3 / 4;
    }

    .hd-title-row--strong {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    .hd-card-title {
        font-size: clamp(1.3rem, 5.2vw, 1.7rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-hd-reveal],
    .hd-card-content .hd-card-title,
    .hd-card-content .hd-card-text,
    .hd-card .hd-card-index {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hd-bracket { opacity: 1; }
}
