:root {
  --navy: #0b2344;
  --navy-soft: #163762;
  --turquoise: #1ebdc1;
  --turquoise-dark: #14999d;
  --turquoise-soft: #dff7f8;
  --white: #ffffff;
  --text: #112b43;
  --muted: #5a7389;
  --bg: #f4f9fb;
  --card: #ffffff;
  --border: rgba(11, 35, 68, 0.12);
  --shadow: 0 16px 46px rgba(11, 35, 68, 0.09);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
  --surface-soft: #f7fbfd;
  --shadow-soft: 0 10px 24px rgba(11, 35, 68, 0.07);
  --shadow-medium: 0 16px 34px rgba(11, 35, 68, 0.1);
  --shadow-strong: 0 22px 44px rgba(11, 35, 68, 0.14);
  --shadow-float: 0 28px 56px rgba(11, 35, 68, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  z-index: 2000;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 44px)); margin: 0 auto; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 35, 68, 0.07);
  box-shadow: 0 8px 22px rgba(11, 35, 68, 0.06);
}
.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30, 189, 193, 0.45) 50%, transparent 100%);
  pointer-events: none;
}
.nav-inner {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: min(168px, 38vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.logo-tagline {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
  max-width: 200px;
}

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  position: relative;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 189, 193, 0.8), rgba(11, 35, 68, 0.65));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--turquoise-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--turquoise-dark); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a:focus-visible {
  color: var(--turquoise-dark);
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(30, 189, 193, 0.35);
}
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
}
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  margin: 3px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(11, 35, 68, 0.22);
  border-color: rgba(11, 35, 68, 0.24);
}
.btn-primary:hover {
  box-shadow: var(--shadow-float);
  background: linear-gradient(135deg, #0a203d 0%, #123359 100%);
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(11, 35, 68, 0.2);
  box-shadow: 0 10px 20px rgba(11, 35, 68, 0.08);
}
.btn-secondary:hover {
  border-color: rgba(11, 35, 68, 0.3);
  box-shadow: 0 12px 24px rgba(11, 35, 68, 0.11);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 6px rgba(30, 189, 193, 0.55);
}
.btn-secondary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.98), 0 0 0 6px rgba(11, 35, 68, 0.35);
}
.nav-cta.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 6px rgba(30, 189, 193, 0.55), 0 16px 30px rgba(11, 35, 68, 0.22);
}

.hero {
  position: relative;
  min-height: min(97vh, 1040px);
  display: grid;
  align-items: stretch;
  padding: 98px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fc 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 420px;
  height: 420px;
  border-radius: 999px;
  right: 4%;
  top: 9%;
  background: radial-gradient(circle, rgba(30, 189, 193, 0.18) 0%, rgba(30, 189, 193, 0.04) 58%, transparent 100%);
}
.hero::after {
  width: 300px;
  height: 300px;
  border-radius: 999px;
  left: 6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(11, 35, 68, 0.12) 0%, rgba(11, 35, 68, 0.02) 62%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(84vh, 900px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 68, 0.1);
  box-shadow: 0 34px 70px rgba(11, 35, 68, 0.22);
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 0 38px 38px;
  padding: 32px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(246, 251, 253, 0.88) 100%);
  border: 1px solid rgba(11, 35, 68, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(11, 35, 68, 0.21);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 189, 193, 0.14);
  color: var(--navy);
  font-weight: 850;
  margin-bottom: 18px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--turquoise);
  box-shadow: 0 0 0 6px rgba(30, 189, 193, 0.16);
}
h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5.4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.06rem;
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-actions .btn-primary { min-width: 220px; }
.hero-actions .btn-secondary { min-width: 210px; }
.hero-actions .btn {
  min-height: 52px;
  padding-inline: 24px;
}
.hero-trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  border-radius: 999px;
  border: 1px solid rgba(11, 35, 68, 0.11);
  background: rgba(255, 255, 255, 0.88);
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(11, 35, 68, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.chip:hover {
  border-color: rgba(30, 189, 193, 0.45);
  box-shadow: 0 12px 20px rgba(11, 35, 68, 0.11);
  transform: translateY(-1px);
}
.hero-card {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-main-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 43, 0.7) 0%, rgba(7, 23, 43, 0.56) 35%, rgba(7, 23, 43, 0.22) 65%, rgba(7, 23, 43, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 23, 43, 0.1) 0%, rgba(7, 23, 43, 0.3) 100%);
  z-index: 1;
}
.hero-grid::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 23, 43, 0.32) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p { color: #0b2344; }
.hero-proof-band {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.hero-proof-item {
  border-radius: 13px;
  border: 1px solid rgba(11, 35, 68, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 251, 253, 0.95) 100%);
  padding: 12px 13px;
  min-height: 82px;
  box-shadow: 0 10px 20px rgba(11, 35, 68, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hero-proof-item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 189, 193, 0.32);
  box-shadow: 0 16px 28px rgba(11, 35, 68, 0.12);
}
.hero-proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.hero-proof-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.38;
}
.hero-proof-strip {
  padding: 8px 0 34px;
}

.mini-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mini-list li { display: flex; gap: 10px; line-height: 1.5; font-weight: 800; }
.mini-icon {
  width: 21px;
  height: 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 189, 193, 0.18);
  color: var(--turquoise-dark);
  flex: 0 0 auto;
}

.section { padding: 78px 0 96px; }
.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(248, 252, 253, 0.96) 100%);
  border-top: 1px solid rgba(11, 35, 68, 0.06);
  border-bottom: 1px solid rgba(11, 35, 68, 0.06);
}
.section-alt .container {
  position: relative;
}
.section-alt .container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(11, 35, 68, 0.14) 50%, transparent 100%);
}
.section-header { max-width: 860px; margin-bottom: 34px; }
.kicker {
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.75rem, 3.3vw, 2.95rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-header h1 {
  margin: 12px 0 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 1.02rem;
  font-weight: 600;
}
.section-image-band {
  margin-bottom: 20px;
}
.section-image-band img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  box-shadow: 0 12px 28px rgba(11, 35, 68, 0.08);
}
.veredelung-image-band {
  margin: 2px 0 18px;
}
.veredelung-image-band img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(11, 35, 68, 0.11);
  box-shadow: 0 16px 30px rgba(11, 35, 68, 0.12);
}

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.card {
  background: var(--card);
  border: 1px solid rgba(11, 35, 68, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.card:hover {
  border-color: rgba(11, 35, 68, 0.18);
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}
.card:focus-within {
  border-color: rgba(30, 189, 193, 0.4);
  box-shadow: 0 16px 30px rgba(11, 35, 68, 0.12);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 189, 193, 0.14);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; font-weight: 600; }
.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 35, 68, 0.1);
  box-shadow: 0 8px 20px rgba(11, 35, 68, 0.08);
}
.proof-card {
  border-color: rgba(30, 189, 193, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
}
#proof .section-header { margin-bottom: 22px; max-width: 760px; }
#warum .section-header { margin-bottom: 24px; max-width: 760px; }
#referenzen .grid-3 { gap: 20px; }
#referenzen .card .tag { margin-top: 2px; }
#kontakt .contact-card { padding: 26px; }
#standort .map-grid { margin-top: 6px; }
#kontakt .section-header { margin-bottom: 24px; }
#bewertungen .section-header { margin-bottom: 24px; }

#proof {
  background:
    radial-gradient(900px 280px at 12% 0%, rgba(30, 189, 193, 0.11), transparent 70%),
    linear-gradient(180deg, #f8fcfd 0%, #f2f9fc 100%);
}
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}
.proof-card-lead {
  min-height: 100%;
  padding: 28px;
  background:
    radial-gradient(700px 380px at 18% 15%, rgba(30, 189, 193, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
  border-color: rgba(30, 189, 193, 0.35);
  box-shadow: 0 18px 34px rgba(11, 35, 68, 0.11);
}
.proof-card-lead h3 {
  margin-top: 8px;
  font-size: clamp(1.34rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}
.proof-card-lead p {
  margin-top: 12px;
  max-width: 52ch;
}
.proof-points {
  display: grid;
  gap: 12px;
}
.proof-points .proof-card {
  min-height: 114px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

#ablauf {
  background:
    radial-gradient(780px 280px at 92% 0%, rgba(30, 189, 193, 0.08), transparent 72%),
    linear-gradient(180deg, #f9fcfd 0%, #f3f9fb 100%);
}
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.process-flow::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 189, 193, 0.25), rgba(11, 35, 68, 0.2));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 20px rgba(11, 35, 68, 0.18);
}

#konfigurator {
  background:
    radial-gradient(700px 380px at 92% 8%, rgba(30, 189, 193, 0.1), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}
#standort,
#kontakt {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}
#bewertungen {
  background:
    radial-gradient(760px 260px at 82% 4%, rgba(11, 35, 68, 0.06), transparent 72%),
    linear-gradient(180deg, #f8fcfd 0%, #f3f9fb 100%);
}

#warum {
  background:
    radial-gradient(1000px 420px at 88% 12%, rgba(30, 189, 193, 0.09), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 55%, #f0f8fb 100%);
}
#warum::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 35, 68, 0.08), transparent);
  pointer-events: none;
}
#warum .card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
}
.warum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
  align-items: stretch;
}
.warum-visual-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.warum-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(11, 35, 68, 0.09);
}
.warum-visual-note {
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 68, 0.1);
  background: rgba(248, 252, 253, 0.95);
  padding: 11px 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 700;
}
.warum-reasons {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.warum-lead {
  grid-column: span 2;
  padding: 24px;
  border-color: rgba(30, 189, 193, 0.3);
  box-shadow: 0 15px 30px rgba(11, 35, 68, 0.1);
}
.warum-point h3 {
  font-size: 1.03rem;
}
#produkte {
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 45%, #f8fcfd 100%);
}
#veredelung {
  background:
    radial-gradient(720px 360px at 10% 20%, rgba(11, 35, 68, 0.05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}
#faq {
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(30, 189, 193, 0.07), transparent 70%),
    linear-gradient(180deg, #f9fcfd 0%, #f2f8fb 100%);
}
#proof,
#warum,
#referenzen,
#bewertungen,
#standort,
#kontakt {
  position: relative;
}
#proof .container,
#warum .container,
#referenzen .container,
#bewertungen .container,
#standort .container,
#kontakt .container {
  position: relative;
  z-index: 1;
}
#referenzen .grid-3 {
  align-items: stretch;
}
#referenzen .grid-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
#referenzen .grid-3 > .card:first-child {
  grid-column: span 6;
}
#referenzen .grid-3 > .card:nth-child(2),
#referenzen .grid-3 > .card:nth-child(3) {
  grid-column: span 3;
}
.reviews-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-card-lead {
  grid-column: span 2;
  padding: 24px;
  border-color: rgba(30, 189, 193, 0.3);
  box-shadow: 0 16px 30px rgba(11, 35, 68, 0.11);
}
#produkte .product-card,
#referenzen .card,
#bewertungen .review-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#produkte .product-card h3,
#referenzen .card h3 {
  margin-bottom: 10px;
}
#produkte .product-card .check-list,
#referenzen .card p,
#bewertungen .review-card p {
  margin-top: auto;
}
.tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(11, 35, 68, 0.06);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.check-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.5;
}
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--turquoise-dark); font-weight: 900; }

.about-grid,
.contact-wrap,
.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.region-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.region-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(11, 35, 68, 0.04);
  border: 1px solid rgba(11, 35, 68, 0.08);
  font-weight: 800;
}
.region-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--turquoise);
  box-shadow: 0 0 0 5px rgba(30, 189, 193, 0.16);
}
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.stat {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  background: #f8fcfd;
}
.stat-value { font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.stat-label { color: var(--muted); font-weight: 700; font-size: 0.92rem; }

.contact-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.contact-list li { display: grid; gap: 4px; line-height: 1.5; font-weight: 700; }
.contact-list span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.map-section { padding-top: 34px; }
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}
.map-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  border-color: rgba(30, 189, 193, 0.18);
  padding: 28px;
}
.map-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 14px 0 12px;
}
.map-meta-item {
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 68, 0.09);
  background: rgba(255, 255, 255, 0.9);
  padding: 9px 11px;
}
.map-meta-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.map-meta-item span {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
}
.map-copy h2 { margin-top: 10px; }
.map-card {
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
  border-color: rgba(11, 35, 68, 0.14);
  box-shadow: var(--shadow-medium);
}
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 68, 0.13);
  min-height: 100%;
  box-shadow: 0 12px 28px rgba(11, 35, 68, 0.12);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 850; color: var(--navy); }
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fbfeff;
  color: var(--text);
  font: inherit;
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: rgba(30, 189, 193, 0.65);
  box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.17);
}
.form-note { margin: 9px 0 0; color: var(--muted); font-size: 0.92rem; }
.contact-success {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(20, 153, 157, 0.35);
  background: rgba(30, 189, 193, 0.11);
  padding: 11px 12px;
}
.contact-success strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-success span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
  font-size: 0.92rem;
}
.contact-wrap {
  gap: 20px;
  align-items: stretch;
}
.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  box-shadow: 0 16px 32px rgba(11, 35, 68, 0.09);
}
.contact-card h3 {
  margin-bottom: 12px;
}
.contact-card form {
  margin-top: 2px;
}
.field input,
.field textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(11, 35, 68, 0.18);
  background: #ffffff;
}

.configurator { padding-top: 72px; }
.configurator-grid { grid-template-columns: 1.08fr 0.92fr; }
.preview-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid rgba(11, 35, 68, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 48px rgba(11, 35, 68, 0.14);
  padding: 20px;
  position: sticky;
  top: 102px;
}
.preview-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 68, 0.09);
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(30, 189, 193, 0.18), transparent 55%),
    radial-gradient(700px 400px at 85% 10%, rgba(11, 35, 68, 0.12), transparent 55%),
    #f6fbfd;
  height: min(72vh, 620px);
  display: grid;
  place-items: center;
}
.preview-img { width: 100%; height: 100%; object-fit: contain; transition: opacity 220ms ease; }
.preview-img.is-fading { opacity: 0.25; }

.uploaded-logo-preview {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13%;
  height: auto;
  max-height: 10%;
  object-fit: contain;
  pointer-events: none;
  z-index: 3;
  opacity: 0.86;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 3px rgba(11, 35, 68, 0.14));
}

.preview-placement-zone {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 100% 100% at 50% 45%,
    rgba(30, 189, 193, 0.16) 0%,
    rgba(30, 189, 193, 0.05) 55%,
    transparent 72%
  );
  border: 1px solid rgba(30, 189, 193, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.preview-placement-zone[data-side='left'] {
  transform: translate(-50%, -50%) rotate(-4deg);
}
.preview-placement-zone[data-side='right'] {
  transform: translate(-50%, -50%) rotate(4deg);
}

.preview-controls { padding: 12px 2px 0; }
.preview-controls-label { font-weight: 900; color: var(--navy); margin-bottom: 8px; font-size: 0.82rem; letter-spacing: 0.02em; }
.preview-primary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 8px;
}
.preview-primary-hint {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
  max-width: 220px;
}
.preview-angles {
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  background: rgba(255, 255, 255, 0.65);
  padding: 0 10px;
}
.preview-angles-summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  padding: 10px 4px;
  list-style: none;
}
.preview-angles-summary::-webkit-details-marker {
  display: none;
}
.preview-angles-summary::after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(11, 35, 68, 0.45);
  transition: transform 0.2s ease;
}
.preview-angles[open] .preview-angles-summary::after {
  transform: rotate(180deg);
  margin-bottom: 2px;
}
.preview-angles .choice-row {
  padding-bottom: 10px;
}
.choice-row--compact {
  gap: 6px;
}
.choice-pill--emphasis[aria-pressed='true'] {
  border-color: rgba(30, 189, 193, 0.85);
  box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.16);
}

.choice-row { display: flex; gap: 8px; flex-wrap: wrap; }
.choice-pill {
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}
.choice-pill[aria-pressed="true"] { border-color: rgba(30, 189, 193, 0.7); box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.14); }
.preview-caption {
  margin-top: 12px;
  font-weight: 750;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(11, 35, 68, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.wizard-header,
.wizard-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 252, 253, 0.92) 100%);
  border: 1px solid rgba(11, 35, 68, 0.1);
  border-radius: var(--radius-xl);
  padding: 18px;
}
.wizard-header { margin-bottom: 14px; }
.wizard-progress {
  position: relative;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(11, 35, 68, 0.06);
}
.wizard-progress-track { position: absolute; inset: 0; background: rgba(11, 35, 68, 0.08); border-radius: 999px; }
.wizard-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise) 0%, var(--navy-soft) 100%);
  transition: width 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 12px rgba(30, 189, 193, 0.25);
}
.wizard-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px;
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  background: rgba(255, 255, 255, 0.94);
}
.wizard-step-indicator .num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(11, 35, 68, 0.08);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.wizard-step-indicator .label { font-size: 0.78rem; color: var(--muted); font-weight: 800; }
.wizard-step-indicator.is-active { border-color: rgba(30, 189, 193, 0.55); box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.14); }
.wizard-step-indicator.is-active .num {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
  color: #fff;
}
.wizard-step-indicator.is-done .num {
  font-size: 0;
  background: rgba(30, 189, 193, 0.14);
  color: transparent;
}
.wizard-step-indicator.is-done .num::after {
  content: '✓';
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--turquoise-dark);
}
.wizard-step-indicator.is-done .label {
  color: var(--text);
}

.wizard-step { animation: stepFade 180ms ease; }
@keyframes stepFade { from { opacity: 0.65; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.wizard-step:not(.is-active) { display: none; }
.step-title { font-size: 1.16rem; font-weight: 900; color: var(--navy); margin-bottom: 7px; }
.step-lead { margin: 0 0 14px; color: var(--muted); line-height: 1.65; }
.step-lead-tight { margin-bottom: 10px; font-size: 0.94rem; }

.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.choice-grid-4,
.choice-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card {
  width: 100%;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(11, 35, 68, 0.13);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.choice-card[aria-pressed="true"],
.choice-card.is-selected { border-color: rgba(30, 189, 193, 0.75); box-shadow: 0 0 0 5px rgba(30, 189, 193, 0.14); }
.choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(11, 35, 68, 0.1);
}
.choice-card-title { display: block; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.choice-card-meta { display: block; color: var(--muted); font-weight: 700; font-size: 0.92rem; }

.step-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.step-actions-narrow { justify-content: flex-start; margin-top: 8px; margin-bottom: 6px; }
.form-hint { color: var(--muted); font-size: 0.9rem; }
.callout { border-radius: 14px; border: 1px solid rgba(11, 35, 68, 0.08); background: #fff; padding: 12px; margin-bottom: 14px; }
.callout-title { font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.callout-body { color: var(--muted); line-height: 1.6; font-weight: 600; }

.validation {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
  color: #7d1b1b;
  font-weight: 800;
}
.summary-box {
  border-radius: 14px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  padding: 12px;
  margin-bottom: 14px;
}
.summary-title { font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.summary-grid .summary-item {
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 68, 0.07);
  background: #fdfefe;
  padding: 10px;
}
.summary-label {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  margin-bottom: 6px;
}
.summary-value { font-weight: 850; color: var(--text); line-height: 1.4; }
.summary-box-compact .summary-grid { grid-template-columns: 1fr; }
.summary-product-line {
  font-weight: 900;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 35, 68, 0.08);
}
.field-error { color: #8a1f1f; font-weight: 800; font-size: 0.9rem; }

.tech-details {
  margin: 12px 0 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 35, 68, 0.08);
  background: #fff;
}
.tech-details-empty { color: var(--muted); }
.tech-details .tech-title { font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.tech-details .tech-text { color: var(--muted); line-height: 1.6; }
.tech-details ul { margin: 10px 0 0; padding-left: 18px; color: var(--text); line-height: 1.5; }

.upload-hint { margin-top: 7px; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.upload-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upload-dropzone {
  position: relative;
  border-radius: 16px;
  border: 1px dashed rgba(11, 35, 68, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 253, 0.95) 100%);
  min-height: 132px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.upload-dropzone:hover {
  border-color: rgba(30, 189, 193, 0.45);
  background: #fff;
}
.upload-dropzone.is-dragover {
  border-color: rgba(30, 189, 193, 0.75);
  border-style: solid;
  box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.12);
  background: rgba(30, 189, 193, 0.04);
}
.upload-panel.is-has-file .upload-dropzone {
  opacity: 0.72;
  min-height: 100px;
}
.upload-panel.is-logo-later .upload-dropzone {
  opacity: 0.65;
}
.upload-file-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  font-size: 0;
}
.upload-dropzone-inner {
  position: relative;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 16px;
  text-align: center;
}
.upload-dropzone-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 189, 193, 0.15) 0%, rgba(11, 35, 68, 0.08) 100%);
  border: 1px solid rgba(30, 189, 193, 0.25);
  position: relative;
}
.upload-dropzone-icon::before,
.upload-dropzone-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border-radius: 1px;
}
.upload-dropzone-icon::before {
  width: 14px;
  height: 2px;
}
.upload-dropzone-icon::after {
  width: 2px;
  height: 14px;
}
.upload-dropzone-title {
  font-weight: 900;
  color: var(--navy);
  font-size: 0.95rem;
}
.upload-dropzone-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.upload-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(30, 189, 193, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f5fcfd 100%);
  box-shadow: 0 8px 20px rgba(11, 35, 68, 0.06);
}
.upload-status-thumb-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 68, 0.1);
  background: #fff;
}
.upload-status-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.upload-bg-hint {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(30, 189, 193, 0.28);
  background: rgba(30, 189, 193, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}
.upload-status-body {
  min-width: 0;
  flex: 1;
}
.upload-status-name {
  font-weight: 900;
  color: var(--navy);
  font-size: 0.9rem;
  word-break: break-word;
}
.upload-status-line {
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}
.size-control { margin-bottom: 14px; }
.size-control-label { font-size: 0.82rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.logo-later-btn { margin-top: 0; }
.logo-later-btn.is-active {
  border-color: rgba(30, 189, 193, 0.7);
  box-shadow: 0 0 0 4px rgba(30, 189, 193, 0.14);
}

.summary-review {
  border-radius: 16px;
  border: 1px solid rgba(11, 35, 68, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  padding: 14px 16px 16px;
  margin-bottom: 12px;
  box-shadow: 0 10px 26px rgba(11, 35, 68, 0.06);
}
.summary-review-head {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.summary-review-grid {
  display: grid;
  gap: 0;
}
.summary-review-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.38fr) 1fr;
  gap: 10px 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(11, 35, 68, 0.06);
  align-items: baseline;
}
.summary-review-row:first-of-type {
  border-top: none;
  padding-top: 0;
}
.summary-review-k {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
}
.summary-review-v {
  font-size: 0.92rem;
  font-weight: 850;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
}

.wizard-step--finalize .step-title {
  margin-bottom: 4px;
}
.finalize-lead {
  margin-bottom: 12px;
}
.form-grid--finalize {
  gap: 12px;
  margin-bottom: 4px;
}
.finalize-cta {
  margin-top: 10px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.finalize-cta-inner {
  border-radius: 16px;
  border: 1px solid rgba(11, 35, 68, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f3fafc 100%);
  padding: 16px 18px 18px;
  box-shadow: 0 14px 36px rgba(11, 35, 68, 0.1);
}
.finalize-cta .submit-panel-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.finalize-cta .submit-actions {
  margin-top: 12px;
}

.submit-panel-title { font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.submit-panel-subtitle { color: var(--muted); line-height: 1.5; font-size: 0.92rem; margin: 0 0 6px; }
.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}
.submit-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
.hidden { display: none !important; }

.review-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(30, 189, 193, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  box-shadow: 0 14px 28px rgba(11, 35, 68, 0.09);
}
.review-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  padding-left: 24px;
  position: relative;
}
.review-card h3::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -4px;
  color: rgba(11, 35, 68, 0.35);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}
.review-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 189, 193, 0.16) 0%, rgba(30, 189, 193, 0.02) 65%, transparent 100%);
}
.review-meta {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}
.review-card p {
  color: #2a435a;
  line-height: 1.68;
}

.service-card .card-media,
.product-card .card-media {
  border-radius: 13px;
}
.product-card .tag,
.service-card .tag,
#referenzen .card .tag {
  margin-bottom: 12px;
}

#referenzen .card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}
#kontakt .contact-card:last-child {
  border-color: rgba(30, 189, 193, 0.22);
}

.footer {
  margin-top: 22px;
  padding: 40px 0 28px;
  background: linear-gradient(180deg, #f5fbfd 0%, #eef7fa 100%);
  border-top: 1px solid rgba(11, 35, 68, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}
.footer-brand { margin-bottom: 4px; }
.footer-brand a {
  display: inline-block;
  line-height: 0;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  object-position: left center;
}
.footer-muted { margin-top: 4px; color: var(--muted); font-weight: 700; }
.footer-head { font-size: 0.86rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.footer-text { margin: 0 0 6px; color: var(--muted); line-height: 1.5; font-size: 0.94rem; }
.footer-links { display: grid; gap: 7px; }
.footer-link { color: var(--navy); font-weight: 800; font-size: 0.94rem; }
.footer-link:hover { color: var(--turquoise-dark); }
.footer-bottom {
  border-top: 1px solid rgba(11, 35, 68, 0.08);
  margin-top: 18px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-wrap { max-width: 860px; }
.legal-card { padding: 28px; }
.legal-card h1 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-card h2 { margin-top: 20px; font-size: 1.2rem; }
.legal-card p,
.legal-card li { color: var(--muted); line-height: 1.7; }
.legal-card ul { margin: 8px 0 0; padding-left: 20px; }
.legal-back { margin-top: 18px; }

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-wrap,
  .configurator-grid { grid-template-columns: 1fr; }
  .preview-card { position: relative; top: auto; }
  .preview-stage { height: min(60vh, 480px); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wizard-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .map-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 92px 0 26px; }
  .hero::before,
  .hero::after { display: none; }
  .hero-grid { min-height: 620px; }
  .hero-copy {
    margin: 0 0 28px 28px;
    max-width: min(88%, 620px);
    padding: 24px;
  }
  .hero-proof-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-layout,
  .warum-layout { grid-template-columns: 1fr; }
  .proof-card-lead { min-height: auto; }
  .process-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-flow::before { display: none; }
  .process-step { padding-top: 16px; }
  .warum-reasons { grid-template-columns: 1fr 1fr; }
  #referenzen .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #referenzen .grid-3 > .card:first-child,
  #referenzen .grid-3 > .card:nth-child(2),
  #referenzen .grid-3 > .card:nth-child(3) { grid-column: span 1; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-card-lead { grid-column: span 1; }
  .map-copy { padding: 24px; }
}

@media (max-width: 780px) {
  .logo { gap: 8px; }
  .logo-img {
    height: 34px;
    max-width: min(150px, 44vw);
  }
  .logo-tagline {
    font-size: 0.78rem;
    max-width: 150px;
  }
  .footer-logo-img { height: 32px; max-width: 132px; }
  .nav-burger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 16px 18px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(11, 35, 68, 0.1);
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 48px rgba(11, 35, 68, 0.12);
  }
  .nav-links a {
    padding: 10px 12px;
    border-radius: 10px;
    transition: background-color 0.18s ease, color 0.18s ease;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(11, 35, 68, 0.05);
    box-shadow: none;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-cta { display: none; }
  .nav-links a.nav-cta-mobile { display: inline-flex; margin-top: 10px; }

  .hero { min-height: auto; padding: 74px 0 16px; }
  .hero-copy p { font-size: 1rem; }
  .section { padding: 48px 0 64px; }
  .grid-4,
  .grid-3,
  .form-grid,
  .summary-grid,
  .choice-grid,
  .choice-grid-4,
  .choice-grid-2,
  .footer-grid { grid-template-columns: 1fr; }
  .wizard-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-review-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .step-actions { flex-direction: column; align-items: stretch; }
  .hero-grid {
    min-height: 540px;
    border-radius: 22px;
  }
  .hero-copy {
    margin: 0 14px 14px;
    max-width: none;
    padding: 18px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; min-width: 0; }
  .hero-proof-band { grid-template-columns: 1fr; gap: 8px; }
  .hero-proof-item { min-height: auto; }
  .hero-trust { gap: 7px; }
  .chip { font-size: 0.79rem; }
  .card { padding: 20px; }
  .map-frame iframe { min-height: 320px; }
  .map-copy { padding: 20px; }
  .contact-wrap { gap: 14px; }
  .form-grid { gap: 12px; }
  #referenzen .grid-3 { gap: 14px; }
  .hero-proof-strip { padding: 6px 0 14px; }
  .warum-reasons { grid-template-columns: 1fr; }
  .warum-lead { grid-column: span 1; }
  .process-flow { grid-template-columns: 1fr; gap: 12px; }
  .process-step { padding-top: 14px; }
  .preview-stage { height: min(58vh, 420px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .card,
  .chip,
  .preview-img { transition: none; }
  .wizard-step { animation: none; }
  .reveal-item { transition: none; opacity: 1; transform: none; }
  .hero-main-image { animation: none; transform: none; }
  .card:hover,
  .chip:hover { transform: none; }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.045) translateX(-1%); }
}

