:root {
  interpolate-size: allow-keywords;

  --bg: #F8FAFE;
  --surface: #E8F0FE;
  --surface-2: #DCE8FC;
  --ink: #1A202C;
  --ink-soft: #4A5568;
  --accent: #3366FF;
  --accent-2: #00C9A7;
  --accent-glow: rgba(51,102,255,0.18);
  --accent2-glow: rgba(0,201,167,0.14);
  --line: rgba(26,32,44,0.10);
  --line-strong: rgba(26,32,44,0.18);
  --white: #FFFFFF;
  --danger: #E53E3E;
  --success: #38A169;

  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', 'Roboto Mono', monospace;

  --header-h: 72px;
  --max-w: 1240px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;

  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.4,0,.2,1);
}

/* ── 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-size: 16px;
  line-height: 1.65;
  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 var(--ease-in-out); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  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-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 240ms var(--ease-out);
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(51,102,255,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(248,250,254,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(248,250,254,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 56px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 1100;
}
.logo:hover { color: var(--ink); }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 240ms ease, height 240ms ease;
}
.site-header.scrolled .logo-icon {
  width: 30px; height: 30px;
}
.logo-icon svg {
  width: 20px; height: 20px;
  stroke: var(--white);
  fill: none;
}

/* ── NAV DESKTOP ── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 240ms var(--ease-in-out), background 240ms var(--ease-in-out);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 280ms var(--ease-out);
}
.nav-desktop a:hover { color: var(--accent); background: var(--accent-glow); }
.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(--ink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 8px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── MOBILE TOGGLE ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  z-index: 1100;
  position: relative;
  gap: 6px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms var(--ease-out), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) 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 var(--ease-in-out);
}
.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(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mobile-drawer, .drawer-backdrop { display: none !important; }
}
.mobile-drawer a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 24px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 16px;
  border: none;
}
.mobile-drawer .nav-cta-mobile:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── DRAWER CLOSE BUTTON ── */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 10;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}
.drawer-close:hover {
  background: var(--accent-glow);
  color: var(--accent);
  border-color: var(--accent);
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0;
  transition: none;
  z-index: 10;
}

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

/* ── HERO ── */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent2-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-top: 16px;
  margin-bottom: 20px;
  white-space: pre-line;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(51,102,255,0.15);
}

/* ── BALLOONS AMBIENT ── */
.balloon-container {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.balloon {
  position: absolute;
  bottom: -80px;
  width: 24px; height: 32px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.12;
  animation: balloonFloat linear infinite;
}
.balloon::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 1px; height: 16px;
  background: currentColor;
  transform: translateX(-50%);
}
@keyframes balloonFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  5% { opacity: 0.12; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-110vh) rotate(15deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .balloon { display: none; }
  .hero::before, .hero::after { animation: none; }
}

/* ── SECTION COMMON ── */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section-alt {
  background: var(--surface);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-header h2 {
  margin-top: 12px;
}
.section-header p {
  margin: 14px auto 0;
  color: var(--ink-soft);
  max-width: 520px;
}

/* ── GRADIENT BORDER ── */
.gradient-border {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.gradient-border-inner {
  background: var(--bg);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: clamp(24px, 4vw, 40px);
}

/* ── KONFIGURATOR ── */
.konfigurator-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .konfigurator-wrap {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
}
@media (min-width: 1024px) {
  .konfigurator-wrap {
    grid-template-columns: 1fr 360px;
  }
}

/* Steps indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 240ms;
  flex: 1;
  position: relative;
  padding: 8px 0;
}
.step-dot::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 280ms var(--ease-out);
  flex-shrink: 0;
}
.step-dot[data-step="0"]::before { content: '1'; line-height: 28px; text-align: center; }
.step-dot[data-step="1"]::before { content: '2'; line-height: 28px; text-align: center; }
.step-dot[data-step="2"]::before { content: '3'; line-height: 28px; text-align: center; }
.step-dot[data-step="3"]::before { content: '4'; line-height: 28px; text-align: center; }
.step-dot.active { color: var(--accent); }
.step-dot.active::before {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.step-dot.completed::before {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--white);
  content: '✓';
  line-height: 28px;
  text-align: center;
}
.step-connector {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 -4px;
  position: relative;
}
.step-connector .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  width: 0;
  transition: width 400ms var(--ease-out);
  border-radius: 2px;
}
.step-connector.filled .fill { width: 100%; }
@media (max-width: 639px) {
  .step-dot span { display: none; }
}

/* Step panels */
.step-panel {
  display: none;
  animation: stepSlideIn 400ms var(--ease-out);
}
.step-panel.active { display: block; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Option cards */
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .option-grid { grid-template-columns: 1fr 1fr; }
}
.option-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: all 240ms var(--ease-out);
  position: relative;
  background: var(--white);
}
.option-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.option-card.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.option-card.selected::after {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.option-card .option-icon {
  width: 40px; height: 40px;
  margin-bottom: 10px;
  color: var(--accent);
}
.option-card .option-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.option-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.option-card .option-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--accent);
}
.option-card .option-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.5;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.qty-selector label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-right: auto;
}
.qty-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--ink);
  transition: all 200ms;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  min-width: 32px;
  text-align: center;
}

/* Step nav buttons */
.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ── PRICE SUMMARY SIDEBAR ── */
.price-summary {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: fit-content;
}
.price-summary h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-summary h3 svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.price-line .price-val {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
}
.price-line.empty {
  opacity: 0.4;
  font-style: italic;
}
.price-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.price-total-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--accent);
  display: flex;
  align-items: baseline;
}
.price-total-value .currency {
  font-size: 0.85rem;
  margin-left: 4px;
  color: var(--ink-soft);
}

/* Odometer digit ticker */
.odometer {
  display: inline-flex;
  overflow: hidden;
  line-height: 1;
}
.odometer-digit {
  display: inline-block;
  height: 1.6rem;
  overflow: hidden;
  position: relative;
}
.odometer-digit-inner {
  display: flex;
  flex-direction: column;
  transition: transform 500ms var(--ease-out);
}
.odometer-digit-inner span {
  display: block;
  height: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
  min-width: 0.95ch;
}
@media (prefers-reduced-motion: reduce) {
  .odometer-digit-inner { transition: none; }
}

/* ── SPARKLE EFFECT ── */
.sparkle-container {
  position: absolute;
  top: -10px; right: -10px;
  width: 40px; height: 40px;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0;
}
@keyframes sparkle {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  50% { opacity: 1; }
  100% { transform: scale(1.5) rotate(180deg); opacity: 0; }
}
.sparkle.is-active {
  animation: sparkle 600ms var(--ease-out) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .sparkle { display: none; }
}

/* ── CONFETTI ── */
.confetti-piece {
  position: fixed;
  width: 10px; height: 10px;
  top: -20px;
  z-index: 9999;
  pointer-events: none;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .confetti-piece { display: none; }
}

/* ── NASIL (HOW) ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
}
.how-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  position: relative;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--accent-glow);
}
.how-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent2-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  opacity: 0;
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 0.3; transform: scale(1.05); }
}
.how-card h3 { margin-bottom: 8px; }
.how-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 auto; }
.how-step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  background: var(--accent);
  color: var(--white);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ── REFERANS (PACKAGES) ── */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 400ms var(--ease-out);
  transform-origin: left;
}
.package-card:hover::before { transform: scaleX(1); }
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--accent-glow);
  border-color: var(--accent);
}
.package-card .ribbon {
  position: absolute;
  top: 16px; right: -32px;
  background: var(--accent-2);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 36px;
  transform: rotate(45deg);
  animation: ribbonWave 4s ease-in-out infinite;
}
@keyframes ribbonWave {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .package-card .ribbon { animation: none; }
  .how-icon::after { animation: none; }
}
.package-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.package-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.package-price .curr {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.package-features {
  margin-bottom: 24px;
}
.package-features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.package-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300C9A7' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ── YORUMLAR (TESTIMONIALS) ── */
.testimonials-track-wrapper {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(16px, 4vw, 32px));
  padding: 0 clamp(16px, 4vw, 32px);
}
.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 300px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: #F6AD55;
  stroke: none;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ── CONTACT SECTION (index page brief) ── */
.contact-brief {
  text-align: center;
}
.contact-brief p {
  margin: 0 auto 28px;
  max-width: 480px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 4px; }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  min-height: 44px;
  transition: all 200ms var(--ease-out);
  cursor: pointer;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.cookie-actions .cookie-accept:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
  font-weight: 600;
}
.cookie-actions .cookie-reject:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line-strong);
}
.cookie-actions .cookie-settings:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: clamp(36px, 6vw, 64px) 0 clamp(24px, 4vw, 48px);
  text-align: center;
  background: var(--surface);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p {
  color: var(--ink-soft);
  margin: 12px auto 0;
  max-width: 560px;
}

/* ── CONTENT PAGES (policies, about) ── */
.content-page {
  padding: clamp(36px, 5vw, 64px) 0;
}
.content-page .content-body {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  min-width: 0;
}
.content-page h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 20px;
  padding-left: 16px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.content-page h2:first-child { border-top: none; padding-top: 0; margin-top: 0; border-left: 3px solid var(--accent); padding-left: 16px; }
.content-page h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-page p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.content-page ul, .content-page ol {
  margin: 12px 0 18px 24px;
  color: var(--ink-soft);
}
.content-page ul { list-style: disc; }
.content-page ol { list-style: decimal; }
.content-page li { margin-bottom: 6px; font-size: 0.92rem; }

/* ── 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, rgba(0,0,0,0.12));
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface);
  color: var(--ink);
}
td { color: var(--ink-soft); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  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 var(--ease-in-out), background 240ms var(--ease-in-out);
  border-radius: var(--radius-sm);
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-row svg {
  width: 20px; height: 20px;
  stroke: var(--ink-soft);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 240ms var(--ease-in-out), transform 240ms var(--ease-in-out);
  margin-top: 2px;
}
.contact-row:hover svg {
  stroke: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a {
  color: var(--accent);
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.form-card h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req { color: var(--danger); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}
.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-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.field-checkbox label {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}
.field.has-error .field-error { display: block; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 14px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(56,161,105,0.1);
  color: var(--success);
  border: 1px solid rgba(56,161,105,0.2);
}
.form-status.is-error {
  display: block;
  background: rgba(229,62,62,0.08);
  color: var(--danger);
  border: 1px solid rgba(229,62,62,0.15);
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.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: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── SITEMAP PAGE ── */
.sitemap-list {
  columns: 1;
  gap: 24px;
}
@media (min-width: 640px) { .sitemap-list { columns: 2; } }
.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.sitemap-list a {
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sitemap-list a::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
}

/* ── 404 PAGE ── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

/* ── PRINT ── */
@media print {
  .site-header, .cookie-banner, .balloon-container, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; background: #fff; }
}

/* ── PARTY POPPER ANIMATION ── */
@keyframes partyPop {
  0% { transform: scale(0) rotate(-30deg); opacity: 0; }
  50% { transform: scale(1.3) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.party-pop {
  display: inline-block;
  animation: partyPop 500ms var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .party-pop { animation: none; }
}

/* ── ABOUT PAGE ── */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px var(--accent-glow);
}
.value-card svg {
  width: 36px; height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 auto; }

/* ── HAMBURGER MOBILE VISIBILITY ── */
@media (max-width: 1023px) {
  .nav-toggle {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    min-width: 48px;
    min-height: 48px;
  }
  .nav-toggle span {
    width: 22px;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
  }
  .nav-toggle:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 12px var(--accent-glow);
  }
  .nav-toggle:hover span {
    background: var(--accent);
  }
  .nav-toggle:active {
    background: var(--surface);
    transform: scale(0.94);
  }
}


/* ── STAGGER REVEAL ── */
.how-grid > .how-card.reveal:nth-child(2) { transition-delay: 140ms; }
.how-grid > .how-card.reveal:nth-child(3) { transition-delay: 280ms; }
.packages-grid > .package-card.reveal:nth-child(2) { transition-delay: 140ms; }
.packages-grid > .package-card.reveal:nth-child(3) { transition-delay: 280ms; }

@keyframes staggerUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.about-values.reveal.is-in .value-card {
  animation: staggerUp 550ms var(--ease-out) both;
}
.about-values.reveal.is-in .value-card:nth-child(2) { animation-delay: 140ms; }
.about-values.reveal.is-in .value-card:nth-child(3) { animation-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
  .how-grid > .how-card.reveal:nth-child(2),
  .how-grid > .how-card.reveal:nth-child(3),
  .packages-grid > .package-card.reveal:nth-child(2),
  .packages-grid > .package-card.reveal:nth-child(3) { transition-delay: 0ms; }
  .about-values.reveal.is-in .value-card { animation: none; opacity: 1; }
}

/* ── CELEBRATION THEME MICRO-EFFECTS ── */
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 12px 32px var(--accent-glow); }
  50% { box-shadow: 0 12px 32px var(--accent-glow), 0 0 24px 4px rgba(246,173,85,0.1); }
}
.package-card:hover {
  animation: warmPulse 2.5s ease-in-out infinite;
}
.option-card:hover {
  box-shadow: 0 6px 20px var(--accent-glow), 0 0 40px rgba(246,173,85,0.06);
}
.how-card:hover .how-icon {
  background: linear-gradient(135deg, rgba(51,102,255,0.2), rgba(246,173,85,0.15));
  transition: background 280ms var(--ease-out);
}
.how-card:hover .how-icon svg {
  stroke: var(--accent-2);
  transition: stroke 280ms var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .package-card:hover { animation: none; }
}

/* ── BUTTON ACTIVE STATES ── */
.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 80ms;
}
.cookie-actions button:active {
  transform: scale(0.96);
  transition-duration: 80ms;
}

/* ── HERO BADGE SHIMMER ── */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.hero-badge {
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge:hover { transform: none; }
}

/* ── FAQ SMOOTH OPEN ── */
.faq-item summary {
  transition: color 200ms var(--ease-in-out);
}
.faq-item summary:hover {
  color: var(--accent);
}
.faq-item[open] summary {
  color: var(--accent);
}

/* ── CONTACT ROW CELEBRATION ACCENT ── */
.contact-row:hover svg {
  stroke: var(--accent-2);
  filter: drop-shadow(0 0 4px rgba(0,201,167,0.3));
}

/* ── TESTIMONIAL CARD CELEBRATION GLOW ── */
.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--accent-glow), 0 0 48px rgba(246,173,85,0.06);
}

/* ── FOOTER LINK HOVER ACCENT ── */
.footer-col a:hover {
  color: var(--accent-2);
}

/* ── MOBILE TABLE FIX ── */
@media (max-width: 479px) {
  .table-scroll > table { min-width: 320px; }
}

/* ── MOBILE COOKIE BANNER REFINEMENT ── */
@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 20px 20px calc(env(safe-area-inset-bottom, 0px) + 20px);
    max-width: none;
  }
  .cookie-actions {
    flex-wrap: wrap;
  }
  .cookie-actions button {
    min-height: 48px;
    font-size: 0.88rem;
  }
  .cookie-actions .cookie-accept,
  .cookie-actions .cookie-reject {
    flex: 1 1 45%;
  }
  .cookie-actions .cookie-settings {
    flex: 1 1 100%;
  }
}

/* ── CONTENT SECTION CARDS (policy pages mobile) ── */
@media (max-width: 639px) {
  .content-page .content-body h2 {
    background: var(--surface);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }
}

/* ── PACKAGE IMAGE HOVER ── */
.package-card img {
  transition: transform 280ms var(--ease-out);
}
.package-card:hover img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .package-card:hover img { transform: none; }
}

/* ── NAV CTA HOVER CELEBRATION GLOW ── */
.nav-desktop .nav-cta:hover {
  box-shadow: 0 4px 16px rgba(51,102,255,0.3);
}
.mobile-drawer .nav-cta-mobile:hover {
  box-shadow: 0 4px 16px rgba(51,102,255,0.3);
}

/* ── SMOOTH FOCUS TRANSITIONS ── */
.field input:focus,
.field select:focus,
.field textarea:focus {
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

/* ── KONFIG CTA CELEBRATION PULSE ── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(51,102,255,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(51,102,255,0); }
}
.konfig-cta {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.konfig-cta:hover {
  animation: none;
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
@media (prefers-reduced-motion: reduce) {
  .konfig-cta { animation: none; }
}

/* ── FAQ STAGGER REVEAL ── */
.faq-list.reveal.is-in .faq-item {
  animation: faqReveal 450ms var(--ease-out) both;
}
.faq-list.reveal.is-in .faq-item:nth-child(2) { animation-delay: 80ms; }
.faq-list.reveal.is-in .faq-item:nth-child(3) { animation-delay: 160ms; }
.faq-list.reveal.is-in .faq-item:nth-child(4) { animation-delay: 240ms; }
.faq-list.reveal.is-in .faq-item:nth-child(5) { animation-delay: 320ms; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-list.reveal.is-in .faq-item { animation: none; }
}

/* ── HERO IMAGE SHIMMER ── */
.hero-content img {
  position: relative;
}
@keyframes heroImageGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(51,102,255,0.08); }
  50% { box-shadow: 0 12px 48px rgba(51,102,255,0.16), 0 0 64px rgba(246,173,85,0.06); }
}
.hero-content img {
  animation: heroImageGlow 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content img { animation: none; }
}

/* ── TESTIMONIAL CARD ENTRANCE STAGGER ── */
.testimonials-track-wrapper.reveal.is-in .testimonial-card {
  animation: testimonialSlide 500ms var(--ease-out) both;
}
.testimonials-track-wrapper.reveal.is-in .testimonial-card:nth-child(2) { animation-delay: 120ms; }
.testimonials-track-wrapper.reveal.is-in .testimonial-card:nth-child(3) { animation-delay: 240ms; }
.testimonials-track-wrapper.reveal.is-in .testimonial-card:nth-child(4) { animation-delay: 360ms; }
.testimonials-track-wrapper.reveal.is-in .testimonial-card:nth-child(5) { animation-delay: 480ms; }
@keyframes testimonialSlide {
  from { opacity: 0; transform: translateX(24px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-track-wrapper.reveal.is-in .testimonial-card { animation: none; }
}

/* ── CONTACT ROW STAGGER ── */
.reveal.is-in .contact-channels .contact-row {
  animation: contactRowReveal 400ms var(--ease-out) both;
}
.reveal.is-in .contact-channels .contact-row:nth-child(2) { animation-delay: 140ms; }
.reveal.is-in .contact-channels .contact-row:nth-child(3) { animation-delay: 220ms; }
.reveal.is-in .contact-channels .contact-row:nth-child(4) { animation-delay: 300ms; }
.reveal.is-in .contact-channels .contact-row:nth-child(5) { animation-delay: 380ms; }
.reveal.is-in .contact-channels .contact-row:nth-child(6) { animation-delay: 460ms; }
@keyframes contactRowReveal {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-in .contact-channels .contact-row { animation: none; }
}

/* ── CELEBRATION WARM GLOW ON HERO BADGES ── */
@keyframes badgeShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-badge {
  background-image: linear-gradient(
    90deg,
    var(--accent-glow) 0%,
    rgba(246,173,85,0.12) 50%,
    var(--accent-glow) 100%
  );
  background-size: 200% 100%;
  animation: badgeShimmer 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; background-image: none; }
}

/* ── OPTION CARD SELECTED CELEBRATION ── */
.option-card.selected {
  box-shadow: 0 4px 16px var(--accent-glow), 0 0 0 1px var(--accent);
}

/* ── PRICE TOTAL CELEBRATION GLOW ── */
@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 12px var(--accent-glow); }
}
.price-total-value .odometer {
  animation: priceGlow 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .price-total-value .odometer { animation: none; }
}

/* ── FORM SUBMIT BUTTON SHINE ── */
@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 200%; }
}
#contact-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  animation: btnShine 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  #contact-form .btn-primary::before { animation: none; display: none; }
}

/* ── STEP DOT ACTIVE PULSE ── */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.step-dot.active::before {
  animation: dotPulse 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .step-dot.active::before { animation: none; }
}
