:root {
  interpolate-size: allow-keywords;
  --bg: #FAF7FF;
  --surface: #FFFFFF;
  --surface-2: #F3EEFF;
  --ink: #2D1B4E;
  --ink-soft: #6B5A8A;
  --accent: #7C4DFF;
  --accent-2: #FF80AB;
  --line: rgba(45, 27, 78, 0.12);
  --line-strong: rgba(45, 27, 78, 0.25);
  --header-h: 76px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1400px;
  --radius: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-std: cubic-bezier(.4,0,.2,1);
}

*, *::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; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero__title .char { opacity: 1; transform: none; animation: none; }
html.no-js .hero__sub,
html.no-js .hero__actions,
html.no-js .trust-strip { opacity: 1; animation: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms; }
ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
}
.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 240ms var(--ease-std), color 240ms, border-color 240ms, transform 200ms, box-shadow 240ms;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(124, 77, 255, 0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 77, 255, 0.35);
}
.btn-primary:active::before {
  animation: shutterFlash 280ms ease-out;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(250, 247, 255, 0.88);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250, 247, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0;
  z-index: 1;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo span { color: var(--accent-2); }
.logo:hover { color: var(--ink); }

/* ---- Nav Desktop ---- */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 8px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-std);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--surface);
  padding: 10px 24px;
  border-radius: 999px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--surface);
}

/* ---- Nav Toggle ---- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 48px;
  height: 48px;
  background: rgba(124, 77, 255, 0.06);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(124, 77, 255, 0.12);
  border-color: var(--accent);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 200ms, background 200ms;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- Drawer ---- */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--accent); }
.drawer a.is-active { color: var(--accent); border-color: var(--accent); }
.drawer .drawer-cta {
  margin-top: auto;
  padding: 16px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--surface);
}
.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-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Main ---- */
main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: max(88vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface-2) 50%, rgba(255, 128, 171, 0.08) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-out forwards;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(250, 247, 255, 0.97) 0%,
    rgba(250, 247, 255, 0.93) 30%,
    rgba(250, 247, 255, 0.6) 55%,
    rgba(250, 247, 255, 0.12) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(32px, 6vw, 80px) 0;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: charIn 500ms var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 400ms);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1.4s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1.6s forwards;
}
.hero.is-loaded .hero__title .char,
.hero.is-loaded .hero__sub,
.hero.is-loaded .hero__actions,
.hero.is-loaded .trust-strip {
  opacity: 1;
  transform: none;
}
.hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 128, 171, 0.18) 0%, transparent 70%);
  top: 15%;
  left: 5%;
  z-index: 1;
  animation: softBreath 10s ease-in-out infinite;
  pointer-events: none;
}
.hero__decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}
.hero__decor--rattle {
  top: 12%;
  right: 38%;
  width: 48px;
  height: 48px;
  animation: rattleSwing 8s ease-in-out infinite;
  transform-origin: 50% 0;
}

/* ---- Trust Strip ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1.8s forwards;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(124, 77, 255, 0.08);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-heading);
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Blob Decorations ---- */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}
.blob--1 {
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 62% 38% 70% 30% / 50% 62% 38% 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transition: border-radius 900ms var(--ease);
}
.blob--2 {
  bottom: -60px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 40% 60% 30% 70% / 55% 35% 65% 45%;
  background: linear-gradient(225deg, var(--accent-2), var(--accent));
  transition: border-radius 900ms var(--ease);
}
section:hover .blob--1 {
  border-radius: 38% 62% 30% 70% / 62% 38% 62% 38%;
}
section:hover .blob--2 {
  border-radius: 60% 40% 70% 30% / 35% 55% 45% 65%;
}

/* ---- Section ---- */
section {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
section:nth-child(even) { background: var(--surface); }

/* ---- Stats ---- */
.stats {
  background: var(--ink) !important;
  color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Configurator ---- */
.konfig {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.konfig__step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.konfig__step h3 {
  font-size: 1.0625rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.konfig__step h3 .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.konfig__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.konfig__opt {
  padding: 18px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color 200ms, background 200ms, transform 200ms, box-shadow 200ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.konfig__opt svg { width: 28px; height: 28px; color: var(--ink-soft); transition: color 200ms; }
.konfig__opt:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124, 77, 255, 0.1);
}
.konfig__opt:hover svg { color: var(--accent); }
.konfig__opt.is-selected {
  border-color: var(--accent);
  background: rgba(124, 77, 255, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}
.konfig__opt.is-selected svg { color: var(--accent); }
.konfig__result {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--accent);
  text-align: center;
}
.konfig__preview-card {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
  min-height: 120px;
  transition: background 400ms;
}
.konfig__preview-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.konfig__preview-card h4 { font-size: 1rem; margin-bottom: 4px; }
.konfig__preview-card p { font-size: 0.875rem; color: var(--ink-soft); }
.konfig__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.konfig__amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  transition: color 300ms;
}
.konfig__note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: block;
}

/* ---- Process Timeline ---- */
.timeline {
  position: relative;
  padding-left: 52px;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.timeline__step {
  position: relative;
  padding-bottom: 40px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  content: attr(data-step);
  position: absolute;
  left: -52px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 1;
}
.timeline__step h4 { margin-bottom: 6px; }
.timeline__step .time-marker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(124, 77, 255, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline__step p { color: var(--ink-soft); font-size: 0.9375rem; }

/* ---- Manifesto ---- */
.manifesto {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--surface-2) !important;
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.45;
  font-style: italic;
  letter-spacing: -0.01em;
}
.manifesto__quote::before { content: '\201C'; color: var(--accent-2); font-size: 1.4em; }
.manifesto__quote::after { content: '\201D'; color: var(--accent-2); font-size: 1.4em; }
.manifesto__cite {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

/* ---- Decor Cards ---- */
.dekor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dekor-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 300ms var(--ease), box-shadow 300ms;
}
.dekor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 128, 171, 0.18);
}
.dekor-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.dekor-card:hover .dekor-card__img { transform: scale(1.04); }
.dekor-card__body { padding: 24px; }
.dekor-card__body h3 { margin-bottom: 8px; }
.dekor-card__body p { color: var(--ink-soft); font-size: 0.9375rem; }
.dekor-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-top: 12px;
}
.dekor-card--dogal .dekor-card__tag { background: #E8F5E9; color: #2E7D32; }
.dekor-card--masalsi .dekor-card__tag { background: #FCE4EC; color: #C2185B; }
.dekor-card--minimal .dekor-card__tag { background: #ECEFF1; color: #455A64; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 300ms var(--ease), box-shadow 300ms;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 77, 255, 0.14);
}
.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 8px 32px rgba(124, 77, 255, 0.12);
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 4px 20px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pricing-card h3 { margin-bottom: 4px; }
.pricing-duration {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 16px;
  flex: 1;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-excluded {
  text-align: left;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
.pricing-excluded strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--ink);
}
.pricing-card .btn { width: 100%; }
.pricing-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 300ms var(--ease), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(124, 77, 255, 0.1);
}
.testimonial-card:nth-child(1) { grid-column: 1 / 7; }
.testimonial-card:nth-child(2) { grid-column: 7 / 13; }
.testimonial-card:nth-child(3) { grid-column: 1 / 8; }
.testimonial-card:nth-child(4) { grid-column: 8 / 13; }
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__text::before { content: '\201C'; color: var(--accent); font-size: 1.5em; font-weight: 700; }
.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
}
.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-top: 2px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 300ms var(--ease-std);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms var(--ease-std), padding-block-end 360ms var(--ease-std);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.75; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ---- Calendar ---- */
.cal {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.cal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cal__head h3 { font-size: 1.125rem; margin: 0; }
.cal__nav {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, color 200ms;
}
.cal__nav:hover { background: var(--accent); color: var(--surface); }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal__day-name {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}
.cal__day {
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.cal__day--today { font-weight: 700; color: var(--ink); background: var(--surface-2); }
.cal__day--avail {
  background: rgba(124, 77, 255, 0.08);
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cal__day--avail:hover { background: var(--accent); color: var(--surface); }
.cal__day--empty { visibility: hidden; }
.cal__legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  justify-content: center;
}
.cal__legend span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.cal__legend .avail::before { background: rgba(124, 77, 255, 0.3); }
.cal__legend .full::before { background: var(--line); }

/* ---- Form ---- */
.form-section { background: var(--surface-2) !important; }
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
  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);
}
.kvkk-field {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.kvkk-field label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}
.footer__brand .logo { color: #fff; margin-bottom: 4px; }
.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 200ms, transform 200ms;
}
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-2);
}
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.75);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__legal a { color: rgba(255, 255, 255, 0.55); }
.footer__legal a:hover { color: #fff; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(45, 27, 78, 0.16);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.16,1,.3,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--ink); }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1;
  min-width: 100px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
}
.cookie-banner__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-banner__btn--accept:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ---- 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) * 100ms);
}

/* ---- 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: 640px) {
  .table-scroll > table { min-width: 520px; }
  .table-scroll { border-color: var(--accent); border-width: 1.5px; }
}
table { border-collapse: collapse; width: 100%; }
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--surface-2);
}
td { color: var(--ink); }

/* ---- Page Hero ---- */
.page-hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(28px, 4vw, 48px);
  background: var(--surface-2);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }

/* ---- Prose ---- */
.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 6vw, 80px);
}
.prose h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p { line-height: 1.85; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 10px; line-height: 1.75; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose a:hover { color: var(--ink); }

/* ---- Thank You ---- */
.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.thank-you svg { width: 80px; height: 80px; color: var(--accent); margin-bottom: 24px; }
.thank-you h1 { font-size: clamp(1.75rem, 5vw, 3rem); margin-bottom: 16px; }
.thank-you p { max-width: 480px; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.0625rem; }

/* ---- Not Found ---- */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.not-found__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
}
.not-found h1 { margin-bottom: 12px; }
.not-found p { color: var(--ink-soft); max-width: 400px; margin-bottom: 32px; }

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.team-card { text-align: center; }
.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--accent-2);
  transition: transform 300ms var(--ease), box-shadow 300ms;
}
.team-card:hover .team-card__photo {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 128, 171, 0.2);
}
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.team-card__role {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.team-card__bio { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.7; }

/* ---- About Sections ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-story img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 300ms var(--ease), box-shadow 300ms;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(124, 77, 255, 0.1);
}
.value-card svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--ink-soft); }

/* ---- Contact Channels ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-channels { display: grid; gap: 8px; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 240ms var(--ease-std), transform 240ms;
}
.contact-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-row svg {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.contact-row a, .contact-row span {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-row a:hover { color: var(--accent); }

/* ---- Sitemap ---- */
.sitemap-list { padding: 0; }
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a { color: var(--accent); font-weight: 600; }
.sitemap-list a:hover { text-decoration: underline; }
.sitemap-section { margin-bottom: 32px; }
.sitemap-section h3 { margin-bottom: 12px; }

/* ---- Theme Micro-Effects (Baby/Family Studio) ---- */
.dekor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
  z-index: 1;
}
.dekor-card--dogal::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 193, 128, 0.15) 0%, transparent 70%);
}
.dekor-card--masalsi::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 128, 171, 0.12) 0%, transparent 70%);
}
.dekor-card--minimal::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
}
.dekor-card:hover::before { opacity: 1; }

.pricing-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 300ms, left 400ms cubic-bezier(.16,1,.3,1), right 400ms cubic-bezier(.16,1,.3,1);
}
.pricing-card:hover::after {
  opacity: 1;
  left: 0;
  right: 0;
}
.pricing-card { position: relative; }

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-card:hover::before { transform: scaleX(1); }

.konfig__opt::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 128, 171, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.konfig__opt { position: relative; overflow: hidden; }
.konfig__opt:hover::after { opacity: 1; }

.timeline__step::after {
  content: '';
  position: absolute;
  left: -52px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 128, 171, 0.15);
  z-index: 0;
  transform: scale(0);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.timeline__step.is-in::after {
  transform: scale(1.6);
  opacity: 0;
  animation: pulseRing 600ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms + 300ms);
}

.value-card svg {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), color 300ms;
}
.value-card:hover svg {
  transform: scale(1.12) rotate(-4deg);
  color: var(--accent-2);
}

.faq-item summary {
  transition: color 200ms, padding-left 300ms cubic-bezier(.16,1,.3,1);
}
.faq-item[open] summary {
  color: var(--accent);
  padding-left: 8px;
}

.hero__glow {
  mix-blend-mode: multiply;
}

/* ---- Keyframes ---- */
@keyframes charIn {
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}
@keyframes softBreath {
  0%, 100% { opacity: 0.3; transform: scale(1) translate(0, 0); }
  33% { opacity: 0.45; transform: scale(1.04) translate(2px, -3px); }
  66% { opacity: 0.5; transform: scale(1.06) translate(-1px, 2px); }
}
@keyframes rattleSwing {
  0%, 100% { transform: rotate(-6deg); }
  25% { transform: rotate(5deg) translateY(-3px); }
  50% { transform: rotate(-4deg); }
  75% { transform: rotate(4deg) translateY(-2px); }
}
@keyframes shutterFlash {
  0% { opacity: 0; }
  25% { opacity: 0.18; }
  100% { opacity: 0; }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseRing {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ---- Responsive ---- */
@media (max-width: 1280px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .konfig { grid-template-columns: 1fr; }
  .konfig__result { position: static; }
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3),
  .testimonial-card:nth-child(4) { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero { min-height: max(70vh, 440px); }
  .hero::after {
    background: linear-gradient(0deg,
      rgba(250, 247, 255, 0.98) 0%,
      rgba(250, 247, 255, 0.92) 30%,
      rgba(250, 247, 255, 0.55) 60%,
      rgba(250, 247, 255, 0.2) 100%);
  }
  .hero__content {
    align-self: flex-end;
    padding-bottom: 28px;
    padding-top: 20px;
  }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .dekor-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .about-values { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px 16px calc(env(safe-area-inset-bottom, 0px) + 16px);
    max-width: none;
  }
  .timeline__step::after { left: -44px; width: 32px; height: 32px; }
}

@media (max-width: 640px) {
  section { padding: clamp(36px, 6vw, 56px) 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .trust-strip { justify-content: center; }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .konfig__options { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 44px; }
  .timeline__step::before { left: -44px; width: 32px; height: 32px; font-size: 0.75rem; }
  .timeline::before { left: 15px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.75rem, 10vw, 2.5rem); }
  .stat__number { font-size: clamp(2rem, 10vw, 3rem); }
  .konfig__step { padding: 20px; }
  .form-wrap { padding: 24px 20px; }
  .cal { padding: 20px; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero { min-height: 70vh; }
}

/* ---- Print ---- */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link, .hero__bg, .hero__glow,
  .hero__decor, .blob { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  section { padding: 24px 0; page-break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__bg img { animation: none; }
  .hero__title .char { opacity: 1; transform: none; animation: none; }
  .hero__sub, .hero__actions, .trust-strip { opacity: 1; animation: none; }
  .hero__glow { animation: none; }
  .hero__decor--rattle { animation: none; }
  .btn::before { animation: none; }
  .dekor-card, .pricing-card, .testimonial-card, .team-card,
  .value-card, .contact-row { transition: none; }
  .dekor-card__img { transition: none; }
  .blob { transition: none; }
  .faq-item > .faq-body { transition: none; }
  .dekor-card::before, .pricing-card::after, .testimonial-card::before,
  .konfig__opt::after, .timeline__step::after { transition: none; animation: none; }
  .value-card svg { transition: none; }
  .faq-item summary { transition: none; }
  .cookie-banner { transition: none; }
  .cookie-banner__btn { transition: none; }
}
