/* ── tokens ── */
:root {
  interpolate-size: allow-keywords;
  --bg: #1C1E26;
  --surface: #262830;
  --surface-2: #2E3140;
  --ink: #E4E6EB;
  --ink-soft: #9DA2AE;
  --accent: #A3E635;
  --accent-2: #4ADE80;
  --line: rgba(228,230,235,0.10);
  --line-strong: rgba(228,230,235,0.18);
  --font-head: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --glow: 0 0 24px rgba(163,230,53,0.18), 0 0 48px rgba(163,230,53,0.06);
  --container-max: 1400px;
  --pad: clamp(1rem, 3vw, 3rem);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@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;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; }

/* ── skip-link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 12px; }

/* ── container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
p { max-width: 68ch; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  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;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2); color: var(--bg);
  transform: translateY(-2px); box-shadow: var(--glow);
}
.btn-primary::after {
  content: '→'; display: inline-block;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(28,30,38,0.85);
  backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(28,30,38,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  transition: height 240ms ease;
}
.site-header.scrolled .header-inner {
  height: 56px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.3rem;
  color: var(--ink); display: flex; align-items: center; gap: 10px;
  transition: font-size 240ms ease;
}
.logo svg { width: 32px; height: 32px; transition: width 240ms ease, height 240ms ease; }
.site-header.scrolled .logo { font-size: 1.15rem; }
.site-header.scrolled .logo svg { width: 26px; height: 26px; }
.logo-accent { color: var(--accent); }

/* ── nav desktop ── */
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 6px;
  }
  .nav-desktop a {
    position: relative;
    padding: 8px 14px;
    font-size: 0.88rem; font-weight: 500;
    color: var(--ink-soft);
    transition: color 240ms;
    border-radius: var(--radius-sm);
  }
  .nav-desktop a::after {
    content: ''; position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px; border-radius: 1px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after { transform: scaleX(1); }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop a.is-active::after { transform: scaleX(1); }
  .nav-desktop .nav-cta {
    background: var(--accent); color: var(--bg);
    padding: 10px 22px; border-radius: var(--radius-pill);
    font-weight: 600;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--accent-2); color: var(--bg);
    transform: translateY(-1px);
  }
}

/* ── hamburger ── */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(228,230,235,0.16);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(228,230,235,0.28);
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .nav-toggle { display: none !important; } }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ── mobile drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active {
  color: var(--accent); padding-left: 8px;
}
.mobile-drawer .nav-cta {
  margin-top: 16px;
  background: var(--accent); color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600; border: none;
}
.mobile-drawer .nav-cta:hover {
  background: var(--accent-2); color: var(--bg);
}

/* ── drawer close button ── */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  z-index: 1;
  transition: color 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1);
}
.drawer-close:hover {
  color: var(--accent);
  background: var(--line-strong);
}
@media (min-width: 1024px) {
  .drawer-close { display: none; }
}

/* ── scroll progress bar ── */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  z-index: 1;
  pointer-events: none;
}

/* ── main offset ── */
main { padding-top: var(--header-h); }

/* ── section spacing ── */
.section {
  padding: clamp(48px, 8vw, 100px) 0;
}
.section-title {
  text-align: center; margin-bottom: clamp(32px, 5vw, 56px);
}
.section-title .eyebrow { margin-bottom: 12px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { color: var(--ink-soft); margin: 0 auto; }

/* ── hero ── */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.hero-content {
  text-align: center;
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 2;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 560px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ── hero ambient breathing anim ── */
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163,230,53,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
}

/* ── pilates figure SVG ── */
.pilates-figure {
  width: 180px; height: 280px; margin: 0 auto 24px;
  position: relative;
}
.pilates-figure svg {
  width: 100%; height: 100%;
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
}
.pilates-figure .pose { display: none; }
.pilates-figure .pose.active { display: block; }

/* ── configurator ── */
.configurator {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}
.configurator::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  z-index: -1;
  opacity: 0.15;
}
.config-steps { position: relative; }
.config-step {
  display: none;
  animation: slideIn 400ms cubic-bezier(.2,.7,.2,1);
}
.config-step.active { display: block; }
/* slideIn keyframes defined in enhanced section below */
.config-step h3 {
  margin-bottom: 20px; text-align: center;
}
.config-progress {
  display: flex; gap: 8px; margin-bottom: 28px; justify-content: center;
}
.config-progress-dot {
  width: 40px; height: 4px;
  background: var(--line-strong);
  border-radius: 2px;
  transition: background 300ms;
}
.config-progress-dot.active { background: var(--accent); }
.config-progress-dot.done { background: var(--accent-2); }

/* ── pill toggles ── */
.pill-group {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.pill {
  padding: 12px 24px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.pill:hover {
  border-color: var(--accent); color: var(--ink);
  transform: translateY(-2px);
}
.pill.selected {
  background: var(--accent); color: var(--bg);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

/* ── calendar grid ── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 420px; margin: 0 auto;
}
.calendar-day-header {
  text-align: center; font-size: 0.75rem;
  color: var(--ink-soft); font-weight: 600;
  padding: 8px 0;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 200ms;
  background: var(--surface-2);
  color: var(--ink-soft);
}
.calendar-day:hover { border-color: var(--accent); color: var(--ink); }
.calendar-day.selected {
  background: var(--accent); color: var(--bg);
  border-color: var(--accent);
}
.calendar-day.disabled { opacity: 0.3; pointer-events: none; }

/* ── result card ── */
.result-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--glow);
  text-align: center;
  animation: scaleUp 500ms cubic-bezier(.2,.7,.2,1);
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.result-card h3 { color: var(--accent); margin-bottom: 16px; }
.result-summary {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin: 24px 0;
}
.result-item {
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}
.result-item .label { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 4px; }
.result-item .value { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }

/* ── class cards horizontal scroll ── */
.classes-scroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}
.classes-scroll::-webkit-scrollbar { height: 6px; }
.classes-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.classes-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.class-card {
  flex: 0 0 clamp(260px, 30vw, 320px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  transform: translateY(0);
  box-shadow: 0 0 0 0 transparent;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms;
  position: relative; overflow: hidden;
}
.class-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(163,230,53,0.15);
  border-color: var(--accent);
}
.class-card:hover::before { transform: scaleX(1); }
.class-card-icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}
.class-card h4 { margin-bottom: 8px; }
.class-card p { font-size: 0.88rem; color: var(--ink-soft); }
.class-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(163,230,53,0.1);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600;
}

/* ── pricing ── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 40px;
}
.pricing-toggle span { font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }
.pricing-toggle span.active { color: var(--ink); }
.toggle-switch {
  width: 56px; height: 30px;
  background: var(--surface-2);
  border: 1.5px solid var(--line-strong);
  border-radius: 15px;
  position: relative; cursor: pointer;
  transition: background 240ms, border-color 240ms;
}
.toggle-switch::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.toggle-switch.yearly { background: var(--accent); border-color: var(--accent); }
.toggle-switch.yearly::after { transform: translateX(26px); background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column;
  transform: translateY(0);
  box-shadow: 0 0 0 0 transparent;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(163,230,53,0.12);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--glow);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: var(--bg);
  padding: 4px 14px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700;
}
.pricing-card h4 { margin-bottom: 8px; }
.pricing-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-price .currency { font-size: 0.5em; vertical-align: super; }
.pricing-price .period { font-size: 0.35em; color: var(--ink-soft); font-weight: 400; }
.pricing-note { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }
.pricing-list { margin-bottom: 24px; flex: 1; }
.pricing-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--line);
}
.pricing-list li:last-child { border: none; }
.pricing-list .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-list .cross { color: #ef4444; flex-shrink: 0; margin-top: 2px; }
.pricing-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ── process timeline ── */
.timeline {
  position: relative;
  max-width: 720px; margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-1px); }
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 64px;
}
@media (min-width: 768px) {
  .timeline-item { padding: 0 0 48px; width: 50%; }
  .timeline-item:nth-child(odd) { padding-right: 48px; text-align: right; margin-left: 0; }
  .timeline-item:nth-child(even) { padding-left: 48px; margin-left: 50%; }
}
.timeline-dot {
  position: absolute;
  left: 16px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
@media (min-width: 768px) {
  .timeline-dot { left: auto; right: -9px; }
  .timeline-item:nth-child(even) .timeline-dot { left: -9px; right: auto; }
}
.timeline-marker {
  font-family: var(--font-head); font-weight: 700;
  color: var(--accent); font-size: 0.82rem;
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--ink-soft); }

/* ── team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.team-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transform: translateY(0);
  box-shadow: 0 0 0 0 transparent;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(163,230,53,0.12);
  border-color: var(--accent);
}
.team-avatar {
  width: 80px; height: 80px;
  background: var(--surface-2);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--accent);
}
.team-avatar svg { width: 40px; height: 40px; color: var(--accent); }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ── testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid .testimonial-card:first-child {
    grid-row: span 2;
  }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial-author {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-meta { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* ── FAQ ── */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px clamp(18px, 3vw, 28px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem; font-weight: 400;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.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;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ── form ── */
.form-section { max-width: 640px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field-full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(163,230,53,0.15);
}
.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);
}
.kvkk {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: var(--ink-soft);
  cursor: pointer;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ── stats counter ── */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ── niche animations: pilates ── */
@keyframes spineAlign {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}
@keyframes matRoll {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes balanceSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.spine-line {
  stroke-dasharray: 200;
  animation: spineAlign 1.2s cubic-bezier(.4,0,.2,1) forwards;
}
.mat-reveal { animation: matRoll 800ms cubic-bezier(.2,.7,.2,1) forwards; }
.ring-anim { animation: ringPulse 4s ease-in-out infinite; }
.balance-anim { animation: balanceSway 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .spine-line, .mat-reveal, .ring-anim, .balance-anim { animation: none; }
  .spine-line { stroke-dashoffset: 0; }
  .mat-reveal { clip-path: inset(0); }
}

/* ── card hover tinted shadow ── */
.card-hover {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(163,230,53,0.15);
}

/* ── reveal ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── 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;
}
.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: 540px) {
  .table-scroll::after {
    content: '';
    position: sticky; right: 0; top: 0;
    display: block; width: 32px; height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, transparent, var(--bg) 90%);
    float: right;
    margin-top: -100%; margin-bottom: -100%;
  }
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  font-family: var(--font-head); font-weight: 600;
  background: var(--surface-2);
  color: var(--ink);
}
td { color: var(--ink-soft); }

/* ── footer ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-col h5 {
  font-family: var(--font-head); font-weight: 600;
  margin-bottom: 16px; color: var(--ink);
}
.footer-col p { font-size: 0.88rem; color: var(--ink-soft); }
.footer-col a {
  display: block;
  font-size: 0.88rem; color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem; color: var(--ink-soft);
}
.footer-contact-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--ink-soft);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.footer-legal a { transition: color 240ms; }
.footer-legal a:hover { color: var(--accent); }

/* ── cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h6 {
  font-family: var(--font-head); font-weight: 600;
  margin-bottom: 8px; font-size: 0.92rem;
}
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-buttons {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1; min-width: 100px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600;
  min-height: 44px;
  transition: background 200ms, color 200ms;
}
.cookie-btn-accept { background: var(--accent); color: var(--bg); }
.cookie-btn-accept:hover { background: var(--accent-2); color: var(--bg); }
.cookie-btn-reject { background: var(--surface-2); color: var(--ink); border: 1.5px solid var(--ink); font-weight: 700; }
.cookie-btn-reject:hover { background: var(--line-strong); color: var(--ink); border-color: var(--accent); }
.cookie-btn-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }
@media (max-width: 480px) {
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 18px 20px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons button { flex: none; width: 100%; }
}

/* ── contact layout ── */
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr !important; }
}

/* ── contact page ── */
.contact-channels {
  display: grid; gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius-sm);
  padding-left: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row .contact-label {
  font-weight: 600; font-size: 0.85rem;
  color: var(--ink-soft); margin-bottom: 2px;
}
.contact-row .contact-value {
  font-size: 0.95rem; color: var(--ink);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-row .contact-value a { color: var(--ink); transition: color 240ms; }
.contact-row .contact-value a:hover { color: var(--accent); }

/* ── thank you page ── */
.thankyou-section {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.thankyou-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: rgba(163,230,53,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-icon svg { width: 40px; height: 40px; color: var(--accent); }

/* ── 404 ── */
.page-404 {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  opacity: 0.3;
}

/* ── policy pages ── */
.policy-content {
  max-width: 800px; margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.policy-content h1 { margin-bottom: 12px; }
.policy-content h1 + p { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.policy-content h2 {
  margin-top: 48px; margin-bottom: 18px; font-size: 1.4rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.policy-content h2:first-of-type { border-top: none; padding-top: 0; }
.policy-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.1rem; color: var(--ink); }
.policy-content p { margin-bottom: 16px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.75; }
.policy-content ul, .policy-content ol { margin-bottom: 16px; padding-left: 24px; }
.policy-content li { margin-bottom: 10px; color: var(--ink-soft); font-size: 0.92rem; list-style: disc; line-height: 1.7; }
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.policy-content a:hover { color: var(--accent-2); }

/* ── sitemap page ── */
.sitemap-list a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }

/* ── print ── */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .section { padding: 24px 0; }
}

/* ── focus — refined in enhanced section below ── */

/* ── smooth scroll offset for anchors ── */
section[id], [id="form"] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ── counter anim helper ── */
[data-target] { font-variant-numeric: tabular-nums; }

/* ── stagger util ── */
.stagger > * { --i: 0; }
.stagger > *:nth-child(1) { --i: 0; }
.stagger > *:nth-child(2) { --i: 1; }
.stagger > *:nth-child(3) { --i: 2; }
.stagger > *:nth-child(4) { --i: 3; }
.stagger > *:nth-child(5) { --i: 4; }
.stagger > *:nth-child(6) { --i: 5; }
.stagger > *:nth-child(7) { --i: 6; }
.stagger > *:nth-child(8) { --i: 7; }

/* ── enhanced hovers & pilates micro-effects ── */
.testimonial-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(163,230,53,0.12);
  border-color: var(--accent);
}
.faq-item {
  transition: border-color 240ms, box-shadow 240ms;
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px -4px rgba(163,230,53,0.08);
}
.field input[type="text"]:hover,
.field input[type="email"]:hover,
.field input[type="tel"]:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163,230,53,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(163,230,53,0.15); }
}
.hero .btn-primary { animation: pulseGlow 3s ease-in-out infinite; }
.hero .btn-primary:hover { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary { animation: none; }
}
.timeline-dot {
  transition: box-shadow 400ms;
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px 2px rgba(163,230,53,0.3);
}
.stat-item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.stat-item:hover {
  transform: translateY(-2px);
}
.hero-badge {
  transition: border-color 240ms, transform 200ms;
}
.hero-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.nav-toggle:hover {
  background: rgba(228,230,235,0.22);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), 0 0 8px rgba(163,230,53,0.15);
}
.nav-toggle:active {
  background: rgba(163,230,53,0.15);
  transform: scale(0.95);
}

/* ── pilates-themed card lift with inner glow ── */
.class-card:hover .class-card-icon,
.team-card:hover .team-avatar {
  filter: drop-shadow(0 0 8px rgba(163,230,53,0.35));
  transition: filter 300ms;
}
.class-card-icon,
.team-avatar { transition: filter 300ms; }

/* ── smoother configurator step transition ── */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── breathing accent line on featured pricing ── */
@keyframes accentBreath {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; }
}
.pricing-card.featured::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 0 0 var(--radius) var(--radius);
  animation: accentBreath 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured::after { animation: none; opacity: 0.2; }
}

/* ── timeline flow line anim ── */
@keyframes timelineGrow {
  from { height: 0; }
  to { height: 100%; }
}
.timeline.is-animated::before {
  animation: timelineGrow 1.5s cubic-bezier(.16,1,.3,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .timeline.is-animated::before { animation: none; }
}

/* ── focus-visible ring refinement ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── responsive ── */
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .site-header.scrolled .header-inner { height: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .class-card { flex: 0 0 85vw; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .pill { padding: 10px 18px; font-size: 0.85rem; }
  .calendar-grid { gap: 4px; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .configurator { padding: 20px 16px; }
}

/* ── pilates-themed reveal variants ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes revealScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-content img {
  animation: revealScale 1s cubic-bezier(.16,1,.3,1) 0.3s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content img { animation: none; }
}
.pilates-figure svg {
  animation: gentleFloat 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .pilates-figure svg { animation: none; }
}

/* ── enhanced card hover with inner accent glow ── */
.class-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(163,230,53,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.class-card:hover::after { opacity: 1; }

/* ── pricing card featured gentle pulse ring ── */
@keyframes featurePulse {
  0% { box-shadow: 0 0 0 0 rgba(163,230,53,0.2); }
  70% { box-shadow: 0 0 0 8px rgba(163,230,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,230,53,0); }
}
.pricing-card.featured:hover {
  animation: featurePulse 1.5s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured:hover { animation: none; }
}

/* ── team card hover accent line sweep ── */
.team-card {
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover::before { transform: scaleX(1); }

/* ── testimonial quote mark accent on hover ── */
.testimonial-card:hover::before {
  opacity: 0.5;
  transition: opacity 300ms;
}

/* ── FAQ expand subtle bg shift ── */
.faq-item[open] {
  background: var(--surface-2);
  border-color: var(--accent);
}
.faq-item[open] summary { color: var(--accent); }

/* ── contact row hover icon scale ── */
.contact-row svg {
  transition: color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1);
}
.contact-row:hover svg {
  transform: scale(1.15);
}

/* ── hero badge stagger entrance ── */
.hero-badges .hero-badge:nth-child(1) { transition-delay: 0ms; }
.hero-badges .hero-badge:nth-child(2) { transition-delay: 80ms; }
.hero-badges .hero-badge:nth-child(3) { transition-delay: 160ms; }

/* ── footer link hover accent bar ── */
.footer-col a {
  position: relative;
}
.footer-col a::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 200ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::before { height: 14px; }

/* ── smoother configurator pill interaction ── */
.pill:active {
  transform: scale(0.96);
}

/* ── calendar day active ring ── */
.calendar-day:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.calendar-day.selected {
  box-shadow: 0 0 0 3px rgba(163,230,53,0.25);
}

/* ── stat number hover glow ── */
.stat-item:hover .stat-number {
  text-shadow: 0 0 16px rgba(163,230,53,0.35);
  transition: text-shadow 300ms;
}

/* ── cookie banner enter delay for smoother feel ── */
.cookie-banner {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), opacity 300ms ease 50ms;
}

/* ── nav desktop link hover background ── */
@media (min-width: 1024px) {
  .nav-desktop a:hover {
    background: rgba(163,230,53,0.06);
  }
}
