html {
  overflow-x: clip;
}

body {
  background-color: var(--color-surface);
  font-family: var(--font-body);
  color: var(--color-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.soft-shadow {
  box-shadow: 0 10px 25px -5px rgba(15, 76, 129, 0.05);
}

.nav-link-hover {
  position: relative;
}

.nav-link-hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-link-hover:hover::after,
.nav-link-hover.active::after {
  width: 100%;
}

.hero-pattern {
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%2300355f" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
}

.before-after-slider {
  touch-action: pan-y pinch-zoom;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--color-secondary);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-on-secondary);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--color-secondary) 90%, transparent);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-surface-gray);
  background-color: var(--color-surface);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  transition: background-color 0.2s;
}

.btn-outline:hover {
  background-color: color-mix(in srgb, var(--color-surface-gray) 50%, transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* FAQ accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--color-surface-gray);
  background-color: var(--color-surface-bright);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--color-secondary) 35%, var(--color-surface-gray));
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--color-secondary) 50%, var(--color-surface-gray));
  box-shadow: 0 10px 25px -5px rgba(15, 76, 129, 0.08);
}

.faq-summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

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

.faq-question {
  flex: 1;
  text-align: left;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item[open] .faq-summary {
  color: var(--color-primary-container);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
}

.faq-content-inner p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--color-surface-gray);
  padding-top: 1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
}

/* Promo banner */
.promo-banner {
  background: linear-gradient(135deg, var(--color-primary-container) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--color-secondary) 25%, transparent), transparent 45%);
  pointer-events: none;
}

.promo-banner > div {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  border-radius: 9999px;
  background-color: color-mix(in srgb, var(--color-aqua-mist) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-aqua-mist) 40%, transparent);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-aqua-mist);
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-secondary);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-on-secondary);
  box-shadow: 0 4px 14px rgba(0, 105, 108, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta:hover {
  background-color: color-mix(in srgb, var(--color-secondary) 90%, white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 108, 0.4);
}

/* ─── Scroll-reveal system ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="fade-up"] { transform: translateY(32px); }
[data-reveal="fade-left"] { transform: translateX(-32px); }
[data-reveal="fade-right"] { transform: translateX(32px); }
[data-reveal="scale-up"] { transform: scale(0.94); }
[data-reveal="fade"] { transform: none; }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─── Hero entrance animations ─────────────────────────── */
@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-body-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-cta-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge-animate {
  animation: hero-badge-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-title-animate {
  animation: hero-title-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-body-animate {
  animation: hero-body-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-cta-animate {
  animation: hero-cta-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* ─── Hero Pro (reference layout) ─────────────────────── */
.hero-pro {
  position: relative;
  overflow: hidden;
  padding: var(--hero-header-height, 5rem) 0 0;
  background: linear-gradient(
    to bottom,
    #eef6fc 0%,
    #eef6fc 72%,
    #f4f9fd 88%,
    #ffffff 100%
  );
}

.hero-pro--compact {
  padding: 5.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .hero-pro--compact {
    padding: 7rem 0 3rem;
  }
}

.hero-pro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pro__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(238, 246, 252, 1) 0%,
    rgba(238, 246, 252, 1) 50%,
    rgba(238, 246, 252, 0.68) 58%,
    rgba(238, 246, 252, 0.28) 68%,
    transparent 84%
  );
}

@media (min-width: 1024px) {
  .hero-pro__stage::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 5rem;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, rgba(238, 246, 252, 0.75) 100%);
  }
}

.hero-pro__bubbles span {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.35) 8%, transparent 18%),
    radial-gradient(circle at 70% 75%, rgba(186, 230, 253, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(147, 197, 253, 0.12) 55%, rgba(96, 165, 250, 0.06) 100%);
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.55),
    inset -6px -8px 18px rgba(147, 197, 253, 0.2),
    0 6px 20px rgba(15, 76, 129, 0.07);
  animation: hero-bubble-float 8s ease-in-out infinite;
}

.hero-pro__bubbles span::before {
  content: '';
  position: absolute;
  top: 14%;
  left: 20%;
  width: 26%;
  height: 14%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(-32deg);
  filter: blur(0.5px);
}

.hero-pro__bubbles span::after {
  content: '';
  position: absolute;
  bottom: 24%;
  right: 22%;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.hero-pro__bubbles span:nth-child(1) { width: 88px; left: 4%; top: 14%; }
.hero-pro__bubbles span:nth-child(2) { width: 52px; left: 14%; top: 42%; animation-delay: 1.2s; animation-duration: 7s; }
.hero-pro__bubbles span:nth-child(3) { width: 68px; left: 28%; top: 8%; animation-delay: 0.4s; animation-duration: 9s; }
.hero-pro__bubbles span:nth-child(4) { width: 40px; left: 22%; bottom: 28%; animation-delay: 2s; animation-duration: 6.5s; }
.hero-pro__bubbles span:nth-child(5) { width: 56px; left: 8%; bottom: 16%; animation-delay: 1.6s; animation-duration: 8.5s; }
.hero-pro__bubbles span:nth-child(6) { width: 32px; left: 34%; top: 28%; animation-delay: 2.8s; opacity: 0.85; }

@keyframes hero-bubble-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(6px, -16px) scale(1.03);
  }
  66% {
    transform: translate(-4px, -8px) scale(0.98);
  }
}

.hero-pro__wrap {
  position: relative;
  z-index: 1;
  max-width: var(--spacing-container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-gutter);
}

@media (min-width: 1024px) {
  .hero-pro__wrap {
    min-height: 0;
  }
}

.hero-pro__stage {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-pro__stage {
    min-height: 600px;
  }
}

.hero-pro__main {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-pro__main {
    min-height: 600px;
    padding-bottom: 0;
  }
}

.hero-pro__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .hero-pro__content {
    max-width: 34rem;
    padding-right: 1rem;
  }
}

.hero-pro__title {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-primary);
}

.hero-pro__title-line {
  display: block;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-pro__title-script {
  display: block;
  margin-top: 0.15rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-gold);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
}

.hero-pro__subtitle {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
}

.hero-pro__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .hero-pro__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
  }
}

.hero-pro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 480px) {
  .hero-pro__btn {
    width: auto;
  }
}

.hero-pro__btn:hover {
  transform: translateY(-2px);
}

.hero-pro__btn--call {
  background: var(--color-accent-gold);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}

.hero-pro__btn--call:hover {
  box-shadow: 0 12px 28px rgba(255, 193, 7, 0.45);
}

.hero-pro__btn-icon-end {
  font-size: 1.1rem;
  opacity: 0.85;
}

.hero-pro__btn--whatsapp {
  background: white;
  color: var(--color-primary);
  border: 1.5px solid rgba(15, 76, 129, 0.12);
  box-shadow: 0 6px 18px rgba(15, 76, 129, 0.08);
}

.hero-pro__wa-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #25d366;
}

.hero-pro__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

.hero-pro__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(15, 76, 129, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .hero-pro__dot {
    width: 0.65rem;
    height: 0.65rem;
  }

  .hero-pro__dot--active {
    width: 1.85rem;
  }
}

.hero-pro__dot:hover {
  background: rgba(15, 76, 129, 0.35);
}

.hero-pro__dot--active {
  width: 1.6rem;
  background: var(--color-primary-container);
}

.hero-pro__visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-pro__slides {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-pro__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 18%;
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero-pro__photo--active {
  opacity: 1;
}

.hero-pro__visual-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      #eef6fc 0%,
      #eef6fc 4%,
      rgba(238, 246, 252, 0.9) 10%,
      rgba(238, 246, 252, 0.55) 18%,
      rgba(238, 246, 252, 0.22) 26%,
      transparent 36%
    ),
    linear-gradient(
      to right,
      #eef6fc 0%,
      rgba(238, 246, 252, 0.98) 9%,
      rgba(238, 246, 252, 0.86) 16%,
      rgba(238, 246, 252, 0.52) 26%,
      rgba(238, 246, 252, 0.18) 36%,
      transparent 50%
    );
}

@media (max-width: 1023px) {
  .hero-pro {
    padding-top: calc(4rem + env(safe-area-inset-top, 0px) + 2rem);
  }

  .hero-pro__content {
    padding-top: 0.75rem;
  }

  .hero-pro__main {
    padding-top: 0.25rem;
  }

  .hero-pro__stage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-pro__visual {
    display: block;
    order: 2;
    width: 100%;
    margin: 0;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(15, 76, 129, 0.1);
  }

  .hero-pro__dots {
    justify-content: center;
    margin-top: 1.25rem;
  }

  .hero-pro__slides {
    min-height: clamp(210px, 52vw, 320px);
  }

  .hero-pro__photo {
    object-position: center 15%;
  }

  .hero-pro__visual-fade {
    background: linear-gradient(
      to top,
      rgba(238, 246, 252, 0.95) 0%,
      rgba(238, 246, 252, 0.45) 18%,
      transparent 42%
    );
  }

  .hero-pro__bubbles span:nth-child(n) {
    opacity: 0.35;
    transform: scale(0.65);
  }

  .hero-pro__title-line {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    line-height: 1.15;
  }

  .hero-pro__title-script {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .hero-pro__subtitle {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-pro__features {
    margin-top: 0.75rem;
  }

  .hero-pro__feature {
    padding: 1.1rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-pro {
    padding-top: calc(5rem + env(safe-area-inset-top, 0px) + 2rem);
  }
}

@media (min-width: 1024px) {
  .hero-pro__visual {
    position: absolute;
    top: 0;
    right: calc(50% - 50vw);
    bottom: 0;
    width: 58vw;
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  .hero-pro__slides {
    min-height: 100%;
    height: 100%;
  }

  .hero-pro__photo {
    object-fit: cover;
    object-position: 26% 6%;
  }
}

.hero-pro__features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 2rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(15, 76, 129, 0.1);
  overflow: hidden;
}

.hero-pro__features::before {
  content: '';
  position: absolute;
  inset: 0 0 50% 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(238, 246, 252, 0.98) 0%,
    rgba(238, 246, 252, 0.72) 38%,
    rgba(238, 246, 252, 0.28) 72%,
    transparent 100%
  );
}

.hero-pro__features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
  border-radius: 1rem 0 0 0;
  background: linear-gradient(
    to right,
    rgba(238, 246, 252, 0.55) 0%,
    rgba(238, 246, 252, 0.18) 72%,
    transparent 100%
  );
}

@media (min-width: 768px) {
  .hero-pro__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-pro__features {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -1.25rem;
    margin-bottom: 2.5rem;
  }
}

.hero-pro__feature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid var(--color-surface-gray);
}

@media (min-width: 768px) {
  .hero-pro__feature:nth-child(odd) {
    border-right: 1px solid var(--color-surface-gray);
  }
}

@media (min-width: 1024px) {
  .hero-pro__feature {
    border-bottom: none;
    border-right: 1px solid var(--color-surface-gray);
  }

  .hero-pro__feature:last-child {
    border-right: none;
  }
}

.hero-pro__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 105, 108, 0.08);
  font-size: 1.5rem;
  color: var(--color-primary-container);
}

.hero-pro__feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.hero-pro__feature p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-on-surface-variant);
}

@media (max-width: 639px) {
  .hero-pro__btn-icon-end {
    display: none;
  }
}

.section-title-decorated {
  position: relative;
  display: inline-block;
}

.section-title-decorated::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 9999px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

[data-reveal].revealed .section-title-decorated::after,
.section-title-decorated.revealed::after {
  width: 56px;
}

/* ─── Card hover premium lift ───────────────────────────── */
.card-lift {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15, 76, 129, 0.14);
}

/* ─── WhatsApp float pulse ──────────────────────────────── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

#whatsapp-float {
  animation: wa-pulse 2.5s ease-out infinite;
}

#whatsapp-float:hover {
  animation: none;
}

/* ─── Shimmer CTA button ────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-shimmer,
.promo-cta.btn-shimmer {
  background: linear-gradient(
    105deg,
    var(--color-secondary) 40%,
    color-mix(in srgb, var(--color-secondary) 70%, white) 50%,
    var(--color-secondary) 60%
  );
  background-size: 200% auto;
  animation: shimmer 3.5s linear infinite;
}

.btn-shimmer:hover,
.promo-cta.btn-shimmer:hover {
  animation: none;
  background: color-mix(in srgb, var(--color-secondary) 90%, white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 108, 0.4);
}

/* ─── Floating image decoration ────────────────────────── */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-animate {
  animation: float-y 5s ease-in-out infinite;
}

/* ─── Stat card count-up glow ───────────────────────────── */
@keyframes stat-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.stat-number-animate {
  display: inline-block;
  animation: stat-pop 0.5s ease-out forwards;
}
