/* ==========================================================================
   OLYMPOS FİDE — Kurumsal Tasarım Sistemi
   Premium tarım / fide üretim teması · Vanilla CSS · Harici bağımlılık yok
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Kurumsal yeşiller */
  --green-900: #0f2e1d;   /* en koyu kurumsal */
  --green-800: #16442a;
  --green-700: #1c5637;   /* kurumsal koyu yeşil */
  --green-600: #227a45;
  --green-500: #2e9e57;   /* canlı bitki yeşili */
  --green-400: #4cb872;
  --green-300: #8fd6a5;
  --green-200: #c7ecd2;
  --green-100: #e6f6ec;   /* açık yeşil ton */
  --green-50:  #f3faf5;

  /* Toprak tonları */
  --earth-700: #5b4327;
  --earth-500: #8a6b3f;
  --earth-300: #c9ad83;
  --earth-100: #f0e7d8;

  /* Kontrollü sarı vurgu */
  --accent:      #f4b52f;
  --accent-dark: #d99512;

  /* Nötr */
  --ink:      #16261d;   /* ana metin */
  --ink-soft: #47584f;   /* ikincil metin */
  --line:     #e4ebe6;   /* çizgi/kenar */
  --white:    #ffffff;
  --bg:       #ffffff;
  --bg-soft:  #f5f9f6;

  /* Gölge */
  --shadow-sm: 0 1px 2px rgba(15,46,29,.06), 0 1px 3px rgba(15,46,29,.05);
  --shadow:    0 6px 18px rgba(15,46,29,.08), 0 2px 6px rgba(15,46,29,.05);
  --shadow-lg: 0 20px 45px rgba(15,46,29,.14), 0 8px 18px rgba(15,46,29,.08);

  /* Ölçü */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --container: 1200px;
  --gutter:    clamp(1.1rem, 4vw, 2rem);

  /* Tipografi */
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-head: "Segoe UI Semibold", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --header-h: 78px;
  --topbar-h: 40px;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-500); }
ul, ol { padding-left: 1.2rem; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--green-700); color: #fff; padding: 10px 18px; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--green-900); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--ink-soft); }
p + p { margin-top: 1rem; }
strong { color: var(--ink); font-weight: 700; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- 4. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1400px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--soft { background: var(--bg-soft); }
.section--green { background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #dfeee5; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: #bcd7c6; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--green .eyebrow { color: var(--accent); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { text-align: center; }
.section-head p { margin-top: .8rem; font-size: 1.12rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--green-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: .85rem 1.5rem; border: 2px solid transparent; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; line-height: 1;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); background: var(--green-700); }
.btn--accent { --btn-bg: var(--accent); --btn-fg: #40320a; }
.btn--accent:hover { background: var(--accent-dark); color: #40320a; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--green-700); border-color: var(--green-200); box-shadow: none; }
.btn--ghost:hover { background: var(--green-100); color: var(--green-800); border-color: var(--green-300); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--green-800); }
.btn--light:hover { background: var(--green-50); color: var(--green-900); }
.btn--wa { --btn-bg: #25a35a; --btn-fg: #fff; }
.btn--wa:hover { background: #1e8b4b; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- 6. Top bar ---------- */
.topbar {
  background: var(--green-900); color: #cfe3d6; font-size: .86rem;
  height: var(--topbar-h); display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: #cfe3d6; }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; align-items: center; gap: 1.4rem; min-width: 0; }
.topbar__info span, .topbar__info a { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar__social { display: flex; align-items: center; gap: .9rem; }
.topbar__social a { display: inline-flex; }
.topbar__social svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .topbar__info span.hide-sm, .topbar { display: none; } }

/* ---------- 7. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease, background .25s ease;
}
.header.is-stuck { box-shadow: var(--shadow); background: rgba(255,255,255,.97); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__txt { font-family: var(--font-head); font-weight: 700; color: var(--green-800); font-size: 1.15rem; line-height: 1.05; }
.brand__txt small { display: block; font-size: .68rem; letter-spacing: .18em; color: var(--green-500); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav > ul { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav li { position: relative; }
.nav a.nav__link {
  display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .85rem; border-radius: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .97rem; color: var(--green-900);
}
.nav a.nav__link:hover, .nav li.is-open > a.nav__link { background: var(--green-100); color: var(--green-800); }
.nav a.nav__link[aria-current="page"] { color: var(--green-600); }
.nav a.nav__link[aria-current="page"]::after { content:""; }
.nav .caret { width: 14px; height: 14px; transition: transform .2s ease; }
.nav li.is-open .caret { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; z-index: 20;
}
.nav li.is-open > .submenu, .nav li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: .6rem .8rem; border-radius: 9px; font-size: .93rem; font-weight: 600; color: var(--green-900); }
.submenu a:hover { background: var(--green-100); color: var(--green-700); }

.header__actions { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.header__actions .btn { padding: .6rem 1rem; font-size: .9rem; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 12px; background: var(--green-100); color: var(--green-700); border: none;
}
.icon-btn:hover { background: var(--green-200); }
.icon-btn svg { width: 20px; height: 20px; }

.hamburger { display: none; }
@media (max-width: 1080px) {
  .nav, .header__actions .btn.hide-md { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 1200; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(15,38,29,.5); opacity: 0; transition: opacity .3s ease; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; width: min(360px, 88vw); height: 100%;
  background: #fff; box-shadow: var(--shadow-lg); padding: 1.2rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer nav ul { list-style: none; padding: 0; margin: 0; }
.drawer nav > ul > li { border-bottom: 1px solid var(--line); }
.drawer nav a { display: block; padding: .85rem .4rem; font-family: var(--font-head); font-weight: 600; color: var(--green-900); }
.drawer .submenu-m { list-style: none; padding: 0 0 .4rem .8rem; margin: 0; }
.drawer .submenu-m a { padding: .5rem .4rem; font-weight: 600; color: var(--ink-soft); font-size: .93rem; }
.drawer__cta { margin-top: auto; display: grid; gap: .6rem; padding-top: 1.2rem; }
.drawer__toggle { background: none; border: none; padding: .85rem .4rem; color: var(--green-700); display: flex; align-items: center; gap: .4rem; width: 100%; justify-content: space-between; font-family: var(--font-head); font-weight: 600; }

/* ---------- 8. Hero slider ---------- */
.hero { position: relative; }
.slider { position: relative; overflow: hidden; }
.slides { position: relative; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s ease; display: grid; align-items: center;
}
.slide.is-active { position: relative; opacity: 1; visibility: visible; }
.slide__media { position: absolute; inset: 0; z-index: -1; }
.slide__media img { width: 100%; height: 100%; object-fit: cover; }
.slide__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,34,20,.82) 0%, rgba(9,34,20,.55) 45%, rgba(9,34,20,.2) 100%);
}
.slide__inner { min-height: clamp(460px, 74vh, 720px); display: flex; align-items: center; }
.slide__content { max-width: 640px; color: #fff; padding-block: 3rem; }
.slide__content .eyebrow { color: var(--accent); }
.slide h1, .slide h2.slide-title { color: #fff; margin: .6rem 0 1rem; font-size: clamp(2.2rem, 5.2vw, 3.8rem); }
.slide__content p { color: #d9e8df; font-size: 1.18rem; max-width: 32em; }
.slide__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.slider__dots { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 5; }
.slider__dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); background: transparent; padding: 0; }
.slider__dots button.is-active { background: var(--accent); border-color: var(--accent); }
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; border: none; background: rgba(255,255,255,.16);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.slider__arrow:hover { background: rgba(255,255,255,.3); }
.slider__arrow.prev { left: 1.2rem; } .slider__arrow.next { right: 1.2rem; }
@media (max-width: 720px) { .slider__arrow { display: none; } }

/* ---------- 9. Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--green-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); background: var(--green-100); padding: .25rem .6rem; border-radius: 999px; }
.card h3 { font-size: 1.25rem; }
.card p { font-size: .97rem; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-weight: 700; color: var(--green-600); }
.card__link svg { width: 1em; height: 1em; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Feature (icon) cards */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; height: 100%;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-100), var(--green-200)); color: var(--green-700); margin-bottom: 1rem;
}
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.feature p { font-size: .97rem; }

/* ---------- 10. Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.2rem .5rem; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--green-600); line-height: 1; letter-spacing: -.02em; }
.section--green .stat__num { color: var(--accent); }
.stat__suffix { font-size: .6em; }
.stat__label { margin-top: .5rem; font-size: .98rem; color: var(--ink-soft); }
.section--green .stat__label { color: #bcd7c6; }

/* ---------- 11. Split / media blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__media .badge-float {
  position: absolute; bottom: -22px; right: -12px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
}
@media (max-width: 480px){ .split__media .badge-float{ right: 8px; } }
.badge-float .n { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--green-600); line-height: 1; }
.badge-float .t { font-size: .82rem; color: var(--ink-soft); max-width: 9em; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink); }
.checklist svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--green-500); margin-top: 2px; }

/* ---------- 12. Process timeline ---------- */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 1.3rem; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(150deg, var(--green-500), var(--green-700)); color: #fff;
  font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; box-shadow: var(--shadow);
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { font-size: .93rem; }

/* ---------- 13. Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--green-100); box-shadow: var(--shadow-sm); cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,34,20,.4), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-ic {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--green-700);
  display: grid; place-items: center; opacity: 0; transition: .3s ease;
}
.gallery-item:hover .zoom-ic { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(6,22,14,.92); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; }
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav.prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: #cfe3d6; font-size: .9rem; }

/* ---------- 14. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: #fff;
  padding: clamp(2.2rem, 5vw, 3.8rem); text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.05);
}
.cta-band::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta-band::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #cfe3d6; max-width: 46ch; margin-inline: auto; position: relative; }
.cta-band__btns { position: relative; display: inline-flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* Ekstra fide listesi highlight */
.extra-list {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
  background: linear-gradient(140deg, var(--green-100), #fff); border: 1px solid var(--green-200);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow);
}
@media (max-width: 820px){ .extra-list { grid-template-columns: 1fr; text-align: center; } }
.extra-list__badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: #40320a; font-weight: 700; font-family: var(--font-head); padding: .4rem .9rem; border-radius: 999px; font-size: .85rem; }
.extra-list .visual { display: grid; place-items: center; }
.extra-list .visual .ring { width: min(230px, 60vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--green-300), var(--green-600)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); }
.extra-list .visual .ring svg { width: 42%; height: 42%; }

/* ---------- 15. Article / prose ---------- */
.page-hero { position: relative; background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #fff; padding-block: clamp(2.6rem, 6vw, 4.2rem); overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,.06), transparent 40%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfe3d6; max-width: 60ch; margin-top: .7rem; font-size: 1.12rem; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1rem; font-size: .88rem; }
.breadcrumb li { display: flex; align-items: center; gap: .4rem; color: #a9c9b6; }
.breadcrumb a { color: #d5e8dc; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: #6d8a79; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: .5rem; color: var(--green-700); }
.prose p { margin-bottom: 1rem; font-size: 1.06rem; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: .5rem; }
.prose li { color: var(--ink-soft); }
.prose .callout { background: var(--green-50); border-left: 4px solid var(--green-500); border-radius: 0 12px 12px 0; padding: 1.1rem 1.3rem; margin: 1.5rem 0; }
.prose .callout p { margin: 0; color: var(--ink); }
.fact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 1.5rem 0; }
@media(max-width:520px){ .fact-grid{ grid-template-columns:1fr; } }
.fact { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.fact b { display:block; color: var(--green-600); font-family: var(--font-head); font-size: 1.4rem; }

/* ---------- 16. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-600); font-weight: 700; }
.info-list .val { color: var(--ink); font-weight: 600; }
.info-list a.val:hover { color: var(--green-500); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.field label .req { color: #c0392b; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-400); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field.two { grid-template-columns: 1fr; } }
.field--hp { position: absolute; left: -9999px; opacity: 0; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.form-msg { padding: .9rem 1.1rem; border-radius: 12px; margin-bottom: 1rem; font-size: .94rem; display: none; }
.form-msg.ok { display: block; background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-200); }
.form-msg.err { display: block; background: #fdecea; color: #a5342a; border: 1px solid #f5c6c0; }
.field-error { color: #c0392b; font-size: .82rem; margin-top: .3rem; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #e07a6f; }
.field.invalid .field-error { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 17. Footer ---------- */
.footer { background: var(--green-900); color: #b9d2c2; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer a { color: #b9d2c2; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 52px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { color: #93b4a1; font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 1rem; letter-spacing: .02em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer .contact-mini { display: grid; gap: .7rem; font-size: .95rem; }
.footer .contact-mini span { display: flex; gap: .5rem; align-items: flex-start; }
.footer .contact-mini svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; margin-top: 3px; }
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--green-600); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; font-size: .86rem; color: #8fb09d; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- 18. Floating action buttons ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 800; display: flex; flex-direction: column; gap: .6rem; }
.fab a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); color: #fff; transition: transform .2s ease; }
.fab a:hover { transform: scale(1.08); color: #fff; }
.fab .wa { background: #25a35a; }
.fab .call { background: var(--green-700); }
.fab a svg { width: 26px; height: 26px; }
@media (max-width: 600px) { .fab a { width: 50px; height: 50px; } }

/* ---------- 19. Cookie consent ---------- */
.cookie {
  position: fixed; left: 18px; bottom: 18px; z-index: 1300; max-width: 420px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.3rem; display: none;
}
.cookie.is-open { display: block; }
.cookie h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.cookie p { font-size: .88rem; margin-bottom: 1rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie__actions .btn { padding: .6rem 1rem; font-size: .88rem; }
.cookie__prefs { margin-top: 1rem; display: none; border-top: 1px solid var(--line); padding-top: 1rem; }
.cookie__prefs.is-open { display: block; }
.cookie__prefs label { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .4rem 0; font-size: .9rem; }
.cookie__prefs input { width: 18px; height: 18px; }
@media (max-width: 500px) { .cookie { left: 12px; right: 12px; max-width: none; } }

/* ---------- 20. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- 21. Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.text-accent{color:var(--accent)}
.badge-soft{ display:inline-flex; align-items:center; gap:.4rem; background:var(--green-100); color:var(--green-700); font-weight:700; font-size:.8rem; padding:.35rem .8rem; border-radius:999px; font-family:var(--font-head); }
.divider-leaf { display:flex; align-items:center; justify-content:center; gap:.8rem; color:var(--green-300); margin: 0 auto; }
.divider-leaf::before, .divider-leaf::after { content:""; height:1px; width:60px; background: var(--green-200); }
.visually-hidden{ position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0; }
.tag-row{ display:flex; flex-wrap:wrap; gap:.5rem; }
.tag-row a{ background:var(--green-100); color:var(--green-700); padding:.4rem .9rem; border-radius:999px; font-size:.88rem; font-weight:600; }
.tag-row a:hover{ background:var(--green-200); }

/* ---------- 22. Placeholder tiles (gerçek ürün foto yoksa kontrollü alan) ---------- */
.ph-tile { position: relative; width:100%; height:100%; display:grid; place-items:center; overflow:hidden;
  background: linear-gradient(150deg, var(--green-500), var(--green-800)); color:#fff; }
.ph-tile::before { content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 20% 15%, rgba(255,255,255,.12), transparent 30%),
                    radial-gradient(circle at 85% 80%, rgba(255,255,255,.08), transparent 35%); }
.ph-tile svg { width: 34%; height: 34%; opacity:.9; position:relative; }
.ph-tile__name { position:absolute; bottom:14px; left:0; right:0; text-align:center; font-family:var(--font-head); font-weight:700; font-size:1.05rem; letter-spacing:.02em; text-shadow:0 1px 4px rgba(0,0,0,.25); }
.ph-note { font-size:.85rem; color:var(--ink-soft); background:var(--green-50); border:1px dashed var(--green-200); border-radius:10px; padding:.7rem .9rem; }

/* product detail spec table */
.spec { width:100%; border-collapse:collapse; margin:1rem 0; }
.spec th, .spec td { text-align:left; padding:.7rem .9rem; border-bottom:1px solid var(--line); font-size:.97rem; }
.spec th { color:var(--green-700); font-family:var(--font-head); width:42%; font-weight:600; }
.spec tr:last-child th, .spec tr:last-child td { border-bottom:0; }

/* article list meta */
.meta-row{ display:flex; flex-wrap:wrap; gap:1rem; font-size:.85rem; color:var(--ink-soft); align-items:center; }
.meta-row .dot{ width:4px;height:4px;border-radius:50%;background:var(--green-300); }
