:root {
    --bg: #f1efec;
    --bg-soft: #e8e4de;
    --surface: #ffffff;
    --ink: #0f1419;
    --ink-2: #1c2430;
    --muted: #3d4a5c;
    --line: rgba(15, 20, 25, 0.1);
    --accent: #d63a32;
    --accent-2: #f2554d;
    --accent-soft: rgba(214, 58, 50, 0.12);
    --glass: rgba(255, 255, 255, 0.92);
    --dark: #06090d;
    --dark-2: #0f141c;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-xl: 22px;
    --shadow: 0 24px 64px rgba(8, 11, 16, 0.11);
    --shadow-sm: 0 4px 24px rgba(8, 11, 16, 0.06);
    --shadow-lift: 0 20px 50px rgba(8, 11, 16, 0.1);
    --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --display: "Inter", var(--font);
    --wrap: min(1120px, calc(100% - 2rem));
    --text-max: 65ch;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.125rem);
    line-height: 1.72;
    letter-spacing: -0.011em;
    color: var(--ink);
    background:
        radial-gradient(ellipse 100% 80% at 100% 0%, rgba(214, 58, 50, 0.06), transparent 42%),
        radial-gradient(ellipse 80% 50% at 0% 100%, rgba(30, 58, 95, 0.05), transparent 45%),
        var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus {
    top: 1rem;
}

.wrap {
    width: var(--wrap);
    margin-inline: auto;
}

.narrow {
    max-width: 720px;
    margin-inline: auto;
}

.center {
    text-align: center;
}

.prose {
    max-width: var(--text-max);
}
.prose--center {
    text-align: center;
}
.prose--center .section-title--accent-line::after {
    margin-left: auto;
    margin-right: auto;
}
.prose p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    line-height: 1.78;
}
.prose strong {
    color: var(--ink-2);
    font-weight: 600;
}

.lead {
    font-size: clamp(1.06rem, 1.01rem + 0.28vw, 1.22rem);
    color: var(--muted);
    margin: 0 0 1rem;
    line-height: 1.65;
    font-weight: 500;
}

.intro {
    max-width: min(var(--text-max), 68ch);
    margin: 0 0 2rem;
    color: var(--muted);
    line-height: 1.75;
}
.intro.center {
    margin-inline: auto;
}
.intro--light {
    color: rgba(255, 255, 255, 0.82);
}

.muted-light {
    color: rgba(255, 255, 255, 0.7);
}

.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
}
.section--tight {
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.section--soft {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    position: relative;
}
.section--soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 20, 25, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}
.section--soft > .wrap {
    position: relative;
    z-index: 1;
}
.section--dark {
    background: radial-gradient(ellipse 100% 70% at 80% 0%, rgba(214, 58, 50, 0.14), transparent 52%),
        radial-gradient(ellipse 60% 40% at 10% 100%, rgba(40, 70, 120, 0.08), transparent 50%), var(--dark);
    color: #e9edf3;
    border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.section-title {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.022em;
    font-size: clamp(1.65rem, 1.35rem + 1.15vw, 2.35rem);
    margin: 0 0 1rem;
    line-height: 1.18;
    color: var(--ink);
    text-wrap: balance;
}
.section-title--light {
    color: #f4f6fa;
}

.section-title--accent-line::after {
    content: "";
    display: block;
    width: min(4.75rem, 38%);
    height: 3px;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ff9a8c);
    opacity: 0.95;
}
.section-intro--center .section-title--accent-line::after,
.gallery-heading .section-title--accent-line::after,
.wrap.center .section-title--accent-line::after {
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
}
.eyebrow--muted {
    color: #64748b;
}
.eyebrow--on-dark {
    color: #ffb4ad;
}

.split {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
@media (min-width: 900px) {
    .split {
        grid-template-columns: 0.9fr 1.1fr;
        gap: clamp(2rem, 5vw, 3.5rem);
    }
    .split > div:first-child {
        position: sticky;
        top: 5.5rem;
        align-self: start;
        padding: 1.6rem 1.75rem;
        border-radius: var(--radius-xl);
        background: linear-gradient(165deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
    }
}

#ozet .wrap.prose {
    max-width: min(52rem, calc(100% - 2rem));
    margin-inline: auto;
    padding: clamp(1.5rem, 4vw, 2.35rem) clamp(1.35rem, 4vw, 2.75rem);
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px) saturate(1.25);
    background: rgba(241, 239, 236, 0.88);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.28s var(--ease-out), background 0.28s ease, border-color 0.28s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 40px rgba(8, 11, 16, 0.07);
    border-bottom-color: rgba(15, 20, 25, 0.06);
}
.site-header__inner {
    position: relative;
    width: min(1240px, calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 2vw, 1.15rem);
    padding: 0.65rem 0;
}
@media (min-width: 960px) {
    .site-header__inner {
        padding: 0.55rem 0;
    }
}

.brand {
    order: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: conic-gradient(from 210deg, var(--accent), #7c1124, var(--accent-2), var(--accent));
    box-shadow: 0 10px 32px rgba(214, 58, 50, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.brand__text {
    font-size: 1.25rem;
}
.brand sup {
    font-size: 0.55em;
}
.brand__logo {
    height: clamp(58px, 5.6vw, 88px);
    width: auto;
    max-width: min(420px, 66vw);
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
    display: block;
}
@media (min-width: 960px) {
    .brand__logo {
        max-width: min(440px, 44vw);
    }
}

.section-intro--center {
    text-align: center;
    max-width: min(52rem, 100%);
    margin-inline: auto;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.section-intro--center .eyebrow {
    margin-left: auto;
    margin-right: auto;
}
.section-intro--center .section-title {
    margin-left: auto;
    margin-right: auto;
}
.section-intro--center .intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
}

.about-brand {
    margin: 0 0 1.15rem;
}
.about-brand__logo {
    display: block;
    width: auto;
    max-width: min(320px, 100%);
    max-height: 88px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.gallery-heading {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
}
.gallery-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}
.gallery-heading .section-title {
    margin-top: 0;
}
.gallery-heading__intro {
    margin-top: 0.75rem;
}

.site-corner-tray {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 92;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
    pointer-events: none;
}
.site-corner-tray > * {
    pointer-events: auto;
}

.back-to-top {
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(8, 11, 16, 0.12), 0 2px 8px rgba(8, 11, 16, 0.06);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    border-color: rgba(214, 58, 50, 0.35);
    box-shadow: 0 10px 28px rgba(8, 11, 16, 0.14), 0 4px 12px rgba(214, 58, 50, 0.12);
}
.back-to-top:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.back-to-top__icon {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 600;
    transform: translateY(-1px);
}

/* Mobil menü arka planı */
.site-nav__backdrop {
    display: none;
}
.site-nav__backdrop[hidden] {
    display: none !important;
}
.site-header--menu-open .site-nav__backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(8, 11, 16, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: nav-backdrop-in 0.22s var(--ease-out) forwards;
}
@keyframes nav-backdrop-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (min-width: 960px) {
    .site-nav__backdrop {
        display: none !important;
    }
}

.site-nav {
    order: 1;
    display: none;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
}
.site-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.site-nav__links a {
    color: var(--ink-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.015em;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.site-nav__links a:hover,
.site-nav__links a:focus-visible {
    background: rgba(214, 58, 50, 0.08);
    color: var(--ink);
}
.site-nav__links a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0;
    border-color: transparent;
}

.site-nav.is-open {
    display: flex;
    position: fixed;
    z-index: 90;
    left: 0.65rem;
    right: 0.65rem;
    top: calc(3.65rem + env(safe-area-inset-top, 0px));
    max-height: min(calc(100dvh - 5rem), 520px);
    overflow-y: auto;
    padding: 0.65rem 0.75rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 20, 25, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 80px rgba(8, 11, 16, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    animation: nav-panel-in 0.28s var(--ease-out) forwards;
}
@keyframes nav-panel-in {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.site-nav.is-open .site-nav__links {
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
}
.site-nav__cta-mobile {
    margin-top: 0;
    justify-content: center;
    width: 100%;
    padding-top: 0.15rem;
}
/* .btn sonradan display verdiği için !important — masaüstünde çift “Bize ulaşın” ve geniş buton bug’ını önler */
@media (min-width: 960px) {
    .site-nav .site-nav__cta-mobile.btn {
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
    }
}

@media (min-width: 960px) {
    .site-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        max-height: none;
        overflow: visible;
        padding: 0;
        margin-top: 0;
        left: auto;
        right: auto;
        top: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        animation: none;
    }
    .site-nav.is-open {
        position: static;
        max-height: none;
        overflow: visible;
        padding: 0;
        margin-top: 0;
        left: auto;
        right: auto;
        top: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        animation: none;
    }
    .site-nav__links {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.15rem;
        padding: 0.35rem 0.45rem;
        width: max-content;
        max-width: 100%;
        margin-inline: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(15, 20, 25, 0.25) transparent;
        border-radius: 999px;
        background: rgba(15, 20, 25, 0.045);
        border: 1px solid rgba(15, 20, 25, 0.07);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 2px rgba(8, 11, 16, 0.04);
    }
    .site-nav__links::-webkit-scrollbar {
        height: 4px;
    }
    .site-nav__links::-webkit-scrollbar-thumb {
        background: rgba(15, 20, 25, 0.2);
        border-radius: 999px;
    }
    .site-nav.is-open .site-nav__links {
        border-bottom: none;
        padding-bottom: 0.4rem;
    }
    .site-nav__links a {
        flex-shrink: 0;
        font-size: 0.875rem;
        padding: 0.45rem 0.72rem;
        border-radius: 999px;
        white-space: nowrap;
    }
    .site-nav__links a:hover,
    .site-nav__links a:focus-visible {
        background: rgba(214, 58, 50, 0.12);
        color: var(--ink);
    }
    .site-nav__links a:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    .nav-toggle {
        display: none;
    }
}

.nav-toggle {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 20, 25, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 242, 239, 0.9));
    border-radius: 14px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(8, 11, 16, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
    border-color: rgba(214, 58, 50, 0.25);
    box-shadow: 0 4px 14px rgba(8, 11, 16, 0.08);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.nav-toggle.is-active {
    border-color: rgba(214, 58, 50, 0.35);
    background: rgba(255, 255, 255, 0.98);
}
.nav-toggle__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
    height: 14px;
}
.nav-toggle__icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 960px) {
    .nav-toggle {
        display: none;
    }
}

.site-header__cta {
    order: 3;
    flex-shrink: 0;
    display: none;
}
@media (min-width: 960px) {
    .site-header__cta {
        display: inline-flex;
    }
}

@media (max-width: 959px) {
    body.menu-open {
        overflow: hidden;
        touch-action: none;
        overscroll-behavior: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: -0.015em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:active {
    transform: translateY(1px);
}
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.btn--primary {
    background: linear-gradient(135deg, var(--accent), #c21f28);
    color: #fff;
    box-shadow: 0 14px 40px rgba(227, 69, 60, 0.35);
}
.btn--primary:hover,
.btn--primary:focus-visible {
    box-shadow: 0 18px 50px rgba(227, 69, 60, 0.45);
    filter: brightness(1.03);
}
.btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}
.btn--lg {
    padding: 0.85rem 1.35rem;
    font-size: 1.02rem;
}

.hero {
    position: relative;
    overflow: clip;
    padding: clamp(3.75rem, 11vw, 7.5rem) 0 clamp(4.25rem, 12vw, 8.5rem);
    background:
        radial-gradient(ellipse 85% 55% at 15% 25%, rgba(214, 58, 50, 0.28), transparent 58%),
        radial-gradient(ellipse 70% 50% at 88% 8%, rgba(70, 110, 180, 0.14), transparent 50%),
        linear-gradient(180deg, #0c1018 0%, var(--dark) 45%, #080a0f 100%);
    color: #eef1f6;
}
.hero__glow {
    position: absolute;
    inset: auto;
    width: min(92vw, 720px);
    height: min(92vw, 720px);
    top: -28%;
    right: -18%;
    background: radial-gradient(circle at 35% 35%, rgba(214, 58, 50, 0.45), transparent 52%),
        radial-gradient(circle at 72% 58%, rgba(120, 160, 255, 0.2), transparent 48%);
    filter: blur(56px);
    opacity: 0.75;
    pointer-events: none;
}
@media (max-width: 720px) {
    .hero__glow {
        right: -35%;
        top: -35%;
        opacity: 0.55;
    }
}
.hero .eyebrow {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.07em;
    font-size: 0.75rem;
    color: rgba(255, 236, 234, 0.95);
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
    pointer-events: none;
}
.hero__content {
    position: relative;
}
.hero__title {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.12;
    font-size: clamp(1.85rem, 1.35rem + 2.1vw, 3.15rem);
    margin: 0 0 1.1rem;
    max-width: 22ch;
    text-wrap: balance;
}
.hero__lead {
    margin: 0 0 1.75rem;
    max-width: min(var(--text-max), 52ch);
    color: rgba(238, 241, 246, 0.9);
    font-size: clamp(1.04rem, 0.98rem + 0.32vw, 1.18rem);
    line-height: 1.68;
    font-weight: 400;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.hero__chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.hero__chips li {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
}

.process {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
@media (min-width: 860px) {
    .process {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}
.process__step {
    border-radius: var(--radius);
    padding: 1.35rem 1.45rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s var(--ease-out), border-color 0.22s ease;
}
.process__step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff9a8c);
    opacity: 0.9;
}
@media (hover: hover) and (pointer: fine) {
    .process__step:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.16);
    }
}
.process__step h3 {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.process__step p {
    margin: 0;
    color: rgba(236, 240, 247, 0.88);
    font-size: 0.96875rem;
    line-height: 1.65;
}
.process__num {
    font-family: var(--font);
    font-weight: 600;
    color: #ffc8c3;
    letter-spacing: 0.06em;
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
}

.bento {
    display: grid;
    gap: 1rem;
}
@media (min-width: 720px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
    }
}
.bento__card {
    border-radius: var(--radius);
    padding: 1.45rem 1.55rem;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.22s ease;
}
.bento__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(214, 58, 50, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
    .bento__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lift);
        border-color: rgba(214, 58, 50, 0.15);
    }
    .bento__card:hover::before {
        opacity: 1;
    }
}
.bento__card--wide {
    grid-column: 1 / -1;
}
@media (min-width: 1024px) {
    .bento__card--wide {
        grid-column: span 2;
    }
}
.bento__card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink-2);
}
.bento__card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96875rem;
    line-height: 1.68;
}

.hw-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 720px) {
    .hw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.hw-card {
    border-radius: var(--radius);
    padding: 1.4rem 1.45rem;
    background: rgba(255, 255, 255, 0.94);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .hw-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lift);
        border-color: rgba(214, 58, 50, 0.14);
    }
}
.hw-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.018em;
    color: var(--ink-2);
}
.hw-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
    font-size: 0.96875rem;
}

.video-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.video-card {
    transition: transform 0.28s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .video-card:hover {
        transform: translateY(-3px);
    }
}
.video-card__frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    background: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.28s var(--ease-out), border-color 0.22s ease;
}
@media (hover: hover) and (pointer: fine) {
    .video-card:hover .video-card__frame {
        box-shadow: var(--shadow-lift);
        border-color: rgba(214, 58, 50, 0.2);
    }
}
.video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-card figcaption {
    margin-top: 0.85rem;
}
.video-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink-2);
}
.video-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96875rem;
    line-height: 1.65;
}
#videolar .video-card figcaption {
    text-align: center;
}

.gallery {
    position: relative;
    margin-top: 2rem;
    padding: 0 clamp(0.25rem, 1.5vw, 2.5rem);
}
.gallery__viewport {
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-inline: auto;
    max-width: min(920px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
@media (prefers-reduced-motion: reduce) {
    .gallery__track,
    .gallery-vitrin__track {
        scroll-behavior: auto;
    }
}
.gallery__track {
    display: flex;
    gap: 0.75rem;
    padding: 0.35rem 0.5rem 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(214, 58, 50, 0.55) rgba(255, 255, 255, 0.06);
    -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar {
    height: 8px;
}
.gallery__track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}
.gallery__track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}
.gallery__track::-webkit-scrollbar-thumb:hover {
    background: rgba(214, 58, 50, 0.65);
}
.gallery__item {
    flex: 0 0 min(90vw, 820px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.gallery__frame {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: min(52vh, 520px);
    background: #0a0e14;
}
.gallery__zoom {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: zoom-in;
    background: transparent;
    border-radius: inherit;
    line-height: 0;
}
.gallery__zoom:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.gallery__zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery__cap {
    margin: 0;
    padding: 0.75rem 1rem 0.95rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, rgba(8, 11, 16, 0.5) 0%, rgba(8, 11, 16, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 11, 16, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.gallery__btn:hover {
    background: rgba(214, 58, 50, 0.35);
    border-color: rgba(214, 58, 50, 0.5);
}
.gallery__btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.gallery__btn--prev {
    left: max(0.35rem, env(safe-area-inset-left, 0px));
}
.gallery__btn--next {
    right: max(0.35rem, env(safe-area-inset-right, 0px));
}
.gallery__btn::after {
    content: "";
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.gallery__btn--prev::after {
    transform: rotate(-135deg);
    margin-left: 0.2rem;
}
.gallery__btn--next::after {
    transform: rotate(45deg);
    margin-right: 0.2rem;
}
@media (max-width: 520px) {
    .gallery__btn {
        width: 2.35rem;
        height: 2.35rem;
    }
    .gallery__frame {
        max-height: min(42vh, 380px);
    }
}
.gallery__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.26rem 0.34rem;
    margin-top: 0.7rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.32rem 0.55rem;
    max-width: min(22rem, 100%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery__dots button {
    min-width: 1.3rem;
    min-height: 1.3rem;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}
.gallery__dots button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: transform 0.15s ease, background 0.15s ease, width 0.15s ease;
}
.gallery__dots button:hover::before {
    background: rgba(255, 255, 255, 0.48);
    transform: translate(-50%, -50%) scale(1.12);
}
.gallery__dots button[aria-current="true"]::before {
    width: 17px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ff9a8c);
    box-shadow: 0 0 0 2px rgba(214, 58, 50, 0.22);
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    max-width: 520px;
    text-align: left;
}
.catalog-list li {
    margin-bottom: 0.65rem;
}
.catalog-link {
    display: block;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink-2);
    font-weight: 500;
    letter-spacing: -0.012em;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s var(--ease-out), border-color 0.2s ease, box-shadow 0.22s ease;
}
.catalog-link:hover,
.catalog-link:focus-visible {
    border-color: rgba(214, 58, 50, 0.35);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.catalog-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.catalog-link--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.faq {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.faq__item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0.25rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.faq__item[open] {
    border-color: rgba(214, 58, 50, 0.22);
    box-shadow: 0 14px 44px rgba(8, 11, 16, 0.07);
}
.faq__item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.018em;
    line-height: 1.45;
    color: var(--ink-2);
    padding: 0.85rem 0;
    list-style: none;
    border-radius: 8px;
}
.faq__item summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.faq__item summary::-webkit-details-marker {
    display: none;
}
.faq__item summary::after {
    content: "+";
    float: right;
    color: var(--accent);
    font-weight: 600;
}
.faq__item[open] summary::after {
    content: "–";
}
.faq__answer {
    padding-bottom: 1rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.cta-band {
    background: linear-gradient(125deg, #2a0c0c 0%, #121018 38%, #0a1528 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 120%;
    top: -40%;
    right: -5%;
    background: radial-gradient(circle, rgba(214, 58, 50, 0.18), transparent 65%);
    pointer-events: none;
}
.cta-band__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 880px) {
    .cta-band__inner {
        grid-template-columns: 1.2fr 0.8fr;
    }
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}
@media (min-width: 880px) {
    .cta-band__actions {
        justify-content: flex-end;
    }
}

/* Galeri vitrin — tek şerit, hafif kartlar, yüzen oklar */
.gallery-vitrin-section .gallery-vitrin__footer {
    text-align: center;
    margin-top: 1.1rem;
    margin-bottom: 0;
}
.gallery-vitrin {
    position: relative;
    margin-top: 0.35rem;
    padding: 0 clamp(0.15rem, 1.2vw, 2.5rem);
}
.gallery-vitrin__viewport {
    min-width: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(8, 11, 16, 0.06);
}
.gallery-vitrin__track {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.15rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(214, 58, 50, 0.35) rgba(15, 20, 25, 0.05);
}
.gallery-vitrin__track::-webkit-scrollbar {
    height: 6px;
}
.gallery-vitrin__track::-webkit-scrollbar-thumb {
    background: rgba(214, 58, 50, 0.32);
    border-radius: 999px;
}
.gallery-vitrin__item {
    margin: 0;
    flex: 0 0 min(260px, 76vw);
    max-width: 300px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 20, 25, 0.07);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .gallery-vitrin__item:hover {
        border-color: rgba(214, 58, 50, 0.22);
        box-shadow: 0 8px 28px rgba(8, 11, 16, 0.08);
    }
}
.gallery-vitrin__media {
    position: relative;
    overflow: hidden;
    line-height: 0;
    background: var(--bg-soft);
}
.gallery-vitrin__zoom {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: zoom-in;
    background: transparent;
    line-height: 0;
}
.gallery-vitrin__zoom:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.gallery-vitrin__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .gallery-vitrin__item:hover img {
        transform: scale(1.025);
    }
}
.gallery-vitrin__cap {
    margin: 0;
    padding: 0.5rem 0.7rem 0.65rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--muted);
    border-top: 1px solid rgba(15, 20, 25, 0.06);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-vitrin__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(8, 11, 16, 0.1);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.gallery-vitrin__nav:hover {
    border-color: rgba(214, 58, 50, 0.35);
    color: var(--accent);
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(8, 11, 16, 0.12);
}
.gallery-vitrin__nav:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.gallery-vitrin__nav::after {
    content: "";
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.gallery-vitrin__nav--prev {
    left: max(0.25rem, env(safe-area-inset-left, 0px));
}
.gallery-vitrin__nav--prev::after {
    transform: rotate(-135deg);
    margin-left: 0.12rem;
}
.gallery-vitrin__nav--next {
    right: max(0.25rem, env(safe-area-inset-right, 0px));
}
.gallery-vitrin__nav--next::after {
    transform: rotate(45deg);
    margin-right: 0.12rem;
}
@media (max-width: 640px) {
    .gallery-vitrin__nav {
        display: none;
    }
}

/* Galeri lightbox */
.gallery-lightbox {
    padding: 0;
    border: none;
    max-width: 100vw;
    max-height: 100vh;
    width: min(100vw, 1280px);
    background: transparent;
    box-shadow: none;
    z-index: 200;
}
.gallery-lightbox::backdrop {
    background: rgba(8, 11, 16, 0.88);
    backdrop-filter: blur(6px);
}
.gallery-lightbox__shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(88vh, 720px);
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(2.75rem, 6vw, 4rem);
}
.gallery-lightbox__figure {
    margin: 0;
    text-align: center;
    max-width: 100%;
}
.gallery-lightbox__img {
    max-width: min(92vw, 1100px);
    max-height: min(78vh, 720px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    display: inline-block;
}
.gallery-lightbox__caption {
    margin: 0.85rem auto 0;
    max-width: 42rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.88);
}
.gallery-lightbox__caption:empty {
    display: none;
}
.gallery-lightbox__close {
    position: absolute;
    top: max(0.5rem, env(safe-area-inset-top, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 20, 25, 0.65);
    color: #f1f5f9;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-lightbox__close:hover {
    background: rgba(214, 58, 50, 0.35);
    border-color: rgba(255, 255, 255, 0.35);
}
.gallery-lightbox__close:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
.gallery-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 20, 25, 0.55);
    color: #f8fafc;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.15rem;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-lightbox__arrow:hover {
    background: rgba(214, 58, 50, 0.4);
    border-color: rgba(255, 255, 255, 0.28);
}
.gallery-lightbox__arrow:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
.gallery-lightbox__arrow--prev {
    left: max(0.35rem, env(safe-area-inset-left, 0px));
}
.gallery-lightbox__arrow--next {
    right: max(0.35rem, env(safe-area-inset-right, 0px));
}
@media (max-width: 520px) {
    .gallery-lightbox__shell {
        padding: 3rem 0.5rem 2rem;
        min-height: auto;
    }
    .gallery-lightbox__arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.45rem;
    }
}
.text-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.text-link:hover {
    text-decoration: underline;
}

/* İletişim bandı + form */
.contact-band {
    position: relative;
    z-index: 1;
    max-width: min(1080px, 100%);
    margin-inline: auto;
}
.contact-band__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: start;
}
@media (min-width: 900px) {
    .contact-band__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 2.5rem;
    }
}
.contact-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.contact-list__item {
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-list__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.25rem;
}
.contact-list__value {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}
.contact-list__link {
    color: #ffb4a9;
    text-decoration: none;
    word-break: break-word;
}
.contact-list__link:hover {
    text-decoration: underline;
}
.form-flash {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
}
.form-flash--ok {
    background: rgba(46, 160, 67, 0.2);
    border: 1px solid rgba(46, 160, 67, 0.45);
    color: #b8f5c8;
}
.form-flash--err {
    background: rgba(214, 58, 50, 0.18);
    border: 1px solid rgba(214, 58, 50, 0.45);
    color: #ffd4d1;
}
.form-flash--warn {
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: #ffe8a8;
}
.contact-form-wrap {
    border-radius: var(--radius-xl);
    background: rgba(8, 11, 16, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(1.1rem, 3vw, 1.5rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form__row--2 {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 520px) {
    .contact-form__row--2 {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.35rem;
}
.contact-form__label abbr {
    text-decoration: none;
    color: #ff9a93;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: #f4f6fa;
    font: inherit;
    font-size: 1rem;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}
.contact-form__kvkk-hint {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}
.contact-form__kvkk-trigger {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: inherit;
    font-weight: 600;
    color: #ffb4a9;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
    border-radius: 4px;
}
.contact-form__kvkk-trigger:hover {
    color: #ffd4cf;
}
.contact-form__kvkk-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.contact-form__kvkk-trigger--inline {
    display: inline;
    vertical-align: baseline;
}
.contact-form__check-text {
    cursor: pointer;
}
.contact-form__check {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}
.contact-form__check input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--accent);
}
.contact-form__recaptcha {
    margin-top: 0.35rem;
}
.contact-form__submit {
    margin-top: 0.25rem;
    align-self: flex-start;
}

.kvkk-modal {
    padding: 0;
    border: none;
    max-width: min(560px, calc(100vw - 2rem));
    width: 100%;
    border-radius: var(--radius-xl);
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 40px 100px rgba(8, 11, 16, 0.35);
}
.kvkk-modal::backdrop {
    background: rgba(8, 11, 16, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.kvkk-modal__panel {
    display: flex;
    flex-direction: column;
    max-height: min(78vh, 640px);
}
.kvkk-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.15rem 0.75rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.kvkk-modal__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink-2);
}
.kvkk-modal__close {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin: -0.25rem -0.35rem 0 0;
    border: none;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.kvkk-modal__close:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.kvkk-modal__body {
    padding: 1rem 1.15rem;
    overflow-y: auto;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
    min-height: 0;
}
.kvkk-modal__foot {
    padding: 0.85rem 1.15rem 1.1rem;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
}
.kvkk-modal__ok {
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.kvkk-modal.kvkk-modal--fallback {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.kvkk-modal.kvkk-modal--fallback::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(8, 11, 16, 0.55);
}

/* Sabit WhatsApp (panel: Site ayarları → WhatsApp) */
.wa-float {
    position: fixed;
    left: max(1rem, env(safe-area-inset-left, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(8, 11, 16, 0.2);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover {
    transform: scale(1.06);
    color: #fff;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(8, 11, 16, 0.22);
}
.wa-float:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.wa-float__icon {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}

.site-footer {
    padding: 2rem 0 2.25rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 55%);
}
.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted);
}
.site-footer__inner--copyright-only {
    justify-content: center;
    text-align: center;
}
.site-footer__cluster {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}
.site-footer__inner--split {
    align-items: flex-start;
}
.site-footer__start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    min-width: 0;
}
.site-footer__end {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.15rem;
    margin-left: auto;
}
@media (min-width: 640px) {
    .site-footer__inner--split {
        align-items: center;
    }
    .site-footer__start {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}
@media (max-width: 560px) {
    .site-footer__inner--split {
        flex-direction: column;
        align-items: stretch;
    }
    .site-footer__end {
        margin-left: 0;
    }
}
.site-footer__partner-link,
.site-footer__partner-static {
    display: inline-block;
    line-height: 0;
    border-radius: var(--radius-sm);
}
.site-footer__partner-link {
    border: 1px solid transparent;
    transition: border-color 0.15s ease, opacity 0.15s ease;
}
.site-footer__partner-link:hover {
    border-color: rgba(214, 58, 50, 0.22);
    opacity: 0.9;
}
.site-footer__partner-static {
    cursor: default;
}
.site-footer__partner-img {
    display: block;
    max-height: 44px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.footer-admin {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-admin:hover {
    color: var(--ink);
}

/* ——— Blog (liste + yazı detay) ——— */
.blog-page {
    padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3rem, 7vw, 4.5rem);
    background: linear-gradient(180deg, rgba(214, 58, 50, 0.04) 0%, transparent 42%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 55%);
}
.blog-shell {
    max-width: min(720px, var(--wrap));
    margin-inline: auto;
}
.blog-shell--article {
    max-width: min(42rem, calc(100% - 1.5rem));
}
.blog-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    color: var(--muted);
}
.blog-breadcrumb--surface {
    display: inline-flex;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.blog-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    align-items: center;
}
.blog-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 0.45rem;
    opacity: 0.4;
    font-weight: 500;
}
.blog-breadcrumb a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.blog-breadcrumb a:hover {
    text-decoration: underline;
}
.blog-hero {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    padding-bottom: 0.25rem;
}
.blog-hero__title {
    font-family: var(--display);
    font-size: clamp(1.95rem, 1.45rem + 1.5vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin: 0 0 0.55rem;
    line-height: 1.12;
    color: var(--ink-2);
}
.blog-hero__accent {
    display: block;
    width: min(4.5rem, 36%);
    height: 3px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ff9a8c);
}
.blog-hero__lead {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.68;
    color: var(--muted);
    max-width: 52ch;
}
.blog-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(1.35rem, 3.5vw, 2rem);
    box-shadow: 0 14px 40px rgba(8, 11, 16, 0.06), var(--shadow-sm);
    overflow: hidden;
}
.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 154, 140, 0.85));
    opacity: 0.85;
    pointer-events: none;
}
.blog-card--empty {
    text-align: center;
    padding: clamp(1.75rem, 4vw, 2.25rem);
}
.blog-card--empty .blog-lead {
    max-width: 36rem;
    margin-inline: auto;
}
.blog-lead {
    margin: 0 0 1.15rem;
    color: var(--muted);
    line-height: 1.68;
}
.blog-index {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}
.blog-teaser {
    position: relative;
    padding: 1.35rem 1.4rem 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow: 0 8px 28px rgba(8, 11, 16, 0.05);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-teaser::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--accent), rgba(255, 154, 140, 0.5));
    opacity: 0;
    transform: scaleY(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .blog-teaser:hover {
        transform: translateY(-2px);
        border-color: rgba(214, 58, 50, 0.18);
        box-shadow: 0 16px 44px rgba(8, 11, 16, 0.08), 0 4px 14px rgba(214, 58, 50, 0.06);
    }
    .blog-teaser:hover::before {
        opacity: 1;
        transform: scaleY(1);
    }
}
.blog-teaser__head {
    margin-bottom: 0.65rem;
}
.blog-teaser__time {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.45rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 20, 25, 0.05);
}
.blog-teaser__title {
    margin: 0;
    font-size: clamp(1.12rem, 1rem + 0.45vw, 1.28rem);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.28;
}
.blog-teaser__title a {
    color: var(--ink-2);
    text-decoration: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}
.blog-teaser__title a:hover {
    color: var(--accent);
}
.blog-teaser__excerpt {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.68;
    font-size: 0.96875rem;
}
.blog-teaser__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
    box-shadow: 0 6px 18px rgba(214, 58, 50, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-teaser__cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(214, 58, 50, 0.35);
}
.blog-teaser__cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.blog-teaser__cta-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}
.blog-teaser__cta:hover .blog-teaser__cta-arrow {
    transform: translateX(3px);
}
.blog-article__head {
    margin-bottom: 1.65rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(15, 20, 25, 0.08);
}
.blog-article__kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.blog-article__pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
}
.blog-article__pill--read {
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--muted);
}
.blog-article__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.75rem, 1.35rem + 1.35vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.032em;
    line-height: 1.14;
    color: var(--ink-2);
}
.blog-article__title-accent {
    display: block;
    width: min(4.25rem, 32%);
    height: 3px;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ff9a8c);
}
.blog-article__meta {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}
.blog-article__deck {
    margin: 1.1rem 0 0;
    padding: 1rem 1.1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-2);
    font-weight: 500;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(214, 58, 50, 0.06) 0%, rgba(15, 20, 25, 0.03) 100%);
    border: 1px solid rgba(214, 58, 50, 0.12);
}
.blog-article__deck a,
.blog-teaser__excerpt a {
    color: var(--accent);
    font-weight: 600;
    text-underline-offset: 0.15em;
}
.blog-article__deck a:hover,
.blog-teaser__excerpt a:hover {
    text-decoration: underline;
}
.blog-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink-2);
    overflow-x: auto;
}
.blog-prose > *:first-child {
    margin-top: 0;
}
.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.022em;
    margin: 2rem 0 0.7rem;
    line-height: 1.22;
    color: var(--ink-2);
}
.blog-prose h2 {
    font-size: 1.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(214, 58, 50, 0.2);
}
.blog-prose h3 {
    font-size: 1.22rem;
}
.blog-prose h4 {
    font-size: 1.08rem;
}
.blog-prose p {
    margin: 0 0 1.05rem;
}
.blog-prose ul,
.blog-prose ol {
    margin: 0 0 1.05rem 1.15rem;
    padding: 0;
}
.blog-prose li {
    margin-bottom: 0.4rem;
}
.blog-prose a {
    color: var(--accent);
    font-weight: 600;
    text-underline-offset: 0.15em;
}
.blog-prose a:hover {
    text-decoration: underline;
}
.blog-prose figure {
    margin: 1.35rem 0;
}
.blog-prose figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}
.blog-prose hr {
    border: 0;
    height: 1px;
    margin: 2rem 0;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.blog-prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    margin: 1.25rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line);
}
.blog-prose th,
.blog-prose td {
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.blog-prose th {
    background: var(--bg-soft);
    font-weight: 600;
}
.blog-prose blockquote {
    margin: 1.35rem 0;
    padding: 1rem 1.1rem 1rem 1.15rem;
    border-left: 4px solid var(--accent);
    background: var(--accent-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--muted);
}
.blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1.1rem 0;
    box-shadow: 0 12px 36px rgba(8, 11, 16, 0.08);
}
.blog-prose pre,
.blog-prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9em;
}
.blog-prose pre {
    overflow-x: auto;
    padding: 1rem 1.1rem;
    background: #0f1419;
    color: #e8edf3;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-article__foot {
    margin-top: 2.25rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}
.blog-home-cta {
    margin-top: 1.75rem;
    text-align: center;
}
.site-nav__links a[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}
