/* ===============================================================
   Zirve Kanat — Yamaç paraşütü ekipmanı satış & kiralama
   Design DNA: catalog-grid, sanayi tonu, EN-sınıf etiketleri,
   sarı-siyah teknik şerit, split-asymmetric hero.
   =============================================================== */

:root {
  --bg: #F5F5F4;
  --surface: #FFFFFF;
  --surface-2: #EEEDEB;
  --ink: #1C1C1E;
  --ink-soft: #52525B;
  --ink-faint: #8A8A93;
  --accent: #EA580C;      /* teknik turuncu */
  --accent-2: #0EA5E9;    /* gökyüzü mavisi */
  --accent-dark: #C2410C;
  --line: #D9D8D5;
  --line-strong: #B7B6B2;
  --warn-yellow: #FACC15;
  --header-h: 72px;
  --maxw: 1400px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 10px;
  --mono: "Consolas", "SFMono-Regular", "Menlo", monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading: "Space Grotesk", "Segoe UI", Arial, "Helvetica Neue", sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --shadow-warm: 0 26px 46px -30px rgba(194,65,12,.5);
  --shadow-sky: 0 26px 46px -30px rgba(14,52,96,.5);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
/* editorial serif italic accents inside any heading */
h1 em, h2 em, h3 em, h4 em, .h-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--accent-dark);
}
h1 { font-size: clamp(2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
}
.mono { font-family: var(--mono); }
.tnum { font-variant-numeric: tabular-nums; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -------- yellow-black teknik şerit -------- */
.tech-stripe {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg, var(--warn-yellow) 0 18px, var(--ink) 18px 36px);
  width: 100%;
}

/* -------- skip link -------- */
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 6px; z-index: 2000;
  transition: top 180ms ease;
}
.skip-link:focus { top: 8px; color: #fff; }

/* focus ring */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===============================================================
   HEADER
   =============================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(245, 245, 244, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(245,245,244,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.28);
  height: 62px;
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); border-radius: 8px;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand small {
  display: block; font-family: var(--mono); font-weight: 400;
  font-size: .58rem; letter-spacing: .16em; color: var(--ink-soft);
  text-transform: uppercase;
}

.nav-desktop { display: none; align-items: center; gap: 6px; }
.nav-desktop a {
  position: relative;
  font-size: .9rem; font-weight: 600; color: var(--ink);
  padding: 8px 12px; border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform 200ms ease;
}
.nav-desktop a:hover { color: var(--accent-dark); }
.nav-desktop a.is-active::after,
.nav-desktop a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 6px;
  background: var(--ink); color: #fff !important;
  padding: 9px 16px !important; border-radius: 6px;
  font-weight: 700;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff !important; }

.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px; flex: none;
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; padding: 0 10px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--ink);
  border-radius: 2px; transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* -------- mobile drawer -------- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 20px) 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--heading); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); padding: 12px 4px; border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-dark); }
.drawer .drawer-cta {
  margin-top: 18px; text-align: center;
  background: var(--ink); color: #fff !important;
  border-radius: 8px; border-bottom: 0; padding: 16px;
}
.drawer .drawer-cta:hover { background: var(--accent); color: #fff !important; }
.drawer-meta {
  margin-top: auto; font-family: var(--mono); font-size: .78rem;
  color: var(--ink-soft); border-bottom: 0; padding-top: 22px;
}
.drawer-meta a { font-family: var(--mono); font-size: .82rem; font-weight: 600; border-bottom: 0; padding: 4px 0; display: block; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; z-index: 1040;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ===============================================================
   MAIN / SECTIONS
   =============================================================== */
main { padding-top: var(--header-h); }
/* fixed-header offset for anchor navigation (cross-page & in-page) */
:where(section[id], [id]) { scroll-margin-top: calc(var(--header-h) + 16px); }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-dark { background: var(--ink); color: #E9E9EC; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--warn-yellow); }
.section-dark .eyebrow::before { background: var(--warn-yellow); }

/* ===============================================================
   HERO — cinematic full-bleed photo
   =============================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  padding-top: var(--header-h);
  background: #0C121C;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.06);
  animation: kenburns 20s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,16,26,.58) 0%, rgba(10,16,26,.26) 40%, rgba(10,16,26,.78) 100%),
    linear-gradient(90deg, rgba(10,16,26,.66) 0%, rgba(10,16,26,.20) 58%, rgba(10,16,26,0) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px;
  padding-block: clamp(48px, 9vh, 120px);
}
.hero-eyebrow { color: #fff; margin-bottom: 18px; }
.hero-eyebrow::before { background: var(--accent); }
.hero-title {
  font-family: var(--serif);
  font-weight: 450;
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.0;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 7.4vw, 5.4rem);
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  text-wrap: balance;
}
.hero-title .word { white-space: nowrap; }
.hero-title .ital { font-family: var(--serif); font-style: italic; font-weight: 500; color: #FDBA74; }
.hero .btn-primary { background: var(--accent); color: #fff; }
.hero .btn-primary:hover, .hero .btn-primary:focus-visible {
  background: var(--accent-dark); color: #fff; transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(234,88,12,.7);
}
.btn-hero-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: rgba(255,255,255,.18); color: #fff; border-color: #fff;
  transform: translateY(-2px);
}
.hero-stats {
  list-style: none; margin: 34px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 16px 30px;
}
.hero-stats li {
  display: flex; flex-direction: column;
  padding-left: 16px; border-left: 2px solid rgba(255,255,255,.30);
}
.hero-stats b {
  font-family: var(--heading); font-weight: 800; font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff; line-height: 1.15;
}
.hero-stats span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.74);
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(-1.6%, -2.2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: none; }
}

/* left: product showcase */
.hero-product {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(14,52,96,.4);
}
.hero-product .sky {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hero-product .sky img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-product .en-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-weight: 700; font-size: .8rem;
  background: var(--accent); color: #fff;
  padding: 6px 12px; border-radius: 6px;
  display: inline-flex; gap: 8px; align-items: center;
}
.hero-product .en-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-product .spec-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-product .spec-row div {
  padding: 14px 16px; text-align: center;
  border-right: 1px solid var(--line);
}
.hero-product .spec-row div:last-child { border-right: 0; }
.hero-product .spec-row .k {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); display: block;
}
.hero-product .spec-row .v {
  font-family: var(--heading); font-weight: 800; font-size: 1.15rem;
}

/* hero copy on photo */
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(255,255,255,.92); max-width: 54ch; margin-bottom: 26px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 4px; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: var(--mono); font-size: .76rem; color: var(--ink-soft);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip span::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background: var(--accent-2);
  clip-path: polygon(14% 44%, 0 60%, 43% 100%, 100% 22%, 84% 8%, 40% 68%);
}

.hero-filter {
  margin-top: 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 18px;
}
.hero-filter .flabel {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: .82rem; font-weight: 600;
  padding: 7px 13px; border: 1px solid var(--line-strong);
  border-radius: 999px; background: var(--bg); color: var(--ink);
  cursor: pointer; transition: all 180ms ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===============================================================
   BUTTONS
   =============================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: 13px 22px; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent; transition: all 200ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff; transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(234,88,12,.6);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
@media (min-width: 560px) { .btn-auto { width: auto; } }

/* ===============================================================
   STATS
   =============================================================== */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  margin-top: 28px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface); padding: 22px 18px; }
.stat .num {
  font-family: var(--heading); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.stat .num .suf { color: var(--accent); }
.stat .lbl {
  font-family: var(--mono); font-size: .74rem; color: var(--ink-soft);
  margin-top: 8px; letter-spacing: .04em;
}

/* ===============================================================
   KATALOG — dense product grid
   =============================================================== */
.catalog-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -28px rgba(14,52,96,.5);
  border-color: var(--line-strong);
}
.product-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--surface-2); perspective: 900px;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
  backface-visibility: hidden;
}
.product-card:hover .product-media img { transform: scale(1.06); filter: saturate(1.06); }
/* warm sunset glow rising on hover — atmosfer */
.product-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 80% at 50% 118%, rgba(234,88,12,.24), transparent 62%);
  opacity: 0; transition: opacity 320ms ease; z-index: 1;
}
.product-card:hover .product-media::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .product-card:hover .product-media img { transform: none; }
}
.en-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--mono); font-weight: 700; font-size: .74rem;
  padding: 4px 10px; border-radius: 5px; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.en-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.9); animation: pulseDot 1.8s ease-in-out infinite; }
.en-a { background: #16A34A; }
.en-b { background: #0EA5E9; }
.en-c { background: #EA580C; }
.en-d { background: #DC2626; }
.en-acro { background: #1C1C1E; }
.stock-tag {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--mono); font-size: .68rem; font-weight: 600;
  padding: 4px 9px; border-radius: 5px;
  background: rgba(28,28,30,.82); color: #fff;
}
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.product-body h3 { font-size: 1.05rem; margin: 0; overflow-wrap: break-word; }
.product-brand { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; }
.spec-list {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: grid; gap: 4px; font-family: var(--mono); font-size: .76rem; color: var(--ink-soft);
}
.spec-list li { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px dashed var(--line); padding-bottom: 3px; }
.spec-list li .val { color: var(--ink); font-weight: 600; }
.product-foot {
  margin-top: auto; padding-top: 12px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 10px; border-top: 1px solid var(--line);
}
.price { line-height: 1.1; }
.price .from { font-family: var(--mono); font-size: .64rem; color: var(--ink-faint); display: block; text-transform: uppercase; letter-spacing: .1em; }
.price .amt { font-family: var(--heading); font-weight: 800; font-size: 1.3rem; font-variant-numeric: tabular-nums; }
.price .cur { font-size: .8rem; color: var(--ink-soft); }
.product-foot .btn { padding: 9px 14px; font-size: .82rem; }

/* filter bar for catalog */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 22px; padding: 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.filter-bar .flabel { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-right: 6px; }

/* ===============================================================
   Generic cards / feature grid
   =============================================================== */
.grid-3 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -26px rgba(14,52,96,.4); }
.card .ic {
  width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(14,165,233,.1); color: var(--accent-2);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .94rem; }

/* process / timeline */
.timeline { display: grid; gap: 0; margin-top: 20px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-no {
  font-family: var(--mono); font-weight: 700; font-size: 1.4rem;
  color: var(--accent); grid-row: span 2; min-width: 56px;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--ink-soft); margin: 0; }
.step .when { font-family: var(--mono); font-size: .72rem; color: var(--accent-2); display: block; margin-top: 6px; letter-spacing: .04em; }

/* ===============================================================
   TABLES
   =============================================================== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line); border-radius: 8px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
table thead th {
  background: var(--ink); color: #fff; font-family: var(--mono);
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
}
table tbody tr:nth-child(even) { background: var(--surface-2); }
table td .tnum, table td.tnum { font-variant-numeric: tabular-nums; font-family: var(--mono); }
.price-cell { font-family: var(--heading); font-weight: 800; }

/* ===============================================================
   2. EL — listings
   =============================================================== */
.listing-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.listing {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.listing:hover { transform: translateY(-5px); box-shadow: 0 22px 38px -28px rgba(14,52,96,.45); }
.listing-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.listing-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.listing:hover .listing-media img { transform: scale(1.05); }
.cond-tag {
  position: absolute; bottom: 10px; left: 10px;
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  padding: 4px 9px; border-radius: 5px; background: var(--warn-yellow); color: var(--ink);
}
.listing-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.listing-body h3 { font-size: 1.02rem; margin: 0; overflow-wrap: anywhere; word-break: break-word; }
.listing-meta { font-family: var(--mono); font-size: .74rem; color: var(--ink-soft); display: grid; gap: 3px; }
.listing-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }

/* ===============================================================
   FORM
   =============================================================== */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: .82rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; background: var(--bg);
  border: 1px solid var(--line-strong); border-bottom-width: 2px; border-radius: 8px;
  transition: border-color 180ms ease, background 180ms ease;
  width: 100%; min-width: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk span { font-size: .84rem; color: var(--ink-soft); font-weight: 400; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent);
}

/* ===============================================================
   CONTACT cards
   =============================================================== */
.contact-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms ease;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -24px rgba(14,52,96,.4); }
.contact-card .cc-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(234,88,12,.1); color: var(--accent); margin-bottom: 4px;
}
.contact-card .cc-ic svg { width: 24px; height: 24px; }
.contact-card .cc-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.contact-card .cc-value { font-weight: 700; font-size: 1.05rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.contact-card .cc-value:hover { color: var(--accent-dark); }
.contact-card .cc-sub { font-size: .84rem; color: var(--ink-soft); }

.hours-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-top: 16px; }
.hour-cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; display: flex; justify-content: space-between;
  font-variant-numeric: tabular-nums; font-family: var(--mono); font-size: .84rem;
}
.hour-cell .d { color: var(--ink-soft); }
.hour-cell.today { border-color: var(--accent); background: rgba(234,88,12,.06); }
.hour-cell.today .d { color: var(--accent-dark); font-weight: 700; }

/* ===============================================================
   FAQ — pure CSS accordion
   =============================================================== */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 18px clamp(16px,3vw,24px);
  font-family: var(--heading); font-weight: 800; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+"; font-family: var(--mono); font-size: 1.4rem; color: var(--accent);
  transition: transform 300ms ease; flex: none;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0; padding: 0 clamp(16px,3vw,24px); overflow: hidden;
  color: var(--ink-soft); font-size: .95rem;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ===============================================================
   Manifesto / quote
   =============================================================== */
.manifesto { padding: clamp(40px,7vw,80px) 0; }
.manifesto blockquote {
  margin: 0; max-width: 24ch;
  font-family: var(--heading); font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
}
.manifesto blockquote .hl { color: var(--accent); }
.manifesto cite { display: block; margin-top: 20px; font-style: normal; font-family: var(--mono); font-size: .82rem; color: var(--ink-soft); }

/* pill row */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill { font-family: var(--mono); font-size: .8rem; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); }
.pill.accent { background: var(--ink); color: #fff; border-color: var(--ink); }

/* team */
.team-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.member-media { aspect-ratio: 1/1; overflow: hidden; }
.member-media img { width: 100%; height: 100%; object-fit: cover; }
.member-body { padding: 20px; }
.member-body h3 { margin-bottom: 2px; }
.member-role { font-family: var(--mono); font-size: .74rem; color: var(--accent-dark); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.member-body p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* testimonials */
.testi-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 24px; }
.testi p { font-size: .96rem; color: var(--ink); }
.testi .who { font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }
.testi .who b { color: var(--ink); }
.testi .stars { color: var(--accent); letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; }

/* pricing */
.price-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--ink); box-shadow: 0 24px 44px -30px rgba(14,52,96,.5); }
.plan .plan-name { font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); }
.plan .plan-price { font-family: var(--heading); font-weight: 800; font-size: 2.2rem; margin: 8px 0 2px; font-variant-numeric: tabular-nums; }
.plan .plan-price small { font-size: .9rem; color: var(--ink-soft); font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 10px; }
.plan li { font-size: .9rem; padding-left: 26px; position: relative; color: var(--ink-soft); }
.plan li::before { content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; background: var(--accent-2); clip-path: polygon(14% 44%, 0 60%, 43% 100%, 100% 22%, 84% 8%, 40% 68%); }
.plan li.no { color: var(--ink-faint); }
.plan li.no::before { background: var(--line-strong); clip-path: none; border-radius: 50%; width: 13px; height: 13px; top: 4px; }
.plan .plan-cta { margin-top: auto; }
.plan-note { font-family: var(--mono); font-size: .72rem; color: var(--ink-faint); margin-top: 22px; }

/* notes / news */
.notes-list { display: grid; gap: 12px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.note-item time { font-family: var(--mono); font-size: .74rem; color: var(--accent-dark); white-space: nowrap; }
.note-item p { margin: 0; font-size: .94rem; }

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer { background: var(--ink); color: #B9B9C0; padding: clamp(40px,6vw,72px) 0 28px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #8A8A93; }
.footer-brand p { color: #8A8A93; font-size: .9rem; margin-top: 14px; }
.site-footer h4 { color: #fff; font-size: .82rem; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #B9B9C0; font-size: .92rem; }
.site-footer a:hover { color: var(--accent); }
.footer-contact { font-family: var(--mono); font-size: .84rem; display: grid; gap: 10px; }
.footer-contact a { color: #E9E9EC; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid #3A3A40;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-family: var(--mono); font-size: .74rem; color: #8A8A93;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===============================================================
   COOKIE BANNER
   =============================================================== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 20px; z-index: 9999;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.4);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-actions { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.cookie-actions .btn { padding: 11px 14px; font-size: .84rem; justify-content: center; min-height: 44px; }
.cookie-actions .full { grid-column: 1 / -1; }
/* Reddet, Kabul Et ile eşit görsel ağırlıkta olmalı (KVKK/GDPR).
   Kabul = dolu koyu buton, Reddet = eşit belirginlikte koyu çerçeveli buton. */
.cookie-actions [data-consent="reject"] {
  background: var(--surface); color: var(--ink);
  border: 2px solid var(--ink); font-weight: 700;
}
.cookie-actions [data-consent="reject"]:hover,
.cookie-actions [data-consent="reject"]:focus-visible {
  background: var(--ink); border-color: var(--ink); color: #fff;
  transform: translateY(-2px);
}

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 16px; }
.cookie-modal.is-open { display: grid; }
.cookie-modal .cm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.cookie-modal .cm-panel {
  position: relative; background: var(--surface); border-radius: 14px;
  max-width: 460px; width: 100%; padding: 26px; z-index: 1;
  max-height: 90vh; overflow-y: auto;
}
.toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.toggle-row .tr-txt small { display: block; color: var(--ink-soft); font-size: .8rem; }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background 200ms ease; }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 200ms ease; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { opacity: .55; }

/* ===============================================================
   REVEAL
   =============================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
html.no-js .reveal { opacity: 1; transform: none; }

/* ===============================================================
   ANIMATIONS — niche
   =============================================================== */
@keyframes pulseDot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
@keyframes cloudDrift { from { transform: translateX(0); } to { transform: translateX(60px); } }
@keyframes cloudDrift2 { from { transform: translateX(0); } to { transform: translateX(-50px); } }
@keyframes canopySway { 0%,100% { transform: rotate(-1.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-6px); } }
@keyframes gullFly { 0% { transform: translate(0,0); } 50% { transform: translate(30px,-14px); } 100% { transform: translate(60px,0); } }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }

/* hero decorative sky */
.hero-sky-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-grid { position: relative; z-index: 1; }
.cloud { position: absolute; opacity: .55; will-change: transform; }
.cloud--1 { top: 12%; left: -6%; width: 180px; animation: cloudDrift 26s ease-in-out infinite alternate; }
.cloud--2 { top: 34%; right: -4%; width: 140px; animation: cloudDrift2 34s ease-in-out infinite alternate; }
.cloud--3 { top: 62%; left: 30%; width: 100px; opacity: .35; animation: cloudDrift 40s ease-in-out infinite alternate; }
.gull { position: absolute; top: 22%; left: 14%; width: 26px; color: var(--ink); opacity: .5; animation: gullFly 12s ease-in-out infinite; }
.traj { position: absolute; inset: 0; width: 100%; height: 100%; }
.traj path { stroke: var(--accent); stroke-width: 2; fill: none; stroke-dasharray: 1200; stroke-dashoffset: 1200; opacity: .5; animation: dashDraw 3.5s ease forwards .4s; }
@media (prefers-reduced-motion: reduce) {
  .cloud, .gull { animation: none; }
  .traj path { animation: none; stroke-dashoffset: 0; }
  .hero-product .en-badge .dot, .en-tag .dot { animation: none; }
}

/* ===============================================================
   Simple page hero (interior pages)
   =============================================================== */
.page-hero {
  padding: clamp(40px, 7vw, 84px) 0 clamp(28px, 4vw, 44px);
  background: radial-gradient(120% 90% at 82% 0%, rgba(14,165,233,.12), transparent 60%), var(--surface);
  border-bottom: 1px solid var(--line); min-height: 220px; display: flex; align-items: center;
}
.page-hero .lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ink-soft); max-width: 60ch; }

/* prose */
.prose { max-width: 820px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; }

/* thank-you */
.ty-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.ty-wrap .ty-ic { width: 84px; height: 84px; border-radius: 50%; background: rgba(22,163,74,.12); color: #16A34A; display: grid; place-items: center; margin: 0 auto 22px; }
.ty-wrap .ty-ic svg { width: 42px; height: 42px; }

/* utility */
.mt-lg { margin-top: clamp(32px, 5vw, 56px); }
.text-center { text-align: center; }
.lead { font-size: 1.1rem; color: var(--ink-soft); }
.divider-rule { height: 1px; background: var(--line); margin: clamp(32px,5vw,56px) 0; border: 0; }
.long { word-break: break-word; overflow-wrap: anywhere; }

/* ===============================================================
   RESPONSIVE tweaks
   =============================================================== */
@media (max-width: 640px) {
  .card { padding: 18px; }
  .card .ic { width: 40px; height: 40px; }
  .card .ic svg { width: 22px; height: 22px; }
  .catalog-grid, .listing-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .cookie-actions { grid-template-columns: 1fr; }
  .product-body { padding: 12px; }
  .price .amt { font-size: 1.1rem; }
}
@media (max-width: 380px) {
  .catalog-grid, .listing-grid { grid-template-columns: 1fr; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent-2),var(--accent));z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ===============================================================
   ★ PREMIUM LAYER — award-level art direction
   Zirve Kanat · yamaç paraşütü ekipmanı / Fethiye
   Type system:  Space Grotesk (display, alet-göstergesi karakteri)
                 · Fraunces italic (editöryel sıcaklık / vurgu)
                 · mono (teknik etiket) · system sans (metin)
   Renk:  teknik turuncu + gökyüzü mavisi + sarı-siyah uyarı şeridi
   =============================================================== */

body { font-size: 16.5px; letter-spacing: .002em; }

/* ---- heading rhythm & optical sizing ---- */
h2 { font-size: clamp(1.6rem, 3.8vw, 2.7rem); }
.section-head { max-width: 760px; }
.section-head h2 {
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  line-height: 1.0; letter-spacing: -0.028em; margin-bottom: .3em;
}
.section-head .lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 60ch; color: var(--ink-soft); }
.section-dark h2 em, .section-dark h3 em, .section-dark h4 em { color: #FDBA74; }

/* eyebrow: teknik kicker, biraz daha karakterli */
.eyebrow { font-size: .74rem; letter-spacing: .22em; gap: 10px; }
.eyebrow::before { width: 30px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* ---- section vertical rhythm & hairline seams ---- */
.section { padding: clamp(56px, 8.5vw, 108px) 0; }
.section-alt { position: relative; }
.section-alt::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  pointer-events: none;
}

/* ---- HERO type harmony ---- */
.hero-eyebrow { letter-spacing: .24em; }
.hero-stats b { font-family: var(--heading); font-weight: 600; letter-spacing: -.01em; }
.hero-title .ital { padding-right: .04em; }

/* ---- featured showcase (öne çıkan kanat) ---- */
.hero-product { box-shadow: var(--shadow-sky); transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease; }
.hero-product:hover { transform: translateY(-4px); box-shadow: 0 34px 60px -34px rgba(194,65,12,.45); }
.hero-product .spec-row .v { font-family: var(--heading); font-weight: 600; }

/* ---- STATS — instrument readout feel ---- */
.stats { box-shadow: var(--shadow-sky); }
.stat { position: relative; transition: background 240ms ease; }
.stat::after {
  content: ""; position: absolute; left: 18px; bottom: 0; width: 26px; height: 3px;
  background: var(--accent); opacity: .0; transition: opacity 260ms ease, width 260ms ease;
}
.stat:hover { background: #fff; }
.stat:hover::after { opacity: 1; width: 40px; }
.stat .num { font-family: var(--heading); font-weight: 700; letter-spacing: -.02em; }

/* ---- CATALOG / listing cards — warm accent lift ---- */
.product-card, .listing { will-change: auto; }
.product-card:hover, .listing:hover { box-shadow: var(--shadow-warm); border-color: var(--accent); }
.product-card:hover { transform: translateY(-7px); }
.product-body h3, .listing-body h3 { letter-spacing: -.018em; }
.price .amt { font-family: var(--heading); font-weight: 700; letter-spacing: -.02em; }
.en-tag, .stock-tag, .cond-tag { box-shadow: 0 4px 12px -6px rgba(0,0,0,.5); }

/* filter chips — hız/his */
.filter-bar { gap: 10px; }
.chip { transition: transform 160ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.chip:hover { transform: translateY(-1px); }
.chip.is-active { box-shadow: 0 8px 18px -12px rgba(28,28,30,.6); }

/* ---- TIMELINE (süreç) — flight-path spine ---- */
.timeline { position: relative; }
.step { transition: transform 240ms ease; }
.step .step-no {
  font-family: var(--heading); font-weight: 700; font-size: 1.55rem;
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-dark .step { border-top-color: #34343A !important; }
.step .when::before { content: "↗ "; color: var(--accent); }

/* ---- PRICING plans — premium featured ribbon ---- */
.plan { transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-warm); }
.plan .plan-price { font-family: var(--heading); font-weight: 700; letter-spacing: -.025em; }
.plan.featured { position: relative; overflow: hidden; border-width: 1.5px; }
.plan.featured::after {
  content: "EN ÇOK TERCİH EDİLEN";
  position: absolute; top: 16px; right: -42px; transform: rotate(45deg);
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  padding: 5px 46px; box-shadow: 0 6px 14px -8px rgba(0,0,0,.5); z-index: 1;
}

/* ---- MANIFESTO — editorial serif ---- */
.manifesto blockquote {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.06;
  max-width: 20ch;
}
.manifesto blockquote .hl { font-style: italic; font-weight: 500; color: var(--accent); }

/* ---- TESTIMONIALS — quote character ---- */
.testi { position: relative; transition: transform 220ms ease, box-shadow 220ms ease; }
.testi::before {
  content: "\201C"; position: absolute; top: 4px; right: 18px;
  font-family: var(--serif); font-style: italic; font-size: 4.6rem; line-height: 1;
  color: var(--accent); opacity: .12; pointer-events: none;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.testi p { position: relative; z-index: 1; }

/* ---- feature / info cards ---- */
.card:hover { box-shadow: var(--shadow-warm); border-color: var(--line-strong); }
.card h3, .contact-card .cc-value { letter-spacing: -.012em; }

/* ---- FAQ polish ---- */
.faq-item { transition: border-color 200ms ease, box-shadow 200ms ease; }
.faq-item[open] { border-color: var(--line-strong); box-shadow: 0 14px 30px -24px rgba(14,52,96,.4); }
.faq-item > summary { letter-spacing: -.01em; }

/* ---- pill row ---- */
.pill { transition: transform 160ms ease, border-color 160ms ease; }
.pill:hover { transform: translateY(-1px); border-color: var(--accent); }

/* ---- interior page hero — larger, editorial ---- */
.page-hero {
  background:
    radial-gradient(120% 90% at 82% 0%, rgba(14,165,233,.14), transparent 58%),
    radial-gradient(90% 80% at 4% 120%, rgba(234,88,12,.08), transparent 60%),
    var(--surface);
}
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.8rem); letter-spacing: -.03em; }
.page-hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); margin-top: .2em; }

/* ---- manifesto quote in dark CTA blocks keeps warmth ---- */
.section-dark .lead { color: #B9B9C0; }

/* ---- premium reveal: subtle blur-in, still transform/opacity/filter only ---- */
.reveal { filter: blur(6px); transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1), filter 640ms ease; }
.reveal.is-in { filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .reveal { filter: none !important; } }
html.no-js .reveal { filter: none; }

/* ---- images: hairline frame + gentle sheen on media cards ---- */
.hero-product .sky::after,
.listing-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

/* ===============================================================
   MOBILE type guards — clamp already used; harden against clipping
   =============================================================== */
@media (max-width: 430px) {
  .hero-title { font-size: clamp(2.2rem, 10.5vw, 3rem); line-height: 1.02; }
  .hero-title .word { white-space: normal; }
  .section-head h2 { letter-spacing: -.02em; }
  .plan.featured::after { font-size: .52rem; right: -46px; padding: 5px 48px; }
}
@media (max-width: 360px) {
  .hero-stats { gap: 12px 18px; }
  .manifesto blockquote { max-width: 100%; }
}
