/* ============================================================
   MOVARO Umzüge & Logistik — Design System
   ============================================================ */

:root {
  --navy-950: #060f1f;
  --navy-900: #091527;
  --navy-800: #0c1f3a;
  --navy-700: #122b4f;
  --navy-600: #1b3a66;
  --accent: #ff6b2c;
  --accent-strong: #f0561a;
  --accent-soft: #fff0e8;
  --ink: #0f1d33;
  --slate: #51607a;
  --slate-light: #8494ad;
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-softer: #fafcfe;
  --success: #16a34a;
  --star: #fbbf24;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(9, 21, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(9, 21, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(9, 21, 39, 0.16);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 78px;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.16;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.1em; }

a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: none; }

ul { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

.container--narrow { width: min(100% - 2.5rem, 860px); }

main { display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.6rem 1.2rem;
  z-index: 200;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 19px; height: 19px; flex: none; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 86, 26, 0.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(240, 86, 26, 0.42); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn--light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); color: #fff; }

.btn--sm { padding: 0.7rem 1.35rem; font-size: 0.92rem; }
.btn--lg { padding: 1.1rem 2.3rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  position: relative;
  z-index: 60;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
}

.topbar__group { display: flex; gap: 1.6rem; }

.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); }
.topbar__link { color: #fff; font-weight: 600; }
.topbar__link:hover { color: var(--accent); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(9, 21, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.brand__mark { color: var(--navy-800); display: inline-flex; }
.brand__mark svg { width: 42px; height: 42px; }

.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand__text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.brand--light { color: #fff; }
.brand--light .brand__mark { color: #fff; }
.brand--light .brand__text small { color: rgba(255, 255, 255, 0.55); }

.main-nav { display: flex; align-items: center; gap: 0.4rem; }

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav__link:hover { background: var(--bg-soft); }
.main-nav__link.is-active { color: var(--accent-strong); }
.main-nav__link .chev { width: 15px; height: 15px; transition: transform 0.25s ease; }

.main-nav__dropdown { position: relative; }

.main-nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 12px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.main-nav__dropdown::after {
  content: "";
  position: absolute;
  inset: 100% 0 -16px;
}

.main-nav__dropdown:hover .main-nav__menu,
.main-nav__dropdown:focus-within .main-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.main-nav__dropdown:hover .chev { transform: rotate(180deg); }

.main-nav__menu a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.2s ease;
}

.main-nav__menu a:hover { background: var(--accent-soft); }
.main-nav__menu a strong { font-family: var(--font-display); font-size: 0.95rem; }
.main-nav__menu a span { font-size: 0.82rem; color: var(--slate); }

.site-header__actions { display: flex; align-items: center; gap: 1.1rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.15;
}

.header-phone svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.header-phone span { display: flex; flex-direction: column; }
.header-phone small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-phone:hover { color: var(--accent-strong); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--navy-900);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(250, 252, 254, 0.98);
  backdrop-filter: blur(10px);
  padding: calc(var(--header-h) + 70px) 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow-y: auto;
}

.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-nav__links { display: flex; flex-direction: column; }

.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__links a.mobile-nav__sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  padding-left: 1.2rem;
}

.mobile-nav__phone {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%); }

.section-head { max-width: 680px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 85% -10%, rgba(255, 107, 44, 0.14), transparent 60%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 70%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}

.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.28em;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.85;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes drawLine { to { transform: scaleX(1); } }

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.05rem 0.45rem 0.55rem;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}

.hero__badge .dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__badge .dot svg { width: 14px; height: 14px; color: #fff; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: center;
}

.hero__trust-item { display: flex; align-items: center; gap: 0.7rem; }

.hero__trust-item .stars { color: var(--star); font-size: 0.95rem; letter-spacing: 2px; }

.hero__trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}

.hero__trust-item span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }

.hero__trust-item .icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__trust-item .icon svg { width: 20px; height: 20px; color: var(--accent); }

.hero__media { position: relative; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(6, 15, 31, 0.45));
}

.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transform: scale(1.02);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatY 5.5s ease-in-out infinite;
}

.float-card--tl { top: 8%; left: -7%; animation-delay: 0.8s; }
.float-card--br { bottom: 9%; right: -6%; }

.float-card .icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-card .icon svg { width: 22px; height: 22px; }
.float-card .icon--green { background: #e7f8ee; color: var(--success); }
.float-card .icon--orange { background: var(--accent-soft); color: var(--accent-strong); }

.float-card strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); display: block; line-height: 1.25; }
.float-card span { font-size: 0.78rem; color: var(--slate); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.05rem 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.marquee span::before { content: "✦"; color: var(--accent); font-size: 0.8rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Service cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  color: var(--slate);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__media { position: relative; overflow: hidden; }

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__media img { transform: scale(1.06); }

.service-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 21, 39, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.service-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

.service-card__body h3 { margin-bottom: 0.5rem; }

.service-card__body p { font-size: 0.97rem; margin-bottom: 1.2rem; flex: 1; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--accent-strong);
}

.service-card__link svg { width: 17px; height: 17px; transition: transform 0.25s ease; }
.service-card:hover .service-card__link svg { transform: translateX(5px); }

/* Icon cards (kompakte Leistungen) */

.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.icon-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.icon-card .icon svg { width: 26px; height: 26px; }

.icon-card h3 { font-size: 1.15rem; }
.icon-card p { font-size: 0.95rem; margin: 0; }

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

.step h3 { font-size: 1.12rem; }
.step p { font-size: 0.94rem; margin: 0; }

.step::after {
  content: "";
  position: absolute;
  top: 2.6rem;
  right: -1.4rem;
  width: 1.2rem;
  border-top: 2px dashed var(--slate-light);
  opacity: 0.5;
}

.step:last-child::after { display: none; }

/* ---------- Stats band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat strong em { font-style: normal; color: var(--accent); }

.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse .split__media { order: 2; }

.split__media { position: relative; }

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 12% -7% -7% 12%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft), #ffd9c2);
  z-index: -1;
}

.split--reverse .split__media::before { inset: 12% 12% -7% -7%; }

.split__media .badge-pill {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.split__media .badge-pill svg { width: 26px; height: 26px; color: var(--success); }

.checklist { display: grid; gap: 0.95rem; margin: 1.6rem 0 2.2rem; }

.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1rem;
}

.checklist li .check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 999px;
  background: #e7f8ee;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.checklist li .check svg { width: 14px; height: 14px; }

.checklist li strong { color: var(--ink); }

/* ---------- Testimonials ---------- */

.testimonials { position: relative; }

.testimonial-viewport { overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.testimonial__card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.testimonial__stars { color: var(--star); font-size: 1.25rem; letter-spacing: 4px; margin-bottom: 1.1rem; }

.testimonial__quote {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.testimonial__person { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.testimonial__person strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.98rem; }
.testimonial__person span { font-size: 0.84rem; color: var(--slate-light); }
.testimonial__person div { text-align: left; }

.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2rem; }

.testimonial-nav button.arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.testimonial-nav button.arrow:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }
.testimonial-nav button.arrow svg { width: 20px; height: 20px; }

.testimonial-dots { display: flex; gap: 0.5rem; }

.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #cdd8e6;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.testimonial-dots button.is-active { width: 26px; background: var(--accent); }

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.price-card--featured {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-700));
  border: none;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
}

.price-card--featured h3, .price-card--featured .price-card__price { color: #fff; }

.price-card__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(240, 86, 26, 0.4);
  white-space: nowrap;
}

.price-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }

.price-card__sub { font-size: 0.9rem; margin-bottom: 1.4rem; }

.price-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.price-card__price small { font-size: 0.95rem; font-weight: 500; color: inherit; opacity: 0.65; }

.price-card__note { font-size: 0.8rem; opacity: 0.7; margin-bottom: 1.6rem; }

.price-card .checklist { margin: 0 0 2rem; flex: 1; }
.price-card .checklist li { font-size: 0.94rem; }

.price-card--featured .checklist li .check { background: rgba(255, 255, 255, 0.12); color: #7ee2a8; }
.price-card--featured .checklist li strong { color: #fff; }

/* ---------- FAQ ---------- */

.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 0.9rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open { box-shadow: var(--shadow-md); border-color: transparent; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1.25rem 1.5rem;
}

.faq-item__q .plus {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  color: var(--ink);
}

.faq-item__q .plus svg { width: 16px; height: 16px; }

.faq-item.is-open .faq-item__q .plus {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__a > div { padding: 0 1.5rem 1.4rem; font-size: 0.98rem; }

/* ---------- CTA band ---------- */

.cta-band { position: relative; overflow: hidden; color: #fff; }

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 15, 31, 0.92) 30%, rgba(6, 15, 31, 0.55));
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  max-width: 640px;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.78); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Page hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 700px 420px at 90% 0%, rgba(255, 107, 44, 0.13), transparent 60%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
}

.page-hero .container { position: relative; }

.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 0.8rem; }

.page-hero p { color: rgba(255, 255, 255, 0.75); font-size: 1.12rem; max-width: 640px; margin: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.4rem;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.78); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span::before { content: "›"; margin-right: 0.5rem; }

/* ---------- Values / team ---------- */

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.2rem; }

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--line));
}

.timeline__item { position: relative; padding-bottom: 2.2rem; }
.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline__year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-strong);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.2rem;
}

.timeline__item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.timeline__item p { font-size: 0.97rem; margin: 0; }

.quote-block {
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 2.2rem;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
}

.quote-block footer { margin-top: 1rem; font-size: 0.92rem; color: var(--slate); font-weight: 400; }
.quote-block footer strong { color: var(--ink); }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field label .req { color: var(--accent-strong); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-softer);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.14);
}

.form-field input.is-invalid,
.form-field select.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-hint { font-size: 0.8rem; color: var(--slate-light); }

/* Multistep */

.progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.4rem;
}

.progress__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  text-align: center;
}

.progress__step::before {
  content: "";
  position: absolute;
  top: 19px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: var(--line);
  z-index: 0;
  transition: background 0.4s ease;
}

.progress__step:first-child::before { display: none; }

.progress__step.is-done::before, .progress__step.is-current::before { background: var(--accent); }

.progress__dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 2.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-light);
  transition: all 0.3s ease;
}

.progress__step.is-current .progress__dot {
  border-color: var(--accent);
  color: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(255, 107, 44, 0.15);
}

.progress__step.is-done .progress__dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.progress__step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-light);
  font-family: var(--font-display);
}

.progress__step.is-current span, .progress__step.is-done span { color: var(--ink); }

.form-step { display: none; animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.form-step.is-active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step h3 { margin-bottom: 1.4rem; }

.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }

.choice {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-softer);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }

.choice svg { width: 28px; height: 28px; color: var(--slate-light); transition: color 0.2s ease; }

.choice strong { font-family: var(--font-display); font-size: 0.92rem; color: var(--ink); font-weight: 600; }

.choice:hover { border-color: var(--accent); }

.choice.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.12);
}

.choice.is-selected svg { color: var(--accent-strong); }

.form-success { text-align: center; padding: 2.5rem 1rem; }

.form-success .icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: #e7f8ee;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success .icon svg { width: 40px; height: 40px; }

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card .icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card .icon svg { width: 24px; height: 24px; }

.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-card p, .contact-card a { font-size: 0.97rem; margin: 0; color: var(--slate); }
.contact-card a.strong { color: var(--ink); font-weight: 600; }
.contact-card a:hover { color: var(--accent-strong); }

.map-frame {
  border: none;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ---------- Legal pages ---------- */

.prose h2 { font-size: 1.5rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.8em; }

.notice {
  background: var(--accent-soft);
  border: 1px solid #ffd9c2;
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  color: #9a3f12;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  font-size: 0.95rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__col--brand p { margin-top: 1.3rem; max-width: 380px; font-size: 0.92rem; }

.site-footer__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.site-footer__badges span {
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.site-footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.28rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__col a:hover { color: var(--accent); transform: translateX(3px); }

.site-footer__col p { font-size: 0.92rem; margin: 0.6rem 0; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.84rem;
}

.site-footer__bottom p { margin: 0; }

.site-footer__legal { display: flex; gap: 1.4rem; }
.site-footer__legal a { color: rgba(255, 255, 255, 0.62); }
.site-footer__legal a:hover { color: var(--accent); }

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: var(--navy-900);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s ease;
}

.back-to-top svg { width: 22px; height: 22px; }

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-strong); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--zoom { transform: scale(0.92); }

.reveal.is-visible { opacity: 1; transform: none; }

/* Hero entrance (no JS needed) */

.hero__content > * { opacity: 0; animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.16s; }
.hero__content > *:nth-child(3) { animation-delay: 0.28s; }
.hero__content > *:nth-child(4) { animation-delay: 0.4s; }
.hero__content > *:nth-child(5) { animation-delay: 0.52s; }

.hero__media { opacity: 0; animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .header-phone { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 3.5rem; }
  .hero__media { max-width: 600px; }
  .float-card--tl { left: 3%; }
  .float-card--br { right: 3%; }
  .cards-grid, .values-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .topbar__item:first-child { display: none; }
}

@media (max-width: 640px) {
  .cards-grid, .values-grid, .pricing-grid, .steps, .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .topbar__group { width: 100%; justify-content: space-between; }
  .hero__cta .btn { width: 100%; }
  .float-card { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .brand__text small { display: none; }
  .stats { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__content > *, .hero__media { opacity: 1; animation: none; }
}
