﻿/* ================================================
   VersicherungsEck – Exact Recreation
   ================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
p   { line-height: 1.7; }

/* ---------- TOKENS ---------- */
:root {
  --navy:    #172d50;
  --navy-2:  #1c3862;
  --navy-3:  #224272;
  --blue:    #1a50c8;
  --blue-h:  #153fa8;
  --blue-lt: #2e68de;
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-400:#94a3b8;
  --gray-500:#64748b;
  --r:       10px;
  --r-lg:    16px;
  --ease:    cubic-bezier(.4,0,.2,1);
}

/* ---------- CONTAINERS ---------- */
.topbar-container,
.navbar-container,
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 13px;
}
.topbar-container { display: flex; align-items: center; justify-content: flex-end; }
.topbar-right { display: flex; gap: 28px; }
.topbar-right a {
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.topbar-right a:hover { color: #fff; }
.topbar-right a i { font-size: 12px; color: var(--blue-lt); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.10); }
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity .2s var(--ease);
}
.logo:hover .logo-img { opacity: .85; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.2px;
}
.logo-subtitle {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .02em;
}

/* Footer logo */
.footer-logo { pointer-events: none; }
.footer-logo-bracket {
  width: 32px; height: 32px;
  border-top: 4px solid var(--blue-lt);
  border-left: 4px solid var(--blue-lt);
  border-top-left-radius: 7px;
  flex-shrink: 0;
}
.footer-logo .logo-name { color: #fff; font-size: 18px; }
.footer-logo .logo-subtitle { color: rgba(255,255,255,.6); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 10px;
  border-radius: 7px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover  { color: var(--navy); background: var(--gray-100); }
.nav-link.active { color: var(--blue); background: rgba(26,80,200,.06); font-weight: 600; }
.btn-nav {
  background: var(--blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn-nav:hover { background: var(--blue-h); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,80,200,.4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease),
              box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-h);
  border-color: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,80,200,.35);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background: #0f1e38;
  padding: 112px 0 240px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -110px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg,
    rgba(15,30,56,.80) 0%,
    rgba(20,48,96,.72) 50%,
    rgba(15,30,56,.80) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* Hero animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-hero {
  opacity: 0;
  animation: heroFadeUp .7s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
.animate-hero-img {
  opacity: 0;
  animation: heroFadeRight .8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

/* Hero content glass panel */
.hero-content {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 40px;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 22px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: #93c5fd;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}
.hero-highlight { color: #60a5fa; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.hero-trust i { margin-right: 5px; font-size: 10px; }

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  flex: 1;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-img-deco {
  position: absolute;
  width: 64px; height: 64px;
  z-index: 3;
  pointer-events: none;
}
.hero-img-deco.top-left {
  top: -10px; left: -10px;
  border-top: 6px solid var(--blue);
  border-left: 6px solid var(--blue);
  border-radius: 14px 0 0 0;
}
.hero-img-deco.bottom-right {
  bottom: -10px; right: -10px;
  border-bottom: 6px solid var(--blue);
  border-right: 6px solid var(--blue);
  border-radius: 0 0 14px 0;
}

/* ================================================
   SECTIONS – base
   ================================================ */
.section { padding: 96px 0; position: relative; }
.section-white { background: #fff; }
.section-gray  { background: #f1f5f9; }

#leistungen { padding-top: 160px; }

/* Section labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--blue-lt);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label.left { justify-content: flex-start; }
.label-bar {
  flex: 1;
  max-width: 44px;
  height: 1.5px;
  background: var(--blue-lt);
}
.label-bar.short { max-width: 26px; }

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.18;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}
.section-title.left  { text-align: left; }
.section-title.white { color: #fff; }

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.65;
}
.section-sub.white { color: rgba(255,255,255,.55); }

/* ================================================
   SCROLL REVEAL
   ================================================ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal, .reveal-left, .reveal-right { opacity: 0; }
.reveal.visible       { animation: revealUp    .65s var(--ease) both; }
.reveal-left.visible  { animation: revealLeft  .7s  var(--ease) both; }
.reveal-right.visible { animation: revealRight .7s  var(--ease) both; }

/* ================================================
   LEISTUNGEN – service cards
   ================================================ */
.section-gray { z-index: 1; }

.cards-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}
.service-icon {
  width: 54px; height: 54px;
  background: rgba(26,80,200,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 22px;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 15px; color: var(--gray-500); }

/* ================================================
   ABOUT
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 16px;
  background: #fff;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -12px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(26,80,200,.4);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 8px 28px rgba(26,80,200,.4); }
  50%      { box-shadow: 0 12px 36px rgba(26,80,200,.6); }
}
.badge-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}
.badge-plus {
  font-size: 20px;
  font-weight: 800;
  position: absolute;
  top: 12px; right: 12px;
}
.badge-label {
  font-size: 11px;
  font-weight: 500;
  opacity: .8;
  margin-top: 4px;
  white-space: nowrap;
}

.about-text-col { padding-left: 8px; }
.about-text-col h2 { margin: 14px 0 20px; }
.about-text-col p  { color: var(--gray-500); margin-bottom: 16px; font-size: 15px; }

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-stat-icon {
  width: 38px; height: 38px;
  background: rgba(26,80,200,.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}
.about-stat strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.about-stat span   { font-size: 12px; color: var(--gray-400); }

/* ================================================
   VORTEILE
   ================================================ */
.section-vorteile {
  background: var(--navy);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section-vorteile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Dummybild 1.png') center 60px/auto 140% no-repeat;
  opacity: 0.10;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 55% 80% at 50% 50%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 55% 80% at 50% 50%, black 30%, transparent 75%);
}
.section-vorteile .section-container {
  position: relative;
  z-index: 1;
}

.cards-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.vorteil-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.vorteil-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(26,80,200,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.vorteil-icon {
  width: 46px; height: 46px;
  background: rgba(26,80,200,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-lt);
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.vorteil-card:hover .vorteil-icon { background: var(--blue); color: #fff; }
.vorteil-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.vorteil-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ================================================
   VERSICHERUNGEN
   ================================================ */
.vers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.vers-card-new {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  border: 1px solid var(--gray-200);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vers-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.vers-card-header {
  padding: 28px 32px;
  color: #fff;
}
.vers-card-header.blue { background: var(--blue); }
.vers-card-header.dark { background: var(--navy); }
.vers-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -.2px;
}
.vers-card-header p { font-size: 14px; opacity: .65; }
.vers-card-body {
  background: #fff;
  padding: 24px 32px 32px;
}
.vers-list-new {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}
.vers-list-new li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.vers-list-new li::after {
  content: '→';
  margin-left: auto;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  font-size: 15px;
}
.vers-list-new li:hover {
  background: rgba(26,80,200,.06);
  color: var(--blue);
}
.vers-list-new li:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.vers-list-new li:hover .vers-item-icon {
  background: rgba(26,80,200,.15);
}
.vers-item-icon {
  width: 36px; height: 36px;
  background: rgba(26,80,200,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
  transition: background .2s var(--ease);
}
.vers-link-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: gap .2s var(--ease);
}
.vers-link-new:hover { gap: 11px; }

/* ================================================
   TERMIN
   ================================================ */
.section-termin {
  background: #1c3a72;
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.termin-img-frame {
  position: relative;
}
.termin-img-deco {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  border-top: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  border-top-left-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.termin-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.termin-card {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 40px;
}
.termin-card .section-title { margin: 12px 0 20px; }
.termin-meta {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.termin-meta i { color: rgba(255,255,255,.35); }
.termin-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.termin-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.termin-features i { color: var(--blue-lt); font-size: 15px; flex-shrink: 0; }
.termin-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.termin-contact-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.termin-contact-grid a,
.termin-contact-grid .maps-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85) !important;
  text-decoration: none;
  transition: color .2s;
}
.termin-contact-grid a:hover,
.termin-contact-grid .maps-link:hover { color: #fff !important; }
.termin-contact-grid i { color: var(--blue-lt); font-size: 12px; width: 14px; flex-shrink: 0; }
.contact-full { grid-column: 1 / -1; }

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,80,200,.07);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: rgba(26,80,200,.03); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--blue-lt);
  font-size: 13px;
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 26px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  transition: padding .35s var(--ease);
}
.faq-item.open .faq-a-inner { padding: 0 26px 22px; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  padding-top: 72px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 270px;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.footer-contact-list li i { color: var(--blue-lt); font-size: 13px; width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-list li a:hover { color: rgba(255,255,255,.85); }
.footer-contact-list li span { line-height: 1.5; }

/* Schadenhotline */
.schadenhotline-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue);
  border-radius: var(--r);
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  transition: background .2s var(--ease);
}
.schadenhotline-box:hover { background: var(--blue-h); }
.schadenhotline-box > i { font-size: 18px; opacity: .9; }
.schadenhotline-box > div { display: flex; flex-direction: column; }
.sh-number {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.sh-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,.35);
  font-size: 13px;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ================================================
   TESTIMONIALS – infinite marquee
   ================================================ */
.section-testimonials {
  background: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.section-testimonials .section-container {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

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

.testimonials-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 16px 40px 24px;
  align-items: flex-start;
}
.testimonials-track:hover {
  animation-play-state: paused;
}

.testi-card {
  width: 180px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testi-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter .3s;
}
.testi-card:hover .testi-img-wrap img {
  filter: grayscale(0%);
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: rgb(33, 103, 204);
  margin-bottom: 12px;
  line-height: 1.3;
}

.testi-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 48px;
  line-height: 1;
  color: rgb(33, 103, 204);
  font-family: Georgia, serif;
  opacity: 0.5;
  margin-top: auto;
}

/* ================================================
   ================================================ */
.service-card, .vorteil-card {
  transform-style: preserve-3d;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .cards-row-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-img { height: 340px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 380px; }
  .vers-grid { grid-template-columns: 1fr; }
  .termin-grid { grid-template-columns: 1fr; gap: 40px; }
  .termin-img-frame { order: -1; }
  .termin-img-frame img { height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 60px 0 120px; clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); margin-bottom: -50px; }

  /* Topbar */
  .topbar-right { gap: 16px; }
  .topbar-right a span { display: none; }

  /* Containers */
  .topbar-container,
  .navbar-container,
  .section-container { padding: 0 20px; }

  /* Hamburger / Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-top: 1px solid #f1f5f9;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 13px 12px; border-radius: 8px; border-bottom: 1px solid #f1f5f9; }
  .btn-nav { margin: 10px 0 0; text-align: center; justify-content: center; }
  .navbar { position: relative; }

  /* Hero – kompakt, zentriert, kein Overflow */
  .hero { padding: 14px 0 90px; overflow-x: hidden; }
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-visual { order: -1; width: 100%; box-sizing: border-box; }
  .hero-img-wrapper { width: 100%; height: 280px; border-radius: var(--r-lg); flex: none; box-sizing: border-box; }
  .hero-img { border-radius: var(--r-lg); object-position: center 10%; }
  .hero-img-deco { display: none; }
  .hero-content {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 16px;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; margin-bottom: 10px; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 12px; word-break: break-word; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; max-width: 100%; word-break: break-word; }
  .hero-btns { justify-content: center; margin-bottom: 14px; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .hero-trust { justify-content: center; gap: 12px; font-size: 11px; flex-wrap: wrap; }

  /* Cards & Grids */
  .cards-row-3 { grid-template-columns: 1fr; gap: 16px; }
  .cards-row-4 { grid-template-columns: 1fr; }

  /* Vorteile */
  .section-vorteile { padding: 64px 0; }

  /* Versicherungen cards */
  .vers-grid { gap: 16px; }
  .vers-card-new { border-radius: 14px; }
  .vers-link-new { font-size: 13px; }

  /* Termin */
  .termin-card { padding: 28px 24px; }
  .termin-contact-grid { grid-template-columns: 1fr; }
  .contact-full { grid-column: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 18px 16px; }
  .faq-a-inner { padding: 0 16px 18px; font-size: 14px; }

  /* Schadenhotline box */
  .schadenhotline-box { padding: 14px 18px; }
}

@media (max-width: 480px) {
  /* Topbar: show only icons on tiny screens */
  .topbar { display: none; }

  /* Containers */
  .topbar-container,
  .navbar-container,
  .section-container { padding: 0 16px; }

  /* Hero */
  .hero-title { font-size: clamp(30px, 8vw, 40px); letter-spacing: -.3px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; box-sizing: border-box; }

  /* About */
  .about-stats { flex-direction: column; gap: 16px; }
  .about-stats .stat { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 16px; }

  /* Vers cards */
  .vers-card-header { padding: 20px 20px; }
  .vers-card-body { padding: 18px 20px 24px; }
  .vers-list-new li { padding: 7px 10px; font-size: 13px; }

  /* Vorteile */
  .section-vorteile { padding: 52px 0; }

  /* Footer */
  .footer-brand p { font-size: 13px; }
  .footer-bottom-links { gap: 10px 16px; }
  .footer-bottom p { font-size: 12px; }
}

/* ================================================
   WHATSAPP FLOAT BUTTON
   ================================================ */
@keyframes waBounce {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-22px); }
  38%  { transform: translateY(0); }
  52%  { transform: translateY(-12px); }
  66%  { transform: translateY(0); }
  78%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.wa-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
@media (max-width: 768px) {
  .wa-wrap { display: none; }
}
.wa-btn {
  width: 58px;
  height: 58px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,80,200,.45);
  text-decoration: none;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(26,80,200,.6);
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff;
  color: #172d50;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-arrow {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
}


/* Calendly popup above funnel */
.calendly-overlay { z-index: 10001 !important; }
.calendly-popup-content { z-index: 10002 !important; }

/* ================================================
   FUNNEL MODAL
   ================================================ */
.funnel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,30,56,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.funnel-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.funnel-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  padding: 40px 44px 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.funnel-overlay.open .funnel-modal {
  transform: translateY(0) scale(1);
}
.funnel-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  cursor: pointer;
  color: #64748b;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.funnel-close:hover { background: #e2e8f0; color: #172d50; }

/* Progress bar */
.funnel-progress-wrap {
  height: 5px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.funnel-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
  width: 25%;
}
.funnel-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Step content */
.funnel-question {
  font-size: 22px;
  font-weight: 800;
  color: #0f1e38;
  line-height: 1.3;
  margin-bottom: 8px;
}
.funnel-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}
.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.funnel-options.cols-1 { grid-template-columns: 1fr; }
.funnel-other-wrap { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.funnel-other-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.funnel-other-label .fas { color: var(--blue); margin-right: 5px; }
.funnel-other-input {
  padding: 11px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
}
.funnel-other-input:focus { border-color: var(--blue); }
.funnel-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #172d50;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.funnel-option:hover {
  border-color: var(--blue);
  background: rgba(26,80,200,.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,80,200,.12);
}
.funnel-option.selected {
  border-color: var(--blue);
  background: rgba(26,80,200,.07);
  color: var(--blue);
}
.funnel-option-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(26,80,200,.08);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background .2s;
}
.funnel-option:hover .funnel-option-icon,
.funnel-option.selected .funnel-option-icon {
  background: rgba(26,80,200,.16);
}

/* Navigation */
.funnel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.funnel-back {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px 0;
  transition: color .2s;
}
.funnel-back:hover { color: #172d50; }
.funnel-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.funnel-next:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,80,200,.3);
}
.funnel-next:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Final step */
.funnel-result {
  text-align: center;
  padding: 8px 0;
}
.funnel-result-icon {
  width: 72px; height: 72px;
  background: rgba(26,80,200,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--blue);
}
.funnel-result h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f1e38;
  margin-bottom: 8px;
}
.funnel-result p {
  font-size: 14px;
  color: #64748b;
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.funnel-result-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 13px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.funnel-result-summary span { display: flex; align-items: center; gap: 8px; }
.funnel-result-summary i { color: var(--blue); width: 14px; }
.funnel-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 16px;
}
.funnel-book-btn:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,80,200,.35);
}
.funnel-contact-alt {
  font-size: 13px;
  color: #94a3b8;
}
.funnel-contact-alt a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 560px) {
  .funnel-overlay { padding: 0; align-items: flex-end; }
  .funnel-modal {
    padding: 24px 20px calc(36px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
  }
  .funnel-overlay.open .funnel-modal { transform: translateY(0); }

  /* Sticky-Bar ersetzt Direct-Contact auf Mobile */
  .funnel-direct-contact { display: none; }

  /* Options kompakter */
  .funnel-options { grid-template-columns: 1fr; gap: 8px; }
  .funnel-question { font-size: 17px; margin-bottom: 6px; }
  .funnel-sub { font-size: 13px; margin-bottom: 14px; }
  .funnel-option { padding: 11px 14px; font-size: 13px; gap: 10px; }
  .funnel-option-icon { width: 34px; height: 34px; font-size: 14px; flex-shrink: 0; }
  .funnel-close { top: 14px; right: 14px; }
  .funnel-nav { margin-top: 16px; gap: 10px; }
  .funnel-next { font-size: 14px; padding: 12px 18px; }
  .funnel-back { font-size: 13px; }

  /* Kontaktformular-Schritt */
  .funnel-contact-form { gap: 10px; margin: 12px 0 8px; }
  .funnel-field input { padding: 10px 14px; font-size: 14px; }
  .funnel-result > h3 { font-size: 18px; margin-bottom: 4px; }
  .funnel-result > p  { font-size: 13px; margin-bottom: 0; }
  .funnel-checkbox-label { font-size: 12px; margin-top: 4px; gap: 8px; }
  .funnel-privacy { font-size: 11px !important; margin-top: 6px !important; }

  /* Calendly-Schritt auf Mobile */
  .funnel-modal-wide {
    max-width: 100%;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    padding: 16px 16px calc(12px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
  }
  .funnel-modal-wide .funnel-progress-wrap { flex-shrink: 0; }
  .funnel-modal-wide .funnel-step-label { flex-shrink: 0; margin-bottom: 8px; }
  .funnel-modal-wide #funnelBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
  }
  .funnel-modal-wide .funnel-result {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
  }
  .funnel-modal-wide #calendlyInline {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
  }
  .funnel-modal-wide #calendlyInline iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px;
    transform: none !important;
    transform-origin: unset !important;
    border: none;
  }
}

.funnel-modal-wide {
  max-width: 900px;
  padding: 20px 24px 16px;
}
.funnel-modal-wide .funnel-result > h3 { display: none; }
.funnel-modal-wide .funnel-result > p  { display: none; }
.funnel-modal-wide #calendlyInline {
  width: 100%;
  height: 462px;
  overflow: hidden;
}
.funnel-modal-wide #calendlyInline iframe {
  width: 143% !important;
  height: 660px !important;
  transform: scale(0.7);
  transform-origin: top left;
  border: none;
}

/* Mobile override: undo desktop Calendly scaling hack */
@media (max-width: 560px) {
  .funnel-modal-wide #calendlyInline {
    height: 100% !important;
    min-height: 420px;
  }
  .funnel-modal-wide #calendlyInline iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px;
    transform: none !important;
    transform-origin: unset !important;
  }
}

.funnel-alt-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.funnel-direct-contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.funnel-direct-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.funnel-direct-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--blue);
  flex-shrink: 0;
}
.funnel-direct-profile strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}
.funnel-direct-profile span {
  font-size: 13px;
  color: var(--gray-500);
}
.funnel-direct-contact .funnel-alt-label {
  font-size: 14px;
  margin-bottom: 14px;
}
.funnel-direct-contact .funnel-alt-btn {
  padding: 14px 28px;
  font-size: 16px;
  border-width: 2px;
}
.funnel-direct-contact .funnel-alt-btns {
  gap: 12px;
  flex-wrap: nowrap;
}
.funnel-direct-contact .funnel-alt-btn {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.funnel-alt-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-align: center;
}
.funnel-alt-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.funnel-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  color: #172d50;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.funnel-alt-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26,80,200,.04);
}
.funnel-alt-btn i { color: var(--blue); }

/* Funnel contact form */
.funnel-contact-form { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 12px; }
.funnel-field { display: flex; flex-direction: column; gap: 6px; }
.funnel-field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.funnel-field input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  transition: border-color .2s;
  outline: none;
}
.funnel-field input:focus { border-color: var(--blue); }
.funnel-field input::placeholder { color: var(--gray-400); }
.funnel-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  cursor: pointer;
  margin-top: 4px;
}
.funnel-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.funnel-checkbox-label a { color: var(--blue); text-decoration: underline; }
.funnel-privacy {
  font-size: 12px !important;
  color: var(--gray-400) !important;
  margin-top: 4px !important;
}
.funnel-privacy a { color: var(--blue); }

.funnel-booking-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 16px 0 20px;
  text-align: left;
}
.funnel-booking-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.funnel-booking-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f1e38;
  margin-bottom: 4px;
}
.funnel-booking-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}
.funnel-booking-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.funnel-booking-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ================================================
   COOKIE BANNER & SETTINGS
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99000;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 -8px 40px rgba(0,0,0,.15);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text p { margin: 0 0 4px; font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.cookie-banner-text strong { color: var(--navy); font-size: 15px; }
.cookie-banner-text .fas { color: var(--blue); margin-right: 6px; }
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--blue-h); }
.cookie-btn-necessary {
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-necessary:hover { border-color: var(--blue); color: var(--blue); }
.cookie-btn-settings {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-btn-settings:hover { background: var(--blue); color: #fff; }

/* Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,30,56,.65);
  backdrop-filter: blur(4px);
  z-index: 99500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-settings-overlay.show { opacity: 1; pointer-events: all; }
.cookie-settings-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.cookie-settings-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cookie-settings-close:hover { background: var(--gray-200); }
.cookie-settings-modal h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.cookie-settings-modal h2 .fas { color: var(--blue); margin-right: 8px; }
.cookie-settings-intro {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cookie-category {
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-category-header strong { color: var(--navy); font-size: 15px; }
.cookie-category p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }
.cookie-tag {
  display: inline-block;
  background: #e8f0fe;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.cookie-tag-optional { background: var(--gray-100); color: var(--gray-500); }

/* Toggle Switch */
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 24px;
  transition: background .25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--blue); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle-disabled { opacity: .5; cursor: not-allowed; }
.cookie-toggle-disabled .cookie-toggle-slider { background: var(--blue); }
.cookie-toggle-disabled .cookie-toggle-slider::before { transform: translateX(20px); }

.cookie-settings-footer {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-btn-save {
  background: var(--gray-100);
  color: var(--navy);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-save:hover { background: var(--gray-200); }

@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-necessary, .cookie-btn-settings { flex: 1; text-align: center; }
  .cookie-settings-modal { padding: 24px 20px; }
  .cookie-settings-footer { flex-direction: column; }
  .cookie-settings-footer button { width: 100%; }
}
