/* ==========================================================================
   Wodoti — Ambalaja Akıllı Dokunuş
   ========================================================================== */

:root {
  --green-900: #13471d;
  --green-800: #1a5a26;
  --green-700: #1f6b2e;
  --green-600: #2a7d37;
  --green-500: #3a9a3f;
  --green-100: #e6f1e3;
  --blue-logo: #1b6f8a;
  --ink: #161816;
  --ink-2: #3a3d3a;
  --muted: #62675f;
  --line: #e3e6e0;
  --bg: #ffffff;
  --bg-soft: #f4f5f2;
  --card: #f1f2ef;
  --danger: #e23a3a;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px -18px rgba(20, 40, 20, .35);
  --container: 1240px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-brand: 'Baloo 2', var(--font);
  --font-hand: 'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--green-700); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }

.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.icon--sm { width: .9em; height: .9em; }
.icon--lg { width: 38px; height: 38px; stroke-width: 1.5; }
.icon--xl { width: 54px; height: 54px; stroke-width: 1.3; }

/* ---------- Typography ---------- */
.h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.h3 { font-size: clamp(19px, 2vw, 22px); font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn .icon { transition: transform .2s; }
.btn:hover .icon:last-child:not(.icon--play) { transform: translateX(3px); }
.btn--sm { min-height: 40px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 6px 16px -8px rgba(31, 107, 46, .7); }
.btn--primary:hover { background: var(--green-800); }
.btn--outline { border-color: var(--green-700); color: var(--ink); background: #fff; }
.btn--outline:hover { background: var(--green-100); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--green-100); }
.icon--play { width: 26px; height: 26px; color: var(--ink); }
.icon--play circle { fill: var(--ink); stroke: none; }
.icon--play path { fill: #fff; stroke: #fff; }

/* ---------- Image placeholders (gerçek görsel yoksa) ---------- */
.ph { position: relative; width: 100%; height: 100%; min-height: 120px; overflow: hidden; }
.ph--warm  { background: radial-gradient(120% 90% at 70% 30%, #f6e7cf 0%, #e8cfa7 45%, #caa274 100%); }
.ph--grain { background: radial-gradient(120% 90% at 60% 60%, #f3e9d2 0%, #e2cfa6 50%, #bf9a62 100%); }
.ph--grey  { background: linear-gradient(135deg, #eceeee, #c9cdcf); }
.ph--leaf  { background: linear-gradient(100deg, #10391a 0%, #1f6b2e 55%, #4f9a3c 100%); }
.ph--none  { background: none; min-height: 0; }
.ph--none .ph__label { display: none; }
.ph__label {
  position: absolute; left: 10px; bottom: 10px;
  font: 500 10px/1 ui-monospace, Menlo, monospace; color: rgba(0,0,0,.45);
  background: rgba(255,255,255,.6); padding: 4px 6px; border-radius: 4px;
}
.ph--leaf .ph__label { display: none; }
img.grayscale { filter: grayscale(1); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  --header-h: 84px;
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .25s;
}
/* sticky durumda: daha kısa header + belirgin ama hafif gölge */
.site-header.is-scrolled { --header-h: 64px; box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(0,0,0,.35); }
.header__inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); transition: height .25s; }

.logo { display: inline-flex; flex-direction: column; flex-shrink: 0; line-height: 1; }
.logo__word {
  font-family: var(--font-brand); font-weight: 800; font-size: 44px; letter-spacing: -.02em;
  color: var(--blue-logo);
  -webkit-text-stroke: 1.5px var(--green-700);
  text-shadow: 2px 2px 0 #d7ecd2;
  line-height: .85;
}
.logo__word sup { font-size: 11px; -webkit-text-stroke: 0; color: var(--ink); text-shadow: none; vertical-align: top; margin-left: 2px; }
.logo__img { display: block; height: 42px; width: auto; transition: height .25s; }
.logo__word { transition: font-size .25s; }
.logo__tag { font-size: 11px; font-weight: 500; margin-top: 4px; color: var(--ink-2); white-space: nowrap; transition: font-size .25s, margin .25s; }
.site-header.is-scrolled .logo__img { height: 32px; }
.site-header.is-scrolled .logo__word { font-size: 34px; }
.site-header.is-scrolled .logo__tag { font-size: 10px; margin-top: 2px; }
.logo--lg .logo__word { font-size: 56px; }
.logo--lg .logo__tag { font-size: 13px; }
.logo--lg .logo__img { height: 56px; }
.about-story__brand .logo__img { height: 84px; }

.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; padding: 10px 0; color: var(--ink); white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--green-700); border-radius: 2px; transform: scaleX(0); transition: transform .2s;
}
.nav__link:hover::after, .nav__item.is-active > .nav__link::after { transform: scaleX(1); }
.nav__item.is-active > .nav__link { color: var(--green-700); font-weight: 600; }

.has-sub { position: relative; }
.nav__sub {
  position: absolute; top: 100%; left: -16px; min-width: 180px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s;
}
.nav__sub { min-width: 210px; }
.nav__sub a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; white-space: nowrap; }
.nav__sub a:hover, .nav__sub a.is-current { background: var(--green-100); color: var(--green-700); }
.nav__sub a.is-current { font-weight: 600; }
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub, .has-sub.is-open .nav__sub { opacity: 1; visibility: visible; transform: none; }

.lang-switch { display: flex; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.lang-switch a:hover, .lang-switch a.is-current { color: var(--green-700); font-weight: 600; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon--close { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  /* banner kutusu, sayfa içeriğiyle aynı genişlikte (container) */
  --hero-gutter: max(24px, calc((100% - var(--container)) / 2 + 24px));
  position: relative; overflow: hidden;
  min-height: 600px;
  padding-top: 12px;
  background: #fff;
}
.hero__media {
  position: absolute; top: 12px; bottom: 0; left: var(--hero-gutter); right: var(--hero-gutter);
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(90deg, #fbf8f3 0%, #f8f1e6 40%, #efe2cc 100%);
}
.hero__media::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #fbf8f3 0%, rgba(251,248,243,.92) 35%, rgba(251,248,243,0) 60%);
}
/* Görsel kolon: container içinde, içerikle hizalı */
.hero__inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 32px; align-items: center;
  min-height: 600px; padding-block: 48px 0;
}
.hero__content { padding: 0 0 48px 44px; }
.hero__visual:has(.hero__picture) { padding-right: 0; }
.hero__inner:has(.hero__picture) { grid-template-columns: minmax(0, .92fr) minmax(0, 1.2fr); gap: 0; }
.hero__visual { position: relative; align-self: stretch; padding-right: 32px; display: flex; align-items: flex-end; justify-content: center; min-height: 520px; }
/* Hero ürün görseli (hero.avif / hero.webp): kırpılmaz, bozulmaz, alta oturur */
.hero__picture { display: flex; align-items: flex-end; justify-content: center; width: 100%; align-self: stretch; }
/* Görsel kolonu doldurur; sol ve üst kenar zemine yumuşak geçer */
.hero__img {
  width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 58% bottom;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22%), linear-gradient(to bottom, transparent 0, #000 14%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0, #000 22%), linear-gradient(to bottom, transparent 0, #000 14%);
  mask-composite: intersect;
  border-radius: 0 0 var(--radius-lg) 0;
}
.hero__pouches { display: flex; align-items: flex-end; justify-content: center; width: 100%; max-width: 560px; padding-top: 110px; }
.pouch { height: auto; filter: drop-shadow(0 20px 20px rgba(60, 40, 10, .25)); }
.pouch--pet  { width: 54%; position: relative; z-index: 2; }
.pouch--food { width: 46%; margin-left: -6%; }

.hero__note {
  position: absolute; z-index: 3; top: 20px; right: 36px;
  font-family: var(--font-hand); font-size: clamp(28px, 2.6vw, 38px); line-height: 1.05; color: var(--ink);
  transform: rotate(-8deg); text-align: left;
}
.hero__note::after {
  content: ''; display: block; width: 120px; height: 10px; margin: 2px 0 0 60px;
  border-bottom: 3px solid var(--green-600); border-radius: 0 0 60% 40%;
}

.hero__content { max-width: 540px; }
.hero__title {
  font-size: clamp(40px, 5.4vw, 64px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em;
}
.hero__title span { color: var(--green-700); }
.hero__subtitle { margin-top: 18px; font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__text { margin-top: 24px; font-size: 16px; color: var(--ink-2); max-width: 470px; }
.hero__features { display: grid; grid-template-columns: repeat(4, auto); gap: 22px; margin-top: 40px; justify-content: start; }
.hero__features li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; font-size: 12px; font-weight: 500; line-height: 1.3; max-width: 104px; }
.hero__features .icon { width: 32px; height: 32px; color: var(--green-700); stroke-width: 1.5; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: 72px; }
.section--tight { padding-block: 14px; }
.section__head { text-align: center; margin-bottom: 36px; }
.section__head p { margin-top: 6px; font-size: 17px; color: var(--ink-2); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Product cards
   Pet Lock: koyu yeşil vurgu · Foodlock: canlı yeşil vurgu
   --accent: başlık / rozet / üst çizgi · --accent-btn: beyaz yazılı buton (WCAG AA kontrast) */
.product-card--petlock, .product-page--petlock  { --accent: #1a5a26; --accent-btn: #1a5a26; --accent-btn-hover: #13471d; }
.product-card--foodlock, .product-page--foodlock { --accent: #3a9a3f; --accent-btn: #2a7d37; --accent-btn-hover: #1f6b2e; }
.product-card {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  min-height: 300px; border-radius: var(--radius-lg); background: var(--card);
  box-shadow: var(--shadow); transition: translate .25s, box-shadow .25s;
}
.product-card::before { content: ''; position: absolute; z-index: 4; inset: 0 0 auto 0; height: 4px; background: var(--accent); }
.product-card:hover { translate: 0 -3px; box-shadow: 0 20px 40px -24px rgba(20, 40, 20, .45); }
/* Kartın tamamı tıklanabilir: tek gerçek <a> (CTA) kartı kaplar, klavyede tek durak */
.product-card__cta::after { content: ''; position: absolute; inset: 0; z-index: 3; }
.product-card:has(.product-card__cta:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }
.product-card__cta:focus-visible { outline: none; }
.product-card__body { padding: 30px 8px 28px 28px; display: flex; flex-direction: column; align-items: flex-start; }
.product-card__title { font-size: 38px; font-weight: 700; line-height: 1; letter-spacing: -.01em; color: var(--accent); }
.product-card__title small { display: block; font-size: 28px; font-weight: 400; letter-spacing: .01em; color: var(--ink); }
.product-card__lead { margin-top: 14px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.product-card__text { margin-top: 12px; margin-bottom: 20px; font-size: 12.5px; color: var(--ink-2); }
.product-card__body .btn { margin-top: auto; background: var(--accent-btn); }
.product-card:hover .btn { background: var(--accent-btn-hover); }
.product-card:hover .btn .icon { transform: translateX(3px); }
.product-card__media { position: relative; background: var(--bg-soft); }
.product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.product-card__media::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 40%; z-index: 1;
  background: linear-gradient(90deg, var(--card), transparent);
}
.badge-circle {
  position: absolute; z-index: 2; top: 18px; right: 18px;
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent, var(--green-600)); color: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.55);
}
.badge-circle .icon { width: 32px; height: 32px; }

/* Problem / Solution — önce / sonra karşılaştırması
   Masaüstü: [problem] (ok) [çözüm] yatay · Mobil: problem → ok → çözüm */
.compare { display: grid; grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr); column-gap: 10px; align-items: stretch; }
.compare__card { display: grid; grid-template-columns: 1fr 1fr; min-height: 260px; border-radius: var(--radius-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.compare__text { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
/* metin kolonu biraz daha geniş: kart gereksiz uzamasın */
.compare__card--problem  { grid-template-columns: 1.2fr 1fr; }
.compare__card--solution { grid-template-columns: 1fr 1.2fr; }
.compare__card--solution .compare__text { padding-left: 22px; }
.compare__title-line { display: block; }
.compare__card--problem .h3 u { text-decoration-thickness: 2px; text-underline-offset: 3px; }
.compare__desc { font-size: 13px; color: var(--ink-2); }
.compare__media { position: relative; min-height: 220px; background: var(--bg-soft); }
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.compare__media--problem { background: linear-gradient(135deg, #eceeee, #c9cdcf); }
.compare__media--solution { display: flex; align-items: flex-end; justify-content: center; background: linear-gradient(180deg, #f4ede3, #e7d7bf); }
.picture-contents { display: contents; }
.pouch--solution { position: relative; z-index: 1; width: 78%; margin-bottom: -18px; }
.compare__arrow {
  position: relative; z-index: 3; align-self: center; justify-self: center;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-600); color: #fff; box-shadow: 0 0 0 5px #fff;
}
.compare__arrow .icon { width: 26px; height: 26px; stroke-width: 2.2; }

.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--problem  { color: #b42318; }
.eyebrow--solution { color: var(--green-700); }

.list { display: grid; gap: 9px; margin-top: 6px; }
.list li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.list .icon { width: 20px; height: 20px; }
.list--x .icon { color: var(--danger); }
.list--check .icon { color: var(--green-600); }

/* How it works */
.how { padding-top: 48px; padding-bottom: 36px; }
.how__head { margin-bottom: 18px; }
.how__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 36px; }
/* Adımlar: masaüstünde 5 kolon, tüm görseller aynı oranda (4:3) */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.step__media { position: relative; aspect-ratio: 4 / 3; border-radius: 10px; background: var(--bg-soft); overflow: hidden; }
.step__media > .ph, .step__img { display: block; border-radius: 10px; width: 100%; height: 100%; object-fit: contain; }
.step__num {
  position: absolute; z-index: 2; top: -10px; left: -6px;
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-700); color: #fff; font-weight: 600; font-size: 17px; box-shadow: 0 0 0 3px #fff;
}
.step__title { margin-top: 12px; font-size: 15px; font-weight: 600; }
.step__text { margin-top: 4px; font-size: 12.5px; color: var(--muted); }

/* Yeşil video kartı */
.video-card {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: var(--radius); text-align: center;
  background: var(--green-700); color: #fff; font-weight: 600; font-size: 15px; line-height: 1.3;
  box-shadow: 0 6px 16px -8px rgba(31, 107, 46, .7);
  transition: background .2s, transform .2s;
}
.video-card:hover { background: var(--green-800); transform: translateY(-2px); }
.icon--video { width: 28px; height: 28px; stroke-width: 1.5; }

/* /nasil-calisir detay sayfası */
.how--page { padding-top: 24px; }
.how__safety { margin-top: 28px; padding: 12px 16px; border-radius: 10px; background: var(--bg-soft); font-size: 13px; color: var(--ink-2); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 32px; }
.video-grid .video-card { min-height: 120px; flex-direction: column; font-size: 16px; }
.video-grid .icon--video { width: 48px; height: 48px; }

/* Why — 5 fayda: masaüstünde tek satır, mobilde 2+2+1
   İkonlar: tek aile, aynı çizgi kalınlığı, ortak Wodoti yeşili · metin: koyu antrasit */
.why { --anthracite: #2b2f2c; padding-block: 40px 28px; }
.why__head { margin-bottom: 28px; }
.why__list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.why__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 4px 18px; }
.why__item + .why__item { border-left: 1px solid var(--line); }
.why__icon { width: 40px; height: 40px; stroke-width: 1.5; color: var(--green-700); margin-bottom: 4px; }
.why__title { font-size: 15px; font-weight: 600; line-height: 1.3; color: var(--anthracite); }
.why__text { font-size: 13px; line-height: 1.5; color: var(--anthracite); opacity: .82; }

/* B2B — solda başlık/metin/CTA, sağda 4 hedef grup (2x2) */
.b2b { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 20px; }
.b2b__text, .b2b__targets { background: var(--card); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow); }
.b2b__text { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.b2b__lead { font-size: 13.5px; color: var(--ink-2); }
.b2b__secondary { margin: 6px 0 10px; }
.b2b__secondary-title { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips li { font-size: 12px; line-height: 1; padding: 7px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.b2b__cta { margin-top: auto; }
.b2b__targets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 26px; align-content: center; }
.b2b__target { display: grid; grid-template-columns: 36px 1fr; column-gap: 12px; row-gap: 3px; align-items: start; }
.b2b__icon { grid-row: span 2; width: 34px; height: 34px; stroke-width: 1.5; color: var(--green-700); }
.b2b__target-title { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.b2b__target-text { font-size: 12.5px; line-height: 1.45; color: var(--ink-2); }

/* CTA band */
/* CTA band — footer öncesi son aksiyon: tam genişlik, koyu yeşil zemin, beyaz metin, beyaz buton */
.cta-band {
  position: relative; overflow: hidden; margin-top: 56px; color: #fff;
  background:
    radial-gradient(120% 160% at 100% 0%, #3f8f3a 0%, rgba(63,143,58,0) 55%),
    linear-gradient(100deg, #0f3717 0%, #17512a 55%, #1f6b2e 100%);
}
/* Görsel yokken dekoratif yaprak çizgileri (sağda) */
.cta-band__bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='240' viewBox='0 0 520 240'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.22' stroke-width='2.5'%3E%3Cpath d='M300 250C300 170 340 100 430 60c10 90-40 160-130 190z'/%3E%3Cpath d='M300 250c30-60 70-120 130-190'/%3E%3Cpath d='M430 260c-10-70 20-130 90-170 15 70-15 140-90 170z'/%3E%3Cpath d='M430 260c15-55 45-115 90-170'/%3E%3Cpath d='M360 -10c60 10 100 50 110 110-60-5-105-45-110-110z'/%3E%3Cpath d='M360 -10c40 35 80 75 110 110'/%3E%3C/g%3E%3C/svg%3E") right -40px center / auto 100% no-repeat; }
.cta-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
/* Kontrast katmanı: fotoğraf ne olursa olsun metin tarafı koyu kalır */
.cta-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 40, 16, .88) 0%, rgba(10, 40, 16, .62) 55%, rgba(10, 40, 16, .25) 100%); }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 128px; padding-block: 28px; }
.cta-band__title { font-size: clamp(20px, 2.4vw, 27px); font-weight: 600; line-height: 1.25; max-width: 680px; text-wrap: balance; }
.cta-band__btn { flex-shrink: 0; min-height: 50px; padding-inline: 28px; }

/* Footer */
/* Footer — masaüstü 4 kolon: marka · ürünler · wodoti · kurumsal + sosyal */
.site-footer { padding-top: 40px; background: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 32px; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__slogan { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.footer__slogan .icon { color: var(--green-600); width: 20px; height: 20px; }
.footer__title { font-size: 13px; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.footer__social { padding-bottom: 28px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer__title--social { margin-bottom: 14px; }
.footer__links { display: grid; gap: 4px; font-size: 13px; color: var(--ink-2); }
.footer__links a { display: inline-block; padding-block: 4px; }
.footer__links a:hover { color: var(--green-700); }
/* Linkler yalnızca renkle ayrılmasın: hover/focus'ta alt çizgi */
.footer__links a:hover, .footer__links a:focus-visible,
.footer__legal a:hover, .footer__legal a:focus-visible,
.lang-switch a:hover, .lang-switch a:focus-visible,
.contact-info a:hover, .contact-info a:focus-visible,
.breadcrumb a:hover, .breadcrumb a:focus-visible { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.lang-switch a.is-current { text-decoration: underline; text-underline-offset: 3px; }
/* Sosyal hesaplar: Petlock / Foodlock / Wodoti için geniş, yan yana 3 hücre */
.social-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.social-block { padding: 20px 22px; border-radius: var(--radius-lg, 14px); background: var(--bg-soft); border: 1px solid var(--line); }
.social-block__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-2); margin: 0 0 12px; }
.social { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 0 -10px; }
.social a { display: flex; align-items: center; gap: 6px; padding: 8px 12px 8px 10px; border-radius: 10px; color: var(--ink); font-size: 13px; font-weight: 600; transition: color .2s, background .2s; }
.social a:hover { color: var(--green-700); background: #fff; }
.icon--social { width: 20px; height: 20px; flex-shrink: 0; }
/* Yasal alt satır: ince üst çizgiyle ayrılır */
.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-block: 16px 22px; font-size: 12px; color: var(--ink-2); }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; }
.footer__legal li + li::before { content: '|'; margin: 0 12px; color: #c9ccc6; }
.footer__legal a { display: inline-block; padding-block: 6px; }
.footer__legal a:hover { color: var(--green-700); }

/* Video modal */
.video-modal { width: min(960px, 92vw); padding: 0; border: 0; border-radius: 14px; background: #000; overflow: visible; }
.video-modal::backdrop { background: rgba(0, 0, 0, .75); }
.video-modal__frame { aspect-ratio: 16 / 9; }
.video-modal__frame iframe, .video-modal__frame video { display: block; width: 100%; height: 100%; border: 0; border-radius: 14px; background: #000; }
.video-modal__soon { display: grid; place-items: center; height: 100%; padding: 24px; text-align: center; color: #fff; font-size: 18px; font-weight: 500; }
.video-modal__close { position: absolute; top: -44px; right: 0; color: #fff; width: 36px; height: 36px; display: grid; place-items: center; }
.video-modal__close .icon { width: 28px; height: 28px; }

/* ==========================================================================
   İç sayfalar
   ========================================================================== */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding-block: 56px 36px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.page-hero h1 span { color: var(--green-700); }
.page-hero p { margin-top: 12px; font-size: 18px; color: var(--ink-2); max-width: 640px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: #b5b9b2; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }
.breadcrumb a:hover { color: var(--green-700); }

.prose { max-width: 760px; display: grid; gap: 16px; font-size: 16px; color: var(--ink-2); }
.prose h2 { font-size: 22px; color: var(--ink); margin-top: 12px; }
.notice { padding: 14px 18px; border-radius: 12px; background: #fff7e0; border: 1px solid #f1dc9c; font-size: 14px; color: #6b5210; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
/* /kurumsal */
.corp-hero { padding-block: 32px 56px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.corp-hero__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 48px; align-items: center; }
.corp-hero__title { margin-top: 8px; font-size: clamp(36px, 4.6vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -.03em; }
.corp-hero__lead { margin-top: 16px; font-size: clamp(19px, 1.9vw, 23px); font-weight: 600; color: var(--green-700); }
.corp-hero__intro { margin-top: 10px; font-size: 16px; color: var(--ink-2); max-width: 560px; }
.corp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.corp-hero__panel { padding: 24px; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 1px 0 var(--line), var(--shadow); border: 1px solid var(--line); }
.corp-hero__panel-title { font-size: 17px; font-weight: 600; }
.corp-hero__panel-lead { margin-top: 2px; font-size: 13px; color: var(--muted); }
.request-list { display: grid; gap: 8px; margin-top: 14px; }
.request-link { display: flex; align-items: center; gap: 12px; min-height: 50px; padding: 8px 14px; border-radius: 12px; background: var(--bg-soft); font-weight: 500; font-size: 15px; transition: background .2s, color .2s; }
.request-link:hover, .request-link:focus-visible { background: var(--green-100); color: var(--green-800); }
.request-link:hover span, .request-link:focus-visible span { text-decoration: underline; text-underline-offset: 3px; }
.request-link__icon { width: 24px; height: 24px; stroke-width: 1.5; color: var(--green-700); }
.request-link span { flex: 1; }
.request-link__arrow { width: 18px; height: 18px; color: var(--muted); transition: transform .2s; }
.request-link:hover .request-link__arrow { transform: translateX(3px); color: var(--green-700); }

.corp-section { padding-block: 56px 16px; }
.corp-section__head { margin-bottom: 24px; max-width: 720px; }
.corp-section__head p { margin-top: 6px; font-size: 16px; color: var(--ink-2); }
.b2b__targets--page { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 20px; }
.corp-section .b2b__secondary { margin: 0; }

.model-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.model-card { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; border-radius: var(--radius-lg); background: var(--card); }
.model-card .feature__icon { color: var(--green-700); }
.model-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.model-card__text { margin-top: 6px; font-size: 14px; color: var(--ink-2); }
.model-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 14px; }
.model-card__tags li { font-size: 12px; font-weight: 600; padding: 5px 9px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }

.family-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.family-card { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center; padding: 24px 28px; border-radius: var(--radius-lg); background: var(--card); overflow: hidden; }
.family-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent); }
.family-card__visual .pouch { width: 130px; margin-inline: auto; }
.family-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.family-card__title { font-size: 26px; font-weight: 700; line-height: 1.05; color: var(--accent); }
.family-card__title small { display: block; font-size: 15px; font-weight: 500; color: var(--ink); }
.family-card__text { font-size: 14px; color: var(--ink-2); }
.family-card__label { margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--muted); }
.model-list.model-list--sm li { padding: 6px 12px; font-size: 13px; border-radius: 10px; }
.family-card__cta { margin-top: 6px; }

.process { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; counter-reset: p; }
.process__step { position: relative; padding-top: 52px; }
.process__step::before { content: ''; position: absolute; top: 19px; left: 44px; right: -20px; height: 2px; background: var(--line); }
.process__step:last-child::before { display: none; }
.process__num { position: absolute; top: 0; left: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--green-700); color: #fff; font-weight: 600; }
.process__title { font-size: 16px; font-weight: 600; }
.process__text { margin-top: 6px; font-size: 14px; color: var(--ink-2); }

.corp-faq .faq { max-width: 860px; }
.corp-cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 36px; }
.corp-cta .panel__text { margin-top: 6px; }
.corp-cta__actions { margin-top: 0; padding-top: 0; flex-shrink: 0; }
.info-card { padding: 26px; border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow); }
.info-card .icon { width: 36px; height: 36px; color: var(--green-700); margin-bottom: 14px; }
.info-card h3 { font-size: 17px; font-weight: 600; }
.info-card p { margin-top: 6px; font-size: 14px; color: var(--ink-2); }


.faq { max-width: 820px; display: grid; gap: 12px; }
/* Ürün sayfası SSS: solda akordeon, sağda görsel (sağ tarafın boş kalmaması için) */
.faq-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.faq-layout--full { display: block; }
.faq-visual { margin: 0; position: sticky; top: 100px; }
.faq-visual__img { width: 100%; height: auto; border-radius: var(--radius-lg); object-fit: contain; background: var(--bg-soft); aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.faq-visual__caption { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--ink-2); text-align: center; }
.faq details { border-radius: var(--radius); background: var(--card); padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { transition: transform .2s; color: var(--green-700); }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq details p { padding-bottom: 18px; color: var(--ink-2); }


/* Form */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: start; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px; border-radius: var(--radius-lg); background: var(--card); }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--line); background: #fff; font: inherit; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(42, 125, 55, .15); }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--danger); }
.field__error { font-size: 12px; color: var(--danger); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-2); }
.check input { margin-top: 3px; accent-color: var(--green-700); width: 18px; height: 18px; }
.hp { position: absolute; left: -9999px; }
.alert { grid-column: 1 / -1; padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.alert--ok { background: var(--green-100); color: var(--green-800); }
.alert--err { background: #fde8e8; color: #9b1c1c; }
.contact-info { display: grid; gap: 14px; margin-top: 12px; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.contact-info li > span { display: grid; gap: 1px; }
.contact-info small { font-size: 12px; color: var(--muted); }
.contact-info .icon { color: var(--green-700); width: 24px; height: 24px; margin-top: 1px; }

/* ==========================================================================
   Ürün sayfaları (/petlock, /foodlock) — renk vurgusu --accent ile ürüne göre
   ========================================================================== */
.btn--accent { background: var(--accent-btn); }
.btn--accent:hover { background: var(--accent-btn-hover); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; text-decoration-color: var(--accent, var(--green-600)); }
.text-link:hover { color: var(--accent-btn, var(--green-700)); }
.text-link .icon { width: 18px; height: 18px; }
.text-link--light { color: #fff; text-decoration-color: rgba(255,255,255,.6); }
.text-link--light:hover { color: #fff; text-decoration-color: #fff; }

.product-hero { padding-block: 32px 48px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.product-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.product-hero__eyebrow { color: var(--accent-btn); }
.product-hero__title { margin-top: 8px; font-size: clamp(38px, 5vw, 60px); font-weight: 700; line-height: 1; letter-spacing: -.03em; color: var(--accent); }
.product-hero__title small { display: block; font-size: .5em; font-weight: 500; color: var(--ink); letter-spacing: -.01em; margin-bottom: 4px; }
.product-hero__lead { margin-top: 18px; font-size: clamp(18px, 1.8vw, 21px); font-weight: 600; line-height: 1.35; max-width: 520px; }
.product-hero__intro { margin-top: 12px; font-size: 16px; color: var(--ink-2); max-width: 520px; }
.product-hero__highlights { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; }
.product-hero__highlights li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.product-hero__highlights .icon { width: 20px; height: 20px; color: var(--accent-btn); }
.product-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.product-hero__video { margin-top: 18px; }
.product-hero__video .icon--play { width: 24px; height: 24px; }

/* "Kendiniz için mi satın almak istiyorsunuz?" — bireysel alıcıya yönlendirme */
.personal-buy { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-soft); }
.personal-buy__icon { display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px var(--line); color: var(--accent-btn); }
.personal-buy__icon .icon { width: 20px; height: 20px; }
.personal-buy__text { flex: 1 1 200px; min-width: 0; }
.personal-buy__title { font-size: 14px; font-weight: 600; }
.personal-buy__desc { margin-top: 2px; font-size: 13px; color: var(--ink-2); }
.personal-buy__btn { flex-shrink: 0; }
.product-hero__visual { display: grid; place-items: center; min-height: 440px; padding: 32px; border-radius: 24px; background: radial-gradient(circle at 50% 60%, #fff 0%, #f3ece1 70%, #eadfcc 100%); }
.product-hero__pouch { width: min(300px, 70%); }
.product-hero__visual .hero__picture { padding: 0; align-self: center; }
/* Ürün sayfası: paket kırpılmadan kutuya sığar */
.product-hero__visual .hero__img { width: auto; max-width: 100%; height: auto; min-height: 0; max-height: 440px; object-fit: contain; -webkit-mask-image: none; mask-image: none; border-radius: 0; filter: drop-shadow(0 26px 22px rgba(60, 40, 10, .22)); }
/* Arka planı temizlenmiş paket görselleri (kartlar) */
.pack { display: block; width: 120px; height: auto; margin-inline: auto; filter: drop-shadow(0 14px 12px rgba(60, 40, 10, .22)); }

.product-section { padding-block: 56px 24px; }
.product-section__title { margin-bottom: 24px; }
.product-section__more { margin-top: 18px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.feature { padding: 24px; border-radius: var(--radius-lg); background: var(--card); }
.feature__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #fff; color: var(--accent-btn); margin-bottom: 16px; box-shadow: 0 0 0 1px var(--line); }
.feature__icon .icon { width: 28px; height: 28px; stroke-width: 1.5; }
.feature__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.feature__text { margin-top: 6px; font-size: 14px; color: var(--ink-2); }

.compare--text .compare__card { grid-template-columns: 1fr; min-height: 0; }
.compare--text .compare__text { padding: 28px; }
.compare--text .compare__card--solution .compare__text { padding-left: 36px; }

.use-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.use-card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); border-top: 4px solid var(--accent); }
.use-card__icon { width: 34px; height: 34px; stroke-width: 1.5; color: var(--accent-btn); margin-bottom: 12px; }
.use-card__title { font-size: 16px; font-weight: 600; }
.use-card__text { margin-top: 4px; font-size: 14px; color: var(--ink-2); }

.product-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.panel { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 28px; border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow); }
.panel__text { font-size: 14px; color: var(--ink-2); }
.panel--dark { color: #fff; background: linear-gradient(135deg, #0f3717 0%, #1a5a26 100%); }
.panel--dark .panel__text { color: rgba(255,255,255,.88); }
.panel--dark .eyebrow { color: #cfe8c9; }
.panel__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: auto; padding-top: 8px; }
.model-list { display: flex; flex-wrap: wrap; gap: 10px; }
.model-list li { padding: 10px 16px; border-radius: 12px; background: #fff; border: 1.5px solid var(--accent); font-weight: 600; font-size: 15px; color: var(--ink); }

.other-product { position: relative; display: grid; grid-template-columns: 200px 1fr; align-items: center; gap: 28px; padding: 24px 32px; border-radius: var(--radius-lg); background: var(--card); overflow: hidden; }
.other-product::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--accent); }
.other-product__visual { display: grid; place-items: center; }
.other-product__visual .pouch { width: 130px; }
.other-product__body { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.other-product__body > p:not(.eyebrow) { color: var(--ink-2); font-size: 14px; }
.other-product__title { font-size: 24px; font-weight: 700; color: var(--accent); }
.other-product__cta { margin-top: 6px; }

/* ==========================================================================
   Hakkımızda · SSS · Nasıl Çalışır · İletişim · Yasal · 404
   ========================================================================== */
.about-hero h1 { max-width: 820px; }
.about-story { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 48px; align-items: center; padding-block: 24px; }
.about-story__text { display: grid; gap: 14px; font-size: 16px; color: var(--ink-2); }
.about-story__text .h2 { color: var(--ink); margin-bottom: 4px; }
.about-story__brand { margin: 0; display: grid; justify-items: center; gap: 10px; padding: 40px 24px; border-radius: 24px; text-align: center; background: radial-gradient(circle at 50% 30%, #fff 0%, var(--green-100) 100%); }
.about-story__brand .logo__word { font-size: 64px; }
.about-story__brand blockquote { margin: 6px 0 0; font-size: 22px; font-weight: 600; }
.about-story__brand figcaption { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.about-story__brand figcaption .icon { color: var(--green-600); }

.approach { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: a; }
.approach__item { position: relative; padding: 26px; border-radius: var(--radius-lg); background: var(--card); }
.approach__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; margin-bottom: 14px; background: #fff; color: var(--ink); box-shadow: 0 0 0 1px var(--line); }
.approach__icon .icon { width: 26px; height: 26px; }
.approach__item--problem .approach__icon { color: var(--danger); }
.approach__item--solution { background: var(--green-100); }
.approach__item--solution .approach__icon { color: var(--green-700); }
.approach__title { font-size: 17px; font-weight: 600; }
.approach__text { margin-top: 6px; font-size: 14px; color: var(--ink-2); }
.feature__icon--brand { color: var(--green-700); }

.chips--nav { margin-top: 22px; gap: 8px; }
.chips--nav a { display: inline-block; font-size: 14px; font-weight: 500; line-height: 1; padding: 11px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); transition: border-color .2s, background .2s; }
.chips--nav li { padding: 0; border: 0; background: none; }
.chips--nav a:hover, .chips--nav a:focus-visible { border-color: var(--green-600); background: var(--green-100); text-decoration: underline; text-underline-offset: 3px; }
.faq-page { padding-block: 16px 24px; display: grid; gap: 40px; }
.faq-group { scroll-margin-top: 90px; }
.faq-group__title { margin-bottom: 14px; }
.faq-group__more { margin-top: 12px; }

.how-tabs__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--card); }
.tabs__tab { min-height: 44px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: background .2s, color .2s; }
.tabs__tab:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.tabs__tab[aria-selected="true"] { background: var(--accent-btn); color: #fff; text-decoration: none; }
.tabs__panel:focus-visible { outline-offset: 8px; border-radius: 8px; }
.list--lg { gap: 12px; margin-top: 12px; }
.list--lg li { align-items: flex-start; font-size: 15px; }
.list--lg .icon { margin-top: 1px; }
.video-grid--panel { margin-top: 12px; width: 100%; grid-template-columns: 1fr; }
.video-card--light { background: #fff; color: var(--green-800); box-shadow: none; }
.video-card--light:hover { background: var(--green-100); }
.video-grid--panel .video-card { min-height: 96px; }

.contact-main__title { margin-bottom: 4px; }
.contact-main__note { margin-bottom: 16px; font-size: 14px; color: var(--muted); }
.contact-aside { display: grid; gap: 16px; }
.contact-aside .panel { box-shadow: none; border: 1px solid var(--line); }
.contact-aside .panel--dark { border: 0; }
.mini-steps { display: grid; gap: 10px; margin-top: 4px; }
.mini-steps li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.mini-steps span { display: grid; place-items: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-700); color: #fff; font-size: 13px; font-weight: 600; }

/* İletişim sayfası: harita */
.map-section { padding-top: 0; }
.map-card { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 20px; }
.map-card__frame { position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow); }
.map-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card__info { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; border-radius: var(--radius-lg); background: var(--card); }
.map-card__info p { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.map-card__info .icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--green-700); }

.page-hero--legal { padding-bottom: 24px; }
.legal-updated { font-size: 14px !important; color: var(--muted) !important; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; align-items: start; padding-bottom: 40px; }
.legal-aside { position: sticky; top: 88px; display: grid; gap: 24px; font-size: 14px; }
.legal-aside__title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.legal-toc ol, .legal-other ul { display: grid; gap: 2px; }
.legal-toc a, .legal-other a { display: block; padding: 6px 10px; border-radius: 8px; color: var(--ink-2); }
.legal-toc a:hover, .legal-other a:hover, .legal-toc a:focus-visible, .legal-other a:focus-visible { background: var(--bg-soft); color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-other a[aria-current] { background: var(--green-100); color: var(--green-800); font-weight: 600; }
.legal-content { max-width: 780px; font-size: 15.5px; line-height: 1.7; color: var(--ink-2); }
.legal-content > * + * { margin-top: 14px; }
.legal-content h2 { margin-top: 36px; font-size: 21px; line-height: 1.3; color: var(--ink); scroll-margin-top: 90px; }
.legal-content ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; }
.legal-content a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--ink); }
.legal-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-content th, .legal-content td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal-content th { background: var(--bg-soft); color: var(--ink); font-weight: 600; }
.legal-content code { font-size: 13px; padding: 2px 6px; border-radius: 6px; background: var(--bg-soft); }
.legal-missing { padding: 1px 6px; border-radius: 4px; background: #fff1c2; color: #6b4a00; font-weight: 600; font-size: .92em; }

.notfound { padding-block: 72px 48px; }
.notfound__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.notfound__code { font-family: var(--font-brand); font-size: clamp(96px, 16vw, 160px); font-weight: 800; line-height: .9; color: var(--green-100); -webkit-text-stroke: 2px var(--green-700); }
.notfound h1 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; }
.notfound__lead { max-width: 520px; color: var(--ink-2); margin-bottom: 8px; }
.notfound__links-title { margin-top: 32px; font-size: 14px; font-weight: 600; color: var(--muted); }
.notfound .chips--nav { margin-top: 0; justify-content: center; }

/* Ürün galerisi — slayt (carousel), ham/orijinal fotoğraflar, kırpılmadan */
.slider { position: relative; max-width: 640px; margin-inline: auto; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-soft); }
.slider__track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.slider__slide { flex: 0 0 100%; min-width: 0; }
.slider__link { display: flex; align-items: center; justify-content: center; height: 480px; padding: 20px; }
.slider__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 8px; }
.slider__caption { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--ink-2); text-align: center; }
.slider__btn { position: absolute; top: 45%; transform: translateY(-50%); z-index: 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: 0 8px 20px -6px rgba(20,40,20,.35); color: var(--ink); transition: background .2s; }
.slider__btn:hover, .slider__btn:focus-visible { background: var(--green-100); }
.slider__btn .icon { width: 24px; height: 24px; }
.slider__prev { left: 12px; }
.slider__prev .icon { transform: rotate(180deg); }
.slider__next { right: 12px; }
.slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider__dot { width: 9px; height: 9px; border-radius: 999px; background: var(--line); transition: width .2s, background .2s; }
.slider__dot:hover { background: var(--muted); }
.slider__dot[aria-selected="true"] { width: 24px; background: var(--green-700); }

.lightbox { width: min(1000px, 94vw); max-height: 94vh; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(10, 16, 12, .88); }
.lightbox__figure { margin: 0; display: grid; justify-items: center; gap: 10px; }
.lightbox__img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 12px; background: #fff; }
.lightbox__caption { color: #fff; font-weight: 600; text-align: center; }
.lightbox__count { position: absolute; top: -40px; left: 0; color: rgba(255,255,255,.8); font-size: 14px; }
.lightbox__btn { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.lightbox__btn:hover { background: #fff; }
.lightbox__btn .icon { width: 24px; height: 24px; }
.lightbox__close { top: -52px; right: 0; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: -64px; }
.lightbox__prev .icon { transform: rotate(180deg); }
.lightbox__next { right: -64px; }
.lightbox--single .lightbox__prev, .lightbox--single .lightbox__next, .lightbox--single .lightbox__count { display: none; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* sade fade + kısa kayma; okunurluğu geciktirmeyecek kadar hızlı */
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .35s ease-out, transform .35s ease-out; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__list { gap: 18px; }
  .site-nav { gap: 18px; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  /* backdrop-filter, fixed menüyü header'a hapseder */
  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 20px;
    padding: 20px 24px 40px; background: #fff; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  body.nav-open .nav-toggle .icon--open { display: none; }
  body.nav-open .nav-toggle .icon--close { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { width: 100%; justify-content: space-between; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; display: none; }
  .has-sub.is-open .nav__sub { display: block; }
  .has-sub:hover .nav__sub { display: none; }
  .has-sub.is-open:hover .nav__sub { display: block; }
  .nav__sub a { font-size: 16px; }
  .nav__sub a { padding: 12px; }
  .site-nav .nav__cta { width: 100%; min-height: 52px; font-size: 16px; }
  .lang-switch { justify-content: center; gap: 14px; font-size: 16px; padding-top: 4px; }
  .lang-switch a { padding: 6px 10px; }

  /* Mobil sıra: başlık → açıklama → CTA → ürün görseli → fayda ikonları */
  .hero { min-height: 0; padding-top: 0; }
  .hero__media { display: none; }
  .hero__inner { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding-block: 32px 8px; }
  .hero__content { display: contents; }
  .hero__title    { order: 1; }
  .hero__subtitle { order: 2; }
  .hero__text     { order: 3; margin-top: 12px; max-width: 560px; }
  .hero__actions  { order: 4; margin-top: 24px; }
  .hero__visual   { order: 5; margin-top: 28px; }
  .hero__features { order: 6; margin-top: 28px; }
  .hero__visual {
    min-height: 0; padding: 0 16px; overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fbf8f3 0%, #f3e8d6 60%, #ecdcc2 100%);
  }
  .hero__pouches { max-width: 460px; padding-top: 32px; }
  .hero__img { min-height: 0; height: auto; max-height: 420px; object-fit: contain; -webkit-mask-image: none; mask-image: none; border-radius: 0; }
  .hero__visual:has(.hero__picture) { padding: 0; }
  .hero__inner:has(.hero__picture) { grid-template-columns: 1fr; }
  .hero__note { display: none; }

  .grid-2, .b2b, .contact-grid { grid-template-columns: 1fr; }
  .product-hero__inner, .product-split, .corp-hero__inner, .family-grid, .about-story, .contact-grid, .legal-layout, .map-card, .faq-layout { grid-template-columns: 1fr; }
  .faq-visual { position: static; max-width: 360px; margin-inline: auto; }
  .map-card__frame { min-height: 260px; }
  .approach { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .legal-toc { display: none; }
  .legal-other ul { display: flex; flex-wrap: wrap; gap: 6px; }
  .legal-other a { border: 1px solid var(--line); }
  .legal-content table { display: block; overflow-x: auto; }
  .b2b__targets--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: 1fr; gap: 0; }
  .process__step { padding: 0 0 24px 60px; min-height: 64px; }
  .process__step::before { top: 44px; bottom: 4px; left: 19px; right: auto; width: 2px; height: auto; }
  .corp-cta { flex-direction: column; align-items: flex-start; }
  .product-hero__visual { min-height: 320px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .use-grid { grid-template-columns: 1fr; }
  .compare--text .compare__card--solution .compare__text { padding-left: 28px; }
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .why__item:nth-child(even) { border-left: 1px solid var(--line); }
  .why__item:nth-child(odd) { border-left: 0; }
  .why__item:last-child { grid-column: 1 / -1; max-width: 340px; justify-self: center; }
  .why__item { padding-inline: 12px; }
  .why__text { font-size: 12.5px; }
  .compare { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 0 auto; row-gap: 20px; }
  .compare__arrow { transform: rotate(90deg); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  /* Mobil/tablet: marka üstte, link grupları 2 kolon */
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .cards-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .site-header { --header-h: 72px; }
  .site-header.is-scrolled { --header-h: 60px; }
  .logo__word { font-size: 36px; }
  .logo__img { height: 36px; }
  .site-header.is-scrolled .logo__img { height: 30px; }
  .hero__features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__features li { max-width: none; flex-direction: row; text-align: left; }
  /* yan yana sığmıyorsa alt alta */
  .hero__actions .btn { flex: 1 1 220px; }
  .hero__pouches { padding-top: 24px; }

  .product-card { grid-template-columns: 1fr; }
  .product-card__media { height: 200px; order: -1; }
  .product-card__media::before { inset: auto 0 0 0; width: auto; height: 40%; background: linear-gradient(0deg, var(--card), transparent); }
  .product-card__body { padding: 22px; }
  .product-card__body .btn { width: 100%; min-height: 48px; font-size: 15px; }

  .compare__card { grid-template-columns: 1fr; }
  .compare__media { height: 200px; min-height: 0; }
  .compare__card--problem .compare__media { order: -1; }
  .compare__card--solution .compare__text { padding-left: 24px; }
  .pouch--solution { width: 44%; }

  /* Mobil: adımlar dikey 1→5, video CTA son adımdan sonra tam genişlikte */
  .steps { grid-template-columns: 1fr; row-gap: 20px; }
  /* Mobil adım: solda küçük görsel, sağda metin (kısa sayfa, görsel ayrıntıları küçük) */
  .step { display: grid; grid-template-columns: 116px minmax(0, 1fr); column-gap: 14px; align-items: start; }
  .step__media { grid-row: span 2; }
  .step__num { width: 30px; height: 30px; font-size: 15px; top: -8px; left: -6px; }
  .step__title { margin-top: 2px; }
  .step__text { font-size: 13px; }
  .how__layout { display: flex; flex-direction: column; }
  .how__actions { order: 3; flex-direction: column; margin: 28px 0 0; }
  .how__actions > * { width: 100%; }

  /* Mobil: metin + CTA önce, hedef gruplar 2 kolon; CTA tam genişlik */
  .b2b__text, .b2b__targets { padding: 22px; }
  .b2b__cta { width: 100%; min-height: 48px; font-size: 15px; }
  .corp-hero__actions .btn { flex: 1 1 100%; }
  .corp-hero__panel { padding: 18px; }
  .model-grid { grid-template-columns: 1fr; }
  .family-card { grid-template-columns: 1fr; padding: 22px; }
  .family-card__visual { display: none; }
  .slider__link { height: 320px; padding: 14px; }
  .slider__btn { width: 40px; height: 40px; }
  .slider__prev { left: 4px; }
  .slider__next { right: 4px; }
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
  .lightbox__btn { width: 44px; height: 44px; }
  .how-tabs__head { flex-direction: column; align-items: stretch; }
  .tabs { display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px; }
  .tabs__tab { border-radius: 10px; }
  .about-story__brand { padding: 28px 16px; }
  .about-story__brand .logo__word { font-size: 48px; }
  .family-card__cta, .corp-cta__actions, .corp-cta__actions .btn { width: 100%; }
  .corp-cta { padding: 24px 22px; }
  .product-hero { padding-top: 20px; }
  .product-hero__actions .btn { flex: 1 1 100%; }
  .personal-buy { flex-direction: column; align-items: flex-start; text-align: left; }
  .personal-buy__btn { width: 100%; }
  .product-hero__visual { min-height: 260px; padding: 20px; }
  .product-hero__visual .hero__img { max-height: 300px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; padding: 20px; }
  .feature__icon { grid-row: span 2; margin-bottom: 0; }
  .panel { padding: 22px; }
  .panel__actions, .panel__actions .btn { width: 100%; }
  .other-product { grid-template-columns: 1fr; padding: 22px; gap: 12px; }
  .other-product__visual { display: none; }
  .other-product__cta { width: 100%; min-height: 48px; }
  .b2b__targets { gap: 22px 14px; }
  .b2b__target { grid-template-columns: 1fr; row-gap: 6px; }
  .b2b__icon { grid-row: auto; width: 30px; height: 30px; }
  /* Mobil: başlık 2-3 satır, buton hemen altında neredeyse tam genişlik; kırpılmada da kontrast sabit */
  .cta-band { margin-top: 40px; }
  .cta-band::after { background: rgba(10, 40, 16, .78); }
  .cta-band__inner { flex-direction: column; align-items: stretch; gap: 18px; padding-block: 32px; }
  .cta-band__title { font-size: 21px; }
  .cta-band__btn { width: 100%; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .form { grid-template-columns: 1fr; padding: 20px; }
}
