:root {
  interpolate-size: allow-keywords;
  --bg: #F5F5F0;
  --surface: #FFFFFF;
  --surface-2: #EDEDEA;
  --ink: #1A1A1A;
  --ink-soft: #5A5A5A;
  --accent: #C8E632;
  --accent-2: #5C6B3C;
  --line: rgba(26,26,26,0.12);
  --line-strong: rgba(26,26,26,0.28);
  --header-h: 72px;
  --max-w: 1240px;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--ink);
  background: var(--bg); letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 16px; border-radius: 0 0 6px 6px;
  z-index: 10000; font-size: 14px; transition: top 200ms;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2.5px solid var(--accent-2); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(200,230,50,0.18); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; line-height: 1.15; letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.75rem; display: block;
}
.mono { font-family: 'JetBrains Mono', monospace; }
p { max-width: 68ch; }

.container {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px);
}
main { padding-top: var(--header-h); }
section { padding: clamp(3rem, 8vw, 6rem) 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.dot-grid {
  background-image: radial-gradient(circle, rgba(26,26,26,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(245, 245, 240, 0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease; height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(245,245,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent-2); width: 0%; z-index: 1;
  transition: width 60ms linear;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 1085; }
.logo-mark {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.1rem;
  background: var(--ink); color: var(--accent);
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; letter-spacing: -0.02em;
}
.logo-text {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 0.95rem; color: var(--ink); letter-spacing: 0.02em;
}

.nav-desktop { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0; text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97);
}
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a:hover { color: var(--accent-2); }
.nav-desktop a.is-active { color: var(--accent-2); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 8px 20px; border-radius: 4px; font-size: 0.75rem;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent-2); color: var(--surface); transform: translateY(-1px); box-shadow: 0 4px 12px -4px rgba(92,107,60,0.3); }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 48px; height: 48px; background: rgba(26,26,26,0.09);
  border: 2px solid var(--ink); border-radius: 6px; cursor: pointer;
  z-index: 1100; position: relative;
  transition: border-color 240ms, background 240ms, transform 180ms;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--accent-2); background: rgba(26,26,26,0.14); transform: scale(1.04); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 24px; height: 3px; background: var(--ink);
  border-radius: 2px; transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] { border-color: transparent; background: transparent; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== 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 380ms cubic-bezier(.16,.73,.29,.97), box-shadow 380ms;
  padding: calc(var(--header-h) + 24px) 32px 32px; overflow-y: auto;
  box-shadow: -16px 0 48px -8px rgba(0,0,0,0);
}
.drawer.is-open { transform: translateX(0); box-shadow: -16px 0 48px -8px rgba(0,0,0,0.15); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink);
  text-decoration: none; transition: color 240ms, padding-left 240ms cubic-bezier(.4,0,.2,1);
}
.drawer nav a:hover { color: var(--accent-2); padding-left: 8px; }
.drawer nav a.is-active { color: var(--accent-2); }
.drawer nav .nav-cta {
  margin-top: 16px; background: var(--ink); color: var(--surface);
  text-align: center; padding: 14px; border-radius: 4px; border-bottom: none;
}
.drawer nav .nav-cta:hover { background: var(--accent-2); color: var(--surface); padding-left: 0; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1040;
  opacity: 0; pointer-events: none; transition: opacity 320ms cubic-bezier(.16,.73,.29,.97);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero { padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem); position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
}
.hero-svg-wrap { position: relative; max-width: 520px; margin: 0 auto; }
@media (min-width: 768px) { .hero-svg-wrap { order: -1; max-width: none; } }
.hero-blueprint { width: 100%; height: auto; }
.hero__bg { grid-column: 1 / -1; border-radius: 6px; margin-top: clamp(1rem, 2vw, 1.5rem); }

.bp-draw {
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  animation: stroke-draw 1.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes stroke-draw { to { stroke-dashoffset: 0; } }
.bp-fade { opacity: 0; animation: bp-fade-in 0.6s ease forwards; animation-delay: var(--d, 1.6s); }
@keyframes bp-fade-in { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .bp-draw { stroke-dashoffset: 0 !important; animation: none !important; }
  .bp-fade { opacity: 1 !important; animation: none !important; }
}

.hero-content { position: relative; }
.hero-content h1 { margin-bottom: 1rem; line-height: 1.08; }
.hero-content h1 .accent-line { color: var(--accent-2); }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: var(--ink-soft);
  margin-bottom: 1.5rem; max-width: 44ch; line-height: 1.7;
}
.hero-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.hero-spec {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.04em; padding: 5px 12px; border: 1px solid var(--line-strong);
  border-radius: 3px; background: var(--surface); color: var(--ink);
}
.hero-spec strong { color: var(--accent-2); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--ink); color: var(--surface);
  padding: 14px 28px; border: 2px solid var(--ink); border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2); border-color: var(--accent-2); color: var(--surface);
  transform: translateY(-3px); box-shadow: 0 8px 24px -6px rgba(92,107,60,0.4);
}
.btn-primary:active { transform: translateY(-1px); box-shadow: 0 4px 12px -4px rgba(92,107,60,0.3); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  padding: 12px 24px; border: 1.5px solid var(--line-strong); border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  padding: 14px 28px; border: 2px solid var(--ink); border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
  transform: translateY(-2px);
}

/* ===== TRUST STRIP ===== */
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-family: 'JetBrains Mono', monospace;
  color: var(--ink-soft); padding: 5px 10px;
  border: 1px solid var(--line); border-radius: 3px; background: var(--surface);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent-2); flex-shrink: 0; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--ink); padding: clamp(2rem, 4vw, 3rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); text-align: center; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.stat-item .stat-number {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.stat-item .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }

/* ===== SECTION HEADINGS ===== */
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .dim-line { display: inline-block; width: 48px; height: 2px; background: var(--accent); margin-bottom: 12px; }

/* ===== SPEC CARDS (KAPASITE) ===== */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2rem); }
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem); position: relative; overflow: hidden;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97), box-shadow 340ms cubic-bezier(.16,.73,.29,.97), border-color 340ms;
}
.spec-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px -8px rgba(92,107,60,0.18); border-color: var(--accent); }
.spec-card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.spec-card h3 .card-icon { width: 32px; height: 32px; color: var(--accent-2); flex-shrink: 0; }
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-label { color: var(--ink-soft); }
.spec-row .spec-value {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.85rem; color: var(--ink);
}

/* ===== TABLE SCROLL ===== */
.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: 6px; position: relative;
}
@media (max-width: 640px) {
  .table-scroll { box-shadow: inset -24px 0 16px -16px rgba(0,0,0,0.08); }
}
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: var(--ink); }
thead th {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.73rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  padding: 14px 16px; text-align: left; white-space: nowrap;
}
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background 200ms; }
tbody tr:hover { background: rgba(200,230,50,0.06); }
.price-cell {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  color: var(--accent-2); white-space: nowrap;
}
.table-disclaimer { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; font-style: italic; }

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 768px) { .packages-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem); position: relative; overflow: hidden;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97), box-shadow 340ms cubic-bezier(.16,.73,.29,.97), border-color 340ms;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -12px rgba(92,107,60,0.2); border-color: var(--accent); }
.pkg-card.pkg-featured { border-color: var(--accent-2); border-width: 2px; }
.pkg-card.pkg-featured::before {
  content: 'Tercih edilen'; position: absolute; top: -1px; right: 20px;
  background: var(--accent-2); color: var(--surface);
  font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 4px 4px;
}
.pkg-card h3 { margin-bottom: 8px; }
.pkg-price {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.3rem;
  color: var(--accent-2); margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.pkg-price small { font-size: 0.7rem; font-weight: 500; color: var(--ink-soft); display: block; margin-top: 2px; }
.pkg-list { list-style: none; margin-bottom: 0.5rem; }
.pkg-list li { padding: 5px 0; font-size: 0.86rem; display: flex; align-items: flex-start; gap: 8px; }
.pkg-list li::before { content: '+'; color: var(--accent-2); font-weight: 700; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; }
.pkg-list.excluded li::before { content: '\2013'; color: var(--ink-soft); }
.pkg-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin: 12px 0 6px;
}

/* ===== PROCESS FLOW (AKIS) ===== */
.akis-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px;
  position: relative;
}
@media (max-width: 840px) {
  .akis-wrap { box-shadow: inset -28px 0 18px -18px rgba(0,0,0,0.06); }
}
.akis-flow { display: flex; align-items: flex-start; gap: 0; min-width: 780px; padding: 1rem 0; }
.akis-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; padding: 0 8px;
}
.akis-step:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; left: calc(50% + 32px);
  width: calc(100% - 64px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 8px, transparent 8px, transparent 14px);
}
.akis-node {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; position: relative; z-index: 2;
  transition: background 300ms cubic-bezier(.16,.73,.29,.97), transform 300ms cubic-bezier(.16,.73,.29,.97), box-shadow 300ms;
}
.akis-step:hover .akis-node { background: var(--accent); transform: scale(1.1); box-shadow: 0 6px 20px -4px rgba(92,107,60,0.25); }
.akis-node svg { width: 24px; height: 24px; color: var(--accent-2); }
.akis-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 0.68rem; color: var(--accent-2); margin-bottom: 4px;
}
.akis-title {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 0.8rem; color: var(--ink); margin-bottom: 4px;
}
.akis-desc { font-size: 0.76rem; color: var(--ink-soft); max-width: 145px; line-height: 1.45; }
.akis-time {
  font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; color: var(--accent-2);
  margin-top: 8px; padding: 2px 8px; border: 1px solid var(--accent-2); border-radius: 3px;
}

/* ===== WOOD STOCK CARDS ===== */
.stok-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 768px) { .stok-grid { grid-template-columns: 1fr; } }
.stok-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; position: relative;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97), box-shadow 340ms cubic-bezier(.16,.73,.29,.97), border-color 340ms;
}
.stok-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -12px rgba(92,107,60,0.2); border-color: var(--accent); }
.stok-swatch { height: 72px; position: relative; transition: height 340ms cubic-bezier(.16,.73,.29,.97); }
.stok-card:hover .stok-swatch { height: 80px; }
.stok-swatch::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 3px, rgba(255,255,255,0.12) 3px, rgba(255,255,255,0.12) 4px);
}
.stok-body { padding: clamp(1rem, 2vw, 1.5rem); }
.stok-body h3 { margin-bottom: 4px; }
.stok-latin { font-style: italic; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 10px; }
.stok-specs { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; font-size: 0.85rem; }
.stok-specs dt {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.72rem;
  color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em;
}
.stok-specs dd { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.85rem; color: var(--ink); }
.stok-color-code { display: inline-flex; align-items: center; gap: 6px; }
.stok-color-dot {
  width: 12px; height: 12px; border-radius: 2px; border: 1px solid var(--line); display: inline-block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem); position: relative; overflow: hidden;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97), box-shadow 340ms cubic-bezier(.16,.73,.29,.97), border-color 340ms;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px -8px rgba(92,107,60,0.15); border-color: var(--accent); }
.testimonial-card:first-child { grid-column: 1 / -1; }
@media (max-width: 768px) { .testimonial-card:first-child { grid-column: 1; } }
.testimonial-quote {
  font-size: 0.92rem; line-height: 1.7; color: var(--ink); margin-bottom: 1.2rem;
  position: relative; padding-left: 20px; border-left: 3px solid var(--accent);
}
.testimonial-author { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.78rem; color: var(--accent-2); }
.testimonial-meta { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 0.88rem;
  padding: clamp(1rem, 2vw, 1.25rem) 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; color: var(--ink); transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); padding-left: 4px; }
.faq-item summary { transition: color 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms cubic-bezier(.16,.73,.29,.97); }
.faq-item summary .faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1); color: var(--accent-2);
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-item > .faq-body {
  height: 0; padding: 0 clamp(18px, 3vw, 28px); overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body { height: auto; padding-block-end: 24px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .faq-body { transition: none; } }
.faq-body p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ===== NOTES ===== */
.notes-list { display: flex; flex-direction: column; gap: 12px; }
.note-item {
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem;
  padding: 12px 16px; background: var(--surface); border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  transition: transform 240ms cubic-bezier(.16,.73,.29,.97), box-shadow 240ms, border-left-color 300ms, background 300ms;
}
.note-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px -6px rgba(92,107,60,0.1); border-left-color: var(--accent-2); }
.note-date {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.76rem;
  color: var(--accent-2); white-space: nowrap; min-width: 100px;
}
.note-text { color: var(--ink-soft); }

/* ===== AVAILABILITY ===== */
.availability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.73rem; font-weight: 500;
  padding: 6px 14px; border: 1px solid var(--accent-2); border-radius: 3px; color: var(--accent-2);
  margin-top: 12px;
}
.availability-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }
@media (prefers-reduced-motion: reduce) { .availability-badge .pulse { animation: none; opacity: 1; } }

/* ===== FORM (dark bg) ===== */
.form-section { background: var(--ink); color: var(--surface); }
.form-section .eyebrow { color: var(--accent); }
.form-section h2 { color: var(--surface); }
.form-section p { color: rgba(255,255,255,0.65); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.73rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.field input, .field select, .field textarea {
  font-family: 'Inter', system-ui, sans-serif; font-size: 0.9rem;
  padding: 12px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  background: rgba(255,255,255,0.08); color: var(--surface);
  transition: border-color 240ms, background 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select option { background: var(--ink); color: var(--surface); }
.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);
}
.kvkk-field { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 10px; }
.kvkk-field label {
  font-size: 0.78rem; text-transform: none; letter-spacing: 0; line-height: 1.5;
  color: rgba(255,255,255,0.5);
}
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.form-submit .btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.form-submit .btn-primary:hover, .form-submit .btn-primary:focus-visible {
  background: var(--accent-2); color: var(--surface); border-color: var(--accent-2);
}
.form-termin {
  grid-column: 1 / -1; font-family: 'JetBrains Mono', monospace;
  font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 8px;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* Form light variant (iletisim page) */
.form-light .field label { color: var(--ink-soft); }
.form-light .field input, .form-light .field select, .form-light .field textarea {
  background: var(--surface); border-color: var(--line-strong); color: var(--ink);
}
.form-light .field input:focus, .form-light .field select:focus, .form-light .field textarea:focus {
  border-color: var(--accent-2); background: var(--surface);
}
.form-light .kvkk-field label { color: var(--ink-soft); }
.form-light .form-submit .btn-primary { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.form-light .form-submit .btn-primary:hover { background: var(--accent-2); color: var(--surface); border-color: var(--accent-2); }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: clamp(3rem, 6vw, 4rem) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-mark { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 0.73rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; position: relative; display: inline-block; transition: color 240ms, padding-left 240ms cubic-bezier(.16,.73,.29,.97); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px;
  font-size: 0.85rem; word-break: break-all; overflow-wrap: anywhere;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-bottom {
  padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px; font-size: 0.76rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }

/* ===== 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); border-radius: 8px;
  padding: 20px 24px; box-shadow: 0 16px 48px -8px rgba(0,0,0,0.18);
  transform: translateY(140%); opacity: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 280ms;
  z-index: 9999;
}
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
@media (max-width: 639px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; padding: 20px 16px 24px; max-width: none; }
  .cookie-actions { gap: 10px; }
  .cookie-actions button { padding: 12px 20px; font-size: 0.78rem; min-height: 48px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 0.9rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions button {
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.73rem;
  letter-spacing: 0.04em; padding: 10px 18px; border-radius: 4px;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; min-height: 44px; min-width: 44px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms;
}
.cookie-actions button:hover { transform: translateY(-1px); }
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--surface); }
.cookie-actions button[data-consent="reject"] { background: transparent; color: var(--ink); border-color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.cookie-actions button[data-consent="settings"] { border-color: var(--ink); background: transparent; color: var(--ink); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(32px) rotate(0.3deg);
  transition: opacity 700ms cubic-bezier(.16,.73,.29,.97), transform 700ms cubic-bezier(.16,.73,.29,.97);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .bp-fade { opacity: 1; }

/* ===== NICHE ANIMATIONS ===== */
.chip {
  position: absolute; width: 6px; height: 3px; background: var(--accent);
  border-radius: 1px; opacity: 0; pointer-events: none;
  animation: chip-float var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes chip-float {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  8% { opacity: 0.45; }
  50% { transform: translateY(-80px) rotate(120deg) translateX(20px); opacity: 0.3; }
  100% { transform: translateY(-160px) rotate(240deg) translateX(-15px); opacity: 0; }
}
.grain-reveal {
  background-image: linear-gradient(90deg, transparent 0%, rgba(200,230,50,0.05) 40%, rgba(200,230,50,0.14) 50%, rgba(200,230,50,0.05) 60%, transparent 100%);
  background-size: 250% 100%; background-position: -100% 0;
  transition: background-position 1.1s cubic-bezier(.16,.73,.29,.97);
}
.grain-reveal:hover { background-position: 200% 0; }
.chisel-underline { position: relative; display: inline-block; }
.chisel-underline::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 600ms cubic-bezier(.16,.73,.29,.97);
}
.chisel-underline:hover::after { width: 100%; }
.sawdust-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.sawdust {
  position: absolute; width: 3px; height: 3px; background: var(--accent);
  border-radius: 50%; opacity: 0;
  animation: sawdust-drift var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes sawdust-drift {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.22; }
  60% { opacity: 0.12; }
  100% { transform: translate(var(--dx, 30px), var(--dy, -100px)); opacity: 0; }
}
@keyframes lathe-rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.lathe-spin { animation: lathe-rotate 12s linear infinite; }

/* Woodcraft warm glow on cards */
.spec-card::after, .stok-card::after, .testimonial-card::after, .team-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 0%, rgba(200,230,50,0.08) 0%, transparent 70%);
  transition: opacity 400ms cubic-bezier(.16,.73,.29,.97);
}
.spec-card:hover::after, .stok-card:hover::after, .testimonial-card:hover::after, .team-card:hover::after { opacity: 1; }

/* Warm image hover effect */
.section-visual {
  transition: transform 400ms cubic-bezier(.16,.73,.29,.97), box-shadow 400ms;
}
.section-visual:hover {
  transform: scale(1.005);
  box-shadow: 0 12px 36px -8px rgba(92,107,60,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .chip, .sawdust, .lathe-spin { animation: none !important; opacity: 0 !important; }
  .grain-reveal { transition: none; }
  .spec-card::after, .stok-card::after, .testimonial-card::after, .team-card::after { display: none; }
}

/* ===== CONTACT PAGE ===== */
.contact-channels { max-width: 560px; }
.contact-row {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
  padding: 14px 0; border-bottom: 1px solid var(--line); position: relative;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { transform: translateX(4px); }
.contact-row:hover .contact-icon { color: var(--accent-2); transform: scale(1.08); }
.contact-icon {
  width: 20px; height: 20px; color: var(--ink-soft); margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-label {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 2px;
}
.contact-value { font-size: 0.9rem; color: var(--ink-soft); word-break: break-all; overflow-wrap: anywhere; }
.contact-value a { color: var(--ink-soft); }
.contact-value a:hover { color: var(--accent-2); }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 0.85rem; }
.hours-grid dt { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.8rem; color: var(--ink); }
.hours-grid dd { color: var(--ink-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== PAGE CONTENT ===== */
.page-content { padding: clamp(3rem, 8vw, 5rem) 0; }
.page-content h1 { margin-bottom: 2rem; }
.page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.page-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.page-content p { margin-bottom: 1rem; color: var(--ink-soft); }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--ink-soft); }
.page-content li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.page-content strong { color: var(--ink); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem); position: relative; overflow: hidden;
  transition: transform 340ms cubic-bezier(.16,.73,.29,.97), box-shadow 340ms cubic-bezier(.16,.73,.29,.97), border-color 340ms;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px -8px rgba(92,107,60,0.15); border-color: var(--accent); }
.team-photo {
  width: 72px; height: 72px; border-radius: 50%; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; border: 2px solid var(--line);
}
.team-photo svg { width: 28px; height: 28px; color: var(--ink-soft); }
.team-name { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 0.73rem;
  color: var(--accent-2); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px;
}
.team-bio { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== THANK YOU ===== */
.thank-you-content { text-align: center; padding: clamp(5rem, 12vw, 8rem) 0; }
.thank-you-content h1 { margin-bottom: 1rem; }
.thank-you-content p { margin: 0 auto 2rem; color: var(--ink-soft); }
.thank-you-icon {
  width: 80px; height: 80px; margin: 0 auto 2rem; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.thank-you-icon svg { width: 36px; height: 36px; color: var(--ink); }

/* ===== 404 ===== */
.error-page { text-align: center; padding: clamp(5rem, 12vw, 8rem) 0; }
.error-code {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: clamp(5rem, 15vw, 10rem); line-height: 1; color: var(--accent); margin-bottom: 0.5rem;
}
.error-page h1 { margin-bottom: 1rem; }
.error-page p { margin: 0 auto 2rem; color: var(--ink-soft); }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== LEGAL PAGE ===== */
.legal-body code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: var(--surface-2); padding: 2px 6px; border-radius: 3px; }
.legal-body { max-width: 740px; line-height: 1.7; }
.section-visual { border-radius: 6px; margin-bottom: clamp(1.5rem, 3vw, 2rem); }

/* ===== SITEMAP PAGE ===== */
.sitemap-list h2 { font-size: 1.1rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.sitemap-list ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.sitemap-list ul ul { padding-left: 1.5rem; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list > ul > li { border-bottom: 1px dashed var(--line); }
.sitemap-list a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; }
.sitemap-list > ul > li > a::before {
  content: '\2192'; font-family: 'JetBrains Mono', monospace; color: var(--accent-2);
}
.sitemap-list a:hover { color: var(--accent-2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 1024px) { :root { --header-h: 64px; } }
@media (max-width: 640px) {
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  section { padding: clamp(2rem, 6vw, 3.5rem) 0; }
  .hero-specs { gap: 8px; }
  .hero-spec { font-size: 0.63rem; padding: 4px 8px; }
  .spec-card, .pkg-card, .testimonial-card { padding: 16px; }
  .stok-body { padding: 14px; }
  .akis-node { width: 44px; height: 44px; }
  .akis-node svg { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  .trust-strip { gap: 6px; }
  .trust-badge { font-size: 0.63rem; padding: 4px 8px; }
}

/* ===== REDUCED-MOTION: disable transform-based hovers ===== */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-primary:active,
  .spec-card:hover, .pkg-card:hover, .stok-card:hover,
  .testimonial-card:hover, .team-card:hover,
  .akis-step:hover .akis-node, .note-item:hover,
  .nav-desktop .nav-cta:hover, .cookie-actions button:hover,
  .section-visual:hover, .contact-row:hover {
    transform: none !important;
  }
  .stok-card:hover .stok-swatch { height: 72px; }
}

/* ===== LEGAL PAGE ENHANCED TYPOGRAPHY ===== */
.legal-body h2 {
  padding-top: 2rem; border-top: 1px solid var(--line); font-size: 1.15rem;
  margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; }
.legal-body h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--accent-2); }
.legal-body ul, .legal-body ol {
  background: var(--surface); border-radius: 6px;
  padding: 1rem 1.5rem 1rem 2.5rem; border-left: 3px solid var(--accent);
}
.legal-body li { margin-bottom: 0.4rem; }
.legal-body > p + p { margin-top: 0.75rem; }
.legal-page .page-content { padding-bottom: clamp(3rem, 8vw, 5rem); }

/* ===== ENHANCED WOODCRAFT HOVER MICRO-EFFECTS ===== */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  background: rgba(200,230,50,0.15);
  transform: translate(-50%, -50%);
  transition: width 500ms cubic-bezier(.16,.73,.29,.97), height 500ms cubic-bezier(.16,.73,.29,.97);
}
.btn-primary:hover::before { width: 300px; height: 300px; }

.pkg-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; border-radius: 0;
  transition: transform 400ms cubic-bezier(.16,.73,.29,.97);
  opacity: 1; pointer-events: auto;
}
.pkg-card:hover::after { transform: scaleX(1); opacity: 1; }
.pkg-card.pkg-featured::after { transform: scaleX(1); }

.stok-card .stok-swatch::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  opacity: 0; transition: opacity 400ms cubic-bezier(.16,.73,.29,.97);
}
.stok-card:hover .stok-swatch::before { opacity: 1; }

.faq-item summary::before {
  content: ''; position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 0; background: var(--accent-2); border-radius: 2px;
  transition: height 300ms cubic-bezier(.16,.73,.29,.97);
}
.faq-item summary { position: relative; }
.faq-item summary:hover::before { height: 20px; }
.faq-item[open] summary::before { height: 24px; }

.team-card .team-photo {
  transition: border-color 300ms cubic-bezier(.16,.73,.29,.97), box-shadow 300ms;
}
.team-card:hover .team-photo {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(200,230,50,0.15);
}

.akis-step .akis-time {
  transition: background 300ms, color 300ms, border-color 300ms;
}
.akis-step:hover .akis-time {
  background: var(--accent-2); color: var(--surface); border-color: var(--accent-2);
}

.contact-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); border-radius: 2px;
  transform: scaleY(0); transform-origin: top;
  transition: transform 300ms cubic-bezier(.16,.73,.29,.97);
}
.contact-row:hover::before { transform: scaleY(1); }

.footer-col a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 340ms cubic-bezier(.16,.73,.29,.97);
}
.footer-col a:hover::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { display: none; }
  .pkg-card::after, .faq-item summary::before,
  .contact-row::before, .footer-col a::after,
  .stok-card .stok-swatch::before { transition: none; }
  .nav-toggle:hover { transform: none !important; }
}

/* ===== WARM DUST SHIMMER ON STATS ===== */
.stat-number {
  position: relative;
}
.stat-number::after {
  content: ''; position: absolute; inset: -4px; border-radius: 4px;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,230,50,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 600ms cubic-bezier(.16,.73,.29,.97);
  pointer-events: none;
}
.stat-item:hover .stat-number::after { opacity: 1; }

/* ===== WOOD RING PULSE ON AKIS NODES ===== */
.akis-node::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid var(--accent); opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,.73,.29,.97), inset 400ms cubic-bezier(.16,.73,.29,.97);
}
.akis-step:hover .akis-node::before { opacity: 0.4; inset: -10px; }

/* ===== TESTIMONIAL CARD QUOTE ACCENT ===== */
.testimonial-card .testimonial-quote {
  transition: border-left-color 300ms cubic-bezier(.16,.73,.29,.97);
}
.testimonial-card:hover .testimonial-quote { border-left-color: var(--accent-2); }

/* ===== NOTE ITEM WARM HOVER ===== */
.note-item:hover { background: rgba(200,230,50,0.04); }

@media (prefers-reduced-motion: reduce) {
  .stat-number::after, .akis-node::before { display: none; }
  .note-item:hover { background: transparent; }
}

@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
