/* ===== RESET & BASE ===== */
@font-face {
  font-family: "Finger Paint";
  src: url("../fonts/FingerPaint-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --color-red: #cc0c0c;
  --color-red-dark: #a50a0a;
  --color-blue: #0c609c;
  --color-blue-dark: #094a78;
  --color-blue-soft: #eaf3f8;
  --color-blue-muted: #5a8fb5;
  --color-bg: #f5f7f9;
  --color-bg-white: #ffffff;
  --color-text: #1f2d38;
  --color-text-muted: #5c6b76;
  --color-border: #d9e2e9;
  --color-footer: #0a3d63;
  --font-display: "Merriweather", Georgia, serif;
  --font-brand: "Finger Paint", cursive;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-number: "Nunito Sans", "Segoe UI", sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 8px 24px rgba(12, 96, 156, 0.07);
  --shadow-soft: 0 1px 8px rgba(12, 96, 156, 0.05);
  --transition: 0.3s ease;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1.1rem;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

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

address {
  font-style: normal;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible {
  outline: 3px solid rgba(12, 96, 156, 0.35);
  outline-offset: 3px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(204, 12, 12, 0.22);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--color-blue);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--color-blue-dark);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--outline:hover {
  background: #fff;
  color: var(--color-blue-dark);
}

.btn--outline-blue {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--outline-blue:hover {
  background: var(--color-blue);
  color: #fff;
}

.btn--large {
  padding: 16px 34px;
  font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), padding var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav__logo img {
  height: 92px;
  width: auto;
  transition: transform var(--transition);
}

.nav__logo:hover img {
  transform: scale(1.02);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--color-red);
}

.nav__phone {
  color: var(--color-blue) !important;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav__cta {
  background: var(--color-red) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(204, 12, 12, 0.2);
}

.nav__cta:hover {
  background: var(--color-red-dark) !important;
  color: #fff !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-blue-dark);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center 28% / cover no-repeat;
  transform: scale(1.08);
  animation: heroSoftZoom 14s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 42, 68, 0.9) 0%, rgba(12, 96, 156, 0.72) 48%, rgba(12, 96, 156, 0.28) 100%),
    linear-gradient(to top, rgba(7, 42, 68, 0.35), transparent 40%);
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.08); }
}

@keyframes heroSoftZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
  animation: orbFloat 9s ease-in-out infinite;
}

.hero__orb--1 {
  width: 220px;
  height: 220px;
  background: rgba(204, 12, 12, 0.35);
  top: 12%;
  right: 8%;
  animation-duration: 10s;
}

.hero__orb--2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.22);
  bottom: 18%;
  right: 28%;
  animation-duration: 12s;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 120px;
  height: 120px;
  background: rgba(12, 96, 156, 0.45);
  top: 40%;
  left: 45%;
  animation-duration: 8s;
  animation-delay: -1.5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -28px) scale(1.08); }
}

.hero__heart {
  position: absolute;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.85);
  animation: heartRise 7s ease-in infinite;
  filter: drop-shadow(0 2px 6px rgba(204, 12, 12, 0.25));
}

.hero__heart::before {
  content: "♥";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #ff6b8a;
  text-shadow: 0 0 10px rgba(255, 107, 138, 0.45);
}

/* Hearts rise mainly over the photo on the right */
.hero__heart:nth-child(4) { left: 58%; bottom: -12px; animation-delay: 0s; animation-duration: 6.5s; }
.hero__heart:nth-child(5) { left: 68%; bottom: -12px; animation-delay: 1.1s; animation-duration: 7.2s; font-size: 0.9em; }
.hero__heart:nth-child(6) { left: 78%; bottom: -12px; animation-delay: 2.3s; animation-duration: 6.8s; }
.hero__heart:nth-child(7) { left: 88%; bottom: -12px; animation-delay: 0.7s; animation-duration: 7.8s; }
.hero__heart:nth-child(8) { left: 63%; bottom: -12px; animation-delay: 3.4s; animation-duration: 6.2s; }
.hero__heart:nth-child(9) { left: 84%; bottom: -12px; animation-delay: 4.2s; animation-duration: 8s; }
.hero__heart:nth-child(10) { left: 72%; bottom: -12px; animation-delay: 5s; animation-duration: 7s; }

.hero__heart:nth-child(5)::before,
.hero__heart:nth-child(8)::before { font-size: 13px; color: #ff8fa8; }

.hero__heart:nth-child(7)::before,
.hero__heart:nth-child(10)::before { font-size: 18px; color: #ff4d6d; }

.hero__heart:nth-child(9)::before { font-size: 12px; color: rgba(255, 255, 255, 0.9); }

@keyframes heartRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6) rotate(-8deg);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  50% {
    transform: translateY(-38vh) translateX(12px) scale(1) rotate(8deg);
    opacity: 0.85;
  }
  100% {
    transform: translateY(-72vh) translateX(-8px) scale(0.75) rotate(-4deg);
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 96px 0 100px;
}

.hero__brand-name,
.hero__title,
.hero__subtitle,
.hero__actions {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__brand-name { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.28s; }
.hero__subtitle { animation-delay: 0.46s; }
.hero__actions { animation-delay: 0.64s; }

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

.hero__brand-name {
  font-family: var(--font-brand);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.24rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__scroll i {
  width: 22px;
  height: 22px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollBounce 1.4s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.5; }
  50% { transform: translateY(8px) rotate(45deg); opacity: 1; }
}

.btn--pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(204, 12, 12, 0.25); }
  50% { box-shadow: 0 8px 28px rgba(204, 12, 12, 0.5); transform: translateY(-2px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.trust-bar__item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.trust-bar__item::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar__item.revealed::after {
  transform: scaleX(1);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-number);
  font-size: 1.45rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-blue-dark);
  margin-bottom: 4px;
}

.trust-bar__item span {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* ===== INTRO ===== */
.intro {
  padding: 100px 0 40px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.section__label {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
}

.intro__text {
  color: var(--color-text-muted);
  font-size: 1.12rem;
  margin-bottom: 18px;
}

.intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.intro__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 96, 156, 0.18), transparent 45%);
  pointer-events: none;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 1.2s ease;
}

.intro__image:hover img {
  transform: scale(1.03);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--soft {
  background: #eef4f8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.35;
  animation: sectionBlob 11s ease-in-out infinite;
}

.section__blob--1 {
  width: 240px;
  height: 240px;
  background: rgba(12, 96, 156, 0.18);
  top: -40px;
  right: -30px;
}

.section__blob--2 {
  width: 180px;
  height: 180px;
  background: rgba(204, 12, 12, 0.12);
  bottom: -50px;
  left: -20px;
  animation-delay: -4s;
}

@keyframes sectionBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -20px) scale(1.08); }
}

.section.is-inview .section__blob {
  opacity: 0.5;
}

.section__header {
  max-width: 720px;
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 1.12rem;
}

/* ===== STANDORTE ===== */
.standorte {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.standort {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.standort:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 96, 156, 0.28);
}

.standort__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 8px;
}

.standort__title {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--color-blue-dark);
  margin-bottom: 12px;
}

.standort__text {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.standort__meta {
  margin-bottom: 20px;
}

.standort__meta li {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.standort__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

.standort__link {
  margin-top: auto;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.standort__link:hover {
  color: var(--color-blue-dark);
}

.standorte__more {
  text-align: center;
  margin-top: 28px;
}

.standorte__more a {
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.standorte__note {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.standorte__note a {
  color: var(--color-blue);
  font-weight: 700;
}

.article__lead--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  border-bottom: none;
  padding-bottom: 0;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 96, 156, 0.28);
}

.service.revealed .service__list li {
  animation: listIn 0.45s ease both;
}

.service.revealed .service__list li:nth-child(1) { animation-delay: 0.15s; }
.service.revealed .service__list li:nth-child(2) { animation-delay: 0.25s; }
.service.revealed .service__list li:nth-child(3) { animation-delay: 0.35s; }
.service.revealed .service__list li:nth-child(4) { animation-delay: 0.45s; }

@keyframes listIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service__icon svg {
  width: 30px;
  height: 30px;
}

.service__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-blue-dark);
  margin-bottom: 14px;
}

.service__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* ===== FLOW / PROCESS ===== */
.flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin: 0;
  padding: 0;
}

.flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 14px;
}

.flow__rail {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  min-height: 48px;
}

.flow__node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(12, 96, 156, 0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease, background-color 0.35s ease;
}

.flow__line {
  flex: 1;
  height: 3px;
  margin-left: -2px;
  background: linear-gradient(90deg, var(--color-blue), rgba(12, 96, 156, 0.25));
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transform-origin: left center;
  transform: scaleX(0.2);
  opacity: 0.4;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.flow__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateX(-100%);
}

.flow.is-inview .flow__line {
  transform: scaleX(1);
  opacity: 1;
}

.flow.is-inview .flow__line::after {
  animation: flowShine 2.4s ease-in-out 0.4s infinite;
}

@keyframes flowShine {
  0%, 40% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

.flow__step:last-child .flow__line {
  display: none;
}

.flow__card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.flow__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(12, 96, 156, 0.28);
}

.flow__card--final {
  border-color: rgba(12, 96, 156, 0.3);
  background: linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
}

.flow__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.flow__icon svg {
  width: 28px;
  height: 28px;
}

.flow__icon svg path,
.flow__icon svg circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  opacity: 0.25;
  transition: stroke-dashoffset 1.1s ease, opacity 0.4s ease;
}

.flow__step.revealed .flow__icon svg path,
.flow__step.revealed .flow__icon svg circle {
  stroke-dashoffset: 0;
  opacity: 1;
}

.flow__step.revealed .flow__node {
  animation: flowNodePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes flowNodePop {
  from { transform: scale(0.7); }
  60% { transform: scale(1.1); }
  to { transform: scale(1); }
}

.flow__phase {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.flow__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-blue-dark);
  margin-bottom: 10px;
}

.flow__text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.flow__meta {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}

.flow__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.flow__step.revealed .flow__card {
  animation: flowCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.08s);
}

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

/* ===== CALCULATOR ===== */
.calc {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.calc::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(12, 96, 156, 0.08);
  top: -60px;
  right: -40px;
  transition: transform 0.8s ease;
}

.calc.revealed::before,
.calc.is-live::before {
  transform: scale(1.4);
}

.calc__result {
  background: var(--color-blue-soft);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.calc__result.is-updating {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 18px rgba(12, 96, 156, 0.12);
}

.calc__label {
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: 14px;
}

.calc__grades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.calc__grade {
  min-width: 72px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-blue-dark);
  font-family: var(--font-number);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.calc__grade:hover {
  border-color: var(--color-blue);
}

.calc__grade.is-active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(12, 96, 156, 0.25);
}

.calc__mix-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.calc__mix-head span {
  color: var(--color-blue);
  font-weight: 700;
  font-family: var(--font-number);
  font-variant-numeric: tabular-nums;
}

.calc__mix input[type="range"] {
  width: 100%;
  accent-color: var(--color-blue);
  cursor: pointer;
}

.calc__mix-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.calc__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.calc__result--accent {
  background: linear-gradient(145deg, rgba(204, 12, 12, 0.1), rgba(12, 96, 156, 0.12));
  border: 1px solid rgba(204, 12, 12, 0.18);
}

.calc__result-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.calc__result-value {
  display: block;
  font-family: var(--font-number);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-blue-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.calc__result-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.calc__bars {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.calc__bar span {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.calc__bar-track {
  height: 10px;
  background: #e7eef4;
  border-radius: 999px;
  overflow: hidden;
}

.calc__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-blue-dark);
  border-radius: 999px;
  transition: width 0.55s ease;
}

.calc__bar-fill--blue {
  background: var(--color-blue);
}

.calc__disclaimer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.calc__disclaimer a {
  color: var(--color-blue);
  font-weight: 600;
}

.calc__disclaimer a:hover {
  color: var(--color-red);
}

/* ===== WHY / QUALITY ===== */
.why {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, #f4f8fb 0%, #eef5f9 42%, #f8f5f4 100%);
}

.why__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.why__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.why__orb--blue {
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(12, 96, 156, 0.16), transparent 68%);
  animation: whyOrbDrift 14s ease-in-out infinite alternate;
}

.why__orb--rose {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(204, 12, 12, 0.09), transparent 70%);
  animation: whyOrbDrift 18s ease-in-out infinite alternate-reverse;
}

.why__wash {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
}

@keyframes whyOrbDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-28px, 22px) scale(1.06); }
}

.why__header {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.why-mdk {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 40px;
  align-items: center;
  padding: 36px 44px;
  margin-bottom: 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(12, 96, 156, 0.12);
  border-radius: 4px 22px 22px 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 48px rgba(12, 96, 156, 0.07);
  backdrop-filter: blur(8px);
}

.why-mdk::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-blue), var(--color-red));
}

.why-mdk__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.why-mdk .mdk-gauge {
  width: 148px;
  height: 148px;
}

.why-mdk .mdk-gauge__label strong {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
  color: var(--color-blue-dark);
}

.why-mdk .mdk-gauge__value {
  stroke: var(--color-red);
  stroke-width: 9;
}

.why-mdk__score-caption {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue-muted);
}

.why-mdk__rule {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(12, 96, 156, 0.22),
    transparent
  );
}

.why-mdk__eyebrow {
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-mdk__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  color: var(--color-blue-dark);
  margin-bottom: 14px;
}

.why-mdk__text {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 540px;
}

.why-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  padding: 8px 0 4px;
}

.why-pillar {
  position: relative;
  padding: 12px 28px 8px;
  transition: transform 0.4s ease;
}

.why-pillar + .why-pillar {
  border-left: 1px solid rgba(12, 96, 156, 0.14);
}

.why-pillar__num {
  display: block;
  font-family: var(--font-number);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(12, 96, 156, 0.38);
  margin-bottom: 18px;
}

.why-pillar.revealed .why-pillar__num {
  animation: whyNumIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 0.12s);
}

.why-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  color: var(--color-blue-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.why-pillar__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), rgba(204, 12, 12, 0.75));
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-pillar.revealed .why-pillar__title::after,
.why-pillar:hover .why-pillar__title::after {
  width: 100%;
}

.why-pillar__text {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 320px;
}

.why-pillar:hover {
  transform: translateY(-4px);
}

.why-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(12, 96, 156, 0.14);
}

.why-trust__item {
  text-align: center;
  padding: 4px 8px;
}

.why-trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--color-blue-dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.why-trust__item span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.mdk-gauge {
  width: 110px;
  height: 110px;
  position: relative;
}

.mdk-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mdk-gauge__track,
.mdk-gauge__value {
  fill: none;
  stroke-width: 8;
}

.mdk-gauge__track {
  stroke: #e4eef5;
}

.mdk-gauge__value {
  stroke: var(--color-blue);
  stroke-linecap: round;
  stroke-dasharray: 301.6;
  stroke-dashoffset: 301.6;
  transition: stroke-dashoffset 1.4s ease;
}

.mdk-gauge.is-animated .mdk-gauge__value {
  stroke-dashoffset: 30;
}

.mdk-gauge__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mdk-gauge__label strong {
  font-family: var(--font-number);
  font-size: 1.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-blue-dark);
  line-height: 1;
}

.mdk-gauge__label span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: box-shadow var(--transition);
}

.faq__item[open] {
  box-shadow: var(--shadow-soft);
  border-color: rgba(12, 96, 156, 0.25);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-blue-dark);
  padding: 18px 0;
  position: relative;
  padding-right: 28px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-blue);
  font-size: 1.4rem;
  font-weight: 600;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  color: var(--color-text-muted);
  padding-bottom: 18px;
  font-size: 1.05rem;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.contact__text {
  color: var(--color-text-muted);
  font-size: 1.12rem;
  margin-bottom: 28px;
  max-width: 540px;
}

.contact__list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.contact__list li {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.contact__list span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact__list strong {
  font-size: 1.15rem;
  color: var(--color-blue-dark);
  font-weight: 600;
}

.contact__list a:hover {
  color: var(--color-red);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__card {
  background: linear-gradient(160deg, var(--color-blue-dark), var(--color-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14), transparent 70%);
  transform: translateX(-120%);
  animation: cardSheen 5s ease-in-out infinite;
}

@keyframes cardSheen {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

.contact__card > * {
  position: relative;
  z-index: 1;
}

.contact__logo {
  width: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 28px;
}

.contact__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact__hours {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 20px 0 110px;
}

.cta__box {
  background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -80px;
  right: -40px;
}

.cta__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(8px);
  top: 20%;
  left: -60px;
  animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(40px, -18px) scale(1.2); opacity: 0.8; }
}

.faq__item:hover {
  border-color: rgba(12, 96, 156, 0.3);
  transform: translateY(-2px);
}

.cta__box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 10px;
  position: relative;
}

.cta__box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  position: relative;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo img {
  height: 88px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  margin-bottom: 14px;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer address,
.footer li {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="left"] {
  transform: translateX(-56px);
}

[data-reveal="right"] {
  transform: translateX(56px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Icon draw + soft rise when section appears */
.service__icon svg path,
.service__icon svg circle,
.service__icon svg rect,
.flow__icon svg path,
.flow__icon svg circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset 1.2s ease, opacity 0.4s ease;
  opacity: 0.2;
}

.service.revealed .service__icon svg path,
.service.revealed .service__icon svg circle,
.service.revealed .service__icon svg rect,
.flow__step.revealed .flow__icon svg path,
.flow__step.revealed .flow__icon svg circle {
  stroke-dashoffset: 0;
  opacity: 1;
}

.service__icon {
  transition: transform 0.55s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.service.revealed .service__icon {
  animation: iconPop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
  box-shadow: 0 8px 20px rgba(12, 96, 156, 0.12);
}

@keyframes iconPop {
  0% { transform: scale(0.7) rotate(-6deg); }
  60% { transform: scale(1.12) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes numSoftIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section__title {
  position: relative;
}

.section__header .section__title::after,
.contact__info .section__title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-red));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section__header.revealed .section__title::after,
.contact__info.revealed .section__title::after {
  width: 72px;
}

.section__header--center .section__title::after {
  margin-left: auto;
  margin-right: auto;
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: btnSheen 3.2s ease-in-out infinite;
}

@keyframes btnSheen {
  0%, 40% { left: -40%; }
  70%, 100% { left: 130%; }
}

.contact__logo {
  animation: logoFloat 4s ease-in-out infinite;
}

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

.faq__item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq__item[open] {
  transform: translateY(-2px);
}

.faq__item p {
  animation: faqOpen 0.4s ease;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc__grade.is-active {
  animation: gradeSelect 0.4s ease;
}

@keyframes gradeSelect {
  0% { transform: scale(0.94); }
  70% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.intro__image.revealed img {
  animation: imageSettle 1.3s ease both;
}

@keyframes imageSettle {
  from {
    transform: scale(1.1);
    filter: saturate(0.85) brightness(0.95);
  }
  to {
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
}

.trust-bar__item.revealed strong {
  animation: numSoftIn 0.65s ease both;
}

.service:hover .service__icon {
  transform: translateY(-4px);
  background: #dcecf5;
}

.mdk-gauge.is-animated {
  animation: gaugePop 0.8s ease both;
}

@keyframes gaugePop {
  from { transform: scale(0.85); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background:
    linear-gradient(135deg, rgba(9, 74, 120, 0.95), rgba(12, 96, 156, 0.9)),
    url("../images/hero.jpg") center / cover no-repeat;
  color: #fff;
  padding: 72px 0 58px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.page-header__brand {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
}

.page-header__eyebrow {
  display: inline-block;
  margin-bottom: 12px !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82) !important;
}

.intro__links {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.intro__links a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro__links a:hover {
  color: var(--color-blue-dark);
}

/* ===== ARTICLE / SEO CONTENT ===== */
.article {
  padding: 56px 0 88px;
  background:
    linear-gradient(180deg, #f7fafc 0%, #f3f7fa 100%);
}

.article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.article__content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 96, 156, 0.1);
  border-radius: 4px 20px 20px 4px;
  padding: 36px 40px;
  box-shadow: 0 12px 34px rgba(12, 96, 156, 0.05);
}

.article__lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(12, 96, 156, 0.12);
}

.article__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--color-blue-dark);
  margin: 28px 0 12px;
}

.article__content p,
.article__content li {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.article__content a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__list {
  margin: 8px 0 18px;
  padding-left: 0;
}

.article__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.article__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-red));
}

.article__note {
  font-size: 0.95rem;
  color: var(--color-blue-muted) !important;
}

.article__cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(12, 96, 156, 0.12);
}

.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.article__aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.aside-card {
  background: #fff;
  border: 1px solid rgba(12, 96, 156, 0.12);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
}

.aside-card--soft {
  background: var(--color-blue-soft);
  border-color: transparent;
}

.aside-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-blue-dark);
  margin-bottom: 14px;
}

.aside-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.aside-card ul li {
  margin-bottom: 8px;
}

.aside-card a {
  color: var(--color-blue);
  font-weight: 700;
}

.aside-facts {
  display: grid;
  gap: 14px;
}

.aside-facts dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue-muted);
  margin-bottom: 2px;
}

.aside-facts dd {
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.rate-table-wrap {
  overflow-x: auto;
  margin: 18px 0 10px;
  border: 1px solid rgba(12, 96, 156, 0.12);
  border-radius: 14px;
  background: #fff;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.rate-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 6px;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.rate-table th,
.rate-table td {
  padding: 12px 16px;
  text-align: left;
  border-top: 1px solid rgba(12, 96, 156, 0.1);
  font-variant-numeric: tabular-nums;
}

.rate-table thead th {
  background: var(--color-blue-soft);
  color: var(--color-blue-dark);
  font-size: 0.92rem;
  border-top: none;
}

.rate-table tbody th {
  color: var(--color-blue-dark);
  font-weight: 700;
}

/* ===== FORM ===== */
.form-section {
  padding: 56px 0 100px;
}

.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-blue-dark);
}

.form-group .required {
  color: var(--color-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text);
  background: #fff;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(12, 96, 156, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.form-privacy {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  background: var(--color-blue-soft);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.form-privacy a {
  color: var(--color-blue);
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 28px 12px;
}

.form-success.show {
  display: block;
}

.form-success h2 {
  font-family: var(--font-display);
  color: var(--color-blue-dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--color-text-muted);
}

.form-success a {
  color: var(--color-blue);
  font-weight: 700;
}

/* ===== LEGAL ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 28px 90px;
}

.legal-content h2 {
  font-family: var(--font-display);
  color: var(--color-blue-dark);
  font-size: 1.35rem;
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  color: var(--color-blue-dark);
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

.legal-content p,
.legal-content address {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.legal-content ul {
  color: var(--color-text-muted);
  margin: 0 0 16px 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--color-blue);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== CONSENT / COOKIES ===== */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 16px;
  background: rgba(10, 61, 99, 0.96);
  color: #fff;
  box-shadow: 0 -8px 32px rgba(10, 61, 99, 0.25);
  transform: translateY(110%);
  transition: transform var(--transition);
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-banner__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.consent-banner__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
}

.consent-banner__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.consent-banner__learn-more {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__learn-more:hover {
  color: var(--color-blue-soft);
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
}

.consent-banner__btn {
  min-width: 148px;
}

.consent-banner .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.consent-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.consent-banner .btn--primary {
  background: var(--color-red);
  border-color: var(--color-red);
}

.consent-banner .btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.consent-dialog[hidden] {
  display: none !important;
}

.consent-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 50, 0.55);
}

.consent-dialog__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(12, 96, 156, 0.18);
  padding: 24px;
}

.consent-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.consent-dialog__header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-blue-dark);
}

.consent-dialog__close {
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
}

.consent-dialog__close:hover,
.consent-dialog__close:focus-visible {
  color: var(--color-blue-dark);
  background: var(--color-blue-soft);
  outline: none;
}

.consent-category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.consent-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.consent-category__head h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-blue-dark);
}

.consent-category__badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-blue);
  background: var(--color-blue-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.consent-category__desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.consent-dialog__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.consent-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.consent-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-toggle__track {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-border);
  position: relative;
  transition: background var(--transition);
}

.consent-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition);
}

.consent-toggle__input:checked + .consent-toggle__track {
  background: var(--color-blue);
}

.consent-toggle__input:checked + .consent-toggle__track::after {
  transform: translateX(20px);
}

.consent-toggle__input:focus-visible + .consent-toggle__track {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.consent-toggle__input:disabled + .consent-toggle__track {
  opacity: 0.65;
  cursor: not-allowed;
}

body.consent-dialog-open {
  overflow: hidden;
}

.footer__consent-link {
  border: 0;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer__consent-link:hover,
.footer__consent-link:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  .consent-banner__inner {
    flex-direction: column;
  }

  .consent-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .consent-banner__btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }

  .consent-banner__actions .consent-banner__btn:last-child {
    flex-basis: 100%;
  }
}

@media (max-width: 520px) {
  .consent-banner {
    padding: 12px;
  }

  .consent-banner__actions {
    flex-direction: column;
  }

  .consent-banner__btn {
    width: 100%;
  }

  .consent-dialog__footer {
    flex-direction: column-reverse;
  }

  .consent-dialog__footer .btn {
    width: 100%;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__overlay,
  .hero__brand-name,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__orb,
  .hero__heart,
  .hero__scroll i,
  .btn--pulse,
  .btn--primary::after,
  .contact__logo,
  .contact__card::after,
  .cta__glow,
  .section__blob,
  .faq__item p,
  .service__icon,
  .flow__icon,
  .flow__node,
  .flow__card,
  .why-pillar.revealed .why-pillar__num,
  .why-pillar.revealed .why-pillar__title::after,
  .intro__image.revealed img,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .service__icon svg path,
  .service__icon svg circle,
  .service__icon svg rect,
  .flow__icon svg path,
  .flow__icon svg circle {
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }

  .flow__line {
    transform: scaleX(1) !important;
    opacity: 1 !important;
  }

  .flow__line::after {
    animation: none !important;
  }

  .mdk-gauge__value {
    transition: none !important;
  }

  .why-pillar__title::after {
    width: 100% !important;
  }

  .why__orb {
    animation: none !important;
  }

  .btn:hover,
  .service:hover,
  .intro__image:hover img {
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .container {
    padding: 0 20px;
  }

  .intro__grid,
  .cta__box,
  .footer__grid,
  .contact,
  .flow,
  .why-pillars,
  .why-trust,
  .why-mdk,
  .article__layout,
  .calc__results {
    grid-template-columns: 1fr;
  }

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

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

  .cta__actions,
  .contact__actions,
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta__box,
  .calc {
    padding: 36px 24px;
  }

  .why-mdk {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px 28px 28px;
    text-align: center;
    justify-items: center;
    border-radius: 4px 18px 18px 4px;
  }

  .why-mdk__rule {
    width: min(180px, 60%);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(12, 96, 156, 0.22),
      transparent
    );
  }

  .why-mdk__text {
    margin-left: auto;
    margin-right: auto;
  }

  .why-pillar {
    padding: 22px 8px;
    text-align: center;
  }

  .why-pillar + .why-pillar {
    border-left: none;
    border-top: 1px solid rgba(12, 96, 156, 0.12);
  }

  .why-pillar__text {
    margin-left: auto;
    margin-right: auto;
  }

  .why-pillar__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .why-trust {
    gap: 18px;
  }

  .article {
    padding: 40px 0 64px;
  }

  .article__content {
    padding: 28px 22px;
  }

  .article__aside {
    position: static;
  }

  .section__blob--1 {
    width: 160px;
    height: 160px;
  }

  .section__blob--2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.05rem;
  }

  .container {
    padding: 0 16px;
  }

  /* Mobile: no horizontal slide (prevents side-scroll) */
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(36px) scale(0.98);
  }

  [data-reveal].revealed {
    transform: translateY(0) scale(1);
  }

  .hero__scroll {
    display: none;
  }

  .hero__orb--2,
  .hero__orb--3 {
    display: none;
  }

  .hero__orb--1 {
    width: 140px;
    height: 140px;
    opacity: 0.35;
    right: -20px;
  }

  .hero__heart:nth-child(n + 8) {
    display: none;
  }

  .hero__heart:nth-child(4) { left: 62%; }
  .hero__heart:nth-child(5) { left: 78%; }
  .hero__heart:nth-child(6) { left: 90%; }
  .hero__heart:nth-child(7) { left: 70%; }

  .nav__inner {
    padding: 10px 16px;
  }

  .nav__toggle {
    display: flex;
    z-index: 120;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 24px 32px;
    gap: 18px;
    box-shadow: var(--shadow);
    transition: right var(--transition);
    z-index: 110;
    overflow-y: auto;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__phone,
  .nav__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav__cta {
    display: inline-flex !important;
    justify-content: center;
  }

  .nav__logo img {
    height: 64px;
  }

  .nav-backdrop[hidden] {
    display: none !important;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 40, 60, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 105;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 48px 0 56px;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: 1.08rem;
  }

  .btn,
  .btn--large {
    width: 100%;
    min-height: 48px;
  }

  .hero__actions,
  .cta__actions,
  .contact__actions {
    width: 100%;
  }

  .trust-bar__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .trust-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 8px;
  }

  .trust-bar__item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .trust-bar__item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .trust-bar__item strong {
    font-size: 1.25rem;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service,
  .flow__card,
  .faq__item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flow {
    gap: 0;
  }

  .flow__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 0 0 8px;
    align-items: stretch;
  }

  .flow__rail {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    min-height: 100%;
  }

  .flow__node {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .flow__line {
    width: 3px;
    flex: 1;
    min-height: 28px;
    margin-left: 0;
    margin-top: -2px;
    background: linear-gradient(180deg, var(--color-blue), rgba(12, 96, 156, 0.2));
    transform-origin: top center;
    transform: scaleY(0.2);
  }

  .flow.is-inview .flow__line {
    transform: scaleY(1);
  }

  .flow__line::after {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  }

  .flow__card {
    padding: 18px 16px;
  }

  .flow__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .flow__title {
    font-size: 1.25rem;
  }

  .flow__text {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }

  .flow__meta {
    font-size: 0.85rem;
    padding-top: 10px;
  }

  .flow__cta {
    margin-top: 24px;
    flex-direction: column;
  }

  .flow__cta .btn {
    width: 100%;
  }

  .intro,
  .section {
    padding: 56px 0;
  }

  .intro__grid {
    gap: 28px;
  }

  .intro__image img {
    min-height: 240px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .calc {
    padding: 24px 16px;
  }

  .calc__grades {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .calc__grade {
    min-width: 0;
    width: 100%;
    padding: 12px 4px;
    font-size: 0.92rem;
  }

  .calc__results {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .calc__result {
    padding: 16px 10px;
  }

  .calc__result-value {
    font-size: 1.25rem;
  }

  .calc__mix-scale {
    font-size: 0.8rem;
    gap: 8px;
  }

  /* Compact calculator: fit roughly one mobile screen */
  #rechner {
    padding: 28px 0 32px;
    min-height: auto;
  }

  #rechner .section__header--calc {
    margin-bottom: 14px;
  }

  #rechner .section__label {
    margin-bottom: 4px;
    font-size: 0.9rem;
  }

  #rechner .section__title {
    font-size: 1.45rem;
    margin-bottom: 0;
  }

  #rechner .section__title::after {
    margin-top: 8px;
    height: 2px;
  }

  #rechner .calc__intro {
    display: none;
  }

  #rechner .section__blob {
    display: none;
  }

  #rechner .calc {
    padding: 14px 12px;
    box-shadow: none;
  }

  #rechner .calc::before {
    display: none;
  }

  #rechner .calc__label {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  #rechner .calc__grades {
    margin-bottom: 12px;
    gap: 6px;
  }

  #rechner .calc__grade {
    padding: 10px 2px;
    min-height: 42px;
    font-size: 1rem;
  }

  #rechner .calc__mix-head {
    margin-bottom: 4px;
  }

  #rechner .calc__mix-head .calc__label {
    margin-bottom: 0;
  }

  #rechner .calc__mix input[type="range"] {
    margin: 2px 0;
  }

  #rechner .calc__mix-scale {
    margin-top: 2px;
    font-size: 0.75rem;
  }

  #rechner .calc__results {
    margin-top: 12px;
    gap: 8px;
  }

  #rechner .calc__result {
    padding: 10px 8px;
  }

  #rechner .calc__result-label {
    font-size: 0.78rem;
    margin-bottom: 2px;
  }

  #rechner .calc__result-value {
    font-size: 1.15rem;
    margin-bottom: 0;
  }

  #rechner .calc__result-note {
    display: none;
  }

  #rechner .calc__bars {
    display: none;
  }

  #rechner .calc__disclaimer {
    margin-top: 10px;
    padding-top: 8px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .why-mdk .mdk-gauge {
    width: 124px;
    height: 124px;
  }

  .why-mdk {
    margin-bottom: 32px;
    padding: 24px 20px 24px 24px;
  }

  .why-pillars {
    margin-bottom: 28px;
  }

  .why-pillar {
    padding: 18px 4px;
  }

  .why-pillar__num {
    margin-bottom: 12px;
  }

  .why-trust__item strong {
    font-size: 1.15rem;
  }

  .why-trust__item span {
    font-size: 0.9rem;
  }

  .stats {
    gap: 12px;
  }

  .stat {
    padding: 20px;
  }

  .mdk-gauge {
    width: 96px;
    height: 96px;
  }

  .faq {
    gap: 10px;
  }

  .faq__item {
    padding: 2px 16px;
  }

  .faq__item summary {
    font-size: 1.08rem;
    padding: 16px 0;
  }

  .contact__card {
    padding: 28px 20px;
  }

  .contact__quote {
    font-size: 1.15rem;
  }

  .cta {
    padding: 12px 0 72px;
  }

  .cta__box {
    padding: 28px 18px;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

  .cta__glow {
    width: 120px;
    height: 120px;
    opacity: 0.5;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer__logo img {
    height: 72px;
  }

  .form-section {
    padding: 36px 0 72px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 56px 0 40px;
  }

  .legal-content {
    padding: 36px 16px 72px;
  }

  /* Slightly calmer continuous motion on phones */
  .btn--pulse {
    animation-duration: 3.2s;
  }

  .section__blob {
    opacity: 0.22;
  }

  .contact__card::after {
    animation-duration: 7s;
  }
}

@media (max-width: 420px) {
  .calc__grades {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #rechner {
    padding: 20px 0 24px;
  }

  #rechner .calc__grade {
    padding: 8px 2px;
    min-height: 40px;
  }

  #rechner .calc__result-value {
    font-size: 1.05rem;
  }

  .trust-bar__item span {
    font-size: 0.88rem;
  }

  .nav__logo img {
    height: 56px;
  }
}

/* ===== CLICK HEARTS (desktop easter egg) ===== */
.click-heart {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(204, 12, 12, 0.28));
  animation: clickHeartPop 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  user-select: none;
}

@keyframes clickHeartPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -55%) scale(1.15) rotate(calc(var(--heart-spin, 0deg) * 0.35));
  }
  100% {
    opacity: 0;
    transform:
      translate(
        calc(-50% + var(--heart-drift, 0px)),
        calc(-50% + var(--heart-rise, -90px))
      )
      scale(0.85)
      rotate(var(--heart-spin, 12deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .click-heart {
    display: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px), (pointer: coarse) {
  .click-heart {
    display: none !important;
  }
}

