/* ============================================================
   Andcut — minimalist redesign
   Apple-inspired type, generous whitespace, subtle motion.
   ============================================================ */

:root {
  --bg: #fbfbfd;
  --bg-alt: #ffffff;
  --bg-dark: #0a0a0a;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --ink-3: #6e6e73;
  --line: #d2d2d7;
  --line-soft: #ececef;
  --accent: #0071e3;
  --accent-hover: #0077ed;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  --shadow-md: 0 8px 28px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.03);

  --container: 1180px;
  --nav-h: 56px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--ink); color: var(--bg); }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--ink-3); font-weight: 500; }

.section-sub {
  color: var(--ink-3);
  font-size: 19px;
  max-width: 640px;
  margin: 8px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 980px;
  transition: transform .25s var(--easing), background-color .25s var(--easing), color .25s var(--easing), box-shadow .25s var(--easing);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 6px 18px rgba(0,113,227,.28); }

.btn--ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--easing), background-color .3s var(--easing);
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 22px; width: auto; }

.nav__menu {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav__menu a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--easing);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--easing);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 14px; }

.lang { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 980px; }
.lang__btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  border-radius: 980px;
  transition: background-color .2s var(--easing), color .2s var(--easing);
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { background: var(--ink); color: #fff; }

.nav__toggle { display: none; width: 36px; height: 36px; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--easing), opacity .3s var(--easing); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 32px;
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(0,113,227,.06), transparent 60%),
    var(--bg);
}
.hero__inner { max-width: 1100px; padding-bottom: 56px; }
.hero__title {
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
}
.hero__line {
  display: block;
  white-space: nowrap;
}
.hero__sub {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-3);
}
.hero__cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}
.hero__trust-stars {
  color: #00b67a;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}
.hero__trust-text { color: var(--ink-3); }
.hero__trust-text strong { color: var(--ink); font-weight: 600; }
.hero__trust-tp { color: var(--ink); font-weight: 500; border-bottom: 1px solid currentColor; }
.hero__trust:hover .hero__trust-tp { opacity: .7; }

/* ---------- Slider (two rows, seamless infinite loop) ---------- */
.slider {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}
.slider__row {
  position: relative;
  overflow: hidden;
}
.slider__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  animation: slide-left 60s linear infinite;
}
.slider__track--reverse { animation: slide-right 70s linear infinite; }
.slider__row:hover .slider__track { animation-play-state: paused; }

.slider__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logos row */
.slider__row--logos .slider__group { gap: 97px; padding-right: 97px; }
.slider__row--logos img {
  height: 89px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .35s var(--easing);
}
.slider__row--logos img:hover { filter: grayscale(0) opacity(1); }

/* People row */
.slider__row--people .slider__group { gap: 20px; padding-right: 20px; }
.slider__face {
  width: 142px;
  height: 142px;
  border-radius: 30px;
  overflow: hidden;
  margin: 0;
  background: var(--line-soft);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: transform .4s var(--easing);
}
.slider__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: portrait-in 0.6s ease both;
}
@keyframes portrait-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.slider__face:hover { transform: translateY(-2px) scale(1.04); }

@keyframes slide-left {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--slide-distance, 50%)), 0, 0); }
}
@keyframes slide-right {
  from { transform: translate3d(calc(-1 * var(--slide-distance, 50%)), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

/* ============================================================
   COOK / HOW IT WORKS
   ============================================================ */
.cook {
  padding: 56px 0 120px;
  background: var(--bg);
}
.cook .container:first-child { text-align: center; margin-bottom: 64px; }
.cook__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.cook__phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone__wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  /* never taller than viewport minus nav + breathing room;
     1072/2208 = portrait PNG ratio → width = height × (1072/2208) */
  max-width: min(260px, calc((100svh - 160px) * 1072 / 2208));
}
.phone__frame {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.18));
}
.phone__screen {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  clip-path: inset(1% 3% 1% 4.3% round 9% 11% 11% 10%);
}

.cook__steps { display: grid; gap: 20px; }
.cook__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--easing), border-color .35s var(--easing), box-shadow .35s var(--easing);
}
.cook__step:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.cook__num {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
.cook__step h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cook__step p {
  color: var(--ink-3);
  font-size: 16px;
}

/* Performance: defer rendering of off-screen sections */
.why, .pricing, .faq, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ============================================================
   WORK / OUR MAGIC — horizontal scroll-snap rail
   ============================================================ */
.work { padding: 120px 0; background: var(--bg-alt); overflow: hidden; }
.work__head { text-align: center; margin-bottom: 56px; }
.work__head .section-sub { margin-left: auto; margin-right: auto; }

.work__rail {
  position: relative;
  padding: 8px 0 32px;
}
.work__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.work__scroll::-webkit-scrollbar { display: none; }

.work__card {
  position: relative;
  flex: 0 0 280px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--line-soft);
  scroll-snap-align: start;
  box-shadow: 0 12px 36px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.04);
  transition: transform .5s var(--easing), box-shadow .5s var(--easing);
}
.work__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--easing-out);
}
.work__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .45s var(--easing);
}
.work__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,.16), 0 4px 10px rgba(0,0,0,.06);
}
.work__card:hover img { transform: scale(1.06); }
.work__card:hover::after { opacity: 1; }

.work__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 980px;
  color: #fff;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.work__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--easing), transform .3s var(--easing), background-color .25s var(--easing);
}
.work__rail:hover .work__nav { opacity: 1; pointer-events: auto; }
.work__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.work__nav--prev { left: 24px; }
.work__nav--next { right: 24px; }

.work__cta { margin-top: 16px; text-align: center; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { padding: 120px 0; background: var(--bg); }
.why .container:first-child { text-align: center; margin-bottom: 48px; }

.why__media {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}
.why__media img,
.why__media video {
  width: 100%;
  max-width: 988px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-alt);
}

.why__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__point {
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .35s var(--easing), border-color .35s var(--easing), box-shadow .35s var(--easing);
}
.why__point:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.why__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: block;
}
.why__point p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  max-width: 32ch;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 120px 0; background: var(--bg-alt); }
.pricing .container:first-child { text-align: center; margin-bottom: 32px; }

.pricing__controls {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 980px;
  gap: 2px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 980px;
  transition: background-color .35s var(--easing), color .35s var(--easing);
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--ink); color: #fff; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plan {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: opacity .4s var(--easing), transform .4s var(--easing), border-color .35s var(--easing), box-shadow .35s var(--easing);
}
.plan[hidden] { display: none; }
.plan:hover { border-color: var(--line); box-shadow: var(--shadow-md); }

.plan--featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
}
.plan--featured .plan__tag,
.plan--featured .plan__list li,
.plan--featured .plan__samples summary,
.plan--featured .plan__samples li,
.plan--featured .plan__per { color: rgba(255,255,255,.7); }
.plan--featured .plan__list li::before { background: transparent; }
.plan--featured .plan__samples { border-top-color: rgba(255,255,255,.1); }
.plan--featured .btn--primary { background: #fff; color: var(--ink); }
.plan--featured .btn--primary:hover { background: #f5f5f7; box-shadow: 0 6px 18px rgba(255,255,255,.18); }

.plan__head { margin-bottom: 24px; }
.plan__badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border-radius: 980px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.plan__badge--accent { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.14); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.plan__cur { font-size: 28px; color: var(--ink-3); align-self: flex-start; margin-top: 6px; }
.plan--featured .plan__cur { color: rgba(255,255,255,.6); }
.plan__per { font-size: 16px; font-weight: 400; color: var(--ink-3); }

.plan__tag { color: var(--ink-3); font-size: 15px; }

.plan__list { display: grid; gap: 12px; margin: 8px 0 28px; }
.plan__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-2);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}
.plan--featured .plan__list li::before { border-color: #fff; }

.plan__samples {
  margin: 4px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.plan__samples-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.plan__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.plan__chips span {
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 980px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
  white-space: nowrap;
  transition: border-color .25s var(--easing), color .25s var(--easing);
}
.plan__chips span:hover { border-color: var(--line); color: var(--ink); }

.plan--featured .plan__samples { border-top-color: rgba(255,255,255,.12); }
.plan--featured .plan__samples-label { color: rgba(255,255,255,.55); }
.plan--featured .plan__chips span {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}
.plan--featured .plan__chips span:hover { border-color: rgba(255,255,255,.3); color: #fff; }

.pricing__note {
  margin-top: 48px;
  text-align: center;
}
.pricing__note p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 14px;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--bg); }
.faq .container:first-child { text-align: center; margin-bottom: 56px; }

.faq__list { max-width: 820px; }
.faq__item {
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s var(--easing);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  list-style: none;
  transition: color .25s var(--easing);
}
.faq__item summary:hover { color: var(--accent); }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__chev {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform .35s var(--easing);
}
.faq__chev::before, .faq__chev::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq__chev::before { top: 50%; left: 0; right: 0; height: 1.5px; margin-top: -0.75px; }
.faq__chev::after { left: 50%; top: 0; bottom: 0; width: 1.5px; margin-left: -0.75px; transition: transform .35s var(--easing); }
.faq__item[open] .faq__chev::after { transform: scaleY(0); }

.faq__body {
  overflow: hidden;
  padding: 0 0 26px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  animation: fadeIn .45s var(--easing-out);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.footer__brand img { height: 22px; }
.footer__copy { font-size: 12px; color: var(--ink-3); margin-top: 8px; }
.footer__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; font-size: 13px; color: var(--ink-3); }
.footer__nav a { transition: color .2s var(--easing); }
.footer__nav a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 16px; align-items: center; color: var(--ink-3); font-size: 13px; flex-shrink: 0; }
.footer__social a { display: flex; align-items: center; transition: color .2s var(--easing); }
.footer__social a:hover { color: var(--ink); }
.impressum-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--ink-3); font-size: 13px; font-family: inherit;
  transition: color .2s var(--easing);
}
.impressum-btn:hover { color: var(--ink); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  z-index: 9997;
  background: rgba(29,29,31,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f5f5f7;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  transition: transform .5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-bar__text {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  color: rgba(245,245,247,.75);
}
.cookie-bar__text strong { color: #f5f5f7; font-weight: 500; }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar__btn {
  border-radius: 980px;
  padding: 9px 20px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.cookie-bar__btn:hover { opacity: .82; }
.cookie-bar__btn--fill  { background: #0071e3; color: #fff; }
.cookie-bar__btn--ghost { background: rgba(255,255,255,.1); color: rgba(245,245,247,.85); }
@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================================
   IMPRESSUM MODAL
   ============================================================ */
.imp-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--easing);
}
.imp-overlay.is-open { opacity: 1; pointer-events: auto; }
.imp-modal {
  background: #fff; border-radius: 20px;
  padding: 48px 52px; max-width: 480px; width: calc(100% - 48px);
  position: relative;
  transform: translateY(20px);
  transition: transform .35s var(--easing);
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
}
.imp-overlay.is-open .imp-modal { transform: translateY(0); }
.imp-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--bg-alt); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 18px; cursor: pointer;
  color: var(--ink-2); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.imp-close:hover { background: #e5e5ea; }
.imp-title { font-size: 22px; font-weight: 600; margin-bottom: 28px; color: var(--ink); }
.imp-list { display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; margin: 0; }
.imp-list dt { font-size: 13px; color: var(--ink-3); font-weight: 500; padding-top: 1px; white-space: nowrap; }
.imp-list dd { font-size: 15px; color: var(--ink); margin: 0; line-height: 1.5; }
.imp-list a { color: var(--accent); text-decoration: none; }
.imp-list a:hover { text-decoration: underline; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--easing-out), transform .9s var(--easing-out);
}
.reveal.is-visible { opacity: 1; transform: none; }


/* Stagger children of reveal-stagger */
.cook__step.reveal:nth-child(1) { transition-delay: .05s; }
.cook__step.reveal:nth-child(2) { transition-delay: .15s; }
.cook__step.reveal:nth-child(3) { transition-delay: .25s; }

.work__cell.reveal:nth-child(2) { transition-delay: .05s; }
.work__cell.reveal:nth-child(3) { transition-delay: .1s; }
.work__cell.reveal:nth-child(4) { transition-delay: .15s; }
.work__cell.reveal:nth-child(5) { transition-delay: .2s; }
.work__cell.reveal:nth-child(6) { transition-delay: .25s; }
.work__cell.reveal:nth-child(7) { transition-delay: .3s; }
.work__cell.reveal:nth-child(8) { transition-delay: .35s; }
.work__cell.reveal:nth-child(9) { transition-delay: .4s; }

.why__point.reveal:nth-child(2) { transition-delay: .1s; }
.why__point.reveal:nth-child(3) { transition-delay: .2s; }

.plan.reveal { transition-delay: .05s; }
.plan.reveal:nth-of-type(2) { transition-delay: .15s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .lang { display: none; }
  .nav .btn--sm { display: none; }

  .nav.is-menu-open .nav__menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(251,251,253,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 17px;
  }
  .nav.is-menu-open .nav__menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav.is-menu-open .lang {
    display: inline-flex;
    margin-top: 12px;
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 56px; }
  .hero__sub { font-size: 17px; }

  .cook, .work, .why, .pricing, .faq { padding: 80px 0; }

  .cook__grid { grid-template-columns: 1fr; gap: 48px; }
  .phone__wrap { max-width: 180px; }

  .why__points { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer__right { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__nav { justify-content: flex-start; }

  .slider__row--logos img { height: 73px; }
  .slider__row--logos .slider__group { gap: 72px; padding-right: 72px; }
  .slider__face { width: 122px; height: 122px; border-radius: 26px; }

  .work__card { flex: 0 0 240px; }
  .work__nav { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__line { white-space: normal; }
  .work__card { flex: 0 0 75vw; }
  .plan { padding: 28px 24px; }
  .plan__price { font-size: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .slider__track { animation: none !important; }
}

