:root {
  --bg: #ffffff;
  --ink: #161a20;
  --muted: #5e6877;
  --line: #dfe7f1;
  --soft: #f4f8fc;
  --blue: #006efc;
  --cyan: #12c8ff;
  --mint: #17b890;
  --amber: #f4a825;
  --graphite: #242a33;
  --shadow: 0 20px 60px rgba(22, 26, 32, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 74px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 231, 241, 0.75);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(22, 26, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 12px 24px rgba(0, 110, 252, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.16rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.top-nav a {
  padding: 0.55rem 0;
}

.top-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-link,
.primary-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 780;
  white-space: nowrap;
}

.icon-link {
  color: var(--ink);
}

.primary-link,
.primary-button {
  padding: 0.75rem 1rem;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--blue), #004ec2);
  box-shadow: 0 16px 32px rgba(0, 110, 252, 0.26);
  cursor: pointer;
}

.secondary-button {
  padding: 0.75rem 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 88px));
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 80%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 430px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 760px;
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  color: #ffffff;
}

.hero-copy h1 {
  color: #ffffff !important;
}

.hero-copy .eyebrow {
  color: var(--cyan);
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.25rem 0.45rem 0.45rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 780;
  font-size: 1.12rem;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.hero-phone-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.hero-phone-pill .pulse-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), #004ec2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 110, 252, 0.4);
  animation: hero-phone-pulse 2s infinite;
}

.hero-phone-pill .pulse-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.2;
}

@keyframes hero-phone-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 110, 252, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 110, 252, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 110, 252, 0);
  }
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 6.2vw, 5.7rem);
  color: var(--ink);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
}

h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.58;
  font-weight: 500;
}

.hero-badges,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.hero-badges span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(0, 110, 252, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #2b3542;
  font-weight: 760;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
}

.hero-copy .hero-badges span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.valuation-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border: 1px solid rgba(223, 231, 241, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.valuation-panel h2 {
  font-size: 1.45rem;
}

.valuation-panel label {
  display: grid;
  gap: 0.42rem;
}

.valuation-panel label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.valuation-panel input,
.valuation-panel select,
.valuation-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  outline: none;
}

.valuation-panel textarea {
  min-height: 90px;
  resize: vertical;
  font-family: inherit;
}

.valuation-panel input:focus,
.valuation-panel select:focus,
.valuation-panel textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 110, 252, 0.12);
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef6;
}

.progress span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  transition: width 0.25s ease;
}

.valuation-result {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.valuation-result.is-ready {
  color: #0f6c55;
  font-weight: 760;
}

.trust-band {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-block: 1px solid var(--line);
  background: #fff;
  scrollbar-width: none;
}

.trust-band::-webkit-scrollbar {
  display: none;
}

.trust-band span,
.feature-list span,
.seo-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  color: #25303c;
  background: var(--soft);
  font-weight: 730;
  font-size: 0.9rem;
}

.trust-band svg,
.feature-list svg {
  color: var(--mint);
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section > * {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-white {
  background: #fff;
}

.section-contrast {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 110, 252, 0.18), rgba(18, 200, 255, 0.08)),
    var(--graphite);
}

.section-map {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 720px);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(320px, 620px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff, #f6f9fd);
}

.section-map > *,
.section-split > * {
  width: 100%;
  margin-inline: 0;
}

.section-intro {
  margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
}

.section-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.body-copy {
  color: #334050;
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 26, 32, 0.07);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.service-card p,
.service-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-card p {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--blue);
  font-weight: 790;
}

.map-copy {
  min-width: 0;
}

.map-detail {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 26, 32, 0.08);
}

.map-detail span {
  color: var(--muted);
  line-height: 1.55;
}

.map-stage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-stage img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 30px;
  height: 30px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 8px rgba(0, 110, 252, 0.12);
  cursor: pointer;
}

.map-node span {
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  border-radius: 50%;
  background: currentColor;
}

.map-node.is-active {
  color: var(--mint);
  box-shadow: 0 0 0 10px rgba(23, 184, 144, 0.16), 0 0 30px rgba(23, 184, 144, 0.7);
}

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

.step-card {
  min-height: 200px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.step-card span {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 850;
}

.step-card h3 {
  margin-top: 2rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.silo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.link-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.link-group h3 {
  padding: 1rem 1rem 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 1rem;
}

.link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem;
  border-radius: var(--radius);
  color: #263241;
  background: var(--soft);
  font-weight: 720;
}

.link-grid a:hover {
  color: var(--blue);
  background: #eaf3ff;
}

.feature-list,
.seo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.scanner-figure {
  margin: 0;
}

.scanner-figure img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scanner-figure figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  padding: 1rem;
  cursor: pointer;
  font-weight: 790;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.map-embed {
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.final-cta {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 110, 252, 0.9), rgba(22, 26, 32, 0.95)),
    var(--ink);
}

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem) 5.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: #11161c;
}

.site-footer > * {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.site-footer strong,
.site-footer .brand strong {
  color: #fff;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  width: fit-content;
}

.site-footer a:hover {
  color: var(--cyan);
  transform: translateX(6px);
}

.site-footer .brand {
  transform: none !important;
}

.site-footer a svg {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease;
}

.site-footer a:hover svg {
  color: var(--cyan);
}

.site-footer .brand small {
  color: var(--cyan);
}

.site-footer p {
  max-width: 520px;
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.mobile-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(223, 231, 241, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  min-height: 52px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.mobile-cta svg {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero-grid,
  .section-map,
  .section-split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-content: center;
  }

  .hero-visual::after {
    background: rgba(0, 0, 0, 0.55);
  }

  .hero-copy {
    max-width: 880px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 0.65rem 0.8rem;
  }

  .brand small,
  .icon-link span,
  .primary-link {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 240px;
    z-index: 1;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    opacity: 1 !important;
    object-position: center;
  }

  .hero-grid {
    width: min(100% - 1.5rem, 1180px);
    gap: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    display: block;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 3.7rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .section {
    padding: 3rem 0.85rem;
  }

  .service-grid,
  .step-grid,
  .silo-grid,
  .link-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .map-stage,
  .map-stage img {
    min-height: 280px;
  }

  .hero-phone-pill {
    font-size: 0.98rem;
    padding: 0.35rem 1rem 0.35rem 0.35rem;
    margin-bottom: 1.25rem;
    background: rgba(0, 110, 252, 0.06) !important;
    border-color: rgba(0, 110, 252, 0.15) !important;
    color: var(--ink) !important;
    box-shadow: 0 8px 24px rgba(0, 110, 252, 0.05) !important;
  }

  .hero-phone-pill .pulse-icon {
    width: 32px;
    height: 32px;
  }

  .hero-phone-pill:hover {
    color: var(--blue) !important;
  }

  .hero-copy {
    padding: 1.5rem 0 0.5rem !important;
    color: var(--ink) !important;
  }

  .hero-copy h1 {
    color: var(--ink) !important;
  }

  .hero-copy .eyebrow {
    color: var(--blue) !important;
  }

  .hero-copy > p:not(.eyebrow) {
    color: var(--muted) !important;
  }

  .mobile-cta {
    display: grid;
  }
}

/* Impressum & Legal Page Styles */
.impressum-page {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--soft);
}

.legal-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(0, 110, 252, 0.08);
  color: var(--blue);
  font-weight: 780;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.legal-badge svg {
  color: var(--blue);
  width: 1.25em;
  height: 1.25em;
}

.legal-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.8rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.legal-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 26, 32, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 110, 252, 0.3);
  box-shadow: var(--shadow);
}

.legal-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--soft);
  padding-bottom: 0.9rem;
}

.legal-card .card-header svg {
  color: var(--blue);
  width: 1.45em;
  height: 1.45em;
}

.legal-card .card-header h2 {
  font-size: 1.28rem;
  font-weight: 780;
  color: var(--ink);
  margin: 0;
}

.legal-card .card-body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  flex-grow: 1;
}

.operator-name {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.operator-type {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  font-weight: 750;
  margin-bottom: 1.2rem;
}

.operator-address {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.8rem;
}

.operator-address svg {
  color: var(--blue);
  margin-top: 0.2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.contact-item:hover {
  background: #ffffff;
  border-color: rgba(0, 110, 252, 0.24);
  transform: translateX(6px);
}

.contact-item svg {
  color: var(--blue);
  width: 1.3em;
  height: 1.3em;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item div small {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-item div span {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 750;
}

.dispute-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.94rem;
  margin: 0.8rem 0 1.2rem;
  transition: all 0.2s ease;
  width: 100%;
}

.dispute-link:hover {
  background: #eaf3ff;
  transform: translateY(-1px);
}

.dispute-disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.legal-disclaimers {
  max-width: 1180px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.disclaimer-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 26, 32, 0.04);
}

.disclaimer-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.disclaimer-card .card-header svg {
  color: var(--blue);
}

.disclaimer-card h2 {
  font-size: 1.28rem;
  font-weight: 780;
  color: var(--ink);
}

.disclaimer-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Datenschutz Specific styles */
.legal-list {
  margin: 0.6rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 0.4rem;
}

.legal-badge-inline {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 780;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.info-badge {
  background: rgba(0, 110, 252, 0.06);
  color: var(--blue);
}

.basis-badge {
  background: rgba(23, 184, 144, 0.08);
  color: var(--mint);
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.right-item svg {
  color: var(--mint);
}

/* Success/Error States for valuation form */
.valuation-result.is-ready {
  color: #0f6c55;
  background: rgba(23, 184, 144, 0.08);
  border: 1px solid rgba(23, 184, 144, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-weight: 750;
  animation: fadeIn 0.3s ease;
}

.valuation-result.is-error {
  color: #c92a2a;
  background: rgba(201, 42, 42, 0.08);
  border: 1px solid rgba(201, 42, 42, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-weight: 750;
  animation: fadeIn 0.3s ease;
}

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

/* Responsive details */
@media (min-width: 1024px) {
  .grid-col-2 {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .grid-col-2 {
    grid-column: span 1;
  }
}

/* Sticky Floating Sidebar */
.sticky-sidebar {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-sidebar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.sidebar-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px; /* Squircle design */
  border: 1px solid rgba(22, 26, 32, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(22, 26, 32, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden; /* For the shine sweep */
}

/* Shine Sweep Effect */
.sidebar-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.sidebar-btn:hover::after {
  left: 150%;
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-btn .tooltip {
  position: absolute;
  right: 130%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: rgba(22, 26, 32, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 780;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-btn:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.sidebar-btn svg {
  width: 1.35em;
  height: 1.35em;
  transition: transform 0.25s ease;
}

.sidebar-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

/* Specific glows and brand glass styling on hover */
.btn-call {
  border-color: rgba(0, 110, 252, 0.2);
  color: var(--blue);
}
.btn-call:hover {
  border-color: rgba(0, 110, 252, 0.6);
  background: linear-gradient(135deg, rgba(0, 110, 252, 0.08) 0%, rgba(0, 110, 252, 0.02) 100%);
  box-shadow: 0 10px 30px rgba(0, 110, 252, 0.25), inset 0 0 12px rgba(0, 110, 252, 0.05);
}

.btn-form {
  border-color: rgba(23, 184, 144, 0.2);
  color: var(--mint);
}
.btn-form:hover {
  border-color: rgba(23, 184, 144, 0.6);
  background: linear-gradient(135deg, rgba(23, 184, 144, 0.08) 0%, rgba(23, 184, 144, 0.02) 100%);
  box-shadow: 0 10px 30px rgba(23, 184, 144, 0.25), inset 0 0 12px rgba(23, 184, 144, 0.05);
}

.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.2);
  color: #25D366;
}
.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.02) 100%);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), inset 0 0 12px rgba(37, 211, 102, 0.05);
}

.sidebar-btn:hover svg {
  transform: rotate(12deg) scale(1.05);
}

@media (max-width: 600px) {
  .sticky-sidebar {
    right: 0.85rem;
    gap: 0.65rem;
  }
  .sidebar-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .sidebar-btn .tooltip {
    display: none;
  }
}

/* E-Auto Defects Section Styles */
.e-auto-defects {
  background: var(--bg);
  padding: 4rem 1.5rem;
}
.defects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.defect-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.defect-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 110, 252, 0.08);
}
.defect-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.defect-card h3 span {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(0, 110, 252, 0.08);
  color: var(--blue);
}
.defect-card .models {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.defect-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.defect-card ul li {
  margin-bottom: 0.5rem;
}
.defect-card ul li strong {
  color: var(--ink);
}
.components-breakdown {
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  padding-top: 4rem;
}
.components-breakdown h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.component-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.component-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg);
}
.component-card .badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.component-card .badge.battery {
  background: rgba(23, 184, 144, 0.1);
  color: var(--mint);
}
.component-card .badge.charger {
  background: rgba(244, 168, 37, 0.1);
  color: var(--amber);
}
.component-card .badge.network {
  background: rgba(18, 200, 255, 0.1);
  color: var(--cyan);
}
.component-card h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.15rem;
  color: var(--ink);
}
.component-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
