/* ==========================================================================
   Sections — Hero, Stats, Services, About, Why-Us, Reviews, FAQ, CTA
   ========================================================================== */

/* Heading line-break replacement (W3C: no <br> in headings) */
.heading-break { display: block; }
h1 .text-gradient, h2 .text-gradient { display: inline; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0c4a7a 100%);
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.2rem; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px; max-width: 500px; line-height: 1.7; font-weight: 500;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }

/* Hero phone circle button */
.hero-phone-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  border: none; cursor: pointer; position: relative;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.45);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.hero-phone-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.55);
}
.hero-phone-circle:active { transform: scale(0.95); }
/* WhatsApp variant */
.hero-wa-circle {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}
.hero-wa-circle:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.hero-wa-circle::before,
.hero-wa-circle::after {
  border-color: #25D366;
}
/* E-Mail variant */
.hero-email-circle {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
  text-decoration: none;
}
.hero-email-circle:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.55);
}
.hero-email-circle::before,
.hero-email-circle::after {
  border-color: #6366F1;
}
/* Pulse rings */
.hero-phone-circle::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--sky); opacity: 0;
  animation: hero-phone-pulse 2.5s ease-out infinite;
}
.hero-phone-circle::after {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1.5px solid var(--sky); opacity: 0;
  animation: hero-phone-pulse 2.5s ease-out infinite .4s;
}
@keyframes hero-phone-pulse {
  0% { opacity: 0.6; transform: scale(0.85); }
  70% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.15); }
}
/* Dropdown */
.hero-phone-drop {
  display: none; position: absolute;
  top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 260px; background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 10;
}
.hero-phone-drop.open { display: block; animation: heroDropIn .25s ease-out; }
@keyframes heroDropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-phone-drop::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: rgba(15, 23, 42, 0.96);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-img { position: relative; z-index: 2; }
.hero-img img,
.hero-photo {
  max-width: 100%; width: 100%; border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  object-fit: cover;
}

/* Hero Van with headlight animation */
.hero-van {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-van-glow {
  position: absolute; width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: vanGlowPulse 4s ease-in-out infinite;
}
@keyframes vanGlowPulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.08); }
}
.hero-van-img {
  max-width: 100%; width: 100%; height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4)) brightness(1.05);
  position: relative; z-index: 2;
  animation: vanDriveIn 3.5s cubic-bezier(0.22, 1, 0.36, 1) both,
             vanFloat 6s ease-in-out 2.5s infinite;
}
@keyframes vanDriveIn {
  0%   { opacity: 0; transform: translate(calc(100% + 80px), -120px) scale(0.7); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes vanFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Headlight flashing */
.hero-headlight {
  position: absolute; z-index: 3;
  width: 14px; height: 8px; border-radius: 50%;
  background: #fff;
  filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  animation: headlightFlash 6s ease-in-out infinite;
}
/* Left headlight (outer, viewer's left) */
.hero-headlight--l {
  bottom: 45%; left: 10%;
  width: 28px; height: 18px;
  animation-delay: 3.5s;
}
/* Right headlight (inner, near grille) */
.hero-headlight--r {
  bottom: 42%; left: 48%;
  width: 30px; height: 20px;
  animation-delay: 3.55s;
}
@keyframes headlightFlash {
  0%,100% { opacity: 0; }
  20% { opacity: 0; }
  22% { opacity: 1; filter: blur(6px) drop-shadow(0 0 30px #fff) drop-shadow(0 0 60px rgba(14,165,233,0.9)) drop-shadow(0 0 90px rgba(14,165,233,0.5)) drop-shadow(0 0 120px rgba(14,165,233,0.3)); }
  25% { opacity: .15; }
  27% { opacity: 1; filter: blur(6px) drop-shadow(0 0 30px #fff) drop-shadow(0 0 60px rgba(14,165,233,0.9)) drop-shadow(0 0 90px rgba(14,165,233,0.5)) drop-shadow(0 0 120px rgba(14,165,233,0.3)); }
  55% { opacity: .7; filter: blur(8px) drop-shadow(0 0 35px #fff) drop-shadow(0 0 50px rgba(14,165,233,0.7)); }
  70% { opacity: .3; filter: blur(10px) drop-shadow(0 0 40px rgba(14,165,233,0.5)); }
  80% { opacity: 0; }
}

/* STATS */
.stats-section {
  padding: 0; margin-top: -48px; position: relative; z-index: 10;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 22px 36px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.08);
  border: 1px solid var(--gray-200);
  gap: 24px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}
.stats-grid .stat-divider {
  width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0;
}
.stats-grid .hero-google-rating {
  background: rgba(15,23,42,0.04);
  border-color: var(--gray-200);
}
.stats-grid .hero-google-rating:hover {
  background: rgba(14,165,233,0.06);
  border-color: rgba(14,165,233,0.2);
}
.stats-grid .hero-rating-score {
  color: var(--gray-900) !important;
  -webkit-text-fill-color: var(--gray-900);
}
.stats-grid .hero-pay {
  background: rgba(15,23,42,0.04);
  border-color: var(--gray-200);
}
.stats-grid .hero-pay,
.stats-grid .hero-pay .bi {
  color: var(--gray-500) !important;
}
.stats-grid .hero-pay:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.25);
}
.stats-grid .hero-pay:hover,
.stats-grid .hero-pay:hover .bi {
  color: var(--sky) !important;
}
.stats-grid .hero-payments-label {
  color: var(--gray-400) !important;
}
@media (max-width: 768px) {
  .stats-grid { padding: 20px 24px; gap: 16px; border-radius: var(--radius-lg); }
  .stats-grid .stat-divider { display: none; }
}
@media (max-width: 576px) {
  .stats-grid .hero-payments { display: flex; }
  .stats-grid .hero-pay { width: 30px; height: 30px; font-size: .85rem; }
  .stats-grid .hero-payments-icons { gap: 4px; }
}

/* ABOUT */
.about-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
}
.about-section .section-label,
.cta-section .section-label { background: rgba(14,165,233,0.2); }
.about-section h2 {
  font-family: var(--font-display); font-size: 2.2rem;
  color: #fff; margin-bottom: 16px;
}
.about-intro {
  color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 28px;
}
.about-check {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.about-check .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(14, 165, 233, 0.2); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}
.about-photo {
  width: 80%; height: auto; border-radius: var(--radius-xl);
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}
@media (max-width: 767px) {
  .about-photo { width: 65%; display: block; margin: 0 auto; }
}
.about-phone-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sky); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}
.about-phone-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(14,165,233,0.5); }
.about-phone-btn::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--sky);
  animation: about-phone-ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes about-phone-ping {
  0% { transform: scale(1); opacity: 0.6; }
  75%,100% { transform: scale(1.5); opacity: 0; }
}
/* About contact icons (tel / wa / mail) */
.about-contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 18px;
  transition: transform .2s, box-shadow .2s;
}
.about-contact-icon:hover { transform: scale(1.12); color: #fff; }
.about-contact-icon--tel {
  background: var(--sky);
  box-shadow: 0 4px 14px rgba(14,165,233,0.4);
}
.about-contact-icon--wa {
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}
.about-contact-icon--mail {
  background: #6366F1;
  box-shadow: 0 4px 14px rgba(99,102,241,0.4);
}

/* ABOUT EXPAND — collapsible story */
.about-expand {
  margin-bottom: 24px;
}
.about-expand__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.about-expand__content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-expand.open .about-expand__content {
  max-height: 1200px;
  opacity: 1;
}
.about-expand__toggle {
  background: none;
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 100px;
  color: var(--sky);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.about-expand__toggle:hover {
  background: rgba(14,165,233,0.1);
  border-color: var(--sky);
}
.about-expand__toggle .about-expand__less { display: none; }
.about-expand.open .about-expand__toggle .about-expand__more { display: none; }
.about-expand.open .about-expand__toggle .about-expand__less { display: inline-flex; align-items: center; gap: 6px; }

/* Story row: text left, fleet image right */
.about-story-row {
  display: flex;
  gap: 24px;
  align-items: center;
}
.about-story-text {
  flex: 1;
  min-width: 0;
}
.about-story-img {
  flex: 0 0 320px;
}
.about-fleet-photo {
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
}
@media (max-width: 767px) {
  .about-story-row {
    flex-direction: column;
  }
  .about-story-img {
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* SWIPE ROW — grid on desktop, horizontal scroll on mobile */
.swipe-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .swipe-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .swipe-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* FUHRPARK / FAHRZEUGE */
.fuhrpark-section { background: var(--light); }
.vehicle-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden; height: 100%;
  transition: all .3s;
  position: relative;
}
.vehicle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), #818CF8);
  transform: scaleX(0.15); transform-origin: left;
  transition: transform .35s; opacity: 0.5;
}
.vehicle-card:hover::before { transform: scaleX(1); opacity: 1; }
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14,165,233,0.1);
  border-color: rgba(14,165,233,0.2);
}
.vehicle-card__img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--light);
}
.vehicle-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.vehicle-card:hover .vehicle-card__img img { transform: scale(1.05); }
.vehicle-card__body { padding: 20px 24px 24px; }
.vehicle-card__name {
  font-size: 1.15rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 14px;
}
.vehicle-card__feat {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; font-size: .88rem;
  color: var(--gray-500);
}
.vehicle-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky-glow); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}

/* GALLERY MARQUEE */
.gallery-section {
  background: var(--light);
  padding: 60px 0;
  overflow: hidden;
}
.gallery-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.gallery-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  -webkit-animation: galleryScroll 60s linear infinite;
  animation: galleryScroll 60s linear infinite;
  will-change: transform;
}
.gallery-marquee__track:hover {
  animation-play-state: paused;
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-marquee__item {
  flex-shrink: 0;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.gallery-marquee__item img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-marquee__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 576px) {
  .gallery-marquee__item { height: 280px; }
  .gallery-section { padding: 40px 0; }
}

/* TEAM */
.team-section { background: var(--white); }
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden; height: 100%;
  position: relative;
  transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14,165,233,0.15);
}
/* Full-bleed photo */
.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.team-card__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  opacity: 1;
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.team-card.revealed .team-card__photo::after {
  opacity: 0;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card.revealed .team-card__photo img {
  transform: scale(1);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.06);
}
/* Gradient overlay at bottom */
.team-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(0deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.5) 60%, transparent 100%);
  color: #fff;
  text-align: left;
}
.team-card__name {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin: 0 0 2px;
}
.team-card__role {
  font-size: .82rem;
  color: var(--sky-light); font-weight: 500;
  margin: 0 0 8px;
}
.team-card__features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 3px;
}
.team-card__features li {
  font-size: .78rem;
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 6px;
}
.team-card__features li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  font-size: .6rem;
  color: var(--sky-light);
  flex-shrink: 0;
}
/* Reveal animations for overlay content */
.team-card__overlay .team-card__name,
.team-card__overlay .team-card__role,
.team-card__overlay .team-card__features {
  opacity: 0; transform: translateY(10px);
  transition: all .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card__overlay .team-card__name { transition-delay: .3s; }
.team-card__overlay .team-card__role { transition-delay: .4s; }
.team-card__overlay .team-card__features { transition-delay: .5s; }
.team-card.revealed .team-card__overlay .team-card__name,
.team-card.revealed .team-card__overlay .team-card__role,
.team-card.revealed .team-card__overlay .team-card__features {
  opacity: 1; transform: translateY(0);
}

/* FAQ */
.faq-section { background: var(--light); }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden; transition: border-color .3s;
}
.faq-item:hover { border-color: var(--sky); }
.faq-q {
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--gray-900);
  background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font);
}
.faq-q::after {
  content: '+'; font-size: 1.4rem; color: var(--sky);
  transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 20px; font-size: .9rem;
  color: var(--gray-500); line-height: 1.7; display: none;
}
.faq-item.open .faq-a { display: block; }

/* PREISRECHNER */
.rechner-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-decoration: none; color: inherit;
  transition: all .3s; height: 100%;
  position: relative; overflow: hidden;
}
.rechner-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: transparent; transition: background .3s;
}
.rechner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border-color: var(--sky); color: inherit;
}
.rechner-card:hover::before { background: var(--sky); }

.rechner-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sky-glow); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--sky);
  font-size: 1.5rem; transition: all .3s;
}
.rechner-card:hover .rechner-card__icon {
  background: var(--sky); color: #fff;
}

.rechner-card h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px; color: var(--gray-900);
}
.rechner-card > p {
  font-size: .9rem; color: var(--gray-500);
  line-height: 1.6; margin-bottom: 16px;
}

.rechner-card__features {
  list-style: none; padding: 0; margin: 0 0 auto;
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 20px;
}
.rechner-card__features li {
  font-size: .85rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.rechner-card__features li i {
  color: var(--sky); font-size: .9rem; flex-shrink: 0;
}

.rechner-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--sky); font-weight: 600; font-size: .9rem;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  transition: gap .3s;
}
.rechner-card:hover .rechner-card__link { gap: 10px; }

/* Trust strip */
.rechner-trust {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.rechner-trust__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600;
  color: var(--gray-600); white-space: nowrap;
}
.rechner-trust__item i {
  color: var(--sky); font-size: 1.1rem;
}

@media (max-width: 768px) {
  .rechner-trust { gap: 16px; padding: 20px; }
  .rechner-trust__item { font-size: .82rem; flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 480px) {
  .rechner-trust__item { flex: 0 0 100%; justify-content: center; }
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0; text-align: center;
}
.cta-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}
.cta-section h2 {
  font-family: var(--font-display); font-size: 2.5rem;
  color: #fff; margin-top: 16px;
}
.cta-section > .container > p {
  color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 1.05rem;
}
.cta-phone {
  font-size: 2.5rem; font-weight: 700; color: #fff;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 12px; margin-top: 20px;
  transition: all .2s;
}
.cta-phone:hover { color: var(--sky); transform: scale(1.02); }

/* PRICE CALCULATOR */
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.06);
}
.calc-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.calc-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font);
  color: var(--gray-900); background: var(--light);
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
select.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.calc-select:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.calc-btn {
  width: 100%; justify-content: center;
  margin-top: 20px; padding: 16px 24px; font-size: 1rem;
}
.calc-result {
  display: none; margin-top: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center;
}
.calc-result.visible { display: block; }
.calc-result-inner { margin-bottom: 20px; }
.calc-price-label {
  font-size: .85rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.calc-price {
  font-size: 3rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--sky), #818CF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-price-note {
  font-size: .8rem; color: rgba(255,255,255,0.5); margin-top: 8px;
}
.calc-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.calc-error {
  display: none; margin-top: 16px; padding: 12px 16px;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); color: #ef4444;
  font-size: .9rem; text-align: center;
}
.calc-error.visible { display: block; }
.calc-custom {
  display: none; margin-top: 24px; text-align: center;
  padding: 24px; background: var(--light);
  border-radius: var(--radius-lg);
}
.calc-custom.visible { display: block; }
.calc-custom p {
  color: var(--gray-600); font-size: .95rem; margin-bottom: 16px;
}
/* ── Booking Form inside Calculator ── */
.calc-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0 24px;
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.calc-divider::before,
.calc-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.calc-booking {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.calc-booking .calc-label {
  color: rgba(255,255,255,0.55); font-size: .78rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 8px;
}
.calc-field {
  position: relative;
}
.calc-field .calc-field-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3); font-size: .95rem;
  pointer-events: none; display: flex;
  transition: color .2s; z-index: 1;
}
.calc-field .calc-input,
.calc-field .calc-select { padding-left: 42px; }
.calc-field:focus-within .calc-field-icon { color: var(--sky); }

/* Inputs inside booking form (scoped to avoid affecting calculator) */
.calc-booking .calc-input {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font);
  color: #fff;
  background: rgba(255,255,255,0.06);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.calc-booking .calc-input::placeholder { color: rgba(255,255,255,0.25); }
.calc-booking .calc-input:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.calc-booking .calc-input:focus {
  outline: none; border-color: var(--sky);
  background: rgba(14,165,233,0.06);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12), 0 0 20px rgba(14,165,233,0.06);
}
.calc-booking textarea.calc-input {
  resize: vertical; min-height: 72px; line-height: 1.5;
}

/* Selects inside booking form */
.calc-booking .calc-select {
  background-color: rgba(255,255,255,0.06); color: #fff;
  border-color: rgba(255,255,255,0.1);
  padding: 14px 36px 14px 16px;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.calc-booking select.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.calc-booking .calc-select:hover {
  border-color: rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.08);
}
.calc-booking .calc-select option {
  color: var(--gray-900); background: var(--white);
}
.calc-booking .calc-select:focus {
  outline: none; border-color: var(--sky);
  background-color: rgba(14,165,233,0.06);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12), 0 0 20px rgba(14,165,233,0.06);
}
.calc-booking .calc-field .calc-select { padding-left: 42px; }

/* Submit button — fully standalone (no btn-fancy dependency) */
.calc-book-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .75rem; width: 100%;
  margin-top: 24px; padding: 16px 28px;
  font-size: 1rem; font-weight: 700; font-family: var(--font);
  color: #fff; cursor: pointer;
  background: linear-gradient(135deg, var(--sky), #818CF8);
  border: none; border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
}
.calc-book-btn .btn-fancy__icon {
  background: rgba(255,255,255,0.2); color: #fff;
}
.calc-book-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.4);
}
.calc-book-btn:active:not(:disabled) { transform: translateY(0); }
.calc-book-btn:disabled {
  opacity: .6; cursor: not-allowed; transform: none;
  box-shadow: none;
}

/* Error & success states */
.calc-field-error {
  display: none; margin-top: 14px; padding: 12px 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); color: #f87171;
  font-size: .85rem; text-align: center;
}
.calc-field-error.visible { display: block; }
.calc-success {
  display: none; margin-top: 24px; padding: 32px;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(14,165,233,0.08));
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-lg); text-align: center; line-height: 1.6;
}
.calc-success.visible { display: block; }
.calc-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(34,197,94,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.5rem;
}
.calc-success strong {
  color: #4ade80; font-size: 1.2rem;
  display: block; margin-bottom: 8px;
}
.calc-success p { color: rgba(255,255,255,0.7); font-size: .95rem; margin: 0; }

@media (max-width: 576px) {
  .calc-card { padding: 24px; }
  .calc-price { font-size: 2.2rem; }
  .calc-result { padding: 20px; }
  .calc-booking { padding: 20px; }
  .calc-divider { font-size: .7rem; gap: 10px; }
}

/* CTA DIVIDER */
.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px auto 0;
  max-width: 600px;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.cta-divider span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* Animated border angle */
@property --cf-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* CONTACT FORM (inside CTA section) */
.contact-form-wrap {
  max-width: 600px;
  margin: 24px auto 0;
}
.contact-form-card {
  --cf-bg: #1a2540;
  --cf-angle: 0deg;
  position: relative;
  z-index: 0;
  background:
    linear-gradient(var(--cf-bg), var(--cf-bg)) padding-box,
    conic-gradient(from var(--cf-angle),
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.06) 55%,
      var(--sky) 70%,
      #818CF8 80%,
      rgba(255,255,255,0.06) 90%
    ) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  animation: cfBorderSpin 5s linear infinite;
}
/* Glow trail behind the dot */
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: conic-gradient(from var(--cf-angle),
    transparent 55%,
    rgba(14,165,233,0.2) 70%,
    rgba(129,140,248,0.12) 80%,
    transparent 90%
  );
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}
@keyframes cfBorderSpin {
  to { --cf-angle: 360deg; }
}
/* Field wrapper with icon + floating label */
.contact-field {
  position: relative;
}
.contact-field__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: color .25s;
  z-index: 1;
}
.contact-field--textarea .contact-field__icon {
  top: 20px;
  transform: none;
}
/* Label: always on the border line (outlined style) */
.contact-field__label {
  position: absolute;
  left: 36px;
  top: 0;
  transform: translateY(-50%);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  transition: color .2s;
  padding: 0 6px;
  background: #1a2540;
}
.contact-form__input:focus ~ .contact-field__label {
  color: var(--sky);
}
.contact-form__input:focus ~ .contact-field__icon {
  color: var(--sky);
}
/* Input */
.contact-form__input {
  width: 100%;
  padding: 16px 16px 16px 44px;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: #fff;
  background: rgba(255,255,255,0.04);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.contact-form__input::placeholder {
  color: rgba(255,255,255,0.35);
}
.contact-form__input:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.contact-form__input:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(14,165,233,0.04);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
textarea.contact-form__input {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
  padding-top: 16px;
  padding-right: 44px;
}
/* Expand button on textarea */
.cf-expand-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.35);
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.cf-expand-btn:hover {
  background: rgba(14,165,233,0.15);
  border-color: var(--sky);
  color: var(--sky);
}

/* ── Fullscreen Textarea Overlay ── */
.cf-expand {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  flex-direction: column;
  background: #0F172A;
  animation: cfExpandIn .3s ease;
}
.cf-expand.active {
  display: flex;
}
@keyframes cfExpandIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.cf-expand__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cf-expand__title {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
}
.cf-expand__count {
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
}
.cf-expand__textarea {
  flex: 1;
  width: 100%;
  padding: 24px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font);
  line-height: 1.8;
  resize: none;
  caret-color: var(--sky);
}
.cf-expand__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.cf-expand__footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
}
.cf-expand__done {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: linear-gradient(135deg, var(--sky), #818CF8);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
  transition: transform .2s, box-shadow .2s;
}
.cf-expand__done:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.45);
}
.cf-expand__done:active {
  transform: translateY(0);
}
/* DSGVO checkbox — custom styled */
.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  line-height: 1.5;
  padding: 4px 0;
}
.contact-form__check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form__checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  background: rgba(255,255,255,0.03);
  margin-top: 1px;
}
.contact-form__checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s ease;
  margin-top: -2px;
}
.contact-form__check input:checked ~ .contact-form__checkmark {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 0 12px rgba(14,165,233,0.3);
}
.contact-form__check input:checked ~ .contact-form__checkmark::after {
  border-color: #fff;
  transform: rotate(45deg) scale(1);
}
.contact-form__check input:focus-visible ~ .contact-form__checkmark {
  box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
}
.contact-form__check a {
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px dashed rgba(14,165,233,0.4);
  transition: border-color .2s;
}
.contact-form__check a:hover {
  color: var(--sky-light);
  border-color: var(--sky-light);
}
/* DSGVO row — subtle card */
.contact-dsgvo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.contact-dsgvo .contact-form__check {
  margin: 0;
  padding: 0;
}
/* Status message */
.contact-form__msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}
.contact-form__msg.success {
  display: block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
}
.contact-form__msg.error {
  display: block;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  color: #f87171;
}
/* Submit button */
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sky), #818CF8);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.contact-form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.45);
}
.contact-form__submit:active:not(:disabled) {
  transform: translateY(0);
}
.contact-form__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.contact-form__submit i {
  font-size: .9rem;
  transition: transform .2s;
}
.contact-form__submit:hover:not(:disabled) i {
  transform: translateX(3px) rotate(-15deg);
}
/* Inline field errors */
.contact-field__error {
  display: none;
  font-size: .75rem;
  color: #f87171;
  margin-top: 6px;
  padding-left: 44px;
}
.contact-field.has-error .contact-field__error {
  display: block;
  animation: cfShake .35s ease;
}
.contact-field.has-error .contact-form__input {
  border-color: rgba(239,68,68,0.5);
  background: rgba(239,68,68,0.04);
}
.contact-field.has-error .contact-field__icon {
  color: #f87171;
}
@keyframes cfShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}
/* Number input: hide spinner arrows */
input[type="number"].contact-form__input {
  -moz-appearance: textfield;
}
input[type="number"].contact-form__input::-webkit-outer-spin-button,
input[type="number"].contact-form__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Success Popup ── */
.contact-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.contact-popup.active {
  display: flex;
}
.contact-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cfFadeIn .3s ease;
}
.contact-popup__card {
  position: relative;
  background: linear-gradient(160deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl, 24px);
  padding: 48px 40px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 60px rgba(14,165,233,0.08);
  animation: cfPopIn .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes cfFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes cfPopIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
/* Animated check circle */
.contact-popup__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.contact-popup__check {
  width: 80px;
  height: 80px;
}
.contact-popup__circle {
  stroke: #4ade80;
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: cfCircle .6s .2s ease forwards;
}
@keyframes cfCircle {
  to { stroke-dashoffset: 0; }
}
.contact-popup__tick {
  stroke: #4ade80;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: cfTick .4s .6s ease forwards;
}
@keyframes cfTick {
  to { stroke-dashoffset: 0; }
}
.contact-popup__title {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.contact-popup__text {
  color: rgba(255,255,255,0.6);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.contact-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font, 'DM Sans', sans-serif);
  color: #fff;
  background: linear-gradient(135deg, var(--sky, #0EA5E9), #818CF8);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
  transition: transform .2s, box-shadow .2s;
}
.contact-popup__close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.45);
}
.contact-popup__close:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .contact-form-card { padding: 24px 20px; }
  .contact-form__input { font-size: .9rem; }
  .contact-form__check { font-size: .78rem; }
  .cta-divider { margin-top: 32px; }
  .contact-popup__card { padding: 36px 24px 28px; }
  .contact-popup__icon { width: 64px; height: 64px; }
  .contact-popup__check { width: 64px; height: 64px; }
  .contact-popup__title { font-size: 1.35rem; }
}

@media(max-width:767.98px){.rechner-card{flex-direction:row;align-items:center;padding:16px 20px;gap:14px}.rechner-card__icon{width:44px;height:44px;min-width:44px;border-radius:10px;margin-bottom:0;font-size:1.2rem}.rechner-card h3{font-size:1rem;margin-bottom:0;flex-grow:1}.rechner-card>p,.rechner-card__features,.rechner-card__link{display:none!important}.rechner-card::after{content:'\F285';font-family:'bootstrap-icons';color:var(--sky);font-size:1.1rem;flex-shrink:0}.rechner-card:hover{transform:none}}