/* ═══════════════════════════════════════════
   CONSULTOPHONE — Styles
   Clean. Editorial. Light.
   ═══════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --bg:       #FFFFFF;
  --bg-alt:   #F5F5F5;
  --text:     #111111;
  --sub:      #555555;
  --muted:    #999999;
  --purple:   #6E4AB5;
  --purple-bg:#F0EBFF;
  --green:    #1E9E6A;
  --border:   #E5E5E5;
  --radius:   12px;
  --nav-h:    68px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ─── Type ─── */
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
p { color: var(--sub); line-height: 1.75; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--purple);
  color: #fff;
}
.btn--primary:hover {
  background: #5E3A9E;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--sub);
  padding: 13px 0;
}
.btn--ghost:hover { color: var(--text); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--full { width: 100%; border-radius: var(--radius); }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.nav.scrolled { border-color: var(--border); }

.nav__logo { display: flex; align-items: center; gap: 0; }
.logo-icon { width: 26px; height: 26px; color: var(--purple); flex-shrink: 0; }
.logo-wordmark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav__links { display: flex; gap: 36px; }
.nav__link { font-size: 0.92rem; font-weight: 500; color: var(--sub); transition: color 0.15s; }
.nav__link:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.22s var(--ease); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  padding: 24px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
@media (max-width: 780px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
}

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Hero Slider ─── */
.btn--white {
  background: #fff;
  color: var(--text);
  border: 2px solid #fff;
}
.btn--white:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); }
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide--active { opacity: 1; pointer-events: all; }

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.slide--active .slide__bg { transform: scale(1); }

.slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.48);
}
.slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 80px 60px;
  max-width: 100%;
}
.slide__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.slide--active .slide__eyebrow { opacity: 1; transform: translateY(0); }

.slide__headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.slide--active .slide__headline { opacity: 1; transform: translateY(0); }

.slide__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 620px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
}
.slide--active .slide__sub { opacity: 1; transform: translateY(0); }

.slide__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}
.slide--active .slide__actions { opacity: 1; transform: translateY(0); }

.slider__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider__dot--active { background: #fff; width: 24px; border-radius: 4px; }

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
}
.slider__arrow:hover { background: rgba(255,255,255,0.22); }
.slider__arrow--prev { left: 28px; }
.slider__arrow--next { right: 28px; }

/* ─── Hero animation (unused, kept for reference) ─── */
.hero__anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.anim-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.anim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  border-radius: 0 0 2px 2px;
}

/* Each phase takes up full card, animated in/out */
.anim-phase {
  position: absolute;
  inset: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(10px);
}

.anim-phase--ring {
  animation: phase-in-out 9s ease-in-out infinite;
  animation-delay: 0s;
}
.anim-phase--talk {
  flex-direction: column;
  align-items: flex-start;
  animation: phase-in-out 9s ease-in-out infinite;
  animation-delay: 3s;
}
.anim-phase--done {
  animation: phase-in-out 9s ease-in-out infinite;
  animation-delay: 6s;
}

@keyframes phase-in-out {
  0%      { opacity: 0; transform: translateY(10px); }
  5%      { opacity: 1; transform: translateY(0); }
  28%     { opacity: 1; transform: translateY(0); }
  33%     { opacity: 0; transform: translateY(-8px); }
  100%    { opacity: 0; transform: translateY(10px); }
}

/* Phase 1: ringing phone */
.anim-phone-wrap {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.anim-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(110,74,181,0.25);
  animation: ring-expand 2.4s ease-out infinite;
}
.anim-pulse--1 { width: 64px; height: 64px; animation-delay: 0s; }
.anim-pulse--2 { width: 90px; height: 90px; animation-delay: 0.6s; }
.anim-pulse--3 { width: 116px; height: 116px; animation-delay: 1.2s; }

@keyframes ring-expand {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.3);  opacity: 0; }
}

.anim-phone-icon {
  width: 52px; height: 52px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: phone-shake 0.5s ease-in-out infinite alternate;
}
.anim-phone-icon svg { width: 22px; height: 22px; }
@keyframes phone-shake {
  0%   { transform: rotate(-8deg); }
  100% { transform: rotate(8deg); }
}

.anim-info { flex: 1; }
.anim-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.anim-label--green { color: var(--green); }
.anim-num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Phase 2: talking / waveform */
.anim-talk-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.anim-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: dot-blink 1.2s ease-in-out infinite;
}
.anim-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  margin-bottom: 14px;
}
.anim-wave span {
  display: block;
  width: 4px;
  background: var(--purple);
  border-radius: 3px;
  opacity: 0.7;
  animation: wave-anim 1.2s ease-in-out infinite;
}
.anim-wave span:nth-child(1)  { height: 30%; animation-delay: 0.00s; }
.anim-wave span:nth-child(2)  { height: 65%; animation-delay: 0.08s; }
.anim-wave span:nth-child(3)  { height: 90%; animation-delay: 0.16s; }
.anim-wave span:nth-child(4)  { height: 50%; animation-delay: 0.24s; }
.anim-wave span:nth-child(5)  { height: 80%; animation-delay: 0.32s; }
.anim-wave span:nth-child(6)  { height: 40%; animation-delay: 0.40s; }
.anim-wave span:nth-child(7)  { height: 100%; animation-delay: 0.48s; }
.anim-wave span:nth-child(8)  { height: 35%; animation-delay: 0.56s; }
.anim-wave span:nth-child(9)  { height: 70%; animation-delay: 0.64s; }
.anim-wave span:nth-child(10) { height: 55%; animation-delay: 0.72s; }
.anim-wave span:nth-child(11) { height: 85%; animation-delay: 0.80s; }
.anim-wave span:nth-child(12) { height: 45%; animation-delay: 0.88s; }
.anim-wave span:nth-child(13) { height: 60%; animation-delay: 0.16s; }
.anim-wave span:nth-child(14) { height: 95%; animation-delay: 0.24s; }
.anim-wave span:nth-child(15) { height: 40%; animation-delay: 0.08s; }

.anim-bubble {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--purple);
}

/* Phase 3: success */
.anim-success-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Floating chips */
.anim-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.anim-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sub);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  animation: chip-float 3s ease-in-out infinite;
}
.anim-chip:nth-child(2) { animation-delay: 0.5s; }
.anim-chip:nth-child(3) { animation-delay: 1s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ─── Stats strip ─── */
.stats-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 60px;
  text-align: center;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-text { font-size: 0.85rem; color: var(--sub); max-width: 180px; margin: 0 auto; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ─── Features alternating ─── */
.features { padding: 100px 0; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:first-child { padding-top: 20px; }
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-row__text { order: 2; }
.feature-row--reverse .feature-row__image { order: 1; }

.feature-row__text h2 { margin-bottom: 16px; }
.feature-row__text p { margin-bottom: 24px; font-size: 1rem; }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }

.feature-row__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-row__image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Trust bar ─── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sub);
}
.trust-icon { font-size: 1rem; }

/* ─── Onboarding ─── */
.onboarding { padding: 100px 0; }
.onboarding__header { margin-bottom: 56px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { display: flex; flex-direction: column; }
.step__num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 20px;
}
.step__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  background: var(--bg-alt);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ─── Pricing ─── */
.pricing {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.pricing > .container > .eyebrow,
.pricing > .container > h2 { margin-bottom: 16px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pricing-card--featured {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(110,74,181,0.12);
}
.pricing-card--featured:hover { transform: translateY(-9px); }

.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--purple);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-tier { color: var(--purple); }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-big { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.price-label { font-size: 0.82rem; color: var(--muted); }
.price-monthly { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 28px;
}
.pricing-features li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 9px; }
.pricing-features li.ok { color: var(--text); }
.pricing-features li.ok::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.no { color: var(--muted); }
.pricing-features li.no::before { content: '—'; color: var(--border); flex-shrink: 0; }

.pricing-note { font-size: 0.84rem; color: var(--muted); text-align: center; margin-top: 32px; }

/* ─── CTA ─── */
.cta-section { padding: 100px 0; border-top: 1px solid var(--border); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 24px;
  overflow: hidden;
}
.cta-text { padding: 64px; }
.cta-text h2 { margin-bottom: 16px; }
.cta-text p { font-size: 1.05rem; margin-bottom: 36px; }
.cta-image { height: 440px; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Contact ─── */
.kontakt { padding: 100px 0; border-top: 1px solid var(--border); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.kontakt-text .eyebrow { margin-bottom: 14px; }
.kontakt-text h2 { margin-bottom: 16px; }
.kontakt-text p { margin-bottom: 32px; }
.kontakt-perks { display: flex; flex-direction: column; gap: 10px; }
.kontakt-perks p { font-size: 0.9rem; font-weight: 500; color: var(--text); margin: 0; }

.kontakt__form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--sub); }
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--purple); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--border); padding: 40px 0 32px; }
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a { font-size: 0.88rem; color: var(--sub); transition: color 0.15s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.82rem; color: var(--muted); transition: color 0.15s; }
.footer__legal a:hover { color: var(--text); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .slide__content { padding: calc(var(--nav-h) + 30px) 40px 60px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .feature-row--reverse .feature-row__text { order: 1; }
  .feature-row--reverse .feature-row__image { order: 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-text { padding: 40px; }
  .cta-image { height: 300px; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .mobile-menu { padding: 20px 20px 28px; }
  .slide__content { padding: calc(var(--nav-h) + 20px) 20px 40px; }
  .slider__arrow { display: none; }
  .features { padding: 60px 0; }
  .onboarding, .pricing, .cta-section, .kontakt { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt__form { padding: 24px 20px; }
  .cta-text { padding: 32px 24px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-wrap: wrap; gap: 14px; }
  .trust-grid { gap: 20px; justify-content: flex-start; }
}
