/* =========================================================
   NBSA Sağlık — site.css
   Tema: taze & hijyenik — zümrüt/turkuaz degrade, beyaz zemin
   ========================================================= */

/* ---------- Değişkenler ---------- */
:root {
    --em: #0e9f6e;
    --teal: #0694a2;
    --em-dark: #057a55;
    --mint: #ecfdf5;
    --mint-2: #f0fdfa;
    --ink: #0f172a;
    --ink-soft: #475569;
    --ink-mute: #64748b;
    --line: #e2e8f0;
    --white: #ffffff;
    --grad: linear-gradient(135deg, var(--em), var(--teal));
    --grad-soft: linear-gradient(135deg, rgba(14, 159, 110, .12), rgba(6, 148, 162, .12));
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
    --shadow-brand: 0 14px 34px rgba(14, 159, 110, .32);
    --r-lg: 1rem;
    --r-xl: 1.25rem;
    --r-2xl: 1.5rem;
    --nav-h: 84px;
    --nav-h-small: 64px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
    position: fixed; top: -60px; left: 16px; z-index: 999;
    background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: .6rem;
    transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

::selection { background: rgba(14, 159, 110, .25); }

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradShimmer 4s ease-in-out infinite alternate;
}
@keyframes gradShimmer { to { background-position: 100% center; } }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-weight: 700; font-size: .95rem; line-height: 1;
    padding: .95rem 1.6rem; border-radius: 999px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
    will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(14, 159, 110, .28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-brand); }

.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .35) 50%, transparent 75%);
    background-size: 250% 100%; background-position: 120% 0;
    transition: background-position .8s var(--ease);
}
.btn-glow:hover::after { background-position: -120% 0; }

.btn-outline { border: 2px solid var(--em); color: var(--em-dark); background: transparent; }
.btn-outline:hover { background: var(--mint); transform: translateY(-3px); }

.btn-light { background: #fff; color: var(--em-dark); box-shadow: 0 8px 22px rgba(2, 44, 34, .25); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(2, 44, 34, .35); }

.btn-ghost { border: 2px solid rgba(255, 255, 255, .55); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-3px); }

.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .65rem 1.15rem; font-size: .85rem; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    height: var(--nav-h);
    transition: height .35s var(--ease);
}
.navbar.scrolled { background: rgba(255, 255, 255, .88); border-color: var(--line); box-shadow: var(--shadow-sm); }
.navbar.scrolled .navbar-inner { height: var(--nav-h-small); }

.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; flex: none; transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-light { color: #fff; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-link {
    position: relative; padding: .55rem .85rem; font-weight: 600; font-size: .95rem;
    color: var(--ink-soft); border-radius: .7rem; transition: color .25s, background .25s;
}
.nav-link::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .25rem; height: 2.5px;
    border-radius: 2px; background: var(--grad);
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--em-dark); }
.nav-cta { margin-left: .75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: .6rem; border-radius: .6rem; z-index: 110; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: 0; left: 0; z-index: 105;
        flex-direction: column; align-items: stretch; gap: .3rem;
        padding: calc(var(--nav-h) + .5rem) 1.25rem 1.5rem;
        background: rgba(255, 255, 255, .96);
        -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
        transform: translateY(-110%); opacity: 0; visibility: hidden;
        transition: transform .45s var(--ease), opacity .35s var(--ease), visibility 0s .45s;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; transition-delay: 0s; }
    .nav-link { padding: .85rem 1rem; font-size: 1.05rem; }
    .nav-link::after { display: none; }
    .nav-link.active { background: var(--mint); }
    .nav-cta { margin: .5rem 0 0; justify-content: center; }
}

/* ---------- Sayfa yükleme animasyonu ---------- */
.load-fade { opacity: 0; transform: translateY(24px); animation: loadFade .9s var(--ease) forwards; animation-delay: var(--ld, 0s); }
@keyframes loadFade { to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    padding: calc(var(--nav-h) + 4.5rem) 0 5.5rem;
    background: linear-gradient(180deg, var(--mint-2), #fff 85%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
    position: absolute; border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    filter: blur(50px); opacity: .55;
    animation: blobMorph 16s ease-in-out infinite alternate, blobDrift 26s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(14, 159, 110, .35), rgba(6, 148, 162, .18)); }
.blob-2 { width: 420px; height: 420px; bottom: -180px; left: -140px; background: radial-gradient(circle at 70% 40%, rgba(6, 148, 162, .3), rgba(14, 159, 110, .14)); animation-delay: -6s; }
.blob-3 { width: 280px; height: 280px; top: 35%; left: 42%; background: radial-gradient(circle at 50% 50%, rgba(14, 159, 110, .18), transparent 70%); animation-delay: -11s; }

@keyframes blobMorph {
    0%   { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
    50%  { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
    100% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}
@keyframes blobDrift {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(40px, -30px) rotate(25deg) scale(1.12); }
}

.hero-grid-pattern {
    position: absolute; inset: 0; opacity: .5;
    background-image:
        linear-gradient(rgba(14, 159, 110, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 159, 110, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 75%);
}

.hero-inner {
    position: relative; display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 3rem; align-items: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .55rem;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: .5rem 1.05rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--em); position: relative; flex: none; }
.pulse-dot::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    background: rgba(14, 159, 110, .35); animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.hero-title { font-size: clamp(2.3rem, 5vw, 3.7rem); margin: 1.3rem 0 1.1rem; }
.hero-title .w { display: inline-block; opacity: 0; transform: translateY(26px) rotate(2deg); animation: wordUp .7s var(--ease) forwards; animation-delay: var(--wd, 0s); }
@keyframes wordUp { to { opacity: 1; transform: none; } }

.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 34rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.8rem; font-size: .9rem; font-weight: 600; color: var(--em-dark); }

/* Hero görseli */
.hero-visual { position: relative; min-height: 420px; }
.hero-orb {
    position: absolute; inset: 0; margin: auto; width: min(340px, 80%);
    animation: floatY 7s ease-in-out infinite;
}
.float-card {
    position: absolute; display: flex; align-items: center; gap: .55rem;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: .7rem 1rem; font-weight: 700; font-size: .9rem;
    box-shadow: var(--shadow-md);
    animation: floatY 6s ease-in-out infinite;
}
.fc-icon { width: 26px; height: 26px; color: var(--em); flex: none; }
.fc-1 { top: 4%; left: 4%; animation-delay: -.5s; }
.fc-2 { top: 22%; right: 0; animation-delay: -1.8s; }
.fc-3 { bottom: 30%; left: 0; animation-delay: -3.1s; }
.fc-4 { bottom: 6%; right: 8%; animation-delay: -4.4s; }
.fc-5 { top: 55%; right: -2%; animation-delay: -2.4s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-scroll-hint {
    position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
    width: 26px; height: 42px; border: 2px solid rgba(15, 23, 42, .25); border-radius: 999px;
}
.hero-scroll-hint span {
    position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
    border-radius: 4px; background: var(--em); animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { min-height: 340px; }
    .hero-scroll-hint { display: none; }
}

/* ---------- Sayfa hero (alt sayfalar) ---------- */
.page-hero {
    position: relative; overflow: hidden; text-align: center;
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
    background: linear-gradient(180deg, var(--mint-2), #fff);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 1.1rem 0 .8rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 40rem; margin-inline: auto; }
.page-hero .container { position: relative; }

/* ---------- Marquee ---------- */
.marquee-strip { background: var(--grad); padding: .95rem 0; overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; }
.marquee-item { color: #fff; font-weight: 700; font-size: .95rem; white-space: nowrap; padding: 0 1.1rem; }
.marquee-dot { color: rgba(255, 255, 255, .55); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bölümler ---------- */
.section { padding: 5.5rem 0; }
.section-mint { background: linear-gradient(180deg, var(--mint-2), var(--mint)); }

.section-head { text-align: center; max-width: 46rem; margin: 0 auto 3.2rem; }
.section-head h2, .about-copy h2, .contact-form-wrap h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: .8rem 0; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--em-dark);
    background: var(--grad-soft); border-radius: 999px; padding: .4rem 1rem;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--rd, 0s); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(.92); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Kategori kartları ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.cat-card {
    position: relative; background: #fff; border-radius: var(--r-2xl);
    padding: 2.1rem 1.8rem; border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cat-card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--sweep, 0deg), var(--em), var(--teal), transparent 32%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .4s;
}
.cat-card:hover::before { opacity: 1; animation: borderSweep 2.4s linear infinite; }
@property --sweep { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes borderSweep { to { --sweep: 360deg; } }

.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.cat-icon {
    display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1.2rem;
    border-radius: var(--r-xl); background: var(--grad-soft); color: var(--em-dark);
    transition: background .35s, color .35s;
}
.cat-icon svg { width: 36px; height: 36px; }
.cat-card:hover .cat-icon { background: var(--grad); color: #fff; }
.cat-card:hover .cat-icon svg { animation: wiggle .6s var(--ease); }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-9deg) scale(1.08); } 65% { transform: rotate(7deg); } }

.cat-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.cat-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; }
.cat-more { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; color: var(--em-dark); }
.cat-more svg { transition: transform .3s var(--ease); }
.cat-card:hover .cat-more svg { transform: translateX(5px); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- İstatistikler ---------- */
.stats-band { position: relative; background: var(--grad); padding: 4rem 0; overflow: hidden; }
.stats-band::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .16) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { display: block; font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat-label { display: block; margin-top: .3rem; color: rgba(255, 255, 255, .85); font-weight: 600; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Hakkımızda özeti ---------- */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-shape { animation: floatY 8s ease-in-out infinite; }
.about-chip {
    position: absolute; background: #fff; border: 1px solid var(--line);
    border-radius: 999px; padding: .6rem 1.1rem; font-weight: 700; font-size: .9rem;
    box-shadow: var(--shadow-md); animation: floatY 6s ease-in-out infinite;
}
.chip-a { top: 8%; left: -2%; animation-delay: -2s; }
.chip-b { bottom: 10%; right: 0; animation-delay: -4s; }

.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-copy .btn { margin-top: 1.4rem; }

.check-list { margin: 1.2rem 0 .4rem; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 2rem; font-weight: 600; color: var(--ink); }
.check-list li::before {
    content: ""; position: absolute; left: 0; top: .18rem; width: 20px; height: 20px;
    border-radius: 50%; background: var(--grad);
}
.check-list li::after {
    content: ""; position: absolute; left: 5px; top: .48rem; width: 10px; height: 6px;
    border-left: 2.4px solid #fff; border-bottom: 2.4px solid #fff; transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { max-width: 420px; margin-inline: auto; order: -1; }
}

/* ---------- Süreç ---------- */
.process { position: relative; }
.process-line {
    position: absolute; top: 46px; left: 9%; right: 9%; height: 3px;
    background: rgba(14, 159, 110, .16); border-radius: 3px; overflow: hidden;
}
.process-line-fill {
    display: block; height: 100%; width: 100%; background: var(--grad);
    transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease) .3s;
}
.process.line-visible .process-line-fill { transform: scaleX(1); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { position: relative; text-align: center; padding: 0 .6rem; }
.step-icon {
    position: relative; z-index: 1; display: grid; place-items: center;
    width: 92px; height: 92px; margin: 0 auto 1.1rem;
    background: #fff; border: 2px solid rgba(14, 159, 110, .25); border-radius: 50%;
    color: var(--em-dark); box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.step-icon svg { width: 42px; height: 42px; }
.process-step:hover .step-icon { transform: translateY(-6px) scale(1.05); border-color: var(--em); box-shadow: var(--shadow-brand); }
.step-no { display: block; font-size: .8rem; font-weight: 800; letter-spacing: .15em; color: var(--em); margin-bottom: .25rem; }
.process-step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.process-step p { color: var(--ink-soft); font-size: .92rem; }

@media (max-width: 900px) {
    .process-line { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
}
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Neden NBSA ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl);
    padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.why-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(14, 159, 110, .35); }
.why-icon {
    display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 1.1rem;
    border-radius: var(--r-lg); background: var(--grad-soft); color: var(--em-dark);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card:hover .why-icon svg { animation: wiggle .6s var(--ease); }
.why-card h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.why-card p { color: var(--ink-soft); font-size: .94rem; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-section { padding-top: 1rem; }
.cta-band {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    border-radius: 2rem; padding: 4.2rem 2rem;
    background: linear-gradient(120deg, var(--em-dark), var(--em), var(--teal), var(--em-dark));
    background-size: 300% 300%; animation: ctaGrad 10s ease-in-out infinite;
    box-shadow: var(--shadow-brand);
}
@keyframes ctaGrad { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); max-width: 34rem; margin: 0 auto .8rem; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 32rem; margin: 0 auto 1.8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta-blob {
    position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .12);
    filter: blur(6px); animation: floatY 9s ease-in-out infinite;
}
.cta-blob-1 { width: 220px; height: 220px; top: -90px; left: -60px; }
.cta-blob-2 { width: 300px; height: 300px; bottom: -140px; right: -80px; animation-delay: -4s; }

/* ---------- Filtre + ürünler ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.8rem; }
.chip {
    padding: .6rem 1.25rem; border-radius: 999px; font-weight: 700; font-size: .9rem;
    background: #fff; border: 1.5px solid var(--line); color: var(--ink-soft);
    transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--em); color: var(--em-dark); transform: translateY(-2px); }
.chip.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(14, 159, 110, .3); }

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

.product-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .4s var(--ease);
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-card.filter-hide { display: none; }
.product-card.filter-in { animation: filterIn .5s var(--ease) both; }
@keyframes filterIn { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }

.product-visual {
    position: relative; display: grid; place-items: center; height: 150px;
    background: linear-gradient(135deg, var(--mint), var(--mint-2));
}
.product-icon { width: 72px; height: 72px; color: var(--em-dark); transition: transform .45s var(--ease); }
.product-card:hover .product-icon { transform: scale(1.12) rotate(-4deg); }
.product-tag {
    position: absolute; top: .9rem; right: .9rem;
    background: #fff; border-radius: 999px; padding: .28rem .75rem;
    font-size: .74rem; font-weight: 700; color: var(--em-dark); box-shadow: var(--shadow-sm);
}
.product-body { padding: 1.4rem 1.5rem 1.6rem; }
.product-cat { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.product-body h3 { font-size: 1.1rem; margin: .35rem 0 .45rem; }
.product-body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; }
.product-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; color: var(--em-dark); }
.product-link svg { transition: transform .3s var(--ease); }
.product-link:hover svg { transform: translateX(5px); }

.filter-empty { text-align: center; color: var(--ink-mute); font-weight: 600; padding: 2rem 0; }

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Misyon / vizyon ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
    background: #fff; border-radius: var(--r-2xl); border: 1px solid var(--line);
    padding: 2.4rem 2.1rem; box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon {
    display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1.2rem;
    border-radius: var(--r-xl); background: var(--grad); color: #fff; box-shadow: var(--shadow-brand);
}
.mv-icon svg { width: 34px; height: 34px; }
.mv-card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.mv-card p { color: var(--ink-soft); }
@media (max-width: 800px) { .mv-grid { grid-template-columns: 1fr; } }

/* ---------- Zaman çizelgesi ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before {
    content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 3px;
    border-radius: 3px; background: linear-gradient(180deg, var(--em), var(--teal));
    opacity: .35;
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.tl-dot {
    position: absolute; left: -2.4rem; top: 1.4rem; width: 23px; height: 23px;
    border-radius: 50%; background: var(--grad); border: 5px solid #fff;
    box-shadow: 0 0 0 3px rgba(14, 159, 110, .25);
}
.tl-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
    padding: 1.5rem 1.7rem; box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-year { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--em-dark); background: var(--grad-soft); border-radius: 999px; padding: .3rem .85rem; margin-bottom: .55rem; }
.tl-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.tl-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- İletişim ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.contact-card {
    display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl);
    padding: 1.9rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.contact-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(14, 159, 110, .4); }
.cc-icon {
    display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem;
    border-radius: 50%; background: var(--grad-soft); color: var(--em-dark);
    transition: background .35s, color .35s;
}
.cc-icon svg { width: 30px; height: 30px; }
.contact-card:hover .cc-icon { background: var(--grad); color: #fff; }
.contact-card:hover .cc-icon svg { animation: wiggle .6s var(--ease); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.contact-card p { color: var(--ink-soft); font-size: .93rem; }
.cc-hint { display: inline-block; margin-top: .8rem; font-size: .85rem; font-weight: 700; color: var(--em-dark); }
@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: stretch; }
.form-intro { color: var(--ink-soft); margin-bottom: 1.6rem; }

.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field { position: relative; }
.form-field input, .form-field textarea {
    width: 100%; font: inherit; color: var(--ink);
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
    padding: 1.15rem 1.15rem .65rem; outline: none; resize: vertical;
    transition: border-color .3s, box-shadow .3s;
}
.form-field label {
    position: absolute; left: 1.15rem; top: .95rem; color: var(--ink-mute);
    font-size: .98rem; pointer-events: none; transform-origin: left top;
    transition: transform .25s var(--ease), color .25s;
}
.form-field input:focus, .form-field textarea:focus {
    border-color: var(--em); box-shadow: 0 0 0 4px rgba(14, 159, 110, .14);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-.55rem) scale(.74); color: var(--em-dark); font-weight: 700;
}
.form-submit { justify-content: center; }

/* Form başarı durumu */
.contact-form.sending { opacity: .5; pointer-events: none; transition: opacity .3s; }
.form-success { text-align: center; padding: 2.4rem 1rem; animation: filterIn .6s var(--ease); }
.form-success h3 { font-size: 1.5rem; margin: 1.1rem 0 .5rem; }
.form-success p { color: var(--ink-soft); max-width: 26rem; margin: 0 auto 1.4rem; }
.form-success p a { color: var(--em-dark); font-weight: 700; }
.success-ring { display: inline-block; width: 88px; height: 88px; color: var(--em); }
.sr-circle { stroke-dasharray: 176; stroke-dashoffset: 176; animation: draw 1s var(--ease) forwards .1s; }
.sr-check { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .6s var(--ease) forwards .8s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.contact-map {
    min-height: 420px; border-radius: var(--r-2xl); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

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

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--ink); color: #cbd5e1; padding: 4.5rem 0 2rem; margin-top: 4rem; }
.footer-wave { position: absolute; left: 0; right: 0; top: -54px; height: 55px; color: var(--ink); }
.footer-wave svg { width: 100%; height: 100%; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col ul a { color: #94a3b8; font-size: .93rem; transition: color .25s, padding-left .25s; }
.footer-col ul a:hover { color: #34d399; padding-left: 5px; }
.footer-about { margin: 1.1rem 0 1.3rem; font-size: .93rem; color: #94a3b8; max-width: 21rem; }

.socials { display: flex; gap: .6rem; }
.socials a {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: .8rem;
    background: rgba(255, 255, 255, .07); color: #cbd5e1;
    transition: background .3s, color .3s, transform .3s var(--ease);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--grad); color: #fff; transform: translateY(-4px); }

.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: #94a3b8; }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: #34d399; }
.fc-ico { width: 19px; height: 19px; flex: none; margin-top: .18rem; color: #34d399; }
.fc-ico svg { width: 100%; height: 100%; }

.footer-bottom {
    margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
    font-size: .82rem; color: #64748b;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: flex-start; } }

/* ---------- Başa dön ---------- */
.back-to-top {
    position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
    width: 50px; height: 50px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad); color: #fff; box-shadow: var(--shadow-brand);
    opacity: 0; visibility: hidden; transform: translateY(16px) scale(.85);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
}
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Azaltılmış hareket ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }
    .load-fade, .hero-title .w, .reveal { opacity: 1 !important; transform: none !important; }
    .marquee { animation: none; }
}
