/* ════════════════════════════════════════════
   BIOPLANT — Editoryal Agritech (ortak stiller)
   Krem kâğıt · Orman yeşili · Klorofil
   ════════════════════════════════════════════ */
:root {
    --paper:   #F5F2E9;
    --paper-2: #EDE9DC;
    --ink:     #14241A;
    --forest:  #1B4332;
    --forest-2:#2D6A4F;
    --leaf:    #80B918;
    --leaf-2:  #55A630;
    --sun:     #E9B44C;
    --line:    rgba(20, 36, 26, 0.14);
    --ring-ink: #1B4332;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Archivo", "Segoe UI", sans-serif;
}

/* ── Koyu tema değişkenleri ── */
html.dark {
    --paper:   #0F1A12;
    --paper-2: #15241A;
    --ink:     #EAE6D8;
    --forest:  #1B4332;
    --forest-2:#5BA87E;
    --leaf:    #8FC93A;
    --leaf-2:  #6FB52E;
    --line:    rgba(234, 230, 216, 0.16);
    --ring-ink:#A8CF8E;
}
html { background: var(--paper); overflow-x: hidden; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--leaf); color: var(--ink); }

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

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 560; letter-spacing: -0.015em; }
.italic-accent { font-style: italic; font-weight: 480; color: var(--forest-2); }

/* ── Tahıl dokusu (grain) ── */
body::after {
    content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: 0.05; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Scroll progress ── */
#scrollProgress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--leaf-2), var(--leaf));
    z-index: 1000; transition: width .08s linear;
}

/* ── Etiket / kicker ── */
.kicker {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--forest-2);
}
.kicker::before { content: ""; width: 2.2rem; height: 1px; background: var(--leaf-2); }

/* ── Header ── */
header.site {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245, 242, 233, 0.88);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
header.site.scrolled { box-shadow: 0 8px 30px rgba(20,36,26,.08); }
.topbar {
    display: flex; justify-content: flex-end; align-items: center; gap: .25rem;
    max-width: 1280px; margin: 0 auto; padding: .4rem 1.5rem;
    border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 600;
}
.topbar a { padding: .2rem .55rem; border-radius: 99px; color: rgba(20,36,26,.78); transition: all .25s; }
.topbar a:hover { color: var(--forest); background: rgba(128,185,24,.14); }
.topbar a.active { background: var(--forest); color: var(--paper); }
.navwrap {
    max-width: 1280px; margin: 0 auto; padding: .9rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo img { height: 44px; width: auto; }
nav.desktop { display: flex; gap: 2.2rem; align-items: center; }
nav.desktop a {
    font-size: .92rem; font-weight: 600; position: relative; padding: .25rem 0;
}
nav.desktop a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--leaf-2); transition: width .3s cubic-bezier(.22,1,.36,1);
}
nav.desktop a:hover::after, nav.desktop a.current::after { width: 100%; }
.nav-cta {
    background: var(--forest); color: var(--paper) !important; padding: .65rem 1.4rem;
    border-radius: 99px; font-size: .85rem; font-weight: 700;
    transition: transform .25s, background .25s; display: inline-block;
}
.nav-cta:hover { background: var(--forest-2); transform: translateY(-2px); }
.nav-cta::after { display: none; }
#menuToggle {
    display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
    width: 42px; height: 42px; cursor: pointer; color: var(--ink); font-size: 1.2rem;
}
#mobileMenu { display: none; border-top: 1px solid var(--line); padding: 1rem 1.5rem 1.4rem; }
#mobileMenu a { display: block; padding: .8rem .5rem; font-weight: 600; border-bottom: 1px solid var(--line); }

/* ── Butonlar ── */
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .95rem 1.8rem; border-radius: 99px; font-weight: 700; font-size: .95rem;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, background .25s;
    border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27,67,50,.3); }
.btn-ghost { border: 1.5px solid var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: var(--paper); transform: translateY(-3px); }
.btn svg { width: 1em; height: 1em; }

/* ── Ana sayfa hero ── */
.hero {
    position: relative; max-width: 1280px; margin: 0 auto;
    padding: 4.5rem 1.5rem 3rem;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
    min-height: calc(100vh - 110px);
}
.hero h1 {
    font-size: clamp(2.45rem, 5vw, 4.45rem);
    line-height: 1.04; margin: 1.4rem 0 1.6rem;
}
.hero p.lede { font-size: 1.12rem; color: rgba(20,36,26,.82); max-width: 30rem; margin-bottom: 2.2rem; }
.hero-visual { position: relative; }
.hero-arch {
    border-radius: 999px 999px 24px 24px;
    overflow: hidden; aspect-ratio: 4/5.1; position: relative;
    box-shadow: 0 30px 80px rgba(20,36,26,.25);
    background: var(--paper-2);
}
.hero-arch picture { display: block; width: 100%; height: 100%; }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-arch::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(27,67,50,.45));
}
.badge-spin {
    position: absolute; bottom: -2.2rem; left: -2.6rem; width: 138px; height: 138px;
    display: grid; place-items: center;
}
.badge-spin svg.ring { position: absolute; inset: 0; animation: spin 16s linear infinite; }
.badge-spin .core {
    width: 56px; height: 56px; background: var(--leaf); border-radius: 50%;
    display: grid; place-items: center; color: var(--ink); font-weight: 800;
    font-family: var(--font-display); font-size: 1rem; font-style: italic;
}
@keyframes spin { to { transform: rotate(360deg); } }
.float-card {
    position: absolute; top: 9%; right: -1.8rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
    padding: .9rem 1.2rem; box-shadow: 0 18px 40px rgba(20,36,26,.16);
    animation: floaty 5s ease-in-out infinite;
}
.float-card strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); display: block; line-height: 1.1; }
.float-card span { font-size: .74rem; font-weight: 700; color: rgba(20,36,26,.78); letter-spacing: .06em; text-transform: uppercase; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.deco-leaf { position: absolute; z-index: -1; opacity: .35; color: var(--leaf-2); }

/* ── İç sayfa hero ── */
.page-hero {
    position: relative; overflow: hidden;
    background: var(--forest); color: var(--paper);
}
.page-hero .inner {
    max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem 4rem;
    position: relative; z-index: 2;
}
.page-hero .kicker { color: var(--leaf); }
.page-hero .kicker::before { background: var(--leaf); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.06; margin: 1.2rem 0 1rem; max-width: 46rem; }
.page-hero h1 .italic-accent { color: var(--leaf); }
.page-hero p { color: rgba(245,242,233,.78); max-width: 36rem; font-size: 1.08rem; }
.page-hero::before {
    content: ""; position: absolute; right: -120px; top: -120px; width: 440px; height: 440px;
    border-radius: 50%; background: radial-gradient(circle, rgba(128,185,24,.28), transparent 70%);
}
.page-hero .hero-bg {
    position: absolute; inset: 0; opacity: .22;
    background-size: cover; background-position: center;
}
.page-hero .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--forest) 10%, transparent 70%);
    opacity: .85;
}

/* ── Marquee bandı ── */
.marquee {
    background: var(--forest); color: var(--paper);
    overflow: hidden; white-space: nowrap; padding: 1rem 0;
    transform: rotate(-1.2deg) scale(1.02); margin: 2.5rem 0;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: scroll-x 28s linear infinite; padding-right: 3rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
    display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✺"; color: var(--leaf); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ── Bölüm düzeni ── */
section.block { max-width: 1280px; margin: 0 auto; padding: 5.5rem 1.5rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.2rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.1; max-width: 34rem; }
.section-num { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: #3D7629; }

/* ── Sayaçlar ── */
.stats {
    background: var(--forest); color: var(--paper); border-radius: 28px;
    padding: 3.4rem 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative; overflow: hidden;
}
.stats::before {
    content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
    border-radius: 50%; background: radial-gradient(circle, rgba(128,185,24,.35), transparent 70%);
}
.stat { text-align: center; position: relative; }
.stat b {
    font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    display: block; line-height: 1; margin-bottom: .5rem; color: #DCE8D2;
}
.stat b .plus { color: var(--leaf); }
.stat span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,242,233,.65); font-weight: 600; }

/* ── Hizmet kartları ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pillar {
    position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 3/3.8;
    cursor: pointer; border: 1px solid var(--line); display: block;
}
.pillar img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s;
}
.pillar:hover img { transform: scale(1.07); }
.pillar .veil {
    position: absolute; inset: 0;
    background: linear-gradient(185deg, rgba(20,36,26,0) 35%, rgba(20,36,26,.88) 82%);
}
.pillar .body { position: absolute; inset: auto 0 0 0; padding: 1.6rem; color: var(--paper); z-index: 2; }
.pillar .body .tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--leaf); }
.pillar .body h3 { font-size: 1.55rem; margin: .45rem 0 .5rem; }
.pillar .body p {
    font-size: .88rem; color: rgba(245,242,233,.85);
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .45s .08s;
}
.pillar:hover .body p { max-height: 120px; opacity: 1; }
.pillar .arrow {
    position: absolute; top: 1.2rem; right: 1.2rem; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(245,242,233,.16); backdrop-filter: blur(6px);
    display: grid; place-items: center; color: var(--paper);
    transition: background .35s, transform .45s cubic-bezier(.22,1,.36,1);
}
.pillar:hover .arrow { background: var(--leaf); color: var(--ink); transform: rotate(45deg); }

/* ── Split (görsel+metin) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split .img-stack { position: relative; }
.split .img-stack .main-img {
    border-radius: 22px; overflow: hidden; aspect-ratio: 4/3.4;
    box-shadow: 0 28px 70px rgba(20,36,26,.2);
}
.split .img-stack .main-img img { width: 100%; height: 100%; object-fit: cover; }
.split .img-stack .over-img {
    position: absolute; bottom: -2.4rem; right: -1.6rem; width: 46%;
    border-radius: 18px; overflow: hidden; border: 6px solid var(--paper);
    box-shadow: 0 20px 50px rgba(20,36,26,.25); aspect-ratio: 1;
}
.split .img-stack .over-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 1.2rem 0 1.4rem; line-height: 1.12; }
.split p { color: rgba(20,36,26,.72); margin-bottom: 1rem; }
.checklist { margin: 1.6rem 0 2.2rem; display: grid; gap: .85rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.checklist li::before {
    content: "✓"; flex: 0 0 auto; width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background: rgba(128,185,24,.18); color: var(--leaf-2); font-weight: 800;
    display: grid; place-items: center; font-size: .8rem; margin-top: .15rem;
}

/* ── Video bölümü ── */
.video-feature {
    position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 21/9;
    min-height: 380px; display: grid; place-items: center;
}
.video-feature video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-feature .veil { position: absolute; inset: 0; background: rgba(20,36,26,.5); }
.video-feature .content { position: relative; z-index: 2; text-align: center; color: var(--paper); padding: 2rem; }
.video-feature h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 1rem; }
.video-feature p { color: rgba(245,242,233,.85); max-width: 34rem; margin: 0 auto 1.8rem; }

/* ── İhracat şeridi ── */
.export-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.export-band .inner {
    max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.export-band h3 { font-size: 1.5rem; font-style: italic; font-weight: 500; font-family: var(--font-display); }
.export-band h3 span { color: #3D7629 !important; }
.export-band .countries { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.export-band .countries span {
    font-weight: 700; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(20,36,26,.72); display: inline-flex; align-items: center; gap: .5rem;
}
.export-band .countries span::before { content: "●"; color: var(--leaf-2); font-size: .6rem; }

/* ── Sahadan kareler şeridi ── */
.field-strip {
    display: flex; gap: 1rem; overflow-x: auto; padding: .5rem .2rem 1.2rem;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.field-strip::-webkit-scrollbar { height: 6px; }
.field-strip::-webkit-scrollbar-thumb { background: var(--forest-2); border-radius: 99px; }
.field-strip::-webkit-scrollbar-track { background: rgba(20,36,26,.08); border-radius: 99px; }
.field-strip figure {
    flex: 0 0 auto; width: min(380px, 78vw); scroll-snap-align: start;
    border-radius: 18px; overflow: hidden; position: relative; aspect-ratio: 4/3;
}
.field-strip img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.field-strip figure:hover img { transform: scale(1.06); }
.field-strip figcaption {
    position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
    background: linear-gradient(transparent, rgba(20,36,26,.8));
    color: var(--paper); font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}

/* ── Sertifikalar ── */
.certs { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.certs img {
    height: 86px; width: auto; filter: grayscale(1) opacity(.55);
    transition: filter .4s, transform .4s;
}
.certs img:hover { filter: grayscale(0) opacity(1); transform: translateY(-6px) scale(1.06); }
.cert-tags { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.cert-tags span {
    border: 1px solid var(--line); border-radius: 99px; padding: .5rem 1.1rem;
    font-size: .82rem; font-weight: 600; color: rgba(20,36,26,.7); background: #fff;
}

/* ── CTA ── */
.cta-final {
    background: var(--forest); border-radius: 32px; padding: 5rem 2rem; text-align: center;
    color: var(--paper); position: relative; overflow: hidden;
}
.cta-final::before, .cta-final::after {
    content: ""; position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(128,185,24,.3), transparent 70%);
}
.cta-final::before { width: 400px; height: 400px; left: -150px; bottom: -200px; }
.cta-final::after { width: 300px; height: 300px; right: -100px; top: -150px; }
.cta-final h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); max-width: 38rem; margin: 0 auto 1.2rem; position: relative; z-index: 2; }
.cta-final p { color: rgba(245,242,233,.75); margin-bottom: 2.2rem; position: relative; z-index: 2; }
.cta-final .btn-row { justify-content: center; position: relative; z-index: 2; }
.cta-final .btn-primary { background: var(--leaf); color: var(--ink); }
.cta-final .btn-ghost { border-color: rgba(245,242,233,.4); color: var(--paper); }
.cta-final .btn-ghost:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

/* ── Ürün kartları ── */
.cat-filter { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.cat-filter button {
    border: 1px solid var(--line); background: #fff; color: rgba(20,36,26,.65);
    padding: .55rem 1.25rem; border-radius: 99px; font-size: .85rem; font-weight: 600;
    cursor: pointer; transition: all .25s; font-family: var(--font-body);
}
.cat-filter button:hover { border-color: var(--leaf-2); color: var(--forest); }
.cat-filter button.on { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.3rem; }
.prod-card {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
    display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(20,36,26,.14); }
.prod-card .ph { aspect-ratio: 1; overflow: hidden; background: var(--paper-2); }
.prod-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.prod-card:hover .ph img { transform: scale(1.06); }
.prod-card .pb { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.prod-card .pcat { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--leaf-2); }
.prod-card h3 { font-size: 1.18rem; }
.prod-card p { font-size: .85rem; color: rgba(20,36,26,.62); flex: 1; }
.prod-card .pmeta { font-size: .74rem; font-weight: 600; color: rgba(20,36,26,.5); border-top: 1px dashed var(--line); padding-top: .6rem; margin-top: .4rem; }

/* ── Galeri ── */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gal-grid a {
    position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; display: block;
}
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.gal-grid a:hover img { transform: scale(1.07); }
.gal-grid a figcaption, .gal-grid .cap {
    position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
    background: linear-gradient(transparent, rgba(20,36,26,.8));
    color: var(--paper); font-size: .78rem; font-weight: 600;
}
.gal-grid .vid-badge {
    position: absolute; top: .8rem; right: .8rem; width: 40px; height: 40px;
    border-radius: 50%; background: rgba(20,36,26,.55); backdrop-filter: blur(4px);
    display: grid; place-items: center; color: #fff; font-size: .9rem;
}
#lightbox {
    display: none; position: fixed; inset: 0; background: rgba(10,20,12,.94); z-index: 200;
    place-items: center; padding: 1.5rem;
}
#lightbox.open { display: grid; }
#lightbox img, #lightbox video { max-width: 92vw; max-height: 84vh; border-radius: 12px; }
#lightbox .lb-close {
    position: absolute; top: 1.2rem; right: 1.4rem; width: 44px; height: 44px; border-radius: 50%;
    background: var(--leaf); color: var(--ink); border: none; font-size: 1.2rem; font-weight: 800; cursor: pointer;
}

/* ── İletişim ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.info-card {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.5rem 1.6rem;
    display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1rem;
    transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateX(6px); box-shadow: 0 14px 36px rgba(20,36,26,.1); }
.info-card .ic {
    flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px;
    background: rgba(128,185,24,.16); color: var(--forest-2);
    display: grid; place-items: center; font-size: 1.3rem;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.info-card p, .info-card a.val { font-size: .92rem; color: rgba(20,36,26,.65); display: block; }
.info-card a.val:hover { color: var(--forest-2); }
.form-card {
    background: var(--forest); color: var(--paper); border-radius: 26px; padding: 2.6rem;
    position: relative; overflow: hidden;
}
.form-card::before {
    content: ""; position: absolute; right: -90px; bottom: -90px; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(128,185,24,.3), transparent 70%);
}
.form-card h2 { font-size: 1.9rem; margin-bottom: .5rem; position: relative; z-index: 2; }
.form-card > p { color: rgba(245,242,233,.7); margin-bottom: 1.8rem; font-size: .95rem; position: relative; z-index: 2; }
.form-card form { display: grid; gap: 1rem; position: relative; z-index: 2; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card label { display: grid; gap: .35rem; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(245,242,233,.75); }
.form-card input, .form-card textarea, .form-card select {
    background: rgba(245,242,233,.08); border: 1px solid rgba(245,242,233,.22); border-radius: 12px;
    padding: .85rem 1rem; color: var(--paper); font-family: var(--font-body); font-size: .95rem;
    transition: border .25s, background .25s; width: 100%;
}
.form-card select option { color: var(--ink); }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
    outline: none; border-color: var(--leaf); background: rgba(245,242,233,.13);
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card .btn-primary { background: var(--leaf); color: var(--ink); justify-content: center; }
.form-status { font-size: .9rem; font-weight: 600; min-height: 1.4em; }
.map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); margin-top: 4rem; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ── Zaman çizelgesi (hakkımızda) ── */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.2rem; }
.timeline::before {
    content: ""; position: absolute; left: .5rem; top: .4rem; bottom: .4rem; width: 2px;
    background: linear-gradient(var(--leaf-2), var(--forest));
}
.timeline .ti { position: relative; padding-bottom: 2.4rem; }
.timeline .ti::before {
    content: ""; position: absolute; left: -2.2rem; top: .35rem; width: 14px; height: 14px;
    border-radius: 50%; background: var(--leaf); border: 3px solid var(--paper);
    box-shadow: 0 0 0 2px var(--leaf-2);
}
.timeline .ti b { font-family: var(--font-display); font-style: italic; color: var(--forest-2); font-size: 1.05rem; }
.timeline .ti h3 { font-size: 1.3rem; margin: .2rem 0 .35rem; }
.timeline .ti p { color: rgba(20,36,26,.68); font-size: .95rem; }

/* ── Footer ── */
footer.site { background: var(--ink); color: rgba(245,242,233,.78); margin-top: 5.5rem; }
.foot-inner {
    max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 2rem;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
}
.foot-inner .foot-title { color: var(--paper); font-family: var(--font-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 800; }
.foot-inner a { display: block; padding: .28rem 0; font-size: .95rem; transition: color .25s, transform .25s; }
.foot-inner a:hover { color: var(--leaf); transform: translateX(4px); }
.foot-brand img { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
.foot-brand p { font-size: .92rem; max-width: 24rem; color: rgba(245,242,233,.6); }
.foot-bottom {
    border-top: 1px solid rgba(245,242,233,.12); padding: 1.4rem 1.5rem;
    max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem;
    font-size: .8rem; color: rgba(245,242,233,.72); flex-wrap: wrap;
}

/* ── WhatsApp ── */
.wa-fab {
    position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
    display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.wa-fab:hover { transform: scale(1.12) rotate(8deg); }
.wa-fab svg { width: 30px; height: 30px; }

/* ── Scroll reveal ── */
.rv, .rv-left, .rv-right, .rv-scale { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.rv.on, .rv-left.on, .rv-right.on, .rv-scale.on { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * .1s); }

/* ── Hero giriş animasyonu ── */
@keyframes riseIn { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
.ani { opacity: 1; animation: riseIn .65s cubic-bezier(.16,1,.3,1) both; }
.ani:nth-child(1), .ani.d1 { animation-delay: .1s; }
.ani:nth-child(2), .ani.d2 { animation-delay: .25s; }
.ani:nth-child(3), .ani.d3 { animation-delay: .4s; }
.ani:nth-child(4), .ani.d4 { animation-delay: .55s; }
.hero-visual { opacity: 1; animation: riseIn .75s cubic-bezier(.16,1,.3,1) .15s both; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Tema değiştirici buton ── */
.theme-toggle {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--line); background: transparent; color: var(--ink);
    cursor: pointer; display: grid; place-items: center; margin-left: .5rem;
    transition: transform .45s cubic-bezier(.22,1,.36,1), background .25s, color .25s;
    flex: 0 0 auto;
}
.theme-toggle:hover { background: rgba(128,185,24,.16); transform: rotate(45deg) scale(1.08); }
.theme-toggle svg { width: 16px; height: 16px; display: block; }

/* ── Koyu tema geçersiz kılmaları ── */
html.dark header.site { background: rgba(15, 26, 18, 0.88); }
html.dark .logo img,
html.dark .foot-brand img { filter: brightness(0) invert(1); opacity: .92; }
html.dark .topbar a { color: rgba(234,230,216,.78); }
html.dark .topbar a:hover { color: var(--leaf); }
html.dark .topbar a.active { background: var(--leaf); color: #0F1A12; }
html.dark .nav-cta { background: var(--leaf); color: #0F1A12 !important; }
html.dark .nav-cta:hover { background: var(--leaf-2); }
html.dark .btn-primary { background: var(--leaf); color: #0F1A12; }
html.dark .btn-primary:hover { box-shadow: 0 14px 30px rgba(143,201,58,.25); }
html.dark .btn-ghost { border-color: var(--leaf); color: var(--leaf); }
html.dark .btn-ghost:hover { background: var(--leaf); color: #0F1A12; }
html.dark .hero p.lede,
html.dark .split p,
html.dark .timeline .ti p,
html.dark .muted { color: rgba(234,230,216,.72); }
html.dark .float-card span { color: rgba(234,230,216,.6); }
html.dark .float-card strong { color: var(--leaf); }
html.dark .export-band .countries span { color: rgba(234,230,216,.55); }
html.dark .cert-tags span,
html.dark .cat-filter button,
html.dark .prod-card,
html.dark .info-card { background: var(--paper-2); color: rgba(234,230,216,.85); }
html.dark .cat-filter button { color: rgba(234,230,216,.65); }
html.dark .cat-filter button.on { background: var(--leaf); border-color: var(--leaf); color: #0F1A12; }
html.dark .prod-card .ph { background: #0B130D; }
html.dark .prod-card p { color: rgba(234,230,216,.6); }
html.dark .prod-card .pmeta { color: rgba(234,230,216,.45); }
html.dark .info-card p,
html.dark .info-card a.val { color: rgba(234,230,216,.65); }
html.dark .info-card .ic { background: rgba(143,201,58,.14); color: var(--leaf); }
html.dark .stats, html.dark .cta-final, html.dark .form-card, html.dark .page-hero, html.dark .marquee { box-shadow: inset 0 0 0 1px rgba(234,230,216,.07); }
html.dark .stat b { color: #CFE3C0; }
html.dark footer.site { background: #0A120C; }
html.dark .map-wrap iframe { filter: invert(.88) hue-rotate(180deg) saturate(.75) brightness(.95); }
html.dark .field-strip::-webkit-scrollbar-track { background: rgba(234,230,216,.08); }
html.dark .form-card input, html.dark .form-card textarea, html.dark .form-card select { background: rgba(15,26,18,.45); }
html.dark ::selection { background: var(--leaf); color: #0F1A12; }
/* Her iki temada da koyu kalan yüzeylerde yazı sabit krem kalmalı */
html.dark .page-hero,
html.dark .pillar .body,
html.dark .video-feature .content,
html.dark .cta-final,
html.dark .form-card,
html.dark .marquee,
html.dark .field-strip figcaption,
html.dark .gal-grid .cap,
html.dark .gal-grid figcaption,
html.dark .foot-inner .foot-title,
html.dark .stats { color: #F5F2E9; }
html.dark .badge-spin .core,
html.dark #lightbox .lb-close { color: #0F1A12; }

/* ── Tema geçiş animasyonu ── */
html.theme-anim *, html.theme-anim *::before, html.theme-anim *::after {
    transition: background-color .55s ease, color .45s ease, border-color .45s ease, fill .45s ease, filter .45s ease !important;
}
::view-transition-old(root), ::view-transition-new(root) { animation: none; mix-blend-mode: normal; }

/* ── Responsive ── */
@media (max-width: 960px) {
    body { max-width: 100vw; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; overflow: hidden; }
    .hero > *, .hero-visual { min-width: 0; }
    .hero-visual { width: min(100%, 420px); margin: 0 auto; }
    .deco-leaf { display: none; }
    .marquee { transform: none; width: 100%; max-width: 100vw; margin: 1.5rem 0; contain: layout paint; }
    .marquee-track { animation: none; transform: none !important; }
    .field-strip { max-width: calc(100vw - 3rem); contain: layout paint; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { aspect-ratio: 4/3; }
    .split { grid-template-columns: 1fr; gap: 3rem; }
    .split .img-stack .over-img { right: .6rem; }
    .video-feature { width: 100%; min-height: 0; aspect-ratio: 4/5; }
    .video-feature .content { width: 100%; max-width: calc(100vw - 4rem); padding: 0 1rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .foot-inner { grid-template-columns: 1fr; gap: 2rem; }
    nav.desktop { display: none; }
    #menuToggle { display: block; }
    .badge-spin { left: .3rem; width: 104px; height: 104px; }
    .float-card { right: .3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
