/* ==========================================================================
   Die Objekt Profis — Shared Styles
   ========================================================================== */

@font-face {
  font-family: "Canva Sans";
  src: url("../fonts/CanvaSans-VF.ttf") format("truetype-variations"),
       url("../fonts/CanvaSans-VF.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-orange:      #F09000;
  --brand-orange-600:  #D97F00;
  --brand-orange-700:  #B86A00;
  --brand-orange-50:   #FFF6E8;
  --brand-orange-100:  #FFE9C7;
  --neutral-950:       #0E0E0F;
  --neutral-900:       #1A1A1C;
  --neutral-800:       #2A2A2D;
  --neutral-700:       #404044;
  --neutral-500:       #7A7A80;
  --neutral-400:       #A3A3A8;
  --neutral-300:       #C9C9CD;
  --neutral-200:       #E4E4E7;
  --neutral-100:       #F1F1F3;
  --neutral-50:        #F7F7F8;
  --white:             #FFFFFF;

  --font: "Canva Sans", system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 4px rgba(14,14,15,.06), 0 1px 2px rgba(14,14,15,.04);
  --shadow-md:  0 6px 16px rgba(14,14,15,.08), 0 2px 4px rgba(14,14,15,.04);
  --shadow-focus: 0 0 0 3px rgba(240,144,0,.28);

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-950);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}

/* ---- Section padding ---- */
.section { padding-block: 96px; }
@media (max-width: 768px) { .section { padding-block: 48px; } }

/* ---- Eyebrow ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--neutral-700);
  margin-bottom: 12px;
  display: block;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--neutral-950);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--neutral-700); line-height: 1.7; }
p.lead { font-size: 1.125rem; color: var(--neutral-600, #5A5A60); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease),
              box-shadow .15s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
}
.btn-primary:hover {
  background: var(--brand-orange-600);
  border-color: var(--brand-orange-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-primary:active { background: var(--brand-orange-700); transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--neutral-950);
  border-color: var(--neutral-300);
}
.btn-secondary:hover { border-color: var(--neutral-950); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}
.navbar-logo img { height: 48px; width: auto; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--neutral-950); background: var(--neutral-50); }
.nav-link.active { color: var(--neutral-950); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color .2s, background .2s;
}
.nav-dropdown-toggle:hover { color: var(--neutral-950); background: var(--neutral-50); }
.nav-dropdown-toggle svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background .15s;
}
.nav-dropdown-item:hover { background: var(--neutral-50); }
.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
}
.nav-dropdown-icon svg { width: 18px; height: 18px; stroke: var(--brand-orange); }
.nav-dropdown-label { font-weight: 600; font-size: 14px; color: var(--neutral-950); }
.nav-dropdown-desc { font-size: 12px; color: var(--neutral-500); margin-top: 1px; }

.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile nav */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-950);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--neutral-100);
  padding: 16px 5%;
  gap: 4px;
  background: var(--white);
}
.navbar-mobile.open { display: flex; }
.navbar-mobile .nav-link { display: block; padding: 12px 14px; }
.navbar-mobile .nav-dropdown-menu {
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 4px 0 4px 14px;
  background: none;
}
.navbar-mobile-actions {
  padding-top: 8px;
  border-top: 1px solid var(--neutral-100);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .navbar-nav, .navbar-actions .btn { display: none; }
  .navbar-hamburger { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--neutral-950);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

/* Subtle dot grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 40%, transparent 100%);
  pointer-events: none;
}

/* Soft orange glow on the right, behind the cards */
.hero-accent {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 110%;
  z-index: 0;
  background: radial-gradient(circle at 60% 50%, rgba(240,144,0,0.18) 0%, rgba(240,144,0,0.06) 35%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 580px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-accent-word {
  color: var(--brand-orange);
  font-style: italic;
  font-weight: 800;
}
.hero-content p { color: rgba(255,255,255,.72); font-size: 1.125rem; margin-bottom: 32px; line-height: 1.55; }

/* Live status pill */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D26A;
  box-shadow: 0 0 0 4px rgba(52,210,106,0.18);
  animation: hero-status-pulse 2.4s ease-out infinite;
}
@keyframes hero-status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,210,106,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(52,210,106,0.05); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--brand-orange); opacity: 0.9; }
.hero-trust .dot { opacity: .3; color: rgba(255,255,255,.4); }
.hero-trust .dot svg { display: none; }

/* ---- Hero visual / photo ---- */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  background: #1A1A1C;
  border-radius: 14px;
}
.hero-photo-frame .hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  background: linear-gradient(180deg, #f2efe9 0%, #e8e3da 100%);
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(240,144,0,0.08);
}
/* subtle orange offset frame behind the photo */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--brand-orange);
  border-radius: 14px;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

/* Floating accent cards */
.hero-float {
  position: absolute;
  background: rgba(20,20,22,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  color: var(--white);
  z-index: 2;
}
.hero-float-insurance,
.hero-float-region {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.hero-float-insurance {
  top: 28px;
  left: -32px;
}
.hero-float-region {
  bottom: 32px;
  right: -32px;
}
.hero-float-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(240,144,0,0.15);
  border: 1px solid rgba(240,144,0,0.35);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-badge-icon svg { width: 18px; height: 18px; }
.hero-float-badge-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.hero-float-badge-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 56px; }
  .hero-content { max-width: 100%; }
  .hero { padding: 64px 0; min-height: auto; }
  .hero-photo-frame { max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 4; }
}
@media (max-width: 600px) {
  .hero-photo-frame { aspect-ratio: 4 / 4.2; max-width: 100%; }
  .hero-photo-frame::before { inset: 12px -12px -12px 12px; }
  .hero-float { padding: 10px 12px; }
  .hero-float-insurance { top: 14px; left: -10px; min-width: 0; }
  .hero-float-region { bottom: 16px; right: -10px; min-width: 0; }
  .hero-float-badge-sub { display: none; }
  .hero-content h1 br { display: none; }
}

/* ---- Section header ---- */
.section-header {
  margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.section-header.center p { margin-inline: auto; }

/* ---- Service Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-orange);
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--brand-orange); }
.card h3 { font-size: 1.375rem; margin-bottom: 10px; }
.card p { flex: 1; font-size: 15px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-950);
  transition: gap .15s;
}
.card-link:hover { gap: 10px; color: var(--brand-orange); }
.card-link svg { width: 16px; height: 16px; }

/* ---- Why Us / Feature List ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--neutral-700);
  line-height: 1.5;
}
.feature-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand-orange);
}
.feature-bullet svg { width: 12px; height: 12px; stroke: var(--brand-orange); stroke-width: 3; }

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
}

.two-col-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.25);
}
.two-col > .reveal:has(> .two-col-img) {
  position: relative;
  isolation: isolate;
}
.two-col > .reveal:has(> .two-col-img) > .two-col-img {
  position: relative;
  z-index: 1;
}
.two-col > .reveal:has(> .two-col-img)::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--brand-orange);
  border-radius: var(--radius-lg);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* ---- CTA Band ---- */
.cta-band {
  background: var(--neutral-950);
  padding-block: 96px;
}
@media (max-width: 768px) { .cta-band { padding-block: 64px; } }
.cta-band-inner { text-align: center; max-width: 600px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.6); margin-bottom: 32px; }
.cta-band .btn-primary { font-size: 16px; padding: 14px 32px; }

/* ---- Process Timeline ---- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; gap: 40px; } }

.process-steps { position: relative; }
.process-line {
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--neutral-200);
}
.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-text h4 { margin-bottom: 6px; padding-top: 8px; }
.process-text p { font-size: 15px; }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--neutral-700);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--brand-orange); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form > button[type="submit"] { align-self: flex-start; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-950);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  color: var(--neutral-950);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-focus);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }

.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--neutral-700);
}
.radio-item input { accent-color: var(--brand-orange); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--neutral-500);
}
.checkbox-row input { accent-color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; }
.checkbox-row a { color: var(--brand-orange); }

/* Honeypot — versteckt für reale Nutzer, sichtbar für Bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Danke-Seite ---- */
.thanks { padding-block: 120px; }
.thanks-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 56px 32px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.thanks-card h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 12px 0 16px;
}
.thanks-card p {
  font-size: 1.0625rem;
  color: var(--neutral-700);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-orange-50);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--brand-orange-100);
}
.thanks-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--brand-orange);
  stroke-width: 3;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (prefers-reduced-motion: no-preference) {
  .thanks-icon {
    animation: thanks-pop .6s cubic-bezier(0.34, 1.56, 0.64, 1) .2s both;
  }
  @keyframes thanks-pop {
    from { opacity: 0; transform: scale(.4); }
    to   { opacity: 1; transform: scale(1); }
  }
}
@media (max-width: 480px) {
  .thanks { padding-block: 64px; }
  .thanks-card { padding: 40px 24px; }
  .thanks-actions .btn { width: 100%; justify-content: center; }
}

/* ---- FAQ ---- */
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--neutral-200);
}
.faq-item:last-child { border-bottom: 1px solid var(--neutral-200); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-950);
  cursor: pointer;
  text-align: left;
}
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--neutral-500);
  transition: transform .25s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--brand-orange); }
.faq-answer {
  font-size: 15px;
  color: var(--neutral-700);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .2s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ---- Benefits Grid ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.benefit-card:hover { border-color: var(--brand-orange-100); box-shadow: var(--shadow-sm); }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; }

/* ---- USP Row ---- */
.usp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) { .usp-row { grid-template-columns: 1fr; gap: 32px; } }
.usp-item { text-align: center; }
.usp-item .usp-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-orange);
}
.usp-item .usp-icon svg { width: 28px; height: 28px; stroke: var(--brand-orange); }
.usp-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.usp-item p { font-size: 15px; }

/* ---- Page Hero (subpages) ---- */
.page-hero {
  background: var(--neutral-950);
  padding-block: 96px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: var(--brand-orange);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .06;
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--brand-orange); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.125rem; max-width: 520px; margin-bottom: 32px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Service Header (dienstleistungen stacked) ---- */
.service-stack-item {
  border-top: 1px solid var(--neutral-200);
  padding: 48px 0;
}
.service-stack-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-stack-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 768px) { .service-stack-inner { grid-template-columns: 1fr; gap: 32px; } }
.service-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--neutral-100);
}

/* ---- Footer ---- */
.footer {
  background: var(--neutral-950);
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-logo { height: 44px; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--brand-orange); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: var(--white); }

/* ---- Footer contact column (right) ---- */
.footer-contact { display: flex; flex-direction: column; gap: 16px; }

.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.footer-whatsapp:hover {
  border-color: #25D366;
  background: rgba(37,211,102,.08);
  color: var(--white) !important;
}
.footer-whatsapp-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-whatsapp-icon svg { width: 17px; height: 17px; fill: #fff; }
.footer-whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.footer-whatsapp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.footer-whatsapp-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.footer-meta { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-meta li { color: rgba(255,255,255,.5); }
.footer-meta a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-meta a:hover { color: var(--white); }

.footer-quote-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color .15s;
}
.footer-quote-link:hover { color: var(--white); text-decoration-color: var(--white); }

/* legacy — kept in case referenced elsewhere */
.footer-cta {
  background: var(--brand-orange);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.footer-cta p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 12px; }
.footer-cta .btn { background: var(--white); color: var(--brand-orange); border-color: var(--white); width: 100%; justify-content: center; font-size: 14px; }
.footer-cta .btn:hover { background: var(--neutral-50); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ---- Prose (Impressum/Datenschutz) ---- */
.prose { max-width: 680px; }
.prose h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 1.125rem; margin-top: 28px; margin-bottom: 10px; }
.prose p { font-size: 15px; margin-bottom: 16px; color: var(--neutral-700); line-height: 1.8; }
.prose a { color: var(--brand-orange); }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.prose li { font-size: 15px; color: var(--neutral-700); margin-bottom: 6px; line-height: 1.7; }

/* ---- Utility ---- */
.bg-subtle { background: var(--neutral-50); }
.text-orange { color: var(--brand-orange); }

/* ---- Scroll animation ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* Staggered reveal inside grids */
  .cards-grid .reveal.visible:nth-child(1),
  .benefits-grid .reveal.visible:nth-child(1),
  .usp-row .reveal.visible:nth-child(1) { transition-delay: 0ms; }
  .cards-grid .reveal.visible:nth-child(2),
  .benefits-grid .reveal.visible:nth-child(2),
  .usp-row .reveal.visible:nth-child(2) { transition-delay: 90ms; }
  .cards-grid .reveal.visible:nth-child(3),
  .benefits-grid .reveal.visible:nth-child(3),
  .usp-row .reveal.visible:nth-child(3) { transition-delay: 180ms; }
  .cards-grid .reveal.visible:nth-child(4),
  .benefits-grid .reveal.visible:nth-child(4) { transition-delay: 270ms; }
  .cards-grid .reveal.visible:nth-child(5),
  .benefits-grid .reveal.visible:nth-child(5) { transition-delay: 360ms; }
  .cards-grid .reveal.visible:nth-child(6),
  .benefits-grid .reveal.visible:nth-child(6) { transition-delay: 450ms; }

  /* Process steps cascade in */
  .process-steps.visible .process-step {
    animation: step-in .55s var(--ease) both;
  }
  .process-steps.visible .process-step:nth-child(2) { animation-delay: 80ms; }
  .process-steps.visible .process-step:nth-child(3) { animation-delay: 160ms; }
  .process-steps.visible .process-step:nth-child(4) { animation-delay: 240ms; }
  .process-steps.visible .process-step:nth-child(5) { animation-delay: 320ms; }
  @keyframes step-in {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ==========================================================================
   POLISH — Mikrointeraktionen, Hero-Entrance, Hover-States
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* ---- Hero entrance: gestaffelt einblenden ---- */
  .hero-content > h1,
  .hero-content > p,
  .hero-content > .hero-actions,
  .hero-content > .hero-trust {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-in .7s var(--ease) forwards;
  }
  .hero-content > h1            { animation-delay: 80ms; }
  .hero-content > p             { animation-delay: 200ms; }
  .hero-content > .hero-actions { animation-delay: 320ms; }
  .hero-content > .hero-trust   { animation-delay: 440ms; }
  @keyframes hero-in {
    to { opacity: 1; transform: none; }
  }

  /* Hero-Foto: weich einblenden mit leichtem Zoom */
  .hero-photo-frame {
    opacity: 0;
    transform: translateY(20px) scale(.98);
    animation: hero-photo-in .9s var(--ease) .15s forwards;
  }
  @keyframes hero-photo-in {
    to { opacity: 1; transform: none; }
  }

  /* Schwebende Hero-Badges: sanft auf/ab */
  .hero-float-insurance {
    animation: hero-float-in .8s var(--ease) .55s both, hero-float-bob 6s ease-in-out 1.4s infinite;
  }
  .hero-float-region {
    animation: hero-float-in .8s var(--ease) .75s both, hero-float-bob 6.5s ease-in-out 1.7s infinite reverse;
  }
  @keyframes hero-float-in {
    from { opacity: 0; transform: translateY(8px) scale(.94); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes hero-float-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  .hero-float { transition: transform .25s var(--ease), border-color .25s var(--ease); }
  .hero-float:hover {
    transform: translateY(-3px);
    border-color: rgba(240,144,0,0.45);
  }
  .hero-float-badge-icon { transition: transform .3s var(--ease), background .3s var(--ease); }
  .hero-float:hover .hero-float-badge-icon {
    transform: scale(1.08) rotate(-4deg);
    background: rgba(240,144,0,0.25);
  }

  /* Hero accent-glow leise pulsieren */
  .hero-accent { animation: hero-glow 8s ease-in-out infinite; }
  @keyframes hero-glow {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.7; }
  }

  /* ---- Buttons: feinerer Lift + Shine über Gradient (Text bleibt unberührt) ---- */
  .btn-primary {
    background-image: linear-gradient(
      120deg,
      var(--brand-orange) 0%,
      var(--brand-orange) 40%,
      rgba(255,255,255,0.22) 50%,
      var(--brand-orange) 60%,
      var(--brand-orange) 100%
    );
    background-size: 280% 100%;
    background-position: 100% 0;
    transition: background-position .8s var(--ease),
                background-color .2s var(--ease),
                border-color .2s var(--ease),
                transform .15s var(--ease),
                box-shadow .2s var(--ease);
  }
  .btn-primary:hover {
    background-position: 0 0;
    box-shadow: 0 10px 24px -10px rgba(240,144,0,0.55);
  }
  .btn-secondary:hover { transform: translateY(-1px); }
  .btn-ghost:hover { transform: translateY(-1px); }

  /* ---- Navbar: Logo & Links ---- */
  .navbar-logo img {
    transition: transform .3s var(--ease);
  }
  .navbar-logo:hover img { transform: scale(1.04); }

  .nav-link, .nav-dropdown-toggle { position: relative; }
  .nav-link::after,
  .nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s var(--ease);
    border-radius: 2px;
  }
  .nav-link:hover::after,
  .nav-dropdown-toggle:hover::after,
  .nav-link.active::after { transform: scaleX(1); }

  /* Sticky Navbar gewinnt Schatten beim Scrollen */
  .navbar { transition: box-shadow .25s var(--ease), background .25s var(--ease); }
  .navbar.scrolled {
    box-shadow: 0 8px 24px -16px rgba(14,14,15,0.18);
    background: rgba(255,255,255,0.95);
  }

  /* ---- Service-Cards: Icon-Mikroanimation ---- */
  .card-icon { transition: transform .35s var(--ease), background .25s var(--ease); }
  .card:hover .card-icon {
    transform: scale(1.08) rotate(-4deg);
    background: var(--brand-orange-100);
  }
  .card h3 { transition: color .2s var(--ease); }
  .card:hover h3 { color: var(--brand-orange-700); }
  .card-link svg { transition: transform .25s var(--ease); }
  .card-link:hover svg { transform: translateX(4px); }

  /* USP-Item Hover */
  .usp-item .usp-icon { transition: transform .3s var(--ease), background .25s var(--ease); }
  .usp-item:hover .usp-icon {
    transform: translateY(-3px) scale(1.05);
    background: var(--brand-orange-100);
  }

  /* Benefit-Cards Lift */
  .benefit-card { transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
  .benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-orange-100);
    box-shadow: var(--shadow-md);
  }

  /* Feature-list Punkte: Bullet zoomt sanft */
  .feature-item { transition: transform .2s var(--ease); }
  .feature-bullet { transition: transform .25s var(--ease), background .25s var(--ease); }
  .feature-item:hover { transform: translateX(2px); }
  .feature-item:hover .feature-bullet {
    transform: scale(1.15);
    background: var(--brand-orange-100);
  }

  /* Process-Number Hover-Glow */
  .process-step:hover .process-number {
    box-shadow: 0 0 0 6px rgba(240,144,0,0.15);
  }
  .process-number { transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
  .process-step:hover .process-number { transform: scale(1.05); }

  /* Kontakt-Details Hover */
  .contact-detail { transition: transform .2s var(--ease); }
  .contact-detail:hover { transform: translateX(3px); }
  .contact-detail-icon { transition: transform .25s var(--ease), background .25s var(--ease); }
  .contact-detail:hover .contact-detail-icon {
    transform: scale(1.06) rotate(-4deg);
    background: var(--brand-orange-100);
  }

  /* Card-Link Underline beim Hover */
  .card-link {
    position: relative;
  }

  /* Two-col-img Hover-Lift */
  .two-col-img { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
  .two-col > .reveal:hover > .two-col-img {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px -22px rgba(0,0,0,0.32);
  }

  /* Service-Stack-Image Hover */
  .service-img { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
  .service-stack-item:hover .service-img {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.28);
  }

  /* WhatsApp Icon: dezenter Pulse */
  .footer-whatsapp-icon { transition: transform .3s var(--ease); }
  .footer-whatsapp:hover .footer-whatsapp-icon {
    transform: scale(1.1);
    animation: wa-pulse 1.4s ease-in-out infinite;
  }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%      { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  }

  /* Footer Social Hover */
  .footer-social a { transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
  .footer-social a:hover { transform: translateY(-2px) scale(1.05); }

  /* Footer-Links: dezenter Slide */
  .footer-col a { transition: color .2s var(--ease), padding-left .2s var(--ease); }
  .footer-col a:hover { padding-left: 4px; }

  /* Prose-Anchor Underline */
  .prose a { transition: color .2s var(--ease); position: relative; }

  /* Form-Inputs: smoothes Heben des Labels (rein dekorativ) */
  .form-input, .form-select, .form-textarea {
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .15s var(--ease);
  }
  .form-input:hover, .form-select:hover, .form-textarea:hover {
    border-color: var(--neutral-300);
  }
}

/* Reduzierte Bewegung: alle Mikroanimationen aus */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   RESPONSIVE — Feinschliff für Mobile & Tablet
   ========================================================================== */

/* Tablets — Container etwas mehr Luft, Hero kompakter */
@media (max-width: 1024px) {
  .container { padding-inline: 24px; }
  .navbar-inner { padding-inline: 24px; }
  .navbar-mobile { padding-inline: 24px; }
  .two-col, .process-grid, .faq-grid, .contact-grid { gap: 56px; }
}

/* 2-Spalten-Layout im Tablet-Bereich für Karten */
@media (min-width: 600px) and (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid > .card:nth-child(3):nth-last-child(1) { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}

/* Klassisches Mobile */
@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .navbar-inner { padding-inline: 20px; }
  .navbar-mobile { padding-inline: 20px; }

  /* Hero-Spacing & Floats nicht zu eng */
  .hero { padding: 56px 0 64px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-content p  { font-size: 1rem; }
  .hero-actions    { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }

  /* Page-Hero kompakter */
  .page-hero { padding-block: 64px 56px; }
  .page-hero h1 { font-size: clamp(1.85rem, 6.5vw, 2.5rem); }
  .page-hero p { font-size: 1rem; }
  .page-hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Section-Header */
  .section-header { margin-bottom: 36px; }

  /* CTA-Band kompakter */
  .cta-band { padding-block: 56px; }
  .cta-band h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); }

  /* Buttons im Mobile-Menü */
  .navbar-mobile .nav-link { font-size: 16px; padding: 14px 14px; }

  /* Touch-Target-Verbesserung */
  .navbar-hamburger { padding: 10px; min-height: 44px; min-width: 44px; }
  .faq-question { min-height: 56px; padding: 20px 4px; }
  .btn { min-height: 44px; }
  .btn-sm { min-height: 38px; }

  /* Process-Image */
  .service-stack-item { padding: 32px 0; }
  .service-img { aspect-ratio: 16/11; }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .navbar-inner { padding-inline: 16px; height: 64px; }
  .navbar-mobile { padding-inline: 16px; }

  .hero { padding: 40px 0 56px; min-height: auto; }
  .hero-content h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); line-height: 1.1; }
  .hero-content p { margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 4px 10px; font-size: 12px; }
  .hero-trust .dot { display: none; }

  /* Hero-Foto-Frame: kleinere Offset-Frame */
  .hero-photo-frame::before { inset: 8px -8px -8px 8px; }
  .hero-photo-frame { aspect-ratio: 4 / 4.4; }
  .hero-float { padding: 8px 10px; }
  .hero-float-insurance { top: 10px; left: -6px; }
  .hero-float-region    { bottom: 12px; right: -6px; }
  .hero-float-badge-icon { width: 32px; height: 32px; }
  .hero-float-badge-icon svg { width: 15px; height: 15px; }
  .hero-float-badge-title { font-size: 13px; }

  /* Karten-Padding kleiner */
  .card { padding: 24px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 16px; }
  .card-icon svg { width: 20px; height: 20px; }

  /* Page-Hero CTA Stack */
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }

  /* CTA-Band Buttons */
  .cta-band-inner .btn { width: 100%; }

  /* Process-Layout: Linie & Numbers anpassen */
  .process-step { grid-template-columns: 36px 1fr; gap: 14px; padding-bottom: 28px; }
  .process-number { width: 36px; height: 36px; font-size: 13px; }
  .process-line { left: 17px; }

  /* Kontaktdaten */
  .contact-detail { gap: 12px; }
  .contact-detail-icon { width: 36px; height: 36px; }

  /* Formular */
  .form-row { grid-template-columns: 1fr; }
  .form > button[type="submit"] { align-self: stretch; }
  .form > button[type="submit"] { width: 100%; justify-content: center; }
  .radio-group { grid-template-columns: 1fr; }

  /* Footer Social grösser für Touch */
  .footer-social a { width: 40px; height: 40px; }

  /* Section padding mobil */
  .section { padding-block: 56px; }
}

/* Sehr kleine Geräte (<360px) — Notfall */
@media (max-width: 360px) {
  .container { padding-inline: 14px; }
  .navbar-inner { padding-inline: 14px; }
  .navbar-logo img { height: 40px; }
  .hero-content h1 { font-size: 1.65rem; }
  .page-hero h1 { font-size: 1.65rem; }
}

/* Touch-Geräte: keine Hover-Lifts (vermeidet "Hängen-bleiben") */
@media (hover: none) {
  .card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { transform: none; }
  .nav-link:hover { background: transparent; }
}

