/* ===================================================================
   TANIT BENİ — Stylesheet
   "Tanıttığımıza Memnun Olduk"
   =================================================================== */

/* =========================
   1. DESIGN TOKENS — warm dark, editorial
   ========================= */
:root {
    /* Backgrounds — warm dark, not pure black */
    --bg:           #08080B;
    --bg-2:         #0E0E12;
    --bg-3:         #14141A;
    --surface:      #18181F;
    --surface-2:    #21212A;
    --surface-3:    #2A2A35;

    /* Borders — softer, warmer */
    --border:       rgba(245, 240, 230, 0.06);
    --border-2:     rgba(245, 240, 230, 0.12);
    --border-3:     rgba(245, 240, 230, 0.20);

    /* Text — warm whites */
    --text:         #F5F2EC;
    --text-2:       #B5B2AB;
    --text-muted:   #8A877F;
    --text-dim:     #5A5852;

    /* Accent — sophisticated orange + cream */
    --accent:       #FF6B2B;
    --accent-2:     #FF8451;
    --accent-glow:  rgba(255, 107, 43, 0.35);
    --accent-soft:  rgba(255, 107, 43, 0.10);
    --accent-tint:  rgba(255, 107, 43, 0.04);
    --accent-warm:  #FFB597;
    --cream:        #F1E5D1;

    /* Typography */
    --font-display: 'Bebas Neue', 'Oswald', 'Inter', sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-serif:   'Instrument Serif', Georgia, serif;

    /* Type scale — 7 kademeli, mobile-first clamp */
    --fs-display:   clamp(48px, 10vw, 160px);  /* Sadece hero başlığı */
    --fs-h1:        clamp(40px, 6.2vw, 88px);  /* Section başlıkları */
    --fs-h2:        clamp(26px, 3vw, 38px);    /* Kart, alt-bölüm başlıkları */
    --fs-h3:        clamp(19px, 1.7vw, 22px);  /* Process step, team name */
    --fs-lead:      clamp(16px, 1.4vw, 19px);  /* Section lead, paragraflar */
    --fs-body:      clamp(15px, 1.1vw, 17px);  /* Body */
    --fs-caption:   12px;                       /* Eyebrow, label, time */
    --fs-slogan:    clamp(28px, 4vw, 44px);    /* Hero slogan eyebrow */

    /* Sizing */
    --container:    1380px;
    --gutter:       clamp(20px, 4vw, 56px);
    --section-pad:  clamp(80px, 10vw, 140px);   /* Tüm section'lar için tek ritim */
    --radius-sm:    10px;
    --radius:       18px;
    --radius-lg:    28px;

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
    --dur:          0.5s;
    --dur-slow:     0.9s;
}

/* =========================
   2. RESET — editorial base
   ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Subtle warm gradient overlay for depth */
    background-image:
        radial-gradient(ellipse 800px 600px at 80% -10%, rgba(255, 107, 43, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 0% 100%, rgba(120, 60, 200, 0.03) 0%, transparent 60%);
    background-attachment: fixed;
}
img, video, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* =========================
   3. UTILITIES
   ========================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.65 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, opacity 0.25s;
    opacity: 0;
    mix-blend-mode: difference;
}
.cursor-dot.is-hover { width: 28px; height: 28px; opacity: 0.6; }
@media (max-width: 900px) { .cursor-dot { display: none; } }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}

/* =========================
   4. NAVIGATION
   ========================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
    padding: 22px 0;
}
.nav.is-scrolled {
    background: rgba(8, 8, 11, 0.72);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.4);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav__name {
    color: var(--text);
}
.nav__name span {
    color: var(--accent);
}

.nav__links {
    display: flex;
    gap: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: -0.005em;
}
.nav__links a {
    position: relative;
    padding: 8px 2px;
    transition: color 0.25s var(--ease);
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 2px;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { width: 100%; }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__cta:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__burger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 49;
    padding: 100px var(--gutter) 40px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    overflow-y: auto;
}
.mobile-menu.is-open {
    transform: translateY(0);
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu nav a {
    font-family: var(--font-display);
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.mobile-menu__cta {
    color: var(--accent) !important;
    margin-top: 24px;
}

/* =========================
   5. BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s var(--ease), border-color 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 12px 36px -10px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px -12px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
    border-color: var(--border-2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    background: var(--accent-soft);
}
.btn--text {
    padding: 18px 4px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.btn--text:hover { color: var(--accent); }
.btn--block { width: 100%; }

/* =========================
   6. HERO
   ========================= */
.hero {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero__bg-fallback {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 43, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(120, 60, 200, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #15101a 50%, #0a0a0f 100%);
    z-index: -1;
}

/* Slideshow — fotoğrafçılık/sinema temalı dönen arka plan */
.hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    will-change: opacity, transform;
    animation: heroSlide 40s infinite cubic-bezier(0.45, 0, 0.55, 1);
}
/* <img> tabanlı slide — daha iyi LCP, lazy load destekli */
.hero__slideshow .slide--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
}
.hero__slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero__slideshow .slide:nth-child(2) { animation-delay: 8s; }
.hero__slideshow .slide:nth-child(3) { animation-delay: 16s; }
.hero__slideshow .slide:nth-child(4) { animation-delay: 24s; }
.hero__slideshow .slide:nth-child(5) { animation-delay: 32s; }

@keyframes heroSlide {
    0%   { opacity: 0; transform: scale(1.06); }
    5%   { opacity: 0.55; }
    20%  { opacity: 0.55; transform: scale(1.0); }
    25%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.06); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,15,0.45) 0%, rgba(10,10,15,0.78) 70%, var(--bg) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(10,10,15,0.5) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.02);
}

/* Nav saati (theme toggle yanı) */
.nav__clock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    background: var(--surface);
    flex-shrink: 0;
    transition: border-color 0.25s var(--ease), background 0.25s;
}
.nav__clock:hover {
    border-color: var(--accent);
}
.nav__clock-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: navClockPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.nav__clock--offline .nav__clock-pulse {
    background: var(--text-muted);
    animation: none;
    box-shadow: none;
}
@keyframes navClockPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.2); }
}
.nav__clock-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}
.nav__clock-text strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}
.nav__clock-text span {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .nav__clock { display: none; }
}
.hero__eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: var(--text);
}
.hero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: -0.015em;
    /* Subtle glow */
    text-shadow: 0 0 60px rgba(255, 107, 43, 0.3);
}

.reveal-line {
    display: block;
    overflow: hidden;
}
.reveal-line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease-out);
}
.reveal-line.is-in > span {
    transform: translateY(0);
}
.reveal-line:nth-child(2) > span { transition-delay: 0.1s; }
.reveal-line:nth-child(3) > span { transition-delay: 0.2s; }
.reveal-line:nth-child(4) > span { transition-delay: 0.3s; }

.hero__slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-slogan);
    line-height: 1.1;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero__lead {
    max-width: 600px;
    font-size: var(--fs-lead);
    color: var(--text-2);
    margin-bottom: 48px;
    line-height: 1.65;
    font-weight: 300;
}
.hero__lead strong { color: var(--text); font-weight: 600; }

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 84px;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    max-width: 720px;
}
.hero__meta-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--text);
    margin-bottom: 4px;
}
.hero__meta-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

@media (max-width: 700px) {
    .hero__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 3;
}
.hero__scroll svg path {
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* =========================
   7. MARQUEE — running banner
   ========================= */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
    position: relative;
}
.marquee::before, .marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}
.marquee__track {
    display: flex;
    gap: 44px;
    align-items: center;
    width: max-content;
    animation: marquee 42s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
}
.marquee__track span:nth-child(even) {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.4em;
    transform: translateY(-2px);
    letter-spacing: 0;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================
   8. SECTION HEADER — editorial, refined
   ========================= */
.section-head {
    margin-bottom: 80px;
    max-width: 820px;
    position: relative;
}
.section-head--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    max-width: 100%;
}
.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Eyebrow label — daha minimal, refined */
.section-head__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 28px;
    font-family: var(--font-body);
}
.section-head__label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}
.section-head__label:empty {
    display: none;
}
.section-head__title {
    font-family: var(--font-display);
    font-size: var(--fs-h1);
    line-height: 0.95;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--text);
}
.section-head__title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: -0.01em;
}
.section-head__lead {
    font-size: var(--fs-lead);
    color: var(--text-2);
    line-height: 1.65;
    max-width: 60ch;
    font-weight: 300;
}
.section-head--row .section-head__lead {
    margin-left: auto;
    margin-bottom: 8px;
}

@media (max-width: 800px) {
    .section-head--row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .section-head--row .section-head__lead { margin-left: 0; }
}

/* =========================
   9. SERVICES — premium dark panel
   ========================= */
.services {
    padding: var(--section-pad) 0;
    position: relative;
    background: var(--bg);
}
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 44px 36px 36px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
    isolation: isolate;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 400px 200px at 50% 0%, var(--accent-tint), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: -1;
}
.service-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 20%, var(--accent) 50%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-2);
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 43, 0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card__num {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 36px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-soft);
    border-radius: 999px;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 32px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-tint));
    border-radius: 18px;
    border: 1px solid var(--accent-soft);
    transition: transform 0.4s var(--ease), background 0.4s;
}
.service-card:hover .service-card__icon {
    transform: rotate(-4deg) scale(1.05);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    line-height: 1.08;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text);
}

.service-card__text {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}
.service-card__text strong { color: var(--text); font-weight: 600; }

.service-card__list {
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.service-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-2);
    font-weight: 400;
}
.service-card__list li::before {
    content: "→";
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 6px;
    transition: gap 0.3s var(--ease), border-color 0.3s, color 0.3s;
}
.service-card__link:hover {
    gap: 16px;
    border-color: var(--accent);
    color: var(--accent-2);
}

.service-card--wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}
.service-card--wide .service-card__num { margin-bottom: 0; }
.service-card--wide .service-card__icon { margin-bottom: 0; }
.service-card--wide .service-card__title { margin-bottom: 8px; }
.service-card--wide .service-card__text { margin-bottom: 16px; }
.service-card--wide .service-card__content { display: flex; flex-direction: column; gap: 6px; }

@media (max-width: 1000px) {
    .services__grid { grid-template-columns: 1fr 1fr; }
    .service-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
    .services__grid { grid-template-columns: 1fr; }
    .service-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
}

/* =========================
   10. PORTFOLIO — gallery-grade
   ========================= */
.portfolio {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 1000px 500px at 50% 0%, var(--accent-tint), transparent 50%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    position: relative;
}

.portfolio__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.portfolio__filter {
    padding: 12px 22px;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.portfolio__filter span {
    font-size: 11px;
    padding: 3px 9px;
    background: var(--surface);
    border-radius: 999px;
    color: var(--text-muted);
    font-weight: 600;
}
.portfolio__filter:hover {
    color: var(--text);
    border-color: var(--border-3);
    transform: translateY(-1px);
}
.portfolio__filter.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 20px -8px var(--accent-glow);
}
.portfolio__filter.is-active span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Tüm kartlar UNIFORM — aynı 16:9 oran */
.portfolio__grid .port-item {
    aspect-ratio: 16 / 9;
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Skeleton loading state — JSON fetch sırasında */
.portfolio__grid.is-loading .port-item {
    background: linear-gradient(110deg, var(--surface) 8%, var(--surface-2) 18%, var(--surface) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.4s linear infinite;
    border: none;
    pointer-events: none;
}
.portfolio__grid.is-loading .port-item__media,
.portfolio__grid.is-loading .port-item__overlay {
    display: none;
}
@keyframes shimmer {
    to { background-position: -200% 0; }
}

.port-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    border: 1px solid var(--border);
}
.port-item.is-hidden {
    display: none;
}
.port-item--lg {
    grid-column: span 2;
    grid-row: span 2;
}
.port-item--tall {
    grid-row: span 2;
}
.port-item__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
    filter: brightness(0.85) saturate(1.05);
}
.port-item:hover .port-item__media {
    transform: scale(1.06);
    filter: brightness(0.5) saturate(1.15);
}
.port-item__overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    transition: background 0.4s;
}
.port-item:hover .port-item__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}
.port-item__cat {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}
.port-item__title {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
/* Uniform grid — büyük kart override'ı kaldırıldı */
.port-item__badge {
    position: absolute;
    top: 18px; left: 18px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 600;
    transform: translateY(-6px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.port-item:hover .port-item__badge {
    transform: translateY(0);
    opacity: 1;
}

.port-item__play {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.port-item:hover .port-item__play {
    transform: scale(1);
    opacity: 1;
    background: var(--accent);
    border-color: var(--accent);
}

.portfolio__more {
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 1000px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* =========================
   11. ABOUT — minimal editorial (typography-only)
   ========================= */
.about {
    padding: var(--section-pad) 0;
    background: var(--bg-2);
    position: relative;
}
.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
/* Foto kısmını gizle — tipografi-only mode */
.about__media {
    display: none !important;
}
.about__inner {
    display: block !important;
    grid-template-columns: 1fr !important;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
/* Title daha büyük + ortalı */
.about .section-head__label {
    justify-content: center;
}
.about__content > p.reveal {
    font-size: var(--fs-lead);
    color: var(--text-2);
    line-height: 1.75;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 300;
}
.about__skills {
    justify-content: center;
    margin-top: 48px !important;
}
.about__cta {
    justify-content: center;
    margin-top: 40px;
}
.about__inner {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
}
.about__media {
    position: relative;
    aspect-ratio: 4/5;
}
.about__photo {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.about__photo-mini {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 50%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    border: 6px solid var(--bg);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.about__badge {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--bg);
    padding: 16px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    z-index: 2;
}
.about__badge span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.about__badge strong {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--accent);
}

.about__content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.75;
    max-width: 540px;
}
.about__content strong { color: var(--text); font-weight: 600; }
.about__content em {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.08em;
}

.about__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0;
}
.about__skills span {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}
.about__skills span:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.about__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; gap: 60px; }
    .about__media { max-width: 480px; margin: 0 auto; }
}

/* =========================
   11B. TEAM (Ekip — about altında)
   ========================= */
.team-block {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid var(--border);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.team-card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-2);
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.55);
}
.team-card__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--bg-2) center/cover no-repeat;
    position: relative;
}
.team-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}
/* Fotosuz placeholder — büyük baş harf */
.team-card__photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-2), var(--bg-3));
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 140px);
    color: var(--accent);
    line-height: 1;
    text-transform: uppercase;
}
.team-card__photo--empty::after { display: none; }
.team-card__body {
    padding: 24px 22px 26px;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 6px;
}
.team-card__role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}
.team-card__bio {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 16px;
}
.team-card__social {
    display: flex;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.team-card__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}
.team-card__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* =========================
   11C. REFERENCES (Logo wall)
   ========================= */
.references {
    padding: 140px 0;
    background:
        radial-gradient(ellipse 800px 400px at 50% 50%, var(--accent-tint), transparent 60%),
        var(--bg);
    position: relative;
}
.references::before, .references::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.references::before { top: 0; }
.references::after { bottom: 0; }

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}
.reference-item {
    aspect-ratio: 16 / 9;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    transition: background 0.4s, transform 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.01);
}
.reference-item:hover {
    background: var(--accent-soft);
    transform: scale(1.02);
    z-index: 2;
}
.reference-item__logo {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.85) opacity(0.6);
    transition: filter 0.4s;
}
.reference-item:hover .reference-item__logo {
    filter: grayscale(0) brightness(1) opacity(1);
}
.reference-item__name {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-2);
    text-align: center;
    transition: color 0.3s;
}
.reference-item:hover .reference-item__name {
    color: var(--accent);
}

@media (max-width: 700px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reference-item__name { font-size: 16px; }
}
@media (max-width: 400px) {
    .references-grid { grid-template-columns: 1fr; }
}

/* =========================
   12. PROCESS — refined timeline
   ========================= */
.process {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
    position: relative;
}
.process::before, .process::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.process::before { top: 0; }
.process::after { bottom: 0; }

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
    position: relative;
}
.process__steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
    z-index: 0;
}

.process__step {
    position: relative;
    padding: 36px 30px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
    z-index: 1;
}
.process__step:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-glow);
}

.process__num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--accent), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.process__step h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}
.process__step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.process__time {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
}
@media (max-width: 600px) {
    .process__steps { grid-template-columns: 1fr; }
}

/* =========================
   13. TESTIMONIALS — pull quotes
   ========================= */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg);
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial {
    position: relative;
    padding: 44px 40px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.testimonial:hover {
    transform: translateY(-6px);
    border-color: var(--border-2);
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.5);
}
.testimonial__quote {
    position: absolute;
    top: 8px; left: 24px;
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.18;
    pointer-events: none;
}

.testimonial blockquote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial blockquote strong {
    color: var(--accent);
    font-weight: 600;
}

.testimonial figcaption {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.testimonial figcaption strong {
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}
.testimonial figcaption span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 800px) {
    .testimonials__grid { grid-template-columns: 1fr; }
}

/* =========================
   14. CONTACT — closing statement
   ========================= */
.contact {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse 800px 400px at 50% 100%, var(--accent-tint), transparent 60%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    position: relative;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact__intro .section-head__title {
    font-size: var(--fs-h1);
    line-height: 0.95;
    margin-bottom: 24px;
}
.contact__intro > p.reveal {
    font-size: var(--fs-lead);
    line-height: 1.65;
}

/* Sol panel altı — fast-response garanti kartı (form ile dengeleme) */
.contact__guarantee {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--accent-soft), transparent);
    border: 1px solid var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.contact__guarantee__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px -6px rgba(255, 107, 43, 0.4);
}
.contact__guarantee__text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.contact__guarantee__text small {
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.5;
}

.contact__intro > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 460px;
}
.contact__intro strong { color: var(--text); }

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact__channels a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    min-height: 78px;
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s var(--ease);
}
.contact__channels a > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 46px;
}
.contact__channels a:hover {
    transform: translateX(6px);
}
.contact__channels a:hover .contact__icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.contact__channels a:hover strong {
    color: var(--accent);
}
.contact__icon {
    width: 46px; height: 46px;
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--accent) !important;
    background: rgba(255, 107, 43, 0.14);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.contact__icon i {
    font-size: 20px;
    line-height: 1;
    color: inherit;
    display: block;
}
.contact__channels a:hover .contact__icon i { color: #fff; }
.contact__channels div > span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact__channels strong {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

/* Konum / Harita Embed */
.contact__map {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    filter: hue-rotate(190deg) saturate(0.4) brightness(0.85);
    transition: filter 0.4s;
}
.contact__map:hover {
    filter: none;
}
.contact__map iframe {
    display: block;
    background: var(--bg-2);
}

/* Google Rating Badge (yorumların üstünde) */
.google-rating[hidden] { display: none !important; }

/* =========================
   TRUST BAR — Müşteri logo şeridi (kayan band)
   ========================= */
.trust-bar {
    padding: 56px 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.trust-bar__label {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 500;
}
.trust-bar__viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust-bar__track {
    display: flex;
    gap: 88px;
    width: max-content;
    animation: trustScroll 50s linear infinite;
    align-items: center;
}
.trust-bar__logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
    min-height: 92px;
    color: var(--text-muted);
}
.trust-bar__logo:hover {
    color: var(--accent);
}

/* Logolu marka */
.trust-bar__img {
    height: clamp(48px, 5.5vw, 64px);
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.3) brightness(1.1) opacity(0.85);
    transition: filter 0.35s var(--ease);
}
.trust-bar__logo:hover .trust-bar__img {
    filter: grayscale(0) brightness(1) opacity(1);
}

/* Marka adı (logo altında küçük caption) */
.trust-bar__name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: inherit;
    white-space: nowrap;
}

/* Logosuz marka — büyük metin */
.trust-bar__name--big {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 32px);
    letter-spacing: 0.08em;
    font-weight: 400;
}
.trust-bar__logo--text-only {
    /* Yalnız metin olan markalarda height eşitlemek için */
    padding: 12px 0;
}
@keyframes trustScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.trust-bar__viewport:hover .trust-bar__track {
    animation-play-state: paused;
}

@media (max-width: 700px) {
    .trust-bar { padding: 40px 0; }
    .trust-bar__track { gap: 56px; }
    .trust-bar__logo { min-height: 76px; gap: 6px; }
    .trust-bar__img { max-height: 48px; }
    .trust-bar__name { font-size: 10px; letter-spacing: 0.14em; }
    .trust-bar__name--big { font-size: 18px; }
}

/* =========================
   FAQ — Sıkça Sorulan Sorular (akordeon)
   ========================= */
.faq {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.faq__list {
    max-width: 820px;
    margin: 56px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), background 0.3s;
}
.faq__item[open] {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    box-shadow: 0 12px 32px -16px rgba(255, 107, 43, 0.25);
}
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    user-select: none;
    transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }

.faq__q {
    flex: 1;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    transition: color 0.25s;
}
.faq__item:hover .faq__q { color: var(--accent); }
.faq__item[open] .faq__q { color: var(--accent); }

.faq__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s var(--ease), background 0.3s;
}
.faq__item[open] .faq__icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.faq__a {
    padding: 0 28px 24px 28px;
    animation: faqSlide 0.3s var(--ease-out);
}
.faq__a p {
    color: var(--text-2);
    line-height: 1.7;
    font-size: 15px;
    max-width: 65ch;
}
.faq__a p strong {
    color: var(--text);
    font-weight: 600;
}
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq__cta {
    text-align: center;
    margin-top: 48px;
    padding: 28px 24px;
    background: var(--accent-soft);
    border: 1px dashed var(--accent);
    border-radius: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.faq__cta p {
    margin-bottom: 14px;
    color: var(--text-2);
    font-size: 15px;
}
.faq__cta .btn { min-width: 200px; }

@media (max-width: 600px) {
    .faq__item summary { padding: 18px 20px; gap: 14px; }
    .faq__a { padding: 0 20px 20px; }
    .faq__icon { width: 30px; height: 30px; font-size: 18px; }
}

/* =========================
   RATING HERO — büyük puan vurgu (sosyal kanıt)
   ========================= */
.rating-hero {
    max-width: 520px;
    margin: 0 auto 60px;
    padding: 36px 32px 28px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 43, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1.5px solid var(--accent);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 24px 60px -20px rgba(255, 107, 43, 0.25);
    position: relative;
    overflow: hidden;
}
.rating-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.rating-hero__score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    line-height: 1;
}
.rating-hero__score strong {
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 108px);
    color: var(--accent);
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(255, 107, 43, 0.35);
    line-height: 1;
}
.rating-hero__divider {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-muted);
}
.rating-hero__max {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-muted);
    letter-spacing: -0.02em;
}
.rating-hero__stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 28px;
}
.rating-hero__stars .rs {
    color: var(--accent);
    text-shadow: 0 0 16px rgba(255, 107, 43, 0.4);
    line-height: 1;
}
.rating-hero__stars .rs--half {
    background: linear-gradient(90deg, var(--accent) 50%, var(--text-dim) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.rating-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 18px;
}
.rating-hero__meta strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.rating-hero__sep { color: var(--text-dim); }
.rating-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    transition: all 0.25s var(--ease);
}
.rating-hero__link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    margin-top: 18px;
    transition: transform 0.3s var(--ease), border-color 0.3s;
}
.google-rating:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}
.google-rating__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.google-rating__text {
    line-height: 1.2;
}
.google-rating__text strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
}
.google-rating__text span {
    font-size: 12px;
    color: var(--text-muted);
}
.google-rating__link {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-left: 14px;
    border-left: 1px solid var(--border-2);
    margin-left: 4px;
    white-space: nowrap;
}
.google-rating__link:hover { color: var(--accent-2); }

/* Google Testimonial Card — özel görünüm */
.testimonial--google {
    border-color: rgba(66, 133, 244, 0.2);
}
.testimonial--google::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/><path fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/><path fill='%23FBBC04' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/><path fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}
.testimonial__rating {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
    background: var(--bg-2);
}
.testimonial figcaption.with-avatar {
    flex-direction: row;
    align-items: center;
}
.testimonial figcaption.with-avatar > div {
    flex: 1;
}

/* Form */
.contact__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.field {
    display: block;
    margin-bottom: 16px;
}
.field > span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}
.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.3s, background 0.3s;
    font-family: inherit;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-2);
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-dim);
}
.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field-group {
    border: none;
    margin-bottom: 24px;
}
.field-group legend {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    cursor: pointer;
}
.chip input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}
.chip span {
    display: inline-block;
    padding: 9px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}
.chip:hover span {
    color: var(--text);
    border-color: var(--border-2);
}
.chip input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}
.form-note small {
    display: block;
    color: var(--text-dim);
    margin-top: 4px;
}

.form-success {
    margin-top: 20px;
    padding: 18px 22px;
    background: rgba(50, 200, 100, 0.08);
    border: 1px solid rgba(50, 200, 100, 0.3);
    border-radius: 12px;
    text-align: center;
}
.form-success strong {
    display: block;
    color: #4ade80;
    margin-bottom: 4px;
    font-size: 15px;
}
.form-success span {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 1000px) {
    .contact__inner { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .contact__form { padding: 28px; }
}

/* =========================
   14B. VIDEO LIGHTBOX
   ========================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 24px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s var(--ease);
}
.lightbox__close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

.lightbox__inner {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.lightbox__frame {
    position: relative;
    width: min(95vw, 1100px);
    aspect-ratio: 16 / 9;
    height: auto;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: scale(0.96) translateY(8px);
    transition: transform 0.45s var(--ease);
    flex-shrink: 0;
}
.lightbox.is-open .lightbox__frame {
    transform: scale(1) translateY(0);
}
.lightbox__frame--vertical {
    aspect-ratio: 9 / 16;
    width: auto;
    height: min(75vh, 700px);
    max-width: 90vw;
}
.lightbox__frame--square {
    aspect-ratio: 1 / 1;
    width: auto;
    height: min(75vh, 700px);
    max-width: 90vw;
}
.lightbox__frame iframe,
.lightbox__frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}
/* Instagram embed iframe için extra yükseklik (caption + post için) */
.lightbox__frame--instagram {
    aspect-ratio: auto;
    height: min(85vh, 800px);
    width: min(540px, 92vw);
}

.lightbox__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}
.lightbox__placeholder svg {
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 8px;
}
.lightbox__placeholder p {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.6;
}
.lightbox__placeholder code {
    display: inline-block;
    margin: 0 4px;
    padding: 2px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: ui-monospace, monospace;
    font-size: 13px;
    color: var(--accent);
}
.lightbox__placeholder a {
    color: var(--accent);
    text-decoration: underline;
}

.lightbox__caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
}
.lightbox__caption strong {
    display: inline-block;
    color: var(--text);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 18px;
    margin-right: 12px;
}
.lightbox__caption-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.lightbox__caption .pill {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.lightbox__caption .pill--platform {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border-2);
}

/* Auto-fetched metadata block (oEmbed) */
.lightbox__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    margin-top: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.lightbox__meta-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
}
.lightbox__meta-text {
    flex: 1;
    min-width: 0;
}
.lightbox__meta-title {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.lightbox__meta-author {
    font-size: 12px;
    color: var(--text-muted);
}
.lightbox__meta-author strong {
    color: var(--accent);
    font-weight: 600;
    margin: 0;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.lightbox__note {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--accent-soft);
    border: 1px solid rgba(255, 107, 43, 0.25);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.5;
}
.lightbox__note strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 640px) {
    .lightbox { padding: 70px 16px 24px; }
    .lightbox__close { top: 16px; right: 16px; width: 44px; height: 44px; }
    .lightbox__caption-head { flex-direction: column; gap: 6px; }
    .lightbox__meta { padding: 12px; gap: 12px; }
    .lightbox__meta-thumb { width: 56px; height: 56px; }
}

/* =========================
   14C. STICKY FAB STACK (Teklif Al + WhatsApp)
   ========================= */
.fab-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px 13px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.35s var(--ease), background 0.3s;
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    pointer-events: none;
    position: relative;
    overflow: hidden;
}
.fab.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.fab__icon { position: relative; z-index: 2; flex-shrink: 0; }
.fab__label { position: relative; z-index: 2; line-height: 1; }

/* Teklif Al butonu — accent turuncu */
.fab--quote {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8C32 100%);
    color: #fff;
    box-shadow: 0 14px 40px -8px rgba(255, 107, 43, 0.55), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.fab--quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF8C32 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.fab--quote:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 56px -8px rgba(255, 107, 43, 0.7);
}
.fab--quote:hover::before { opacity: 1; }
.fab--quote .fab__icon {
    fill: #fff;
    stroke: #fff;
}

/* WhatsApp FAB — yeşil */
.whatsapp-fab {
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 36px -8px rgba(37, 211, 102, 0.55), 0 0 0 1px rgba(255,255,255,0.08);
    padding: 13px 22px 13px 13px;
}
.whatsapp-fab:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 50px -8px rgba(37, 211, 102, 0.7);
    color: #fff;
}
.whatsapp-fab__icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.whatsapp-fab__label {
    position: relative;
    z-index: 2;
    line-height: 1;
}
.whatsapp-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.55);
    animation: whatsappPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 0;
    pointer-events: none;
}
.whatsapp-fab__pulse--2 {
    animation-delay: 1.2s;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.55; }
    80%, 100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 640px) {
    .fab-stack { bottom: 18px; right: 18px; gap: 10px; }
    .fab {
        padding: 13px;
        font-size: 0;
        gap: 0;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
    .fab__label { display: none; }
}

/* =========================
   14D. QUICK QUOTE MODAL (yapışkan teklif formu)
   ========================= */
.quick-quote {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.quick-quote[hidden] { display: none !important; }
.quick-quote__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 11, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: qqFadeIn 0.3s ease;
}
@keyframes qqFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.quick-quote__panel {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
    border: 1.5px solid var(--accent);
    border-radius: 24px;
    padding: 32px 32px 28px;
    box-shadow: 0 32px 80px -20px rgba(255, 107, 43, 0.35), 0 0 0 1px rgba(255, 107, 43, 0.15);
    animation: qqSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 92vh;
    overflow-y: auto;
}
@keyframes qqSlideUp {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quick-quote__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    color: var(--text-2);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.quick-quote__close:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(90deg);
}
.quick-quote__head {
    text-align: center;
    margin-bottom: 22px;
}
.quick-quote__badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 12px;
}
.quick-quote__head h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 30px);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.1;
}
.quick-quote__head p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
}
.quick-quote__form .field {
    display: block;
    margin-bottom: 14px;
}
.quick-quote__form .field span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.quick-quote__form .field span small {
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-dim);
    font-weight: 400;
}
.quick-quote__form input,
.quick-quote__form select,
.quick-quote__form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border-2);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.quick-quote__form input:focus,
.quick-quote__form select:focus,
.quick-quote__form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.quick-quote__form textarea { resize: vertical; min-height: 60px; }
.quick-quote__form button[type="submit"] {
    margin-top: 8px;
    height: 48px;
    font-size: 13px;
}
.quick-quote__note {
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
}

.quick-quote__error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}
[data-theme="dark"] .quick-quote__error {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.4);
    color: #fca5a5;
}

/* ============================================================
   LANG SWITCHER (TR / EN / DE)
   ============================================================ */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-right: 8px;
}
[data-theme="light"] .lang-switcher {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}
.lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 9px;
    background: transparent;
    border: none;
    border-radius: 7px;
    color: var(--text-2);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.lang-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}
[data-theme="light"] .lang-switcher__btn:hover {
    background: rgba(0, 0, 0, 0.05);
}
.lang-switcher__btn.is-active {
    background: var(--accent, #d97757);
    color: #fff;
}
.lang-switcher__btn.is-active:hover {
    background: var(--accent, #d97757);
    color: #fff;
}
.lang-switcher__flag {
    font-size: 13px;
    line-height: 1;
}
.lang-switcher__code {
    font-size: 10px;
    letter-spacing: 0.06em;
}

/* Mobil — bayrak biraz daha büyük */
.lang-switcher--mobile {
    padding: 5px;
}
.lang-switcher--mobile .lang-switcher__btn {
    padding: 9px 13px;
    font-size: 12px;
}
.lang-switcher--mobile .lang-switcher__flag {
    font-size: 16px;
}

/* Küçük ekranlarda nav'da lang-switcher kompakt */
@media (max-width: 1024px) {
    .nav .lang-switcher .lang-switcher__code {
        display: none;
    }
    .nav .lang-switcher__btn {
        padding: 6px;
    }
}
@media (max-width: 768px) {
    .nav .lang-switcher {
        display: none;
    }
}

.quick-quote__success {
    text-align: center;
    padding: 20px 0;
}
.quick-quote__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
    animation: qqPop 0.5s cubic-bezier(0.18, 1.55, 0.5, 1);
}
@keyframes qqPop {
    0%   { opacity: 0; transform: scale(0.4); }
    100% { opacity: 1; transform: scale(1); }
}
.quick-quote__success h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.quick-quote__success p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}

body.qq-open { overflow: hidden; }

/* Lightbox açıkken FAB ve cursor'ı gizle */
body.lightbox-open .whatsapp-fab,
body.lightbox-open .cursor-dot {
    opacity: 0 !important;
    pointer-events: none;
}

/* =========================
   COOKIE BANNER (KVKK)
   ========================= */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 95;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 43, 0.12);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    max-width: 720px;
    margin: 0 auto;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}
.cookie-banner__icon {
    font-size: 32px;
    line-height: 1;
}
.cookie-banner__text {
    min-width: 0;
}
.cookie-banner__text strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cookie-banner__text p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-banner .btn--sm {
    padding: 9px 16px;
    font-size: 12px;
}

@media (max-width: 700px) {
    .cookie-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cookie-banner__icon { display: none; }
    .cookie-banner__actions {
        justify-content: center;
        flex-direction: column-reverse;
    }
    .cookie-banner__actions .btn { width: 100%; }
}

/* =========================
   PRIVACY MODAL
   ========================= */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 30px;
    overflow-y: auto;
}
/* hidden attribute saygısı (display: flex onu override ediyor) */
.privacy-modal[hidden],
.cookie-banner[hidden] {
    display: none !important;
}
.privacy-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(12px);
}
.privacy-modal__panel {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.7);
}
.privacy-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.privacy-modal__close:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.privacy-modal__content h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.privacy-modal__content h3 {
    font-size: 16px;
    color: var(--accent);
    margin: 26px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.privacy-modal__content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
}
.privacy-modal__content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}
.privacy-modal__content ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
.privacy-modal__content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.privacy-modal__content strong { color: var(--text); }
.privacy-modal__intro {
    padding: 16px 18px;
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    margin-bottom: 16px !important;
    color: var(--text) !important;
}
.privacy-modal__footer-note {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim) !important;
}

@media (max-width: 600px) {
    .privacy-modal__panel { padding: 28px 22px; }
}

/* =========================
   15. FOOTER
   ========================= */
.footer {
    background: var(--bg);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 800px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    line-height: 1;
}
.footer__brand h3 span {
    color: var(--accent);
    text-shadow: 0 0 24px rgba(255, 107, 43, 0.35);
}
.footer__brand p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}
.footer__address {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text);
    margin-bottom: 18px;
    font-weight: 600;
}
.footer__col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
}
.footer__col a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}
.footer__bottom strong { color: var(--text); font-weight: 600; }
.footer__bottom a { color: var(--accent); }


@media (max-width: 800px) {
    .footer__top { grid-template-columns: 1fr; gap: 40px; }
    .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* =========================
   16. ACCESSIBILITY / MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-line > span {
        opacity: 1 !important;
        transform: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* =========================
   17. SMALL SCREENS POLISH
   ========================= */
@media (max-width: 640px) {
    .hero { padding: 120px 0 60px; }
    .hero__cta { margin-bottom: 60px; }
    .hero__cta .btn { flex: 1; }
    .services, .portfolio, .testimonials, .contact, .about, .process { padding-top: 80px; padding-bottom: 60px; }
    .testimonial { padding: 28px 24px; }
}

/* =========================
   30. ACCESSIBILITY — reduced motion + focus
   ========================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-line > span { transform: translateY(0) !important; }
    .marquee__track { animation: none !important; }
    .grain { display: none; }
    .cursor-dot { display: none; }
}

/* Klavye odağı görünür kalsın */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline-offset: 3px;
}

/* =========================
   31. THEME TOGGLE — gece/gündüz
   ========================= */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(20deg) scale(1.05);
}
.theme-toggle svg {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}
.theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}
:root[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}
:root[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

@media (max-width: 880px) {
    .nav__inner > .theme-toggle { display: none; }
}

/* =========================
   32. LIGHT MODE — warm cream palette
   ========================= */
:root[data-theme="light"] {
    --bg:           #FAF6EF;
    --bg-2:         #F1EAD9;
    --bg-3:         #E7DDC7;
    --surface:      #FFFFFF;
    --surface-2:    #F6F0E2;
    --surface-3:    #ECE3CE;

    --border:       rgba(28, 22, 18, 0.08);
    --border-2:     rgba(28, 22, 18, 0.15);
    --border-3:     rgba(28, 22, 18, 0.28);

    --text:         #1A1612;
    --text-2:       #4A4640;
    --text-muted:   #7A7670;
    --text-dim:     #A8A39C;

    --accent:       #D9520C;
    --accent-2:     #FF6B2B;
    --accent-glow:  rgba(217, 82, 12, 0.25);
    --accent-soft:  rgba(217, 82, 12, 0.10);
    --accent-tint:  rgba(217, 82, 12, 0.04);
    --accent-warm:  #B8460A;
    --cream:        #2A2218;
}

:root[data-theme="light"] body {
    background-image:
        radial-gradient(ellipse 800px 600px at 80% -10%, rgba(217, 82, 12, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 0% 100%, rgba(120, 60, 200, 0.03) 0%, transparent 60%);
}

/* Hero overlay light mode için kontrast — slideshow daha silik, metin okunaklı */
:root[data-theme="light"] .hero__overlay {
    background:
        linear-gradient(180deg, rgba(250, 246, 239, 0.55) 0%, rgba(250, 246, 239, 0.78) 70%, var(--bg) 100%),
        radial-gradient(ellipse at center, rgba(250, 246, 239, 0.35) 0%, rgba(250, 246, 239, 0.7) 100%);
}
/* Slideshow opacity light'ta daha az — hayalet etkisi */
@keyframes heroSlideLight {
    0%   { opacity: 0; transform: scale(1.06); }
    5%   { opacity: 0.28; }
    20%  { opacity: 0.28; transform: scale(1.0); }
    25%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.06); }
}

:root[data-theme="light"] .hero__bg-fallback {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(217, 82, 12, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(120, 60, 200, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #FAF6EF 0%, #F1EAD9 50%, #FAF6EF 100%);
}

/* Slideshow opacity light'ta biraz daha yüksek olsun */
:root[data-theme="light"] .hero__slideshow .slide {
    animation-name: heroSlideLight;
}
@keyframes heroSlideLight {
    0%   { opacity: 0; transform: scale(1.06); }
    5%   { opacity: 0.42; }
    20%  { opacity: 0.42; transform: scale(1.0); }
    25%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.06); }
}

/* Grain & cursor light'ta gözükmesin (overlay efekti zaten yumuşak) */
:root[data-theme="light"] .grain { opacity: 0.04; mix-blend-mode: multiply; }
:root[data-theme="light"] .cursor-dot { background: var(--accent); }

/* Selection */
:root[data-theme="light"] ::selection { background: var(--accent); color: #fff; }

/* Scrollbar light mode */
:root[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border-color: var(--bg);
}

/* CSS-only smooth color transition tüm tema değişimleri için */
html, body, .nav, .hero, .services, .portfolio, .about, .references, .process, .testimonials, .contact,
.service-card, .port-item, .testimonial, .team-card, .reference-item, .process__step,
.btn, .form input, .form textarea, .footer, .mobile-menu, .modal__panel {
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Light mode'da contact ikonları — accent border + tint, net */
:root[data-theme="light"] .contact__icon {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    box-shadow: 0 2px 6px rgba(40, 30, 20, 0.08);
}
:root[data-theme="light"] .contact__channels a:hover .contact__icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
:root[data-theme="light"] .contact__channels a:hover .contact__icon i { color: #fff; }
/* Cursor-dot light mode'da düz turuncu */
:root[data-theme="light"] .cursor-dot {
    mix-blend-mode: normal;
    background: var(--accent);
}

/* Light mode'da nav her zaman opak — koyu hero üzerinde linkler okunsun */
:root[data-theme="light"] .nav {
    background: rgba(250, 246, 239, 0.88);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
}
:root[data-theme="light"] .nav.is-scrolled {
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 6px 24px -10px rgba(40, 30, 20, 0.15);
}
:root[data-theme="light"] .nav__name {
    color: var(--text);
}
:root[data-theme="light"] .nav__links {
    color: var(--text-2);
}
:root[data-theme="light"] .nav__links a:hover {
    color: var(--accent);
}

/* Dark mode'da is-scrolled'a kadar nav transparent kalıyor — varsayılan davranış */
:root[data-theme="light"] .mobile-menu {
    background: var(--bg);
}
:root[data-theme="light"] .mobile-menu a {
    color: var(--text);
}
