/* ============================================================
   PENÇE KALECİ AKADEMİSİ — styles.css
   Editorial-magazine design — Goalkeeper Academy
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg: #F4F7F0;
  --surface: #FFFFFF;
  --surface-2: #EDF2E8;
  --ink: #1A2E1A;
  --ink-soft: rgba(26,46,26,0.58);
  --accent: #3AAF4E;
  --accent-2: #FFD23F;
  --line: rgba(26,46,26,0.12);
  --line-strong: rgba(26,46,26,0.24);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 10px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', 'Segoe UI', sans-serif;
  interpolate-size: allow-keywords;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  padding: 8px 18px; background: var(--accent); color: #fff;
  border-radius: 0 0 6px 6px; font-size: 0.875rem; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 0.8em; }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); margin-bottom: 0.6em; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(244, 247, 240, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(244,247,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 60px;
}
.header-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ---------- Desktop Nav ---------- */
.nav-desktop {
  display: none;
  align-items: center; gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600; font-size: 0.875rem;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(58,175,78,0.3);
}

/* ---------- Hamburger Toggle ---------- */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100; position: relative;
  padding: 0;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}
.nav-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(58,175,78,0.12);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms, width 200ms, background 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle:active span { width: 18px; }

.nav-toggle[aria-expanded="true"] {
  background: var(--ink);
  border-color: var(--ink);
}
.nav-toggle[aria-expanded="true"] span {
  background: var(--surface);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* ---------- Mobile Drawer (OUTSIDE header) ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) var(--pad) var(--pad);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 200ms, transform 200ms;
}
.drawer a:hover { color: var(--accent); transform: translateX(6px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 6px;
  text-align: center; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  border-bottom: none;
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); transform: none; }

/* ---------- Main ---------- */
main { padding-top: var(--header-h); }

/* ---------- Sections ---------- */
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--surface); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--surface); }
.section-dark .eyebrow { color: var(--accent-2); }
.section-dark p { color: rgba(255,255,255,0.82); }

/* ---------- Green line separator ---------- */
.sep {
  width: 64px; height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
  border: none;
}
.sep--center { margin-left: auto; margin-right: auto; }

/* ---------- HERO — Type-Only Massive ---------- */
.hero {
  min-height: auto;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  position: relative; overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }

.hero .eyebrow { margin-bottom: 1.5rem; }

.hero-title {
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  position: relative;
}
.hero-title .line { display: block; }
.hero-title .hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  animation: letterDrop 500ms cubic-bezier(.16,.73,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 42ms + 100ms);
}
.hero-title .hero-letter.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes letterDrop {
  0% { opacity: 0; transform: translateY(40px) rotate(-3deg) scale(0.92); }
  45% { opacity: 1; transform: translateY(-4px) rotate(0.6deg) scale(1.02); }
  70% { transform: translateY(1px) rotate(-0.2deg) scale(1); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-glove {
  position: absolute;
  right: clamp(2rem, 8vw, 6rem);
  bottom: clamp(2rem, 6vw, 4rem);
  width: clamp(120px, 18vw, 220px);
  opacity: 0;
  transform: scale(1.4) rotate(-18deg);
  animation: gloveCatch 700ms cubic-bezier(.16,.73,.2,1) 0.8s forwards;
}
@keyframes gloveCatch {
  0% { opacity: 0; transform: scale(1.4) rotate(-18deg) translateY(30px); }
  50% { opacity: 1; transform: scale(1.05) rotate(4deg) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) rotate(0) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .hero-letter { opacity: 1; transform: none; animation: none; }
  .hero-glove { opacity: 1; transform: none; animation: none; }
}
html.no-js .hero-title .hero-letter { opacity: 1; transform: none; animation: none; }
html.no-js .hero-glove { opacity: 1; transform: none; animation: none; }

/* ---------- Manifesto / Drop-Cap ---------- */
.manifesto {
  max-width: 680px;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  margin-top: 2.5rem;
}
.manifesto::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4.5em;
  line-height: 0.8;
  margin: 0.06em 0.12em 0 0;
  color: var(--accent);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M8 36c0-8 4-16 12-20v-4c-4 0-8 2-10 4-3 4-6 10-6 18v4h12v-8H8zm20 0c0-8 4-16 12-20v-4c-4 0-8 2-10 4-3 4-6 10-6 18v4h12v-8H28z' fill='%233AAF4E' opacity='0.12'/%3E%3C/svg%3E") no-repeat left top;
  background-size: 1.2em;
  padding: 0.08em 0 0;
}

/* ---------- Pull-Quote ---------- */
.pull-quote {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute; left: -0.05em; top: -0.2em;
  font-size: 3em; color: var(--accent); opacity: 0.18;
  font-family: var(--font-heading);
  line-height: 1;
}

/* ---------- Two-Column Editorial ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ---------- Editorial Cards (vertical, for age groups) ---------- */
.editorial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 768px) {
  .editorial-cards { grid-template-columns: repeat(3, 1fr); }
}

.editorial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(58,175,78,0.18);
}
.editorial-card .card-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  position: absolute; top: -8px; right: 12px;
  line-height: 1;
}
.editorial-card .card-age {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.editorial-card h3 { margin-bottom: 0.6rem; }
.editorial-card p { color: var(--ink-soft); font-size: 0.95rem; }

.editorial-card .card-icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 280ms, transform 280ms;
}
.editorial-card:hover .card-icon {
  background: var(--accent);
  transform: scale(1.08);
}
.editorial-card:hover .card-icon svg { stroke: #fff; }
.editorial-card .card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 280ms;
}

/* ---------- Stats / Big Numbers ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}
.section-dark .stat-item .stat-label {
  color: rgba(255,255,255,0.65);
}
.section-dark .stat-item .stat-number {
  color: var(--accent-2);
}

/* ---------- Counter-up animation ---------- */
.counter-up {
  font-variant-numeric: tabular-nums;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  transition: transform 300ms cubic-bezier(.16,.73,.2,1), box-shadow 300ms cubic-bezier(.16,.73,.2,1), border-color 300ms, background 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -10px rgba(26,46,26,0.13);
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(58,175,78,0.02) 100%);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute; top: 8px; left: 16px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.testimonial-card .testimonial-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}
.testimonial-card .testimonial-detail {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ---------- Pricing Packages ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(58,175,78,0.18);
  border-color: var(--accent);
}
.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 3px 16px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.pricing-card .pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0.8rem 0 0.3rem;
}
.pricing-card .pricing-period {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.pricing-card .pricing-list {
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-card .pricing-list li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card .pricing-list li:last-child { border-bottom: none; }
.pricing-card .pricing-list .included::before {
  content: '✓';
  color: var(--accent); font-weight: 700; flex-shrink: 0;
}
.pricing-card .pricing-list .excluded::before {
  content: '—';
  color: var(--ink-soft); flex-shrink: 0;
}
.pricing-card .excluded { color: var(--ink-soft); }
.pricing-disclaimer {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ---------- Process / Timeline ---------- */
.process-timeline {
  position: relative;
  padding-left: 48px;
  max-width: 680px;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.process-step {
  position: relative;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 240ms cubic-bezier(.16,.73,.2,1);
}
.process-step:hover {
  transform: translateX(4px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: attr(data-step);
  position: absolute; left: -48px; top: 0;
  width: 36px; height: 36px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 800;
  z-index: 2;
  transition: transform 280ms cubic-bezier(.16,.73,.2,1), box-shadow 280ms;
}
.process-step:hover::before {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(58,175,78,0.15);
}
.process-step h4 {
  transition: color 200ms;
}
.process-step:hover h4 {
  color: var(--accent);
}
.process-step .step-time {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.process-step h4 { margin-bottom: 0.3rem; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- FAQ (pure CSS accordion) ---------- */
.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color 200ms, padding-left 280ms cubic-bezier(.16,.73,.2,1), background 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); padding-left: 6px; }

.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: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

.faq-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,175,78,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.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);
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--check label {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.45;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--ink); color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(58,175,78,0.35);
}

.btn-accent {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--ink); color: var(--surface);
  border-color: var(--ink);
}

.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);
}

.btn-submit {
  background: var(--accent); color: #fff;
  border: none; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  padding: 14px 32px; cursor: pointer;
  transition: background 240ms, transform 180ms, box-shadow 240ms;
  width: 100%;
}
@media (min-width: 640px) { .btn-submit { width: auto; } }
.btn-submit:hover, .btn-submit:focus-visible {
  background: var(--ink); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(26,46,26,0.3);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 1.5rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: transform 200ms cubic-bezier(.16,.73,.2,1), box-shadow 200ms, border-color 200ms;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(58,175,78,0.18);
  border-color: var(--accent);
}
.trust-badge svg {
  width: 14px; height: 14px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo { color: var(--surface); margin-bottom: 1rem; }
.footer-brand .logo:hover { color: var(--surface); }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 320px; }

.site-footer h4 {
  color: var(--surface);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 200ms, padding-left 200ms;
  position: relative;
}
.site-footer ul a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent-2);
  transition: width 260ms cubic-bezier(.16,.73,.2,1);
}
.site-footer ul a:hover { color: var(--accent-2); padding-left: 4px; }
.site-footer ul a:hover::after { width: 100%; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 10px; font-size: 0.9rem;
  word-break: break-word; overflow-wrap: anywhere;
}
.footer-contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact-item a { color: rgba(255,255,255,0.72); }
.footer-contact-item a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-vkn { color: rgba(255,255,255,0.35); font-size: 0.75rem; margin-top: 0.5rem; }

/* ---------- 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: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0); opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h3 {
  font-size: 1rem; margin-bottom: 8px;
  font-family: var(--font-body); font-weight: 700;
}
.cookie-banner p {
  font-size: 0.85rem; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 14px;
}
.cookie-banner p a { text-decoration: underline; }

.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 200ms, color 200ms, transform 180ms, border-color 200ms;
}
.cookie-actions button:hover {
  transform: translateY(-1px);
}
.cookie-actions button:active {
  transform: translateY(0);
}
.cookie-actions .cookie-accept {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cookie-actions .cookie-accept:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions .cookie-reject {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-actions .cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.cookie-actions .cookie-settings {
  background: transparent; color: var(--ink-soft);
}
.cookie-actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 620ms cubic-bezier(.16,.73,.2,1),
              transform 620ms cubic-bezier(.16,.73,.2,1);
  transition-delay: calc(var(--i, 0) * 75ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 620ms cubic-bezier(.16,.73,.2,1),
              transform 620ms cubic-bezier(.16,.73,.2,1);
  transition-delay: calc(var(--i, 0) * 75ms);
}
.reveal-left.is-in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 620ms cubic-bezier(.16,.73,.2,1),
              transform 620ms cubic-bezier(.16,.73,.2,1);
  transition-delay: calc(var(--i, 0) * 75ms);
}
.reveal-right.is-in { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 620ms cubic-bezier(.16,.73,.2,1),
              transform 620ms cubic-bezier(.16,.73,.2,1);
  transition-delay: calc(var(--i, 0) * 75ms);
}
.reveal-scale.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}
html.no-js .reveal, html.no-js .reveal-left,
html.no-js .reveal-right, html.no-js .reveal-scale { opacity: 1; transform: none; }

/* ---------- Goalkeeper Theme Animations ---------- */

/* 1. Diving save on card hover — goalkeeper stretching for the ball */
@keyframes diveMotion {
  0% { transform: translateX(0) rotate(0) scale(1); }
  25% { transform: translateX(4px) rotate(-4deg) translateY(-6px) scale(1.08); }
  55% { transform: translateX(10px) rotate(-6deg) translateY(-8px) scale(1.12); }
  75% { transform: translateX(4px) rotate(2deg) translateY(-2px) scale(1.04); }
  100% { transform: translateX(0) rotate(0) scale(1); }
}
.editorial-card:hover .card-icon svg {
  animation: diveMotion 700ms cubic-bezier(.16,.73,.2,1);
}

/* 2. Goal net background pattern */
.goal-net-bg {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(58,175,78,0.04) 38px,
      rgba(58,175,78,0.04) 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(58,175,78,0.04) 38px,
      rgba(58,175,78,0.04) 40px
    );
}

/* 3. Ball bounce ambient */
@keyframes ballFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(12deg); }
  75% { transform: translateY(4px) rotate(-8deg); }
}
.ball-float {
  animation: ballFloat 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ball-float { animation: none; }
}

/* 4. Glove grab on CTA click — catching the ball feel */
@keyframes gloveGrab {
  0% { transform: scale(1) rotate(0); }
  20% { transform: scale(0.93) rotate(-2deg); }
  45% { transform: scale(1.06) rotate(1.5deg); }
  70% { transform: scale(0.98) rotate(-0.5deg); }
  100% { transform: scale(1) rotate(0); }
}
.btn-primary:active,
.btn-accent:active,
.btn-submit:active {
  animation: gloveGrab 350ms cubic-bezier(.16,.73,.2,1);
}

/* 5. Whistle line decoration */
.whistle-sep {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 2rem 0;
}
.whistle-sep::before,
.whistle-sep::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--line);
}

/* 6. CTA green pulse on hover — turf glow */
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px -8px rgba(58,175,78,0.35), 0 0 0 0 rgba(58,175,78,0.25);
  animation: ctaPulse 2s cubic-bezier(.16,.73,.2,1) infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 28px -8px rgba(58,175,78,0.3), 0 0 0 0 rgba(58,175,78,0.18); }
  50% { box-shadow: 0 12px 32px -6px rgba(58,175,78,0.45), 0 0 0 12px rgba(58,175,78,0); }
}


/* 7. Stats number scale on hover */
.stat-item {
  transition: transform 240ms cubic-bezier(.16,.73,.2,1);
}
.stat-item:hover {
  transform: scale(1.06);
}
.stat-item:hover .stat-number {
  text-shadow: 0 2px 12px rgba(58,175,78,0.25);
}
.stat-number {
  transition: text-shadow 300ms;
}

/* 9. Contact card icon ripple */
.contact-card:hover .icon-circle {
  animation: iconRipple 600ms cubic-bezier(.16,.73,.2,1);
}
@keyframes iconRipple {
  0% { box-shadow: 0 0 0 0 rgba(58,175,78,0.3); }
  70% { box-shadow: 0 0 0 10px rgba(58,175,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,175,78,0); }
}

/* 10. Team card avatar lift */
.team-card:hover .team-avatar {
  background: var(--accent);
  transform: scale(1.08);
  transition: background 280ms, transform 280ms cubic-bezier(.16,.73,.2,1);
}
.team-card:hover .team-avatar svg {
  stroke: #fff;
  transition: stroke 280ms;
}
.team-avatar {
  transition: background 280ms, transform 280ms cubic-bezier(.16,.73,.2,1);
}

/* 11. Goalkeeper-specific: turf gradient on hero section */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(58,175,78,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* 13. FAQ open state — whistle blow expand */
.faq-item[open] summary {
  color: var(--accent);
  padding-left: 8px;
  background: rgba(58,175,78,0.03);
  border-radius: 4px 4px 0 0;
}

/* 14. Pricing card featured — subtle turf shimmer */
.pricing-card--featured {
  background: linear-gradient(160deg, var(--surface) 0%, rgba(58,175,78,0.03) 100%);
}

/* 18. Hero image — subtle float */
.hero img {
  transition: transform 600ms cubic-bezier(.16,.73,.2,1), box-shadow 400ms;
}
.hero img:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 60px -16px rgba(26,46,26,0.18);
}

/* 20. Drawer link stagger reveal */
.drawer.is-open a {
  animation: drawerSlide 320ms cubic-bezier(.16,.73,.2,1) backwards;
}
.drawer.is-open a:nth-child(1) { animation-delay: 60ms; }
.drawer.is-open a:nth-child(2) { animation-delay: 110ms; }
.drawer.is-open a:nth-child(3) { animation-delay: 160ms; }
.drawer.is-open a:nth-child(4) { animation-delay: 210ms; }
.drawer.is-open a:nth-child(5) { animation-delay: 260ms; }
.drawer.is-open a:nth-child(6) { animation-delay: 310ms; }
@keyframes drawerSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 15. Testimonial card — goalkeeper catch glow on hover */
.testimonial-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 0%, rgba(58,175,78,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,.73,.2,1);
  pointer-events: none;
}
.testimonial-card:hover::after { opacity: 1; }

/* 16. Process timeline — step connector pulse */
.process-timeline::before {
  background: linear-gradient(180deg, var(--accent) 0%, var(--line) 20%, var(--line) 80%, var(--accent) 100%);
}

/* 17. Pricing card featured — slow gradient shimmer */
@keyframes turfShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pricing-card--featured {
  background: linear-gradient(105deg,
    var(--surface) 0%,
    var(--surface) 40%,
    rgba(58,175,78,0.04) 50%,
    var(--surface) 60%,
    var(--surface) 100%
  );
  background-size: 200% 100%;
  animation: turfShimmer 8s ease-in-out infinite;
}

/* 19. Section accent bar on section-alt transition */
.section-alt { border-top: 1px solid var(--line); }
section + .section-dark { border-top: none; }

/* 21. Contact card stagger on mobile */
@media (max-width: 640px) {
  .contact-card { transition-delay: calc(var(--i, 0) * 60ms); }
}

/* Reduced motion: disable all custom animations */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-primary:focus-visible { animation: none; }
  .btn-primary:active, .btn-accent:active, .btn-submit:active { animation: none; }
  .editorial-card:hover .card-icon svg { animation: none; }
  .contact-card:hover .icon-circle { animation: none; }
  .stat-item:hover { transform: none; }
  .trust-badge:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .process-step:hover::before { transform: none; }
  .process-step:hover { transform: none; }
  .pricing-card:hover { transform: none; }
  .editorial-card:hover { transform: none; }
  .team-card:hover .team-avatar { transform: none; }
  .hero img:hover { transform: none; }
  .nav-desktop .nav-cta:hover { transform: none; }
  .drawer.is-open a { animation: none; }
  .pricing-card--featured { animation: none; }
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  min-height: 240px;
  display: flex; align-items: flex-end;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* ---------- Contact Cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(18px, 3vw, 24px);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.16,.73,.2,1), box-shadow 280ms, border-color 280ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(58,175,78,0.15);
  border-color: var(--accent);
}
.contact-card .card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.contact-card .card-head .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(58,175,78,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .card-head .icon-circle svg {
  width: 22px; height: 22px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-card .card-title {
  font-weight: 700; font-size: 0.95rem;
}
.contact-card .card-value {
  font-size: 0.95rem;
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-card .card-value a { color: var(--ink); }
.contact-card .card-value a:hover { color: var(--accent); }
.contact-card .card-sub {
  font-size: 0.8rem; color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- Hours mini-card grid ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.hours-day {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  background: var(--surface);
}
.hours-day .day-name {
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.hours-day .day-time { color: var(--ink); font-weight: 600; }
.hours-day.today {
  border-color: var(--accent);
  background: rgba(58,175,78,0.06);
}

/* ---------- Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(58,175,78,0.15);
}
.team-card .team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card .team-avatar svg {
  width: 32px; height: 32px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card .team-role {
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.8rem;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); text-align: left; }

/* ---------- Table scroll wrapper ---------- */
.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;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
@media (max-width: 640px) {
  .table-scroll {
    background:
      linear-gradient(to right, var(--surface) 30%, transparent) left center / 40px 100% no-repeat,
      linear-gradient(to left, var(--surface) 30%, transparent) right center / 40px 100% no-repeat,
      radial-gradient(farthest-side at 0 50%, rgba(26,46,26,0.12), transparent) left center / 14px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(26,46,26,0.12), transparent) right center / 14px 100% no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
th, td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--surface-2);
}
td { color: var(--ink); }

/* ---------- News / Updates mini-block ---------- */
.news-block { margin-top: 2rem; }
.news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 12px; align-items: flex-start;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  min-width: 90px;
}
.news-text { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Policy pages ---------- */
.policy-content {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.policy-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.policy-content h2:first-child { border-top: none; padding-top: 0; }
.policy-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  margin-top: 1.5rem; margin-bottom: 0.6rem;
}
.policy-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.policy-content strong { color: var(--ink); }

/* ---------- Thank you page ---------- */
.thankyou-content {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}
.thankyou-content h1 { margin-bottom: 1rem; }
.thankyou-content p { color: var(--ink-soft); max-width: 480px; margin-bottom: 2rem; }

/* ---------- 404 page ---------- */
.error-content {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}
.error-content .error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800; color: var(--accent);
  line-height: 1; opacity: 0.15;
}
.error-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.8rem;
}
.error-content p { color: var(--ink-soft); max-width: 420px; margin-bottom: 2rem; }

/* ---------- Sitemap page ---------- */
.sitemap-list {
  display: grid; grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) { .sitemap-list { grid-template-columns: 1fr 1fr; } }
.sitemap-list a {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 600;
  transition: background 200ms, border-color 200ms;
}
.sitemap-list a:hover {
  background: var(--surface);
  border-color: var(--accent);
}

/* ---------- Focus styles ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(58,175,78,0.1);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  section { padding: clamp(2rem, 6vw, 3.5rem) 0; }

  .hero { min-height: auto; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }

  .editorial-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .editorial-card { padding: 18px; }
  .pricing-card { padding: 20px; }

  .pull-quote {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    padding-left: 1rem;
  }

  .trust-strip { gap: 8px; }
  .trust-badge { padding: 5px 10px; font-size: 0.75rem; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item .stat-number { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 430px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .cookie-banner { left: 8px; right: 8px; padding: 16px; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.2rem; }
  .container { padding-left: 16px; padding-right: 16px; }
  .editorial-card .card-icon { width: 36px; height: 36px; }
  .editorial-card .card-icon svg { width: 18px; height: 18px; }
}

/* ---------- Cookie banner safe space on mobile ---------- */
@media (max-width: 768px) {
}

/* ---------- Print ---------- */
@media print {
  .site-header, .drawer, .drawer-backdrop, .nav-toggle,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* honeypot-hide */
.form-honeypot, input[name="web_site"], input[name="honeypot"], input[name="hp_url"], input[name="trap"], input[aria-hidden="true"][tabindex="-1"] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

