/* ============================================================
   StatikProjeci.com — Ultra Light/Dark Design System
   ============================================================ */

:root {
    --gold: #C89B3C;
    --gold-light: #E8C56A;
    --gold-dark: #A67B2A;
    --green-wa: #25D366;

    --bg: #F4F7FB;
    --bg-soft: #EEF2F7;
    --surface: #FFFFFF;
    --surface-2: #F8FAFC;
    --text: #0B1A2E;
    --text-soft: #1E293B;
    --muted: #475569;
    --line: rgba(11, 26, 46, 0.08);
    --line-gold: rgba(200, 155, 60, 0.35);
    --shadow-sm: 0 2px 8px rgba(11, 26, 46, 0.06);
    --shadow-md: 0 12px 40px rgba(11, 26, 46, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 26, 46, 0.14);
    --header-bg: rgba(255, 255, 255, 0.82);
    --hero-mesh-1: rgba(200, 155, 60, 0.08);
    --hero-mesh-2: rgba(11, 32, 54, 0.04);
    --card-bg: #FFFFFF;
    --card-border: rgba(200, 155, 60, 0.22);
    --input-bg: #FFFFFF;
    --footer-bg: #EEF2F7;
    --footer-text: #475569;
    --footer-heading: #0B1A2E;
    --footer-link: #475569;
    --footer-muted: #64748B;
    --footer-border: rgba(11, 26, 46, 0.08);
    --footer-social-bg: rgba(255, 255, 255, 0.82);
    --footer-social-border: rgba(11, 26, 46, 0.12);
    --footer-social-color: #475569;
    --footer-bg-image-opacity: 0.07;
    --footer-bg-image-filter: saturate(0.55) brightness(1.08);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1180px;
    --header-h: 88px;
    --header-h-compact: 68px;
    --topbar-h: 40px;
    --transition: 0.25s ease;

    /* Scrollbar — light */
    --scroll-track: rgba(11, 26, 46, 0.04);
    --scroll-thumb: rgba(11, 26, 46, 0.18);
    --scroll-thumb-hover: rgba(200, 155, 60, 0.65);
    --scroll-thumb-active: var(--gold);
    --scroll-width: 6px;
    --scroll-radius: 999px;

    --hero-photo-opacity: 0.55;
    --hero-frame-opacity: 0.52;
    --hero-mesh-opacity: 0.72;
    --bubble-duration: 12s;
}

[data-theme="dark"] {
    --bg: #07182B;
    --bg-soft: #0B2036;
    --surface: #0F2740;
    --surface-2: #0B2036;
    --text: #F1F5F9;
    --text-soft: #CBD5E1;
    --muted: #94A3B8;
    --line: rgba(255, 255, 255, 0.08);
    --line-gold: rgba(200, 155, 60, 0.32);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
    --header-bg: rgba(7, 24, 43, 0.88);
    --hero-mesh-1: rgba(200, 155, 60, 0.12);
    --hero-mesh-2: rgba(255, 255, 255, 0.03);
    --card-bg: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    --card-border: rgba(200, 155, 60, 0.28);
    --input-bg: rgba(255, 255, 255, 0.06);
    --footer-bg: #07182B;
    --footer-text: #CBD5E1;
    --footer-heading: #F8FAFC;
    --footer-link: #94A3B8;
    --footer-muted: #64748B;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-social-bg: rgba(255, 255, 255, 0.05);
    --footer-social-border: rgba(255, 255, 255, 0.12);
    --footer-social-color: #CBD5E1;
    --footer-bg-image-opacity: 0.16;
    --footer-bg-image-filter: saturate(0.45) brightness(0.72);
    --hero-photo-opacity: 0.48;

    /* Scrollbar — dark */
    --scroll-track: rgba(255, 255, 255, 0.03);
    --scroll-thumb: rgba(255, 255, 255, 0.14);
    --scroll-thumb-hover: rgba(200, 155, 60, 0.55);
    --scroll-thumb-active: var(--gold-light);
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}

/* ---- Custom Scrollbar (Light & Dark) ---- */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}

body,
.site-nav,
.projects-masonry,
.projects-scroll,
.reviews-track {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb) transparent;
}

::-webkit-scrollbar {
    width: var(--scroll-width);
    height: var(--scroll-width);
}

::-webkit-scrollbar-track {
    background: var(--scroll-track);
    border-radius: var(--scroll-radius);
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb);
    border-radius: var(--scroll-radius);
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-thumb-hover);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
    background: var(--scroll-thumb-active);
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* İnce track — sadece sayfa kenarı */
html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    background-clip: padding-box;
}

html:has(body.is-compact) {
    scroll-padding-top: calc(var(--header-h-compact) + 12px);
}

@media (max-width: 900px) {
    :root { --scroll-width: 4px; }
    html { scroll-padding-top: calc(var(--header-h) + 8px); }
    html:has(body.is-compact) {
        scroll-padding-top: calc(var(--header-h-compact) + 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
}

body.is-loading { overflow: hidden; }

@media (max-width: 900px) {
    body.has-mobile-contact { padding-bottom: 52px; }
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px;
}
.preloader-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}
.preloader-logo .logo-line { font-size: 1.35rem; }
.preloader-logo .logo-mark {
    width: 52px;
    height: 52px;
    animation: logoMarkPulse 2s ease-in-out infinite;
}
@keyframes logoMarkPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(200, 155, 60, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 18px rgba(200, 155, 60, 0.55)); transform: scale(1.04); }
}
.preloader-bar {
    width: 220px;
    height: 3px;
    background: var(--line);
    border-radius: 999px;
    margin: 1.25rem auto 0.75rem;
    overflow: hidden;
}
.preloader-progress {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 999px;
    animation: preloadBar 1.8s ease-in-out forwards;
}
@keyframes preloadBar {
    0% { width: 0; }
    70% { width: 85%; }
    100% { width: 100%; }
}
.preloader-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    animation: pulseText 1.2s ease-in-out infinite;
}
@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ---- Topbar ---- */
.header-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    height: var(--topbar-h);
    background: transparent;
    border-bottom: 1px solid transparent;
    font-size: 0.75rem;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
body.topbar-bg-off .header-topbar {
    background: transparent !important;
    border-bottom-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
body.topbar-bg-always .header-topbar {
    background: var(--header-bg);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom-color: var(--line);
}
body.topbar-bg-scroll.is-scrolled-page .header-topbar {
    background: var(--header-bg);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom-color: var(--line);
}
.header-topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted);
    font-weight: 600;
    transition: color var(--transition);
}
.topbar-link:hover { color: var(--gold); }
.topbar-address { max-width: 340px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right a,
.topbar-social .social-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    transition: all var(--transition);
}
.topbar-social .social-btn svg { display: block; }
.topbar-right a:hover,
.topbar-social .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 155, 60, 0.08);
    transform: translateY(-1px);
}

.topbar-dev {
    font-size: 0.72rem;
    color: var(--muted);
    margin-right: 0.65rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 30px;
}
.topbar-dev strong { color: var(--gold); font-weight: 700; }
.topbar-dev a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.topbar-dev a:hover strong { color: var(--gold-light); }

.topbar-toggle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.65rem;
    min-height: 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 202;
    box-shadow: var(--shadow-sm);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}
.topbar-toggle:hover,
.topbar-toggle:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--bg-soft);
}
.topbar-toggle-icon--down,
body.topbar-is-collapsed .topbar-toggle-icon--up { display: none; }
body.topbar-is-collapsed .topbar-toggle-icon--down { display: block; }
.topbar-toggle-label { line-height: 1; }
body.topbar-is-collapsed {
    --topbar-h: 0px;
}
body.topbar-is-collapsed .header-topbar {
    pointer-events: none;
    border-bottom-color: transparent;
    overflow: visible;
}
body.topbar-is-collapsed .header-topbar-inner {
    opacity: 0;
    visibility: hidden;
}
body.topbar-is-collapsed .topbar-toggle {
    pointer-events: auto;
    top: 0;
    bottom: auto;
    transform: translate(-50%, 0);
    border-radius: 0 0 10px 10px;
    border-top: none;
    padding: 0.28rem 0.75rem 0.35rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
body.topbar-is-collapsed .site-header.is-fixed {
    top: 0;
}
body.topbar-is-collapsed.is-compact .site-header.is-fixed {
    top: 0;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding-bottom: 0.4rem;
    transition: height 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}
.site-header.is-fixed { position: fixed; left: 0; right: 0; top: var(--topbar-h); z-index: 200; }
body.is-compact .site-header.is-fixed { top: 0; }

.header-spacer {
    height: calc(var(--topbar-h) + var(--header-h));
    transition: height 0.35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
body.is-compact .header-spacer { height: var(--header-h-compact); }

.site-header:not(.is-fixed) + .header-spacer { height: 0 !important; }

.site-header.is-compact {
    height: var(--header-h-compact);
}
.site-header.is-compact .logo-line { font-size: 1rem; }
.site-header.is-compact .logo-tag { font-size: 0.5rem; margin-top: 2px; }
.site-header.is-compact .logo-img { height: 36px; }
.site-header.is-compact .logo-mark { width: 36px; height: 36px; }
.site-header.is-compact .logo-brand { gap: 0.5rem; }
.site-header.is-compact .logo-tld { font-size: 0.6rem; }
.site-header.is-scrolled .header-glow { opacity: 0.6; }

body.header-bg-off .site-header:not(.is-scrolled),
body.header-bg-scroll .site-header:not(.is-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}
body.header-bg-off .site-header.is-scrolled,
body.header-bg-off.is-scrolled-page .site-header.is-scrolled {
    background: var(--header-bg) !important;
    backdrop-filter: blur(22px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(22px) saturate(1.6) !important;
    box-shadow: var(--shadow-md) !important;
    border-bottom-color: var(--line) !important;
    padding-top: 12px;
}
body.header-bg-off.is-scrolled-page .header-topbar,
body.topbar-bg-off.is-scrolled-page .header-topbar {
    background: var(--header-bg) !important;
    backdrop-filter: blur(18px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.5) !important;
    border-bottom-color: var(--line) !important;
}
body.header-bg-off .site-header.is-scrolled .header-glow { opacity: 0 !important; }

body.header-bg-scroll .site-header.is-scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--line);
}

body.header-bg-always .site-header {
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

body.header-bg-off .topbar-link,
body.topbar-bg-off .topbar-link {
    color: #E8EDF4;
    font-weight: 700;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 2px 18px rgba(0, 0, 0, 0.55);
}
body.header-bg-off .logo-line,
body.header-bg-off .logo-tag {
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.85),
        0 1px 8px rgba(0, 0, 0, 0.75),
        0 2px 20px rgba(0, 0, 0, 0.45);
}
body.header-bg-off .site-header:not(.is-scrolled) .nav-item {
    color: #F8FAFC;
    font-weight: 700;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 2px 16px rgba(0, 0, 0, 0.5);
}
body.header-bg-off .site-header:not(.is-scrolled) .nav-item.is-active {
    color: var(--gold-light);
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 8px rgba(0, 0, 0, 0.8),
        0 2px 14px rgba(0, 0, 0, 0.55);
}
body.header-bg-scroll:not(.is-scrolled-page) .topbar-link {
    color: #E8EDF4;
    font-weight: 700;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 2px 18px rgba(0, 0, 0, 0.55);
}
body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item {
    color: #F8FAFC;
    font-weight: 700;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 2px 16px rgba(0, 0, 0, 0.5);
}
body.topbar-bg-off .topbar-social .social-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.12);
}
body.header-bg-off .topbar-social .social-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Şeffaf header — premium cam görünüm */
body.header-bg-off .nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
}
body.header-bg-off .nav-item.is-active {
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.22);
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.08);
}
body.header-bg-off .theme-toggle,
body.header-bg-off .header-wa {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.header-bg-off .nav-burger {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}
[data-theme="light"] body.header-bg-off .nav-item:hover {
    background: rgba(11, 26, 46, 0.05);
}
[data-theme="light"] body.header-bg-off .theme-toggle,
[data-theme="light"] body.header-bg-off .header-wa,
[data-theme="light"] body.header-bg-off .nav-burger {
    background: transparent;
    border-color: rgba(11, 26, 46, 0.12);
    box-shadow: none;
}

/* Ana sayfa: hero arka planı şeffaf header/topbar altında görünsün */
body.page-home { background: var(--bg); }
.page-home .site-main { position: relative; z-index: 1; }
.page-home .hero-ultra { overflow: visible; z-index: 1; position: relative; }
.page-home .hero-ultra-inner { position: relative; z-index: 102; }
.page-home .hero-ultra-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
body.page-home.hero-past .hero-ultra-bg {
    position: absolute;
    top: calc(-1 * (var(--topbar-h) + var(--header-h)));
    height: calc(100% + var(--topbar-h) + var(--header-h));
    z-index: 0;
}
body.page-home:not(.hero-past) .hero-ultra-bg { opacity: 1; }
body.is-compact.page-home.hero-past .hero-ultra-bg {
    top: calc(-1 * var(--header-h-compact));
    height: calc(100% + var(--header-h-compact));
}
.page-home .hero-bubbles,
.page-home .hero-particles {
    max-height: 100%;
    overflow: hidden;
}

.header-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(200,155,60,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.header-shell {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 0.2rem;
    padding-bottom: 0.55rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    min-width: 0;
}

.brand { display: flex; align-items: center; flex-shrink: 1; min-width: 0; transition: transform 0.35s ease; }
.brand:hover { transform: scale(1.02); }

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(200, 155, 60, 0.28));
    transition: width 0.35s ease, height 0.35s ease, filter 0.35s ease;
}
.brand:hover .logo-mark {
    filter: drop-shadow(0 4px 14px rgba(200, 155, 60, 0.42));
}

.logo-img { height: 44px; width: auto; object-fit: contain; transition: height 0.35s ease; }

.logo-text-mark { line-height: 1.1; transition: all 0.35s ease; }
.logo-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.28em;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text);
    transition: font-size 0.35s ease;
}
.logo-main { color: inherit; }
.logo-gold { color: var(--gold); }
.logo-tld { font-size: 0.72rem; font-weight: 700; opacity: 0.5; margin-left: 1px; }
.logo-tag {
    display: block;
    margin-top: 3px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    transition: font-size 0.35s ease;
}
.brand-footer .logo-line { color: var(--footer-heading); }
.brand-footer .logo-tag { color: var(--footer-muted); }

.site-nav { display: flex; align-items: center; gap: 0.2rem; }

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-soft);
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}
.nav-item:hover {
    color: var(--text);
    background: var(--bg-soft);
    transform: translateY(-1px);
}
.nav-item.is-active {
    color: var(--gold);
    background: rgba(200, 155, 60, 0.08);
}
.nav-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.nav-icon svg { width: 16px; height: 16px; }
.nav-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.nav-item.is-active .nav-indicator,
.nav-item:hover .nav-indicator { transform: translateX(-50%) scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.55rem; }

.theme-toggle, .header-wa {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}
.theme-toggle:hover, .header-wa:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.header-wa:hover { border-color: var(--green-wa); color: var(--green-wa); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
.theme-toggle.is-switching {
    transform: scale(0.92);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.35);
}
.theme-toggle.is-light-palette {
    border-color: rgba(200, 155, 60, 0.45);
    color: var(--gold);
}

.header-cta { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
    0%, 100% { left: -100%; }
    50% { left: 120%; }
}

.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
}
.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}
.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); }

.nav-mobile-actions {
    display: none;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 198;
    background: rgba(7, 24, 43, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-backdrop:not([hidden]) {
    opacity: 1;
    visibility: visible;
}
[data-theme="light"] .nav-backdrop {
    background: rgba(11, 26, 46, 0.35);
}

body.is-compact .header-topbar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: min(var(--container), 92vw);
    margin: 0 auto;
}

/* ---- Typography ---- */
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1.15rem;
    text-wrap: balance;
}

.section-title.left { text-align: left; }
.section-desc {
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    font-weight: 500;
    line-height: 1.8;
    max-width: 680px;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}
.section-desc.left { margin-left: 0; }
.section-intro.center { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.25rem); }
.section-intro.center .section-desc { margin: 0 auto; }
.section-intro:not(.center) { margin-bottom: clamp(2rem, 4vw, 2.75rem); }

.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 0.75rem); }
.section-soft { background: var(--bg-soft); }
body.projects-bg-off .section-projects.section-soft {
    background: transparent;
}
#projeler {
    padding-top: clamp(4rem, 8vw, 6rem);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-sm);
    font: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-lg { min-height: 52px; padding: 0.85rem 1.65rem; font-size: 0.95rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #07182B;
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(200, 155, 60, 0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 155, 60, 0.45);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}
[data-theme="dark"] .btn-ghost { background: rgba(255,255,255,0.04); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-wa {
    background: var(--green-wa);
    color: #fff;
    border-color: var(--green-wa);
}
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ---- Hero Ultra ---- */
.hero-ultra {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.75rem);
    min-height: calc(100vh - var(--topbar-h) - var(--header-h));
    min-height: calc(100dvh - var(--topbar-h) - var(--header-h));
    display: flex;
    align-items: center;
}

.hero-ultra-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-ultra-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    opacity: var(--hero-photo-opacity, 0.48);
    filter: saturate(0.9);
    transition: opacity 0.6s ease;
}
.hero-ultra-photo.is-fading { opacity: calc(var(--hero-photo-opacity, 0.48) * 0.4); }

[data-theme="light"] .hero-ultra-photo {
    opacity: var(--hero-photo-opacity, 0.52);
    filter: saturate(0.95) brightness(1.02);
}

[data-theme="light"] .hero-ultra-mesh {
    opacity: 0.88;
    background:
        radial-gradient(ellipse 50% 40% at 88% 22%, rgba(200, 155, 60, 0.14), transparent 68%),
        radial-gradient(ellipse 55% 50% at 12% 45%, rgba(255, 255, 255, 0.72), transparent 70%),
        linear-gradient(105deg,
            rgba(244, 247, 251, 0.82) 0%,
            rgba(244, 247, 251, 0.55) 35%,
            rgba(244, 247, 251, 0.22) 58%,
            rgba(244, 247, 251, 0.04) 100%);
}

[data-theme="light"] .hero-ultra-grid {
    opacity: 0.12;
    mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
}

[data-theme="light"] .hero-ultra-copy {
    position: relative;
    padding: 0.25rem 0;
}

[data-theme="light"] .hero-ultra-copy::before {
    content: '';
    position: absolute;
    inset: -1.1rem -1.35rem -1.1rem -1.1rem;
    z-index: -1;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 8px 32px rgba(11, 26, 46, 0.05);
}

[data-theme="light"] .hero-ultra-copy h1 {
    color: #071528;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hero-ultra-copy h1 em {
    color: #8B6914;
}

[data-theme="light"] .hero-ultra-copy .eyebrow {
    color: #9A7228;
    font-weight: 800;
}

[data-theme="light"] .hero-lead {
    color: #1E293B;
    font-weight: 600;
    line-height: 1.75;
}

[data-theme="light"] .trust-item {
    color: #1E293B;
    font-weight: 700;
}

[data-theme="light"] .hero-ultra-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.94);
    color: #0B1A2E;
    border-color: rgba(11, 26, 46, 0.14);
    box-shadow: 0 4px 18px rgba(11, 26, 46, 0.08);
}

[data-theme="light"] .hero-ultra-actions .btn-ghost:hover {
    background: #fff;
    border-color: var(--gold);
    color: var(--gold-dark);
}

/* Açık tema — şeffaf header okunabilirliği */
[data-theme="light"] body.header-bg-off .topbar-link,
[data-theme="light"] body.topbar-bg-off .topbar-link {
    color: #334155;
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 16px rgba(255, 255, 255, 0.85);
}

[data-theme="light"] body.header-bg-off .logo-line,
[data-theme="light"] body.topbar-bg-off .logo-line {
    color: #071528;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.7);
}

[data-theme="light"] body.header-bg-off .logo-tag {
    color: #475569;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] body.header-bg-off .nav-item {
    color: #1E293B;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 14px rgba(255, 255, 255, 0.75);
}

[data-theme="light"] body.header-bg-off .nav-item:hover {
    color: #071528;
    background: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] body.header-bg-off .nav-item.is-active {
    color: #8B6914;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(200, 155, 60, 0.35);
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.12);
}

[data-theme="light"] body.header-bg-off .theme-toggle,
[data-theme="light"] body.header-bg-off .header-wa,
[data-theme="light"] body.header-bg-off .nav-burger,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .theme-toggle,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .header-wa {
    background: transparent;
    border-color: rgba(11, 26, 46, 0.14);
    color: #1E293B;
    box-shadow: none;
}

[data-theme="light"] body.header-bg-off .topbar-social .social-btn,
[data-theme="light"] body.header-bg-scroll:not(.is-scrolled-page) .topbar-social .social-btn {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(11, 26, 46, 0.1);
    color: #475569;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Açık tema — şeffaf header (yüksek özgüllük, beyaz menü metnini ezer) */
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .nav-item,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item {
    color: #1E293B !important;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
}
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .nav-item .nav-icon svg,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item .nav-icon svg {
    stroke: #475569;
    color: #475569;
}
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .nav-item:hover,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item:hover {
    color: #071528 !important;
    background: rgba(255, 255, 255, 0.78);
}
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .nav-item.is-active,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item.is-active {
    color: #8B6914 !important;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(200, 155, 60, 0.35);
}
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .nav-item.is-active .nav-icon svg,
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .nav-item.is-active .nav-icon svg {
    stroke: #8B6914;
    color: #8B6914;
}
[data-theme="light"] body.header-bg-scroll:not(.is-scrolled-page) .topbar-link {
    color: #334155 !important;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}
[data-theme="light"] body.header-bg-scroll .site-header:not(.is-scrolled) .logo-line,
[data-theme="light"] body.header-bg-off .site-header:not(.is-scrolled) .logo-gold {
    color: var(--gold-dark);
}
[data-theme="light"] .site-header.is-scrolled .nav-item {
    color: #334155;
}
[data-theme="light"] .site-header.is-scrolled .nav-item:hover {
    color: #0B1A2E;
    background: var(--bg-soft);
}
[data-theme="light"] .site-header.is-scrolled .nav-item.is-active {
    color: #8B6914;
}
[data-theme="light"] .header-topbar {
    color: #475569;
}
[data-theme="light"] .topbar-link {
    color: #475569;
}
[data-theme="light"] .topbar-social .social-btn {
    color: #475569;
    border-color: rgba(11, 26, 46, 0.1);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
[data-theme="light"] .topbar-social .social-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(200, 155, 60, 0.35);
}
[data-theme="light"] .theme-toggle,
[data-theme="light"] .header-wa,
[data-theme="light"] .nav-burger {
    color: #1E293B;
    border-color: rgba(11, 26, 46, 0.14);
    background: transparent;
    box-shadow: none;
}
[data-theme="light"] .site-header.is-scrolled .theme-toggle,
[data-theme="light"] .site-header.is-scrolled .header-wa {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
[data-theme="light"] .nav-mobile-actions .btn-ghost {
    color: #1E293B;
    border-color: rgba(11, 26, 46, 0.15);
}

[data-theme="light"] .section-desc {
    color: #334155;
    font-weight: 500;
}

[data-theme="light"] .eyebrow {
    color: #9A7228;
}

.hero-ultra-mesh {
    position: absolute;
    inset: 0;
    opacity: var(--hero-mesh-opacity, 0.72);
    background:
        radial-gradient(ellipse 60% 50% at 85% 20%, var(--hero-mesh-1), transparent),
        radial-gradient(ellipse 50% 40% at 10% 80%, var(--hero-mesh-2), transparent),
        linear-gradient(180deg, rgba(7, 24, 43, calc(var(--hero-mesh-opacity, 0.72) * 0.65)) 0%, rgba(4, 15, 28, calc(var(--hero-mesh-opacity, 0.72) * 0.85)) 55%, rgba(4, 15, 28, 0.92) 100%);
    transition: opacity 0.4s ease;
}

.hero-ultra-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}

.hero-ultra-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-ultra-copy h1 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.85rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--text);
    text-wrap: balance;
}

.hero-ultra-copy h1 em {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-style: normal;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-top: 0.25em;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.14rem);
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 54ch;
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
}

.hero-ultra-copy .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.hero-ultra-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-soft);
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Hero visual */
.hero-ultra-visual {
    position: relative;
    min-height: 420px;
}

.hero-frame {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    background: transparent;
}
.hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 24, 43, 0.35) 100%);
    opacity: 0.85;
    transition: opacity 0.45s ease;
}

.hero-frame-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(200,155,60,0.35), transparent 50%, rgba(200,155,60,0.12));
    z-index: 0;
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.45s ease;
}

.hero-frame-img {
    width: 100%;
    aspect-ratio: 4/3.2;
    object-fit: cover;
    position: relative;
    z-index: 1;
    opacity: var(--hero-frame-opacity, 0.52);
    transition: opacity 0.55s ease, transform 0.45s ease;
}
.hero-frame-img.is-fading { opacity: calc(var(--hero-frame-opacity, 0.52) * 0.35); }
.hero-ultra-visual:hover .hero-frame-img { transform: scale(1.02); }

body.hero-frame-transparent .hero-frame {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background: rgba(11, 32, 54, 0.04);
    backdrop-filter: blur(8px) saturate(1.15);
    -webkit-backdrop-filter: blur(8px) saturate(1.15);
}

body.hero-frame-transparent .hero-frame::after,
body.hero-frame-transparent .hero-frame-glow {
    opacity: 0;
}

[data-theme="light"] .hero-frame {
    border-color: rgba(200, 155, 60, 0.32);
    box-shadow: 0 20px 48px rgba(11, 26, 46, 0.12);
}

[data-theme="light"] .hero-frame::after {
    background: linear-gradient(180deg, transparent 50%, rgba(7, 24, 43, 0.18) 100%);
    opacity: 0.65;
}

[data-theme="light"] body.hero-frame-transparent .hero-frame {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(11, 26, 46, 0.08);
}

.hero-frame-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    background: rgba(7, 24, 43, 0.32);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    color: #fff;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 155, 60, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero-frame-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-light);
    line-height: 1;
}

.hero-frame-badge span {
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 0.25rem;
    display: block;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(11, 32, 54, 0.22);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--radius-sm) + 2px);
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatY 5s ease-in-out infinite;
    z-index: 3;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-float-card:hover {
    background: rgba(11, 32, 54, 0.38);
    border-color: rgba(200, 155, 60, 0.45);
    transform: translateY(-4px);
}

body.hero-frame-transparent .hero-float-card {
    background: rgba(11, 32, 54, 0.32);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="light"] body.hero-frame-transparent .hero-float-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(11, 26, 46, 0.12);
    box-shadow: 0 10px 28px rgba(11, 26, 46, 0.1);
}

[data-theme="light"] body.hero-frame-transparent .hero-float-card strong {
    color: #071528;
}

[data-theme="light"] body.hero-frame-transparent .hero-float-card small {
    color: #475569;
}

body.hero-frame-transparent .hero-frame-badge {
    background: rgba(7, 24, 43, 0.42);
}

.hero-float-a { top: 8%; left: -6%; animation-delay: 0s; }
.hero-float-b { bottom: 12%; right: -4%; animation-delay: 1.5s; }
.hero-float-cards { display: contents; }
.float-icon { font-size: 1.5rem; flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 0.85rem; color: #F8FAFC; }
.hero-float-card small { font-size: 0.72rem; color: rgba(203, 213, 225, 0.9); }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- Stats bar ---- */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.75rem 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.22);
    color: var(--gold);
}
.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-item b {
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.stat-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* ---- Services ---- */
.services-ultra {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.service-ultra {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-ultra::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-ultra:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-ultra-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-ultra-icon { font-size: 1.75rem; }
.service-ultra-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.7;
}

.service-ultra h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--text);
}

.service-ultra p {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 0.25rem;
}

.service-link {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    transition: gap var(--transition);
}
.service-link:hover { color: var(--gold-dark); }

/* ---- Process ---- */
.section-process {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}

.process-section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.6) blur(1px);
    pointer-events: none;
}
.section-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 24, 43, 0.92), rgba(4, 15, 28, 0.88)),
        url('../images/hero/grid-pattern.svg') repeat;
    background-size: auto, 48px 48px;
    pointer-events: none;
}
.section-process .container { position: relative; z-index: 1; }

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.process-step {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 180px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.process-step-bg {
    position: absolute;
    inset: 0;
    background-image: var(--step-img);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.process-step-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 24, 43, 0.55) 0%, rgba(7, 24, 43, 0.82) 45%, rgba(4, 15, 28, 0.96) 100%);
}

.process-step-content {
    position: relative;
    z-index: 1;
    padding: 1.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 15, 28, 0.55) 40%, rgba(4, 15, 28, 0.92) 100%);
}

.process-step:hover {
    border-color: var(--line-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.process-step:hover .process-step-bg { transform: scale(1.06); }

.process-step span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.process-step h4 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    color: #F8FAFC;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.process-step p {
    font-size: 0.84rem;
    font-weight: 500;
    color: #CBD5E1;
    line-height: 1.65;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ---- Projects ---- */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.projects-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.project-tile {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
[data-theme="light"] .project-tile {
    background: var(--surface);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.project-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(200,155,60,0.35), transparent 45%, rgba(200,155,60,0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.project-tile:hover::before { opacity: 1; }

.project-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(200, 155, 60, 0.22);
    border-color: rgba(200, 155, 60, 0.35);
}

.project-tile-img {
    position: relative;
    aspect-ratio: 4/3.2;
    overflow: hidden;
    background: var(--bg-soft);
}
.project-tile-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 43, 0.35) 0%, transparent 28%, transparent 72%, rgba(7, 24, 43, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.project-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.55s ease, filter 0.45s ease;
    filter: saturate(0.92) brightness(0.95);
}

.project-tile:hover .project-tile-img img {
    transform: scale(1.07);
    filter: saturate(1) brightness(1);
}

.project-tile-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0B2036, #1e3a5f);
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
}

.project-status {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.project-status.ongoing {
    background: rgba(254, 243, 199, 0.95);
    color: #92400E;
}

.project-tile h3 {
    padding: 0;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    color: inherit;
}

.project-tile-body {
    position: relative;
    z-index: 2;
    padding: 1rem 1.05rem 1.1rem;
    background: linear-gradient(180deg, rgba(7, 24, 43, 0.55), rgba(7, 24, 43, 0.72));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .project-tile-body {
    background: var(--surface);
    border-top-color: var(--line);
}
.project-tile-body h3 {
    min-height: auto;
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    color: #F1F5F9;
    letter-spacing: 0.01em;
}
[data-theme="light"] .project-tile-body h3 { color: var(--text); }

.project-tile-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.65rem;
    background: none;
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--transition);
}
.project-tile:hover .project-tile-overlay { opacity: 1; }

.project-tile-num {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(7, 24, 43, 0.85);
    border: 1px solid var(--line-gold);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
}
.project-tile-tag {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(200, 155, 60, 0.9);
    color: #07182B;
}
.project-tile-type {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
}

.section-count {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid var(--line-gold);
    border-radius: 999px;
}

/* ---- Reviews ---- */
.section-reviews {
    position: relative;
    overflow: hidden;
    background: #07182B;
}

.reviews-section-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 15, 28, 0.88) 0%, rgba(7, 24, 43, 0.82) 45%, rgba(4, 15, 28, 0.92) 100%),
        url('../images/reviews/reviews-bg.jpg') center center / cover no-repeat;
    pointer-events: none;
}
.section-reviews .section-title,
.section-reviews .section-desc,
.section-reviews .eyebrow { color: #F8FAFC; }
.section-reviews .section-desc { color: rgba(203, 213, 225, 0.88); }
.section-reviews .container { position: relative; z-index: 1; }

.review-card {
    position: relative;
    background: rgba(11, 32, 54, 0.72);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius) + 2px);
    padding: 1.2rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}
[data-theme="light"] .review-card {
    background: #fff;
    border-color: rgba(11, 26, 46, 0.1);
    box-shadow: 0 8px 28px rgba(11, 26, 46, 0.07);
}
[data-theme="light"] .section-reviews {
    background: var(--bg);
}
.section-reviews .review-card p { color: rgba(226, 232, 240, 0.92); line-height: 1.75; font-size: 0.92rem; }
.section-reviews .review-meta strong { color: #F8FAFC; }
.section-reviews .review-meta span { color: rgba(200, 155, 60, 0.95); }

.reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.review-card:hover {
    border-color: var(--line-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.review-card:hover::before { opacity: 1; }

.review-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.review-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--line-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.review-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-wa);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid var(--surface);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.review-meta strong {
    font-size: 0.88rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-meta span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.review-quote {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.12;
    pointer-events: none;
}

.review-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.68;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ---- Quote panel ---- */
.section-quote {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}

.quote-section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: saturate(0.4);
    pointer-events: none;
}
.section-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 24, 43, 0.94), rgba(4, 15, 28, 0.88)),
        url('../images/hero/grid-pattern.svg') repeat;
    background-size: auto, 48px 48px;
    pointer-events: none;
}

.quote-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: stretch;
}

.quote-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-visual-frame {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-md);
    flex: 1;
    min-height: 220px;
}
.quote-visual-frame img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}
.quote-visual-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(7, 24, 43, 0.92);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    backdrop-filter: blur(8px);
}
.quote-visual-badge strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.quote-visual-badge span {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

.quote-perks {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.quote-perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}
.quote-perk:hover { border-color: var(--line-gold); }
.quote-perk-icon { font-size: 1.25rem; flex-shrink: 0; }
.quote-perk strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.1rem;
}
.quote-perk small {
    font-size: 0.72rem;
    color: var(--muted);
}

.quote-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-gold);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}
[data-theme="light"] .quote-panel {
    background: var(--surface);
}

.quote-head { margin-bottom: 1.75rem; }

.wa-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(8,47,35,0.08), rgba(14,70,51,0.12));
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 0;
}

[data-theme="dark"] .wa-strip {
    background: linear-gradient(135deg, #082F23, #0E4633);
}

.wa-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: var(--green-wa);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.wa-strip h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.wa-strip p { color: var(--muted); font-size: 0.88rem; }
.wa-strip-action { text-align: right; }
.wa-number {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--green-wa);
    margin-bottom: 0.75rem;
}

.quote-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.quote-divider::before,
.quote-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line-gold);
}

.quote-divider span {
    border: 1px solid var(--line-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--bg-soft);
}

.quote-form-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
[data-theme="light"] .quote-form-card { background: var(--bg-soft); }

.quote-form-lead {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quote-form-card > p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.quote-checks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quote-checks span,
.quote-checks.compact span {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-soft);
}

.quote-checks.compact {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* ---- CTA Banner (footer'a yapışık) ---- */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0B2036 0%, #07182B 60%, #0a1628 100%);
    padding: clamp(2.5rem, 5vw, 3.25rem) 0;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 90% 50%, rgba(200,155,60,0.12), transparent),
        radial-gradient(ellipse 40% 60% at 5% 80%, rgba(200,155,60,0.06), transparent);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-eyebrow { color: var(--gold-light) !important; margin-bottom: 0.5rem; }
.cta-banner h2 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}
.cta-banner p { color: #94A3B8; max-width: 52ch; font-size: 0.95rem; }
.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.btn-ghost-light {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Main — boşluk yok */
.site-main { display: block; }
.site-main > section:last-of-type { margin-bottom: 0; }

/* ---- Page banner ---- */
.page-banner {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.page-banner-inner h1 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.page-banner-inner p {
    color: var(--muted);
    max-width: 60ch;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

/* ---- About page ---- */
.about-ultra {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.about-ultra-main p {
    font-size: 1.02rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.info-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    margin-bottom: 1rem;
}

.info-panel h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--text);
}

.info-panel li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}

.info-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.about-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-md);
}

.about-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-intro-strip {
    padding-top: 0;
    margin-top: -1.5rem;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-value-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-value-card:hover {
    border-color: rgba(200, 155, 60, 0.45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.28);
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.about-value-card h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    color: var(--text);
}

.about-value-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.about-lead {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--text) !important;
    line-height: 1.75 !important;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
    margin-bottom: 1.5rem !important;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-mission-card {
    background: var(--surface);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.about-mission-card h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    margin: 0.35rem 0 0.55rem;
    color: var(--text);
}

.about-mission-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.about-side-cta {
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.12), rgba(200, 155, 60, 0.04));
    border: 1px solid rgba(200, 155, 60, 0.35);
    border-radius: var(--radius);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-side-cta h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.about-side-cta p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.about-side-cta .btn {
    align-self: flex-start;
}

.page-banner--about::after,
.page-banner--contact::after {
    opacity: 0.55;
}

/* ---- Contact page ---- */
.contact-ultra {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.contact-ultra-info h2 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.contact-ultra-info > p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.contact-card-wa:hover { border-color: var(--green-wa); }

.contact-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-card strong {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.contact-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.3);
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.contact-hero-pill svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-trust-strip {
    padding-top: 0;
    margin-top: -2rem;
}

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

.contact-trust-item {
    text-align: center;
    padding: 0.35rem 0.5rem;
}

.contact-trust-item strong {
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact-trust-item span {
    display: block;
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.45;
}

.contact-cards--modern .contact-card--icon {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.28);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-icon--wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: var(--green-wa);
}

.contact-card-body {
    min-width: 0;
}

.contact-hours {
    margin-top: 1.5rem;
    padding: 1.15rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.contact-hours h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.contact-hours ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.86rem;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-hours li strong {
    color: var(--text);
    font-weight: 700;
}

.contact-hours-note {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.contact-form-panel--glass {
    background: linear-gradient(160deg, rgba(200, 155, 60, 0.06), transparent 55%), var(--surface);
    border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-md);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-faq-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-faq-card:hover {
    border-color: rgba(200, 155, 60, 0.4);
    box-shadow: var(--shadow-sm);
}

.contact-faq-card h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-faq-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.map-wrap--modern {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--surface);
    padding: 0.35rem;
}

.map-wrap--modern iframe {
    display: block;
    border-radius: 12px !important;
}

.contact-form-panel { margin: 0; position: relative; }

.contact-form-lead {
    margin-top: 0.5rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 42ch;
}

.contact-form-alert {
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
    background: rgba(185, 28, 28, 0.12);
    color: #FCA5A5;
    border: 1px solid rgba(248, 113, 113, 0.35);
    position: relative;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-form-alert::before {
    content: '!';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(248, 113, 113, 0.2);
    color: #FCA5A5;
    font-size: 0.75rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.contact-form-alert.is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-theme="light"] .contact-form-alert {
    background: rgba(185, 28, 28, 0.08);
    color: #B91C1C;
    border-color: rgba(185, 28, 28, 0.22);
}
[data-theme="light"] .contact-form-alert::before {
    background: rgba(185, 28, 28, 0.12);
    color: #B91C1C;
}

.contact-submit {
    min-width: 11rem;
    position: relative;
}
.contact-submit.is-loading {
    opacity: 0.88;
    pointer-events: none;
}
.contact-submit .btn-label,
.contact-submit .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}
.contact-submit:not(.is-loading) .btn-label {
    display: inline-flex;
}
.contact-submit.is-loading .btn-loading {
    display: inline-flex;
}
.contact-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(7, 24, 43, 0.2);
    border-top-color: #07182B;
    border-radius: 50%;
    animation: contactSpin 0.7s linear infinite;
}
@keyframes contactSpin {
    to { transform: rotate(360deg); }
}

#contactFormWrap {
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.contact-form-panel.is-sent .quote-head,
.contact-form-panel.is-sent #contactFormWrap {
    display: none;
}

.contact-success {
    text-align: center;
    padding: 1.5rem 0.5rem 0.75rem;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.contact-success.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.contact-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
}
.contact-success-circle {
    stroke: rgba(34, 197, 94, 0.35);
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: contactCircleDraw 0.6s ease forwards 0.15s;
}
.contact-success-check {
    stroke: #4ADE80;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: contactCheckDraw 0.45s ease forwards 0.55s;
}
@keyframes contactCircleDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes contactCheckDraw {
    to { stroke-dashoffset: 0; }
}
.contact-success-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.65rem;
}
.contact-success-text {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.65;
    max-width: 36ch;
    margin: 0 auto 1.5rem;
}
.contact-success-text strong {
    color: var(--gold-light);
    font-weight: 800;
}
.contact-success-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 22rem;
    margin: 0 auto 1.75rem;
    text-align: left;
}
.contact-success-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.contact-success-steps li span {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
}
[data-theme="light"] .contact-success-steps li {
    background: var(--bg-soft);
}
.contact-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.ultra-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-field { margin-bottom: 0.85rem; }

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-soft);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--input-bg);
    color: var(--text);
    font: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

.file-drop {
    position: relative;
    border: 1.5px dashed rgba(200, 155, 60, 0.38);
    border-radius: calc(var(--radius-sm) + 2px);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.file-drop:hover,
.file-drop.is-dragover {
    border-color: var(--gold);
    background: rgba(200, 155, 60, 0.06);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.1);
}
.file-drop.has-file {
    border-style: solid;
    border-color: rgba(200, 155, 60, 0.45);
    background: rgba(200, 155, 60, 0.05);
}
.file-drop-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.file-drop-empty {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    pointer-events: none;
}
.file-drop.has-file .file-drop-empty {
    display: none;
}
.file-drop-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.28);
    color: var(--gold);
    flex-shrink: 0;
}
.file-drop-copy strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.file-drop-copy span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
}
.file-drop-action {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    border-radius: 8px;
    background: rgba(200, 155, 60, 0.14);
    border: 1px solid rgba(200, 155, 60, 0.35);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}
.file-drop-selected {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    pointer-events: none;
}
.file-drop-selected[hidden] {
    display: none !important;
}
.file-drop.has-file .file-drop-selected {
    display: flex;
    pointer-events: auto;
}
.file-drop-file-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(200, 155, 60, 0.15);
    color: var(--gold);
    flex-shrink: 0;
}
.file-drop-file-meta {
    flex: 1;
    min-width: 0;
}
.file-drop-file-meta strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-drop-file-meta span {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.file-drop-remove {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}
.file-drop-remove:hover {
    border-color: rgba(248, 113, 113, 0.45);
    color: #FCA5A5;
    background: rgba(185, 28, 28, 0.12);
}
[data-theme="light"] .file-drop {
    background: var(--bg-soft);
    border-color: rgba(200, 155, 60, 0.35);
}
[data-theme="light"] .file-drop:hover,
[data-theme="light"] .file-drop.is-dragover {
    background: rgba(200, 155, 60, 0.08);
}
[data-theme="light"] .file-drop-icon {
    background: rgba(200, 155, 60, 0.1);
}
[data-theme="light"] .file-drop-action {
    color: var(--gold-dark);
}

.form-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.45;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(34, 197, 94, 0.14);
    color: #4ADE80;
    border: 1px solid rgba(34, 197, 94, 0.32);
}
[data-theme="light"] .alert-success {
    background: rgba(21, 128, 61, 0.1);
    color: #15803D;
    border-color: rgba(21, 128, 61, 0.25);
}

.alert-error {
    background: rgba(185, 28, 28, 0.1);
    color: #B91C1C;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    margin: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.footer-bg-layer {
    position: absolute;
    inset: 0;
    background: url('../images/hero/hero-blueprint.jpg') center / cover no-repeat;
    opacity: var(--footer-bg-image-opacity);
    filter: var(--footer-bg-image-filter);
    pointer-events: none;
    z-index: 0;
}
body.footer-bg-off .footer-bg-layer { display: none; }
.site-footer .container,
.site-footer .footer-bottom { position: relative; z-index: 1; }
.site-main { margin: 0; padding: 0; }

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.footer-top-accent { display: none; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 34ch;
    color: var(--footer-text);
}

.brand-footer .logo-text-mark .logo-line { color: var(--footer-heading); }
.brand-footer .logo-main { color: var(--footer-heading) !important; }
.brand-footer .logo-gold { color: var(--gold-dark) !important; }
.brand-footer .logo-tag { color: var(--footer-muted) !important; }

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--footer-social-border);
    border-radius: 8px;
    background: var(--footer-social-bg);
    color: var(--footer-social-color);
    font-size: 0.7rem;
    font-weight: 800;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.footer-social a:hover {
    border-color: var(--line-gold);
    color: var(--gold);
    background: var(--surface);
}

.footer-col h4 {
    color: var(--footer-heading);
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-col li { margin-bottom: 0.45rem; }

.footer-col a, .footer-col li {
    font-size: 0.85rem;
    color: var(--footer-link);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }
.footer-wa { color: var(--green-wa) !important; }

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--footer-muted);
}
.footer-dev {
    color: var(--footer-link);
    font-size: 0.78rem;
}
.footer-dev strong { color: var(--gold); font-weight: 700; }
.footer-dev a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-dev a:hover strong { color: var(--gold-light); }

/* ---- Contact Dock (WhatsApp + Ara) ---- */
.contact-dock {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 190;
}
.contact-dock-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-end;
}
.dock-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    height: 52px;
    min-width: 52px;
    padding: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    transition: min-width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease, transform 0.25s ease;
}
.dock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.dock-call {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #07182B;
}
.dock-wa {
    background: linear-gradient(135deg, #2ddb7a, #25D366);
}
.dock-top {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #07182B;
    border: none;
    cursor: pointer;
    font: inherit;
    width: 52px;
    min-width: 52px;
    max-width: 52px;
}
.dock-top[hidden] { display: none; }
.dock-top .dock-icon { color: #07182B; }
.dock-top:hover { transform: translateY(-3px); }

.dock-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.dock-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 0;
    transition: max-width 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s ease, padding 0.35s ease;
}
.dock-btn:hover .dock-label,
.contact-dock.is-expanded .dock-label {
    max-width: 140px;
    opacity: 1;
    padding-right: 1.1rem;
}
.dock-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: dockPulse 2.5s ease-out infinite;
    pointer-events: none;
}
.dock-pulse-call { border: 2px solid rgba(200,155,60,0.5); }
.dock-pulse-wa { border: 2px solid rgba(37,211,102,0.55); animation-delay: 0.8s; }
@keyframes dockPulse {
    0% { transform: scale(1); opacity: 0.7; }
    70%, 100% { transform: scale(1.45); opacity: 0; }
}

/* Mobile contact bar */
.mobile-contact-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 195;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
    font-weight: 800;
    font-size: 0.88rem;
    color: #fff;
    transition: filter 0.2s;
}
.mobile-contact-bar a:active { filter: brightness(0.92); }
.mcb-call { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #07182B; }
.mcb-wa { background: var(--green-wa); }

/* ---- Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .services-ultra { grid-template-columns: repeat(3, 1fr); }
    .projects-masonry { grid-template-columns: repeat(3, 1fr); }
    .reviews-track { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
    .stat-item:nth-child(4), .stat-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
    :root {
        --header-h: 56px;
        --header-h-compact: 48px;
        --topbar-h: 0px;
        --container: 100%;
    }

    .header-topbar { display: none !important; }
    .site-header.is-fixed { top: 0; }

    .header-left { gap: 0.55rem; flex: 1; min-width: 0; }
    .header-shell { gap: 0.65rem; }

    .brand { min-width: 0; overflow: hidden; flex: 1; }
    .brand .logo-brand { min-width: 0; }
    .brand .logo-text-mark { min-width: 0; overflow: hidden; }
    .brand .logo-line {
        flex-wrap: nowrap !important;
        white-space: nowrap;
        font-size: 0.88rem !important;
        letter-spacing: 0.01em;
        gap: 0.25rem;
        line-height: 1.2;
    }
    .brand .logo-main,
    .brand .logo-gold {
        font-size: inherit !important;
        font-weight: 800 !important;
    }

    .logo-mark { width: 34px; height: 34px; }
    .logo-img { height: 36px; }
    .logo-brand { gap: 0.5rem; }

    .site-header.is-compact .logo-mark { width: 30px; height: 30px; }
    .site-header.is-compact .logo-img { height: 32px; }
    .site-header.is-compact .logo-line { font-size: 0.8rem !important; letter-spacing: 0; }
    .site-header.is-compact .logo-brand { gap: 0.4rem; }
    .site-header.is-compact .brand:hover { transform: none; }

    .header-actions { gap: 0.35rem; flex-shrink: 0; }
    .header-wa { display: none !important; }
    .theme-toggle, .nav-burger { width: 36px; height: 36px; border-radius: 9px; }
    .nav-burger span { width: 16px; }
    .lang-switch { font-size: 0.68rem; }

    .container {
        width: min(var(--container), 94vw);
        padding-left: max(3vw, env(safe-area-inset-left));
        padding-right: max(3vw, env(safe-area-inset-right));
    }

    .section { padding: clamp(2.25rem, 6vw, 3rem) 0; }

    .section-title { font-size: clamp(1.55rem, 5vw, 2rem); }
    .section-desc { font-size: 0.92rem; }

    .topbar-left { gap: 0.5rem; min-width: 0; flex: 1; }
    .topbar-link { font-size: 0.68rem; white-space: nowrap; }
    .topbar-social .social-btn { width: 26px; height: 26px; border-radius: 7px; }
    .topbar-social .social-btn svg { width: 13px; height: 13px; }

    .topbar-address { display: none; }
    .topbar-dev { display: none; }
    .header-cta { display: none; }
    .logo-tag { display: none; }

    .nav-burger { display: flex; order: -1; }

    .site-nav {
        display: flex;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--surface);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem max(3vw, env(safe-area-inset-right)) calc(1.5rem + env(safe-area-inset-bottom)) max(3vw, env(safe-area-inset-left));
        gap: 0.15rem;
        border-top: 1px solid var(--line);
        overflow-y: auto;
        z-index: 199;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s ease;
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
    }
    body.is-compact .site-nav {
        top: var(--header-h-compact);
    }

    .site-nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-mobile-actions { display: flex; }

    .nav-item {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: var(--radius-sm);
        min-height: 48px;
        border: 1px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }
    .nav-item .nav-icon {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }
    .nav-item .nav-icon svg { width: 18px; height: 18px; }
    .nav-item.is-active {
        background: rgba(200, 155, 60, 0.1);
        border-color: rgba(200, 155, 60, 0.25);
        color: var(--gold-light);
    }
    .nav-item:active { background: var(--bg-soft); }
    .nav-mobile-actions .btn {
        min-height: 48px;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: var(--radius-sm);
    }

    /* ---- Hero Mobile ---- */
    .hero-ultra {
        min-height: auto;
        padding: calc(1.25rem + 25px) 0 2rem;
    }

    .hero-ultra-copy .eyebrow {
        margin-top: 0;
    }

    .hero-ultra-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-ultra-copy h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .hero-lead { font-size: 0.95rem; margin-bottom: 1.25rem; }

    .hero-ultra-actions {
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1.25rem;
    }
    .hero-ultra-actions .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.65rem;
        align-items: flex-start;
    }
    .trust-item { width: 100%; font-size: 0.82rem; }

    .hero-ultra-visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-frame-img { aspect-ratio: 16/11; }

    .hero-float-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .hero-float-card {
        position: static;
        animation: none;
        width: 100%;
        padding: 0.7rem 0.75rem;
    }
    .hero-float-a,
    .hero-float-b { top: auto; left: auto; right: auto; bottom: auto; }
    .hero-float-card strong { font-size: 0.78rem; }
    .hero-float-card small { font-size: 0.65rem; }
    .float-icon { font-size: 1.25rem; }

    .hero-bubbles .hero-bubble { display: block; opacity: 0.55; }
    .bubble-sm .bubble-core { width: 32px; height: 32px; }
    .bubble-md .bubble-core { width: 40px; height: 40px; }
    .bubble-lg .bubble-core { display: none; }

    /* ---- Stats Mobile ---- */
    .stats-bar { padding: 1.25rem 0; }
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.65rem;
    }
    .stat-icon { width: 38px; height: 38px; margin-bottom: 0.55rem; }
    .stat-icon svg { width: 18px; height: 18px; }
    .stat-item b { font-size: 1.25rem; margin-bottom: 0.45rem; }
    .stat-item span { font-size: 0.68rem; }

    /* ---- Services Mobile ---- */
    .services-ultra { grid-template-columns: 1fr; gap: 0.85rem; }
    .service-ultra {
        min-height: auto;
        padding: 1.15rem;
    }

    /* ---- Process Mobile ---- */
    .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-steps { grid-template-columns: 1fr; gap: 0.85rem; }
    .process-step { min-height: 170px; }
    .process-step-content { padding: 1.15rem; }
    .process-step h4 { font-size: 0.92rem; }
    .process-step p { font-size: 0.8rem; line-height: 1.6; }

    /* ---- Projects Mobile (tüm projeler görünür grid) ---- */
    .projects-masonry,
    .projects-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        overflow: visible;
        margin: 0;
        padding: 0;
        scroll-snap-type: none;
    }

    .project-tile {
        min-width: 0;
        width: 100%;
        flex-shrink: unset;
    }

    .project-tile-img { aspect-ratio: 4/5; }

    .project-tile-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(7,24,43,0.5) 0%, transparent 35%, transparent 50%, rgba(7,24,43,0.88) 100%);
    }

    .project-tile-body { padding: 0.65rem 0.7rem 0.75rem; }
    .project-tile-body h3 {
        font-size: 0.78rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .project-tile-type { font-size: 0.65rem; }

    /* ---- Reviews Mobile ---- */
    .reviews-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        overflow: visible;
        margin: 0;
        padding: 0;
        scroll-snap-type: none;
    }

    .review-card {
        min-width: 0;
        width: 100%;
        flex-shrink: unset;
        min-height: auto;
        padding: 1.15rem;
    }

    .review-avatar { width: 46px; height: 46px; }

    /* ---- Quote Mobile ---- */
    .quote-layout { grid-template-columns: 1fr; gap: 1.25rem; }
    .quote-visual { order: 2; }
    .quote-panel { order: 1; padding: 1.35rem; }

    .wa-strip {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    .wa-strip-action { text-align: center; width: 100%; }
    .wa-strip-icon { margin: 0 auto; }
    .btn-wa { width: 100%; }

    .quote-perks { gap: 0.5rem; }
    .quote-perk { padding: 0.65rem 0.75rem; }
    .quote-visual-frame { min-height: 180px; }
    .quote-visual-frame img { min-height: 180px; }

    .quote-checks { grid-template-columns: 1fr; gap: 0.5rem; }

    /* ---- CTA & Footer Mobile ---- */
    .about-ultra, .contact-ultra { grid-template-columns: 1fr; }
    .about-value-grid, .about-mission-grid { grid-template-columns: 1fr; }
    .contact-faq-grid { grid-template-columns: 1fr; }

    .cta-banner { padding: 2rem 0; }
    .cta-banner-inner {
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 1.25rem;
    }
    .cta-banner-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 0.65rem;
    }
    .cta-banner-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.25rem 0 1.5rem;
    }
    .footer-brand { grid-column: auto; }
    .footer-col h4 { margin-bottom: 0.65rem; }

    .contact-dock {
        display: block;
        bottom: 1.25rem;
        right: 0.85rem;
    }
    body.has-mobile-contact .contact-dock {
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
    }
    .contact-dock-inner { gap: 0.55rem; }
    .contact-dock .dock-call,
    .contact-dock .dock-wa {
        display: none !important;
    }
    .dock-btn,
    .dock-top {
        width: 48px;
        min-width: 48px;
        max-width: 48px;
        height: 48px;
    }
    .dock-icon { width: 48px; height: 48px; }
    .dock-label { display: none !important; }
    .dock-pulse { display: none; }

    .mobile-contact-bar {
        display: grid;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    body.has-mobile-contact {
        padding-bottom: calc(52px + env(safe-area-inset-bottom, 0));
    }

    .btn { white-space: normal; }
}

@media (max-width: 600px) {
    .projects-masonry,
    .projects-scroll {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .project-tile-img { aspect-ratio: 3/4; }

    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .stat-item:last-child { grid-column: span 2; }

    .hero-ultra-copy h1 { font-size: 1.75rem; }

    .brand .logo-line { font-size: 0.82rem !important; }
    .logo-mark { width: 32px; height: 32px; }

    .site-header.is-compact .logo-mark { width: 28px; height: 28px; }
    .site-header.is-compact .logo-line { font-size: 0.76rem !important; }

    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
    .ultra-form .form-row { grid-template-columns: 1fr; }

    .review-card-top {
        grid-template-columns: auto 1fr;
    }
    .review-card-top .stars {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 0.25rem;
    }

    .map-wrap iframe { min-height: 260px; }

    .hero-float-cards { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .projects-masonry,
    .projects-scroll {
        grid-template-columns: 1fr;
    }

    .project-tile-img { aspect-ratio: 16/10; }
    .project-tile-body h3 { font-size: 0.85rem; -webkit-line-clamp: unset; }
}

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

/* ---- Map & extras ---- */
.map-wrap {
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; min-height: 380px; }

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(200,155,60,0.15) 0, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(200,155,60,0.08) 0, transparent 35%);
    animation: particleDrift 12s ease-in-out infinite alternate;
}
@keyframes particleDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-20px, 10px); }
}

.anim-fade-up { animation: fadeUp 0.8s ease both; }
.hero-ultra-copy .anim-fade-up:nth-child(2) { animation-delay: 0.1s; }
.hero-ultra-copy .anim-fade-up:nth-child(3) { animation-delay: 0.2s; }
.hero-ultra-copy .anim-fade-up:nth-child(4) { animation-delay: 0.3s; }
.hero-ultra-copy .anim-fade-up:nth-child(5) { animation-delay: 0.4s; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Hero Bubbles ---- */
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
body.bubbles-off .hero-bubbles { display: none; }

.hero-bubble {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    left: var(--bubble-x, 50%);
    animation: bubbleFloat 8s ease-in-out infinite;
    animation-delay: var(--bubble-delay, 0s);
}

body.bubbles-rise .hero-bubble {
    top: auto !important;
    bottom: -12% !important;
    right: auto !important;
    animation: bubbleRise var(--bubble-duration, 12s) linear infinite;
    animation-delay: var(--bubble-delay, 0s);
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.6);
        opacity: 0;
    }
    8% { opacity: 0.85; }
    50% {
        transform: translateY(-55vh) translateX(12px) scale(1);
        opacity: 0.7;
    }
    92% { opacity: 0.4; }
    100% {
        transform: translateY(-115vh) translateX(-8px) scale(0.85);
        opacity: 0;
    }
}

.hero-bubble.bubble-0 { --bubble-delay: 0s; }
.hero-bubble.bubble-1 { --bubble-delay: -2s; }
.hero-bubble.bubble-2 { --bubble-delay: -4s; }
.hero-bubble.bubble-3 { --bubble-delay: -6s; }
.hero-bubble.bubble-4 { --bubble-delay: -8s; }
.hero-bubble.bubble-5 { --bubble-delay: -10s; }

.bubble-core {
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(200,155,60,0.25) 40%, rgba(200,155,60,0.08) 70%, transparent);
    border: 1px solid rgba(200, 155, 60, 0.35);
    box-shadow: 0 0 24px rgba(200, 155, 60, 0.15), inset 0 0 20px rgba(255,255,255,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.bubble-sm .bubble-core { width: 48px; height: 48px; }
.bubble-md .bubble-core { width: 72px; height: 72px; }
.bubble-lg .bubble-core { width: 96px; height: 96px; }

.hero-bubble:hover .bubble-core {
    transform: scale(1.15);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(200, 155, 60, 0.35);
}

.bubble-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(8px);
    min-width: 140px;
    padding: 0.55rem 0.75rem;
    background: rgba(7, 24, 43, 0.95);
    border: 1px solid var(--line-gold);
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    white-space: nowrap;
}
.bubble-tip strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.15rem;
}
.bubble-tip small {
    display: block;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 600;
}
.hero-bubble:hover .bubble-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(6px, -10px); }
    66% { transform: translate(-4px, 6px); }
}

/* ---- Site Studio Panel ---- */
.site-studio {
    position: fixed;
    z-index: 220;
}
@media (min-width: 901px) {
    .site-studio {
        right: 0;
        top: var(--studio-dock-top, 50%);
        transform: translateY(-50%);
    }
}
.studio-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.7rem 0.55rem 0.7rem 0.65rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff;
    border: none;
    border-radius: 12px 0 0 12px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: -4px 4px 24px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: gap 0.28s ease, padding 0.28s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.studio-toggle svg {
    flex-shrink: 0;
    stroke: #fff;
    color: #fff;
}
.studio-toggle span {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.32s ease, opacity 0.22s ease;
}
.studio-toggle:hover,
.studio-toggle:focus-visible {
    gap: 0.45rem;
    padding: 0.65rem 0.75rem 0.65rem 0.85rem;
    transform: translateX(-3px);
    box-shadow: -8px 8px 32px rgba(0,0,0,0.38);
}
.studio-toggle:hover span,
.studio-toggle:focus-visible span {
    max-width: 4.5rem;
    opacity: 1;
}
.studio-panel {
    background: var(--surface);
    border: 1px solid var(--line-gold);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media (min-width: 901px) {
    .studio-panel {
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: var(--studio-panel-w, min(380px, 92vw));
        max-height: min(88vh, 640px);
        margin-right: calc(0.5rem + var(--studio-panel-shift, 0px));
    }
}
.studio-panel[hidden] { display: none !important; }

.studio-backdrop {
    display: none;
}
.studio-backdrop:not([hidden]) {
    display: block;
}
.studio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, var(--bg-soft), var(--surface));
    border-bottom: 1px solid var(--line);
}
.studio-head { gap: 0.65rem; }
.studio-head-copy { flex: 1; min-width: 0; }
.studio-head-copy strong { display: block; font-size: 0.92rem; }
.studio-head-copy small {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.15rem;
}
.site-studio .studio-dock-grip {
    border-color: var(--line);
    background: var(--bg-soft);
    color: var(--muted);
}
.site-studio .studio-dock-grip:hover {
    color: var(--gold);
    border-color: rgba(200, 155, 60, 0.35);
}
.site-studio .studio-dock-resize::after {
    background: var(--line);
}
.site-studio .studio-dock-resize:hover::after,
.site-studio.is-dragging .studio-dock-resize::after {
    background: var(--gold);
}
.studio-close {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.35rem;
    cursor: pointer;
    border-radius: 8px;
    line-height: 1;
}
.studio-close:hover { background: rgba(200,155,60,0.12); color: var(--gold); }

.studio-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.studio-tab {
    flex: 1;
    padding: 0.6rem 0.5rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    border-bottom: 2px solid transparent;
}
.studio-tab.is-active {
    color: var(--gold);
    background: var(--surface);
    border-bottom-color: var(--gold);
}
.studio-tab:hover { color: var(--text); }

.studio-body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    flex: 1;
}
.studio-pane { display: none; flex-direction: column; gap: 0.75rem; }
.studio-pane.is-active { display: flex; }

.studio-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.15rem;
}

.studio-current-mode {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 0.65rem;
}
.studio-current-mode strong { color: var(--gold); font-weight: 800; }
.studio-theme-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}
.studio-theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.studio-theme-btn:hover { border-color: var(--line-gold); color: var(--gold); }
.studio-theme-btn.is-active {
    border-color: var(--gold);
    background: rgba(200, 155, 60, 0.12);
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.2);
}
.studio-cycle-btn { margin-bottom: 0.85rem; font-size: 0.82rem; }
.studio-palettes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
}
.studio-palette {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--muted);
    transition: border-color 0.2s, transform 0.2s;
}
.studio-palette:hover { border-color: var(--line-gold); transform: translateY(-1px); }
.studio-palette.is-active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}
.palette-swatch {
    width: 100%;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.studio-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text);
}
.studio-field em { font-style: normal; color: var(--gold); font-weight: 800; }
.studio-field select,
.studio-field input[type="color"],
.studio-field input[type="range"] {
    width: 100%;
    font-family: inherit;
}
.studio-field select {
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--input-bg);
    color: var(--text);
}
.studio-check {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.studio-check input { width: auto; accent-color: var(--gold); }
.studio-label--sub {
    margin-top: 0.35rem;
    margin-bottom: -0.15rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
}
.studio-sub { margin-left: 0.35rem; padding-left: 0.65rem; border-left: 2px solid var(--line); }
.studio-switch-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.studio-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--muted);
    font: inherit;
}
.studio-switch-track {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.25);
    border: 1px solid var(--line);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.studio-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.studio-switch.is-on .studio-switch-track {
    background: var(--gold);
    border-color: var(--gold);
}
.studio-switch.is-on .studio-switch-thumb { transform: translateX(20px); }
.studio-switch.is-on .studio-switch-text { color: var(--gold); font-weight: 700; }
.studio-switch-text { font-size: 0.78rem; font-weight: 600; min-width: 3.2rem; text-align: right; }
.studio-reset { margin-top: 0.25rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Studio Mobile (bottom sheet) ---- */
@media (max-width: 900px) {
    .site-studio {
        right: 0;
        left: auto;
        top: var(--studio-dock-top, 50%);
        bottom: auto !important;
        transform: translateY(-50%) !important;
        z-index: 250;
    }
    .site-studio.is-open {
        z-index: 252;
    }
    .studio-toggle {
        gap: 0;
        padding: 0.65rem 0.55rem 0.65rem 0.65rem;
        min-height: 44px;
        border-radius: 12px 0 0 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 253;
        box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.35);
    }
    .studio-toggle span {
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        transition: max-width 0.32s ease, opacity 0.22s ease;
    }
    .studio-toggle:hover,
    .studio-toggle:focus-visible,
    .site-studio.is-open .studio-toggle {
        gap: 0.35rem;
        padding: 0.6rem 0.7rem 0.6rem 0.75rem;
        transform: translateX(-3px);
        box-shadow: -6px 6px 28px rgba(0, 0, 0, 0.38);
    }
    .studio-toggle:hover span,
    .studio-toggle:focus-visible span,
    .site-studio.is-open .studio-toggle span {
        max-width: 4.5rem;
        opacity: 1;
    }
    .studio-panel {
        position: fixed !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        bottom: calc(3.25rem + env(safe-area-inset-bottom, 0) + 52px) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        border-radius: 16px 16px 0 0;
        max-height: min(78vh, 560px) !important;
        z-index: 251 !important;
        box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.45);
    }
    .studio-panel.is-open,
    .site-studio.is-open .studio-panel:not([hidden]) {
        display: flex !important;
        flex-direction: column;
        animation: studioSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .studio-dock-resize,
    .studio-dock-grip {
        display: none !important;
    }
    .studio-head-copy small {
        display: none;
    }
    .studio-head {
        padding: 0.75rem 1rem;
    }
    .studio-tabs {
        flex-shrink: 0;
    }
    .studio-tab {
        padding: 0.7rem 0.5rem;
        font-size: 0.78rem;
    }
    .studio-body {
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .studio-label {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        line-height: 1.4;
        white-space: normal;
    }
    .studio-backdrop {
        position: fixed;
        inset: 0;
        z-index: 249;
        background: rgba(7, 24, 43, 0.65);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    .studio-backdrop:not([hidden]) {
        display: block;
    }
    body.studio-panel-open {
        overflow: hidden;
    }
    @keyframes studioSlideUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

body.footer-compact .footer-grid { padding: 2rem 0 1.25rem; gap: 1.5rem; }
body.footer-compact .footer-brand p { font-size: 0.82rem; margin-top: 0.65rem; }
body.footer-compact .footer-bottom { padding: 0.85rem 0; }

.footer-social a svg { display: block; }

/* ---- Error & Maintenance Pages ---- */
.error-page-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1.25rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200, 155, 60, 0.14), transparent 55%),
        var(--bg);
}
.error-page {
    width: min(560px, 100%);
    position: relative;
}
.error-page-glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 240px;
    background: radial-gradient(circle, rgba(200, 155, 60, 0.18), transparent 70%);
    pointer-events: none;
    filter: blur(12px);
}
.error-page-card {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line-gold);
    background: linear-gradient(160deg, var(--surface), var(--bg-soft));
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.error-page-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}
.error-page-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}
.error-page-brand-text {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.error-page-brand-text strong { color: var(--text); }
.error-page-brand-text em {
    font-style: normal;
    color: var(--gold);
}
.error-page-code-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.error-page-badge {
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.25);
}
.error-page-code {
    font-size: clamp(3.5rem, 14vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--text), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.92;
}
.error-page-card h1 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    letter-spacing: -0.02em;
}
.error-page-message {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}
.error-page-hint {
    margin: 0.75rem 0 0;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
}
.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.error-page-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 1rem;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
}
.error-page-trust-item {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
}
.error-page-trust-item:hover { color: var(--gold); }
.error-page-foot {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
}

/* ============================================================
   Light mode — bölüm düzeltmeleri (okunabilirlik & tutarlılık)
   ============================================================ */

[data-theme="light"] .hero-float-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(11, 26, 46, 0.12);
    box-shadow: 0 10px 32px rgba(11, 26, 46, 0.1);
}
[data-theme="light"] .hero-float-card strong {
    color: #071528;
}
[data-theme="light"] .hero-float-card small {
    color: #475569;
}
[data-theme="light"] .hero-float-card:hover {
    background: #fff;
    border-color: rgba(200, 155, 60, 0.35);
}

[data-theme="light"] .section-process::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.88)),
        url('../images/hero/grid-pattern.svg') repeat;
    opacity: 0.65;
}
[data-theme="light"] .process-section-bg {
    opacity: 0.32;
    filter: saturate(0.75) blur(0);
}
[data-theme="light"] .section-process .section-title,
[data-theme="light"] .section-process .section-desc,
[data-theme="light"] .section-process .eyebrow {
    color: var(--text);
}
[data-theme="light"] .section-process .section-desc {
    color: #475569;
}
[data-theme="light"] .process-step {
    background: #fff;
    border-color: rgba(11, 26, 46, 0.1);
    box-shadow: 0 8px 24px rgba(11, 26, 46, 0.06);
}
[data-theme="light"] .process-step-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.55) 40%, rgba(244, 247, 251, 0.92) 100%);
}
[data-theme="light"] .process-step-content {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.45) 35%, rgba(255, 255, 255, 0.96) 100%);
}
[data-theme="light"] .process-step h4 {
    color: #0B1A2E;
    text-shadow: none;
}
[data-theme="light"] .process-step p {
    color: #475569;
    text-shadow: none;
}

[data-theme="light"] .reviews-section-bg {
    background:
        linear-gradient(180deg, rgba(244, 247, 251, 0.94) 0%, rgba(238, 242, 247, 0.9) 50%, rgba(244, 247, 251, 0.96) 100%),
        url('../images/reviews/reviews-bg.jpg') center center / cover no-repeat;
    opacity: 0.55;
}
[data-theme="light"] .section-reviews .section-title {
    color: #0B1A2E;
}
[data-theme="light"] .section-reviews .section-desc {
    color: #475569;
}
[data-theme="light"] .section-reviews .eyebrow {
    color: #9A7228;
}
[data-theme="light"] .section-reviews .review-card p {
    color: #475569;
}
[data-theme="light"] .section-reviews .review-meta strong {
    color: #0B1A2E;
}
[data-theme="light"] .section-reviews .review-meta span {
    color: #9A7228;
}
[data-theme="light"] .review-verified {
    border-color: #fff;
}

[data-theme="light"] .section-quote::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.9)),
        url('../images/hero/grid-pattern.svg') repeat;
    opacity: 0.7;
}
[data-theme="light"] .quote-section-bg {
    opacity: 0.22;
    filter: saturate(0.7);
}

[data-theme="light"] .cta-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 50%, #fff 100%);
    color: #0B1A2E;
    border-top: 1px solid rgba(11, 26, 46, 0.06);
}
[data-theme="light"] .cta-banner h2 {
    color: #071528;
}
[data-theme="light"] .cta-banner p {
    color: #475569;
}
[data-theme="light"] .cta-eyebrow {
    color: #9A7228 !important;
}
[data-theme="light"] .btn-ghost-light {
    background: #fff;
    border-color: rgba(11, 26, 46, 0.14);
    color: #0B1A2E;
    box-shadow: 0 4px 14px rgba(11, 26, 46, 0.06);
}
[data-theme="light"] .btn-ghost-light:hover {
    background: var(--bg-soft);
    border-color: var(--gold);
    color: var(--gold-dark);
}

[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #f8fafc 0%, var(--footer-bg) 100%);
    border-top: 1px solid var(--footer-border);
}
[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, #0a1e35 0%, var(--footer-bg) 100%);
}
[data-theme="dark"] .footer-social a:hover {
    background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .footer-social a:hover {
    color: var(--gold-dark);
}

[data-theme="light"] body.header-bg-off .topbar-social .social-btn,
[data-theme="light"] body.header-bg-scroll .topbar-social .social-btn,
[data-theme="light"] .topbar-social .social-btn {
    color: #475569 !important;
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(11, 26, 46, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
[data-theme="light"] .topbar-social .social-btn:hover {
    color: var(--gold-dark) !important;
    border-color: rgba(200, 155, 60, 0.35) !important;
    background: rgba(255, 255, 255, 0.48) !important;
}
[data-theme="light"] .topbar-social .social-btn svg {
    stroke: currentColor;
    color: inherit;
}

[data-theme="light"] .logo-mark {
    filter: drop-shadow(0 2px 8px rgba(200, 155, 60, 0.2));
    border-radius: 10px;
}
[data-theme="dark"] .brand-footer .logo-gold {
    color: var(--gold-light) !important;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}
.lang-switch--site {
    margin-right: 0.15rem;
}
.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 26px;
    padding: 0 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}
.lang-switch-btn:hover { color: var(--text); }
.lang-switch-btn.is-active {
    background: rgba(200, 155, 60, 0.25);
    color: var(--gold);
}
[data-theme="light"] .lang-switch {
    border-color: rgba(11, 26, 46, 0.12);
    background: rgba(255, 255, 255, 0.65);
}
[data-theme="light"] .lang-switch-btn { color: #64748b; }
[data-theme="light"] .lang-switch-btn.is-active {
    background: rgba(200, 155, 60, 0.18);
    color: var(--gold-dark);
}
