/* ===================================
   BLOB BACKGROUND ANIMATIONS
   =================================== */

@keyframes floatBlob1 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9) rotate(-5deg);
  }
  75% {
    transform: translate(20px, 10px) scale(1.05) rotate(3deg);
  }
}

@keyframes floatBlob2 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-40px, 30px) scale(1.15) rotate(-8deg);
  }
  66% {
    transform: translate(25px, -25px) scale(0.95) rotate(8deg);
  }
}

@keyframes floatBlob3 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  40% {
    transform: translate(35px, 35px) scale(1.08) rotate(6deg);
  }
  80% {
    transform: translate(-30px, -20px) scale(0.92) rotate(-6deg);
  }
}

/* Blob Background Wrapper */
.blob-background {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
  padding: 60px 0;
}

/* Blob 1 - Top Left */
.blob-background::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(35, 207, 178, 0.25) 0%, rgba(125, 226, 212, 0.15) 50%, transparent 70%);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  animation: floatBlob1 20s ease-in-out infinite;
  z-index: 0;
  filter: blur(60px);
  will-change: transform;
}

/* Blob 2 - Bottom Right */
.blob-background::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 222, 212, 0.2) 0%, rgba(184, 237, 231, 0.12) 50%, transparent 70%);
  border-radius: 40% 60% 55% 45% / 55% 50% 50% 45%;
  animation: floatBlob2 25s ease-in-out infinite;
  z-index: 0;
  filter: blur(70px);
  will-change: transform;
}

/* Blob 3 - Center */
.insurance-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 216, 191, 0.15) 0%, rgba(93, 221, 201, 0.08) 50%, transparent 70%);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  animation: floatBlob3 18s ease-in-out infinite;
  z-index: 0;
  filter: blur(50px);
  will-change: transform;
  pointer-events: none;
}

/* ===================================
   HERO SECTION LAYOUT
   =================================== */

.insurance-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.insurance-hero__main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
   CENTERED SINGLE COLUMN: CONTENT
   =================================== */

.insurance-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; /* Reduced from 30px → 24px */
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.insurance-hero__title {
  font-size: 45px;
  font-weight: 700;
  color: #2e2e2e;
  line-height: 1.3;
  margin: 0;
}

.insurance-hero__highlight {
  font-size: 22px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.insurance-hero__price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.insurance-hero__price-prefix {
  font-size: 24px;
  color: #666;
  font-weight: 400;
}

.insurance-hero__price {
  font-size: 48px;
  font-weight: 700;
  color: #22aea1;
  line-height: 1;
}

.insurance-hero__period {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

/* Benefits List with Checkmarks */
.insurance-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insurance-hero__benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 21px;
  color: #333;
  line-height: 1.5;
}

.checkmark {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #24ADA2;
  font-size: 24px;
  font-weight: bold;
}

.checkmark::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #24ADA2;
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.benefit-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.insurance-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f5e6d3;
  color: #8b6f47;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CTA Button */
.insurance-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 18px 48px;
  background: #4fc3cf;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 12px rgba(79, 195, 207, 0.2);
}

.insurance-hero__cta:hover {
  background: #22aea1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 174, 161, 0.4);
}

/* ===================================
   PARTICLES BACKGROUND (Behind Content)
   =================================== */

/* Particles Container - Now at section level */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Individual Particle Dots */
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 174, 161, 0.4), rgba(79, 195, 207, 0.2));
  opacity: 0.6;
  will-change: transform;
}

/* Particle Sizes and Positions */
.particle-1 {
  width: 8px;
  height: 8px;
  top: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.particle-2 {
  width: 12px;
  height: 12px;
  top: 25%;
  right: 15%;
  animation: float 10s ease-in-out infinite 1s;
}

.particle-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 20%;
  animation: float 12s ease-in-out infinite 2s;
}

.particle-4 {
  width: 10px;
  height: 10px;
  bottom: 30%;
  right: 25%;
  animation: float 9s ease-in-out infinite 0.5s;
}

.particle-5 {
  width: 8px;
  height: 8px;
  bottom: 20%;
  left: 15%;
  animation: float 11s ease-in-out infinite 1.5s;
}

.particle-6 {
  width: 14px;
  height: 14px;
  top: 60%;
  right: 10%;
  animation: float 13s ease-in-out infinite 3s;
}

.particle-7 {
  width: 7px;
  height: 7px;
  top: 50%;
  left: 30%;
  animation: float 10s ease-in-out infinite 2.5s;
}

.particle-8 {
  width: 9px;
  height: 9px;
  bottom: 40%;
  right: 35%;
  animation: float 14s ease-in-out infinite 1s;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-15px, 15px) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(15px, 10px) scale(1.05);
    opacity: 0.7;
  }
}

/* Logo Container - Centered Above Content */
.logo-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.insurance-hero__logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(34, 174, 161, 0.15));
  transition: all 0.3s ease;
}

.insurance-hero__logo:hover {
  filter: drop-shadow(0 6px 28px rgba(34, 174, 161, 0.25));
  transform: scale(1.02);
}

/* ===================================
   INLINE AGE/PRICE CALCULATOR (Glassmorphism)
   Flexbox Row Layout: Age Input Left, Price Display Right
   =================================== */

.hero-price-calculator {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 330px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(34, 174, 161, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@supports not (backdrop-filter: blur(12px)) {
  .hero-price-calculator {
    background: rgba(255, 255, 255, 0.85); /* Fallback for older browsers */
  }
}

/* Hover Effect - subtle and elegant */
.hero-price-calculator:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 28px rgba(34, 174, 161, 0.15);
  transform: translateY(-2px);
}

/* Active/Focus State */
.hero-price-calculator:has(input:focus) {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 32px rgba(34, 174, 161, 0.18);
}

.hero-calculator-compact__input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 120px;
  box-sizing: border-box;
}

.hero-calculator-compact__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-calculator-compact__input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-calculator-compact__input {
  width: 65px;
  padding: 8px 12px;
  border: 1px solid rgba(79, 195, 207, 0.3);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: #2e2e2e;
  transition: all 0.25s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-calculator-compact__input:focus {
  outline: none;
  border-color: rgba(34, 174, 161, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 195, 207, 0.12);
  background: white;
}

.hero-calculator-compact__unit {
  font-size: 12px;
  color: #666; /* Already compliant: 5.74:1 ratio */
  font-weight: 500;
}

.hero-calculator-compact__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 140px;
  box-sizing: border-box;
  background: transparent;
  border-radius: 8px;
  text-align: center;
  padding: 4px 0;
}

.hero-calculator-compact__result-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Price Amount Container (Preis + € nebeneinander) */
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

/* Price Value - der eigentliche Preis */
.price-value {
  font-size: 38px;
  font-weight: 700;
  color: #22aea1;
  line-height: 1;
}

/* Currency Symbol */
.price-currency {
  font-size: 28px;
  font-weight: 700;
  color: #22aea1;
  line-height: 1;
}

/* Price Prefix - wird dynamisch via JS entfernt */
.price-prefix {
  font-size: 16px;
  color: #666;
  margin-right: 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  align-self: center;
  font-weight: 400;
}

/* Prefix hidden state (added via JS) */
.price-prefix.hidden {
  opacity: 0;
  width: 0;
  margin: 0;
  overflow: hidden;
}

/* Calculator Actions - Buttons (visible immediately) */
.hero-calculator-compact__actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  width: 100%;
}

.hero-calculator-compact__actions.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-calculator-btn {
  flex: 0 1 auto;
  min-width: 160px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.hero-calculator-btn--details {
  background: rgba(79, 195, 207, 0.12); /* Subtiler */
  color: #22aea1;
  border: none; /* Kein Border für cleanes Design */
}

.hero-calculator-btn--details:hover {
  background: rgba(79, 195, 207, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(79, 195, 207, 0.15);
}

.hero-calculator-btn--cta {
  background: linear-gradient(135deg, #4fc3cf 0%, #22aea1 100%); /* Gradient für Eleganz */
  color: white;
  border: none; /* Kein Border */
}

.hero-calculator-btn--cta:hover {
  background: linear-gradient(135deg, #22aea1 0%, #1a8f85 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 174, 161, 0.25);
}

/* ===================================
   RESPONSIVE: TABLET (769px - 1200px)
   =================================== */

@media (min-width: 769px) and (max-width: 1200px) {
  .blob-background {
    padding: 50px 0;
  }

  .insurance-hero {
    padding: 0 32px;
  }

  .insurance-hero__content {
    max-width: 650px;
    gap: 26px;
  }

  .insurance-hero__title {
    font-size: 40px;
  }

  .insurance-hero__highlight {
    font-size: 20px;
  }

  .logo-container {
    margin-bottom: 18px;
  }

  .insurance-hero__logo {
    max-width: 200px;
  }

  .hero-price-calculator {
    max-width: 330px;
    padding: 12px 14px;
    gap: 12px;
  }

  .hero-calculator-btn {
    padding: 11px 20px;
    font-size: 13px;
    min-width: 140px;
  }

  .insurance-hero__cta {
    align-self: center;
  }
}

/* ===================================
   RESPONSIVE: MOBILE (<768px)
   =================================== */

@media (max-width: 768px) {
  .blob-background {
    padding: 40px 0;
  }

  /* Kleinere Blobs für Mobile */
  .blob-background::before {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -80px;
    opacity: 0.7;
  }

  .blob-background::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    opacity: 0.6;
  }

  .insurance-hero::before {
    width: 300px;
    height: 300px;
    opacity: 0.5;
  }

  .insurance-hero {
    padding: 0 24px;
  }

  .insurance-hero__content {
    gap: 16px; /* Reduced from 20px → 16px on mobile */
    max-width: 100%;
  }

  .logo-container {
    margin-bottom: 8px; /* Reduced from 12px → 8px */
  }

  .insurance-hero__logo {
    max-width: 180px;
  }

  .insurance-hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .insurance-hero__highlight {
    font-size: 17px;
  }

  .insurance-hero__benefit {
    font-size: 18px;
    gap: 12px;
  }

  .checkmark {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  /* Keep calculator side-by-side on mobile */
  .hero-price-calculator {
    flex-direction: row;
    padding: 10px 12px;
    gap: 8px;
    max-width: 260px;
  }

  .hero-calculator-compact__input-group,
  .hero-calculator-compact__result {
    min-width: 0;
    flex: 1;
  }

  .hero-calculator-compact__input {
    width: 55px;
    font-size: 15px;
    padding: 7px 10px;
  }

  .price-value {
    font-size: 28px;
  }

  .price-currency {
    font-size: 22px;
  }

  .price-prefix {
    font-size: 14px;
  }

  .hero-calculator-btn {
    padding: 12px 18px;
    font-size: 13px;
    min-width: 140px;
  }

  /* Reduce particle count on mobile for performance */
  .particle-7,
  .particle-8 {
    display: none;
  }

  .insurance-hero__cta {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    align-self: stretch;
    box-sizing: border-box;
  }
}

/* ===================================
   RESPONSIVE: EXTRA SMALL (<480px)
   =================================== */

@media (max-width: 480px) {
  .blob-background {
    padding: 32px 0;
  }

  .insurance-hero {
    padding: 0 16px;
  }

  .insurance-hero__content {
    gap: 16px;
  }

  .logo-container {
    margin-bottom: 8px;
  }

  .insurance-hero__logo {
    max-width: 140px;
  }

  .insurance-hero__title {
    font-size: 28px;
  }

  .insurance-hero__highlight {
    font-size: 15px;
  }

  .insurance-hero__benefit {
    font-size: 16px;
    gap: 10px;
  }

  .checkmark {
    width: 26px;
    height: 26px;
    font-size: 20px;
  }

  .hero-price-calculator {
    padding: 8px 10px;
    gap: 6px;
    max-width: 260px;
  }

  .hero-calculator-compact__input-group,
  .hero-calculator-compact__result {
    min-width: 0;
    flex: 1;
  }

  .hero-calculator-compact__label {
    font-size: 9px;
  }

  .hero-calculator-compact__input {
    width: 50px;
    font-size: 14px;
    padding: 6px 8px;
  }

  .hero-calculator-compact__result {
    padding: 4px 0;
  }

  .price-value {
    font-size: 24px;
  }

  .price-currency {
    font-size: 18px;
  }

  .price-prefix {
    font-size: 12px;
  }

  .hero-calculator-btn {
    padding: 10px 14px;
    font-size: 11px;
    min-width: 120px;
  }

  /* Further reduce particles on extra small screens */
  .particle-5,
  .particle-6 {
    display: none;
  }

  .insurance-hero__cta {
    padding: 14px 16px;
    font-size: 15px;
  }
}

/* ===================================
   ACCESSIBILITY: REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
  .blob-background::before,
  .blob-background::after,
  .insurance-hero::before {
    animation: none;
  }

  .particle {
    animation: none;
  }

  .insurance-hero__cta,
  .insurance-hero__logo,
  .hero-price-calculator,
  .hero-calculator-btn {
    transition: none;
  }

  .insurance-hero__cta:hover,
  .insurance-hero__logo:hover,
  .hero-price-calculator:hover,
  .hero-calculator-btn:hover {
    transform: none;
  }

  .hero-calculator-compact__actions {
    transition: opacity 0.2s ease;
  }
}

/* ===================================
   HERO CUSTOMER BADGE & TRUST SECTION
   (Integrated from hero-customer-badge.css)
   =================================== */

/* Hero Customer Trust Section - Wrapper for badge + Google review */
.hero-customer-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Customer Badge Component (100.000 Kunden) */
.hero-customer-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(79, 195, 207, 0.3);
    transition: all 0.3s ease;
}

@supports not (backdrop-filter: blur(10px)) {
    .hero-customer-badge {
        background: rgba(255, 255, 255, 0.95);
    }
}

.hero-customer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 161, 0.15);
    border-color: rgba(79, 195, 207, 0.5);
    background: rgba(255, 255, 255, 0.6);
}

.hero-badge-text {
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hero-badge-image {
    width: 45px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Compact Google Review styling when inside hero section */
.hero-customer-trust .google-review-banner {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(79, 195, 207, 0.3);
    border-radius: 12px;
    height: auto;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.hero-customer-trust .google-review-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 174, 161, 0.15);
    border-color: rgba(79, 195, 207, 0.5);
    background: rgba(255, 255, 255, 0.6);
}

/* Desktop */
@media (min-width: 769px) {
    .hero-customer-trust {
        margin-top: 35px;
        gap: 14px;
        max-width: 45%;
    }

    .hero-customer-badge {
        padding: 18px 24px;
        gap: 14px;
    }

    .hero-badge-text {
        font-size: 16px;
    }

    .hero-badge-image {
        width: 50px;
    }

    .hero-customer-trust .google-review-banner {
        padding: 14px 18px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-customer-trust {
        margin-top: 25px;
        gap: 10px;
    }

    .hero-customer-badge {
        padding: 14px 18px;
        gap: 10px;
    }

    .hero-badge-text {
        font-size: 15px;
    }

    .hero-badge-image {
        width: 48px;
    }

    .hero-customer-trust .google-review-banner {
        padding: 12px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-customer-trust {
        margin-top: 20px;
        gap: 10px;
    }

    .hero-customer-badge {
        padding: 12px 16px;
        gap: 10px;
    }

    .hero-badge-text {
        font-size: 13px;
    }

    .hero-badge-image {
        width: 40px;
    }

    .hero-customer-trust .google-review-banner {
        padding: 10px 14px;
    }
}

/* ===================================
   SKELETON LOADER FOR PRICE UPDATES
   =================================== */

/* Price Skeleton Loader */
.price-value.loading {
    min-width: 80px;
    height: 38px;
    display: inline-block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
    color: transparent;
    user-select: none;
}

.price-currency.loading {
    min-width: 30px;
    height: 28px;
    display: inline-block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    color: transparent;
    user-select: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .hero-customer-badge {
        transition: none;
    }

    .hero-customer-badge:hover {
        transform: none;
    }

    .price-value.loading,
    .price-currency.loading {
        animation: none;
        background: #e0e0e0;
    }
}
