/* ===== Renk Paleti ===== */
:root {
    --navy-dark: #0a1628;
    --navy: #1a2d4a;
    --navy-light: #2c4a7c;
    --navy-accent: #3d6cb9;
    --white: #ffffff;
    --off-white: #f4f7fb;
    --text-muted: #8fa3bf;
    --shadow: rgba(10, 22, 40, 0.12);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-apple: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-blur: 18px;
    --glass-white: rgba(255, 255, 255, 0.58);
    --glass-white-strong: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-border-accent: rgba(61, 108, 185, 0.18);
    --glass-dark: rgba(10, 22, 40, 0.62);
    --glass-dark-strong: rgba(10, 22, 40, 0.82);
    --glass-dark-border: rgba(255, 255, 255, 0.14);
    --nav-gold: #ffd700;
    --nav-gold-light: #ffe566;
    --nav-gold-hover: #fff3a0;
    --brand-yellow: #ffd700;
    --logo-height: 150px; /* Logo boyutu — nav'dan büyük yazabilirsin */
    --logo-height-mobile: 64px;
    --nav-height: 72px; /* Üst panel SABİT yükseklik — değişmez */
    --nav-height-mobile: 64px;
    --nav-padding-x: 2rem;
}

/* ===== Genel ===== */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background-color: var(--off-white);
    background-image:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(61, 108, 185, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(44, 74, 124, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    background-attachment: fixed;
    color: var(--navy);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* ===== Navigasyon ===== */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    height: var(--nav-height);
    min-height: var(--nav-height);
    max-height: var(--nav-height);
    padding: 0 var(--nav-padding-x);
    overflow: visible;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.45s var(--ease-apple), box-shadow 0.45s var(--ease-apple);
}

.site-nav.scrolled {
    background: var(--navy-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
    overflow: visible;
    z-index: 101;
}

.logo img {
    height: var(--logo-height);
    width: auto;
    display: block;
    margin-block: calc((var(--nav-height) - var(--logo-height)) / 2);
    transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
}

.logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.45));
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--nav-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid transparent;
    position: relative;
    transition: background-color 0.3s var(--ease-out), transform 0.25s var(--ease-out), color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.15rem;
    width: 0;
    height: 2px;
    background: var(--nav-gold-light);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.35s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 1.5rem);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--nav-gold-hover);
    background-color: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.22);
    transform: translateY(-1px);
}

.nav-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
}

.lang-btn {
    border: 1px solid transparent;
    background: transparent;
    color: var(--nav-gold);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
    cursor: pointer;
    min-width: 2rem;
    transition: background-color 0.3s var(--ease-out), color 0.3s ease, border-color 0.3s ease;
}

.lang-btn:hover {
    color: var(--nav-gold-hover);
    background: rgba(255, 215, 0, 0.12);
}

.lang-btn.active {
    color: var(--navy-dark);
    background: var(--nav-gold);
    border-color: var(--nav-gold-light);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--nav-gold-light);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 992px) {
    .site-nav {
        height: auto;
        min-height: var(--nav-height);
        max-height: none;
        padding: 0.5rem var(--nav-padding-x);
        justify-content: center;
    }

    .logo img {
        margin-block: 0;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
        gap: 0.35rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.65rem;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: auto;
    }
}

html.i18n-pending body {
    visibility: hidden;
}

/* ===== RTL (Persian) ===== */
html[dir="rtl"] body {
    font-family: "Segoe UI", Tahoma, "Noto Sans Arabic", system-ui, sans-serif;
}

html[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .footer-bottom {
    text-align: center;
}

html[dir="rtl"] .hours-list {
    text-align: right;
}

html[dir="rtl"] .hours-list li {
    flex-direction: row-reverse;
}

html[dir="rtl"] .career-benefits li {
    padding: 0.5rem 1.5rem 0.5rem 0;
    text-align: right;
}

html[dir="rtl"] .career-benefits li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .form-group,
html[dir="rtl"] .career-info,
html[dir="rtl"] .card-with-photo,
html[dir="rtl"] .value-item.has-photo {
    text-align: right;
}

html[dir="rtl"] .about-preview h2 {
    text-align: right;
}

html[dir="rtl"] .why-spizer-feature {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .faq-answer {
    text-align: right;
}

html[dir="rtl"] .social-links {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* ===== Hero ===== */
.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(61, 108, 185, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    animation: heroGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 42%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 58%
    );
    animation: heroShine 7s ease-in-out infinite;
    pointer-events: none;
}

.hero > *,
.page-hero > * {
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 6rem 2rem 5.5rem;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    color: var(--white);
}

body[data-page="index"] .hero {
    background-color: var(--navy-dark);
    background-image:
        linear-gradient(160deg, rgba(10, 22, 40, 0.78) 0%, rgba(10, 22, 40, 0.55) 45%, rgba(10, 22, 40, 0.82) 100%),
        url('images/spizerfoto.jpeg?v=20260622');
    background-position: center center, center 72%;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

body[data-page="index"] .hero .tagline {
    color: rgba(255, 255, 255, 0.88);
}

.hero-content {
    width: 100%;
    max-width: 720px;
    will-change: transform, opacity;
    transition: opacity 0.1s linear;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero .tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== Butonlar ===== */
.btn {
    display: inline-block;
    background-color: var(--navy-accent);
    color: var(--brand-yellow);
    border: 2px solid var(--navy-accent);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(61, 108, 185, 0.35);
    transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out),
        border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
        transform 0.35s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.55s var(--ease-out);
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn:hover {
    background-color: var(--brand-yellow);
    color: var(--navy-accent);
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.45);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(61, 108, 185, 0.25);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy-dark);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.hero .hero-actions .btn-outline {
    background-color: var(--brand-yellow);
    color: var(--navy-accent);
    border-color: var(--brand-yellow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.hero .hero-actions .btn-outline:hover {
    background-color: var(--navy-accent);
    color: var(--brand-yellow);
    border-color: var(--navy-accent);
    box-shadow: 0 8px 24px rgba(61, 108, 185, 0.35);
}

.btn-yellow {
    background-color: var(--brand-yellow);
    color: var(--navy-accent);
    border-color: var(--brand-yellow);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.btn-yellow:hover {
    background-color: var(--navy-accent);
    color: var(--brand-yellow);
    border-color: var(--navy-accent);
    box-shadow: 0 8px 24px rgba(61, 108, 185, 0.35);
}

/* ===== Bölümler ===== */
.section {
    padding: 6rem 2rem;
}

.section-compact {
    padding: 2.5rem 2rem 2rem;
}

.section-compact .section-header {
    margin-bottom: 0;
}

.about-preview .sticky-visual {
    position: sticky;
    top: 110px;
    align-self: start;
}

.about-preview .sticky-visual img {
    transition: transform 0.7s var(--ease-out);
}

.about-preview .sticky-visual.revealed img,
.about-preview .sticky-visual:hover img {
    transform: scale(1.05);
}

.section-alt {
    background: rgba(255, 255, 255, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
    color: var(--navy-dark);
    position: relative;
    padding-bottom: 0.75rem;
}

.section-header p {
    color: var(--navy-light);
    font-size: 1.05rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Neden Spizer (anasayfa) ===== */
.why-spizer {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.why-spizer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.why-spizer-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-accent);
    margin-bottom: 1rem;
}

.why-spizer-content h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    color: var(--navy-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.why-spizer-content > p {
    color: var(--navy-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 52ch;
}

.why-spizer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-spizer-feature {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
}

.why-spizer-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(61, 108, 185, 0.1);
    border: 1px solid rgba(61, 108, 185, 0.18);
    color: var(--navy-accent);
    transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.why-spizer-feature:hover .why-spizer-icon,
.why-spizer-feature.revealed .why-spizer-icon {
    transform: scale(1.08);
    background: rgba(61, 108, 185, 0.16);
    box-shadow: 0 6px 18px rgba(61, 108, 185, 0.15);
}

.why-spizer-icon svg {
    width: 26px;
    height: 26px;
}

.why-spizer-feature h3 {
    font-size: 1.08rem;
    color: var(--navy-dark);
    margin-bottom: 0.35rem;
}

.why-spizer-feature p {
    color: var(--navy-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-spizer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.egg-collage {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: 1;
}

.egg-tile {
    position: absolute;
    overflow: hidden;
    transform: rotate(45deg);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(10, 22, 40, 0.14);
    border: 3px solid rgba(255, 255, 255, 0.85);
    animation: eggFloat 7s ease-in-out infinite;
}

.egg-tile--main { animation-duration: 8s; animation-delay: 0s; }
.egg-tile--a { animation-duration: 6.5s; animation-delay: 0.4s; }
.egg-tile--b { animation-duration: 7.5s; animation-delay: 0.8s; }
.egg-tile--c { animation-duration: 6s; animation-delay: 1.2s; }
.egg-tile--d { animation-duration: 7s; animation-delay: 0.6s; }
.egg-tile--e { animation-duration: 6.8s; animation-delay: 1s; }
.egg-tile--f { animation-duration: 7.2s; animation-delay: 1.4s; }

@keyframes eggFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-10px);
    }
}

.egg-tile img {
    position: absolute;
    width: 142%;
    height: 142%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.egg-tile:hover img {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.08);
}

.egg-tile--main {
    width: 46%;
    height: 46%;
    top: 27%;
    left: 27%;
    z-index: 3;
}

.egg-tile--a {
    width: 22%;
    height: 22%;
    top: 6%;
    left: 39%;
    z-index: 2;
}

.egg-tile--b {
    width: 20%;
    height: 20%;
    top: 22%;
    left: 8%;
    z-index: 2;
}

.egg-tile--c {
    width: 20%;
    height: 20%;
    top: 22%;
    right: 8%;
    left: auto;
    z-index: 2;
}

.egg-tile--d {
    width: 18%;
    height: 18%;
    bottom: 22%;
    left: 10%;
    top: auto;
    z-index: 2;
}

.egg-tile--e {
    width: 18%;
    height: 18%;
    bottom: 22%;
    right: 10%;
    left: auto;
    top: auto;
    z-index: 2;
}

.egg-tile--f {
    width: 16%;
    height: 16%;
    bottom: 6%;
    left: 42%;
    top: auto;
    z-index: 2;
}

.stats-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 247, 251, 0.72) 100%);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border-radius: 20px;
    padding: 2.75rem 2rem 2.25rem;
    box-shadow:
        0 20px 60px rgba(10, 22, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.stats-panel-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-accent), #6b9ae8, var(--navy-light));
}

.stats-panel-glow {
    position: absolute;
    top: -40%;
    right: -15%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 108, 185, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.stats-panel-head {
    position: relative;
    text-align: center;
    margin-bottom: 2.25rem;
}

.stats-panel-badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-accent);
    background: rgba(61, 108, 185, 0.1);
    border: 1px solid rgba(61, 108, 185, 0.18);
}

.stats-panel-head h2 {
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.stats-panel-head p {
    color: var(--navy-light);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.stats-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stats-panel-item {
    position: relative;
    text-align: center;
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.65s var(--ease-apple), transform 0.65s var(--ease-apple),
        box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.stats-panel.is-visible .stats-panel-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stats-panel.is-visible .stats-panel-item:nth-child(1) { transition-delay: 0.06s; }
.stats-panel.is-visible .stats-panel-item:nth-child(2) { transition-delay: 0.16s; }
.stats-panel.is-visible .stats-panel-item:nth-child(3) { transition-delay: 0.26s; }

.stats-panel-item:hover {
    box-shadow: 0 16px 40px rgba(61, 108, 185, 0.14);
    border-color: rgba(61, 108, 185, 0.28);
    transform: translateY(-5px) scale(1.01);
}

.stats-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 14px;
    color: var(--navy-accent);
    background: linear-gradient(145deg, rgba(61, 108, 185, 0.16), rgba(61, 108, 185, 0.06));
    border: 1px solid rgba(61, 108, 185, 0.15);
    transition: transform 0.45s var(--ease-spring), background 0.45s ease;
}

.stats-panel-icon svg {
    width: 26px;
    height: 26px;
}

.stats-panel-item:hover .stats-panel-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(145deg, rgba(61, 108, 185, 0.22), rgba(61, 108, 185, 0.1));
}

.stats-panel-value {
    display: block;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    margin-bottom: 0.45rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-panel-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}

.stats-panel-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stats-panel-bar {
    display: block;
    width: 0;
    height: 3px;
    margin: 1rem auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--navy-accent), #7aa8ef);
    transition: width 1s var(--ease-apple) 0.35s;
}

.stats-panel.is-visible .stats-panel-item .stats-panel-bar {
    width: 48px;
}

.stats-panel-item.counted .stats-panel-value {
    animation: statPop 0.5s var(--ease-spring);
}

.stats-panel-item-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-egg-tabs {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(61, 108, 185, 0.08);
    border: 1px solid rgba(61, 108, 185, 0.14);
}

.stats-egg-tab {
    border: none;
    background: transparent;
    color: var(--navy-light);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s var(--ease-out), color 0.3s ease, box-shadow 0.3s ease;
}

.stats-egg-tab:hover {
    color: var(--navy-dark);
    background: rgba(255, 255, 255, 0.55);
}

.stats-egg-tab.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-accent), var(--navy-light));
    box-shadow: 0 4px 14px rgba(61, 108, 185, 0.35);
}

.stats-egg-tab:focus-visible {
    outline: 2px solid var(--navy-accent);
    outline-offset: 2px;
}

@keyframes statPop {
    0% { transform: scale(1); }
    45% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.stats-panel-note {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Kartlar ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.07);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out), background 0.45s var(--ease-out);
}

.section-alt .card {
    background: rgba(255, 255, 255, 0.52);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
    border-color: rgba(61, 108, 185, 0.25);
    background: var(--glass-white-strong);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.5s var(--ease-spring);
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(-4deg);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--navy-dark);
}

.card p {
    color: var(--navy-light);
    font-size: 0.95rem;
}

.card-with-photo {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.card-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--off-white);
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.card-with-photo:hover .card-photo img {
    transform: scale(1.07);
}

.card-with-photo h3,
.card-with-photo p {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.card-with-photo h3 {
    padding-top: 1.25rem;
}

.card-with-photo p {
    padding-bottom: 1.5rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.photo-gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
}

.photo-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.photo-gallery-item:hover img {
    transform: scale(1.07);
}

.photo-gallery-item figcaption {
    padding: 0.85rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    background: var(--white);
}

/* ===== Hakkımızda önizleme ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-preview img {
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow);
}

.about-preview h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.about-preview p {
    color: var(--navy-light);
    margin-bottom: 1rem;
}

.about-preview .btn {
    margin-top: 0.5rem;
}

/* ===== Değerler ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item h3 {
    margin: 0.75rem 0;
    color: var(--navy-dark);
}

.value-item p {
    color: var(--navy-light);
    font-size: 0.95rem;
}

.value-item.has-photo {
    padding: 0;
    overflow: hidden;
    text-align: left;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.07);
}

.value-item-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--off-white);
}

.value-item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.value-item.has-photo:hover .value-item-photo img {
    transform: scale(1.07);
}

.value-item.has-photo h3,
.value-item.has-photo p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.value-item.has-photo h3 {
    padding-top: 1rem;
    margin-top: 0;
}

.value-item.has-photo p {
    padding-bottom: 1.25rem;
}

.career-visual {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.career-visual img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.career-visual:hover img {
    transform: scale(1.06);
}

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 2rem;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== İletişim ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: var(--glass-white-strong);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

.contact-card h2,
.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.contact-card address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy);
}

.address-block {
    margin-bottom: 1.5rem;
}

.address-block:last-of-type {
    margin-bottom: 0;
}

.address-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.map-location-block {
    margin-top: 2rem;
}

.map-location-block:first-of-type {
    margin-top: 0;
}

.map-location-block h3 {
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.map-location-block address {
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}

.map-location-block--office {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--off-white);
}

.footer-address-label {
    margin-top: 0.75rem;
    margin-bottom: 0.15rem;
}

.footer-address-label:first-of-type {
    margin-top: 0;
}

.contact-divider {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--off-white);
}

.contact-card .phone,
.contact-card .email {
    font-size: 1.1rem;
}

.contact-card .phone a,
.contact-card .phone a:link,
.contact-card .phone a:visited,
.contact-card .phone a:active,
.contact-card .email a,
.contact-card .email a:link,
.contact-card .email a:visited,
.contact-card .email a:active {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card .phone a:hover,
.contact-card .email a:hover {
    color: var(--navy-light);
}

.hours-list {
    list-style: none;
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.4rem 0;
    color: var(--navy);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--off-white);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:last-child {
    font-weight: 600;
    color: var(--navy-dark);
}

/* ===== Kariyer ===== */
.career-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.career-info {
    text-align: left;
}

.career-info h2,
.application-form h2 {
    text-align: center;
}

.career-benefits {
    list-style: none;
    color: var(--navy-light);
}

.career-benefits li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.career-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--navy-accent);
    font-weight: 700;
}

.form-note {
    text-align: center;
    color: var(--navy-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--off-white);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--navy);
    background: var(--off-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="file"] {
    padding: 0.6rem;
    cursor: pointer;
}

.file-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--navy-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--navy-accent);
    box-shadow: 0 0 0 3px rgba(61, 108, 185, 0.15);
}

.application-form .btn {
    width: 100%;
    border: none;
    margin-top: 0.5rem;
}

.facility {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.facility img {
    width: 100%;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.facility:hover img {
    transform: scale(1.06);
}

.map-section {
    margin-top: 3rem;
}

.map-section .section-header {
    margin-bottom: 1.5rem;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.map-actions .btn-outline {
    background-color: var(--white);
    color: var(--navy-accent);
    border-color: var(--navy-accent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 16px rgba(61, 108, 185, 0.15);
}

.map-actions .btn-outline:hover {
    background-color: var(--navy-accent);
    color: var(--brand-yellow);
    border-color: var(--navy-accent);
    box-shadow: 0 6px 20px rgba(61, 108, 185, 0.35);
}

/* ===== Fiyat listesi ===== */
.price-panel {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.07);
    overflow: hidden;
    transition:
        box-shadow 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out);
}

.price-panel:hover {
    border-color: rgba(61, 108, 185, 0.22);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
}

.price-panel-unit {
    margin: 0;
    padding: 1.35rem 1.75rem 0.75rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-accent);
}

.price-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.9rem 1.75rem;
    border-top: 1px solid rgba(61, 108, 185, 0.08);
    transition: background 0.3s var(--ease-out);
}

.price-panel-row:hover {
    background: rgba(255, 255, 255, 0.45);
}

.price-panel-label {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.price-panel-price {
    font-size: 1.05rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--navy);
    flex-shrink: 0;
}

.price-panel-footer {
    border-top: 1px solid rgba(61, 108, 185, 0.1);
    background: rgba(255, 255, 255, 0.28);
    padding: 1rem 1.75rem 1.25rem;
    text-align: center;
}

.price-panel-disclaimer-strong {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--navy-dark);
}

.price-panel-note {
    margin: 0;
    padding: 0.85rem 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
    border-top: 1px solid rgba(61, 108, 185, 0.08);
}

html[dir="rtl"] .price-panel-row {
    flex-direction: row-reverse;
}

@media (max-width: 480px) {
    .price-panel-row {
        padding: 0.85rem 1.25rem;
    }

    .price-panel-unit,
    .price-panel-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .price-panel-price {
        font-size: 0.98rem;
    }
}

/* ===== Döviz paneli (footer) ===== */
.fx-panel {
    max-width: 1100px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.14);
    border-radius: 14px;
}

.fx-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.fx-panel-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.fx-updated {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

.fx-updated time {
    color: rgba(255, 255, 255, 0.75);
}

.fx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fx-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem 0.75rem;
    background: rgba(10, 22, 40, 0.55);
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.fx-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

.fx-code {
    color: var(--nav-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fx-value {
    color: var(--white);
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.fx-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fx-disclaimer {
    margin: 0.85rem 0 0;
    color: rgba(143, 163, 191, 0.85);
    font-size: 0.75rem;
    text-align: center;
}

.fx-panel--loading .fx-value {
    opacity: 0.45;
}

.fx-panel--error .fx-disclaimer {
    color: rgba(255, 180, 120, 0.9);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--navy-dark);
    color: var(--text-muted);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
    display: block;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--navy);
    font-size: 0.85rem;
    max-width: 1100px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    transition: background-color 0.3s var(--ease-out), transform 0.25s var(--ease-out),
        color 0.3s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--navy-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link--whatsapp:hover {
    background: #25d366;
}

.footer-grid .social-links {
    margin-top: 1rem;
}

.footer-grid .social-link {
    display: inline-flex;
}

.contact-card .social-links {
    margin-top: 0.25rem;
}

/* ===== Sayfa başlığı ===== */
.page-hero {
    text-align: center;
    padding: 2.75rem 2rem 2.25rem;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    color: var(--white);
}

.page-hero .hero-content {
    width: 100%;
    max-width: 720px;
    animation: pageHeroFade 0.9s var(--ease-apple) both;
}

@keyframes pageHeroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Ürün detay ===== */
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.07);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out);
}

.product-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
    border-color: rgba(61, 108, 185, 0.22);
}

.product-image {
    flex: 1.1;
    min-height: 0;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img,
.product-image-placeholder {
    transition: transform 0.7s var(--ease-out);
}

.product-item:hover .product-image img,
.product-item:hover .product-image-placeholder {
    transform: scale(1.07);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    font-size: 3.5rem;
    opacity: 0.45;
}

.product-body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-item h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-size: 1.05rem;
}

.product-item p {
    text-align: center;
    color: var(--navy-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== SSS ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    overflow: hidden;
    transition: border-color 0.3s var(--ease-apple), box-shadow 0.35s var(--ease-apple),
        transform 0.35s var(--ease-apple);
}

.faq-item:hover {
    border-color: var(--glass-border-accent);
    transform: translateY(-2px);
}

.faq-item[open] {
    background: var(--glass-white-strong);
    border-color: rgba(61, 108, 185, 0.28);
    box-shadow: 0 8px 28px rgba(61, 108, 185, 0.1);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.25s var(--ease-apple);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(61, 108, 185, 0.1);
    color: var(--navy-accent);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s var(--ease-apple), background 0.3s var(--ease-apple);
}

.faq-item[open] .faq-question::after {
    content: "−";
    transform: rotate(180deg);
    background: var(--navy-accent);
    color: var(--white);
}

.faq-item[open] .faq-answer {
    animation: faqSlideIn 0.45s var(--ease-apple) forwards;
}

@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--navy-light);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--navy-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--navy-dark);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.about-text {
    text-align: center;
    color: var(--navy-light);
    margin-bottom: 1rem;
}

/* ===== Apple tarzı scroll animasyonları ===== */
.apple-reveal {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.97);
    filter: blur(6px);
    will-change: transform, opacity, filter;
}

.apple-reveal.revealed {
    will-change: auto;
    filter: none;
}

@keyframes contentFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header.revealed p {
    animation: contentFade 0.65s 0.12s var(--ease-apple) both;
}

.card-with-photo.revealed h3 {
    animation: contentFade 0.55s 0.1s var(--ease-apple) both;
}

.card-with-photo.revealed p {
    animation: contentFade 0.55s 0.18s var(--ease-apple) both;
}

.photo-gallery-item.revealed figcaption {
    animation: contentFade 0.5s 0.12s var(--ease-apple) both;
}

.why-spizer-feature.revealed h3 {
    animation: contentFade 0.5s 0.08s var(--ease-apple) both;
}

.why-spizer-feature.revealed p {
    animation: contentFade 0.5s 0.14s var(--ease-apple) both;
}

.site-footer.revealed .footer-grid > div {
    animation: contentFade 0.6s var(--ease-apple) both;
}

.site-footer.revealed .footer-grid > div:nth-child(2) {
    animation-delay: 0.08s;
}

.site-footer.revealed .footer-grid > div:nth-child(3) {
    animation-delay: 0.16s;
}

.logo img {
    animation: fadeIn 0.9s var(--ease-apple) both;
}

.lang-switcher {
    animation: fadeIn 1s 0.35s var(--ease-apple) both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroGlow {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 1; transform: scale(1.08); }
}

@keyframes heroShine {
    0%, 100% { transform: translateX(-30%); }
    50% { transform: translateX(30%); }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineGrow {
    from { transform: translateX(-50%) scaleX(0); }
    to { transform: translateX(-50%) scaleX(1); }
}

.site-nav {
    animation: fadeInDown 0.8s var(--ease-apple) forwards;
}

.hero-content h1,
.page-hero .hero-content h1,
.hero-animate h1,
.page-hero.hero-animate h1 {
    animation: heroTextIn 1.2s var(--ease-apple) forwards;
}

.hero-content .tagline,
.hero-content p,
.page-hero .hero-content p {
    animation: heroTextIn 1.2s 0.15s var(--ease-apple) forwards;
    opacity: 0;
}

.hero-content .hero-actions {
    animation: heroTextIn 1.2s 0.3s var(--ease-apple) forwards;
    opacity: 0;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translate3d(0, 48px, 0);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(36px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-accent), var(--nav-gold));
    border-radius: 3px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
}

.section-header.revealed h2::after {
    animation: lineGrow 0.7s var(--ease-apple) 0.2s forwards;
}

.cta-band.revealed {
    animation: fadeInUp 1s var(--ease-apple) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .apple-motion .apple-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }

    .section-header.revealed p,
    .card-with-photo.revealed h3,
    .card-with-photo.revealed p,
    .photo-gallery-item.revealed figcaption,
    .why-spizer-feature.revealed h3,
    .why-spizer-feature.revealed p,
    .site-footer.revealed .footer-grid > div,
    .logo img,
    .lang-switcher,
    .page-hero .hero-content {
        animation: none !important;
    }

    .hero-content {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-preview .sticky-visual {
        position: static;
    }
    .hero::before,
    .hero::after,
    .page-hero::before,
    .page-hero::after {
        animation: none;
    }

    .egg-tile {
        animation: none;
    }

    .egg-tile:hover img,
    .card-with-photo:hover .card-photo img,
    .photo-gallery-item:hover img,
    .value-item.has-photo:hover .value-item-photo img,
    .career-visual:hover img,
    .facility:hover img,
    .product-item:hover .product-image img,
    .about-preview .sticky-visual:hover img {
        transform: none;
    }

    .faq-item[open] .faq-answer {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }

    .site-nav,
    .hero-content h1,
    .hero-content .tagline,
    .hero-content p,
    .hero-content .hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .reveal,
    .reveal-header {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .card:hover,
    .product-item:hover,
    .logo:hover img {
        transform: none;
    }

    .btn::before {
        display: none;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --logo-height: var(--logo-height-mobile);
        --nav-height: var(--nav-height-mobile);
    }

    .site-nav {
        text-align: left;
    }

    .lang-switcher {
        margin-left: 0;
        margin-right: 0;
    }

    .fx-grid {
        grid-template-columns: 1fr;
    }

    .fx-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-preview,
    .contact-layout,
    .career-layout,
    .why-spizer-layout {
        grid-template-columns: 1fr;
    }

    .why-spizer-visual {
        order: -1;
    }

    .why-spizer-content {
        text-align: center;
    }

    .why-spizer-content > p {
        max-width: none;
    }

    .why-spizer-feature {
        text-align: left;
    }

    .why-spizer-content .btn {
        display: inline-block;
    }

    .egg-collage {
        width: min(100%, 320px);
        margin-bottom: 1rem;
    }

    .about-preview .sticky-visual {
        position: static;
    }

    .about-preview h2 {
        text-align: center;
    }

    .about-preview .btn {
        display: block;
        text-align: center;
    }

    .product-list {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .map-wrap iframe {
        height: 300px;
    }

    .map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .map-actions .btn {
        text-align: center;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .stats-panel-grid {
        grid-template-columns: 1fr;
    }

    .product-item h3,
    .product-item p {
        text-align: center;
    }
}
