/* =============================================
   LIFE DEPORTES — Scroll Reveal & Animations
   ============================================= */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --color-primary: #051B36;
  --color-primary-mid: #0F385F;
  --color-accent: #5B9BD5;
  --color-wa: #25D366;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out-expo);
  --transition-base: 350ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);
}

/* --- Scroll Reveal Base --- */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
}

[data-reveal="up"] {
  transform: translateY(36px);
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays for children */
[data-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger] > *:nth-child(6) { transition-delay: 400ms; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo);
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

/* Manual delay overrides */
[data-delay="100"] { transition-delay: 100ms !important; }
[data-delay="200"] { transition-delay: 200ms !important; }
[data-delay="300"] { transition-delay: 300ms !important; }
[data-delay="400"] { transition-delay: 400ms !important; }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Focus Styles (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Button Enhancements --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98) !important;
}

/* Loading state for submit button */
.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Form Feedback --- */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 12px;
  align-items: center;
  gap: 10px;
}

.form-feedback.show {
  display: flex;
  animation: fadeSlideIn 0.35s var(--ease-out-expo);
}

.form-feedback.success {
  background: #edfaf3;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Improved Input Focus --- */
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.18) !important;
  background: #fff !important;
  outline: none;
}

/* Input valid state */
.quote-form input:not(:placeholder-shown):valid,
.quote-form textarea:not(:placeholder-shown):valid {
  border-color: #22c55e;
}

/* --- Card hover shimmer --- */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}

.cat-card:hover::after {
  opacity: 1;
}

/* --- Testimonial card polish --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* --- Process step arrow connector (desktop) --- */
@media (min-width: 1025px) {
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 90px;
    right: -28px;
    font-size: 1.4rem;
    color: #d0d5de;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s;
  }
}

/* --- Why-us section border fix --- */
@media (max-width: 768px) {
  .why-stat:nth-child(2n+1) {
    border-left: none !important;
  }
  .why-stat:nth-child(2n) {
    border-left: 1px solid #eee;
  }
}

/* --- Smooth page reveal --- */
body {
  animation: bodyReveal 0.4s ease both;
}

@keyframes bodyReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Scroll progress bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-mid));
  z-index: 9999;
  transition: width 100ms linear;
  pointer-events: none;
}

/* --- Back to top button --- */
#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(5, 27, 54, 0.22), 0 1px 4px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  transition: all 0.3s var(--ease-out-back);
  pointer-events: none;
  z-index: 998;
}

#back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

#back-to-top:hover {
  background: #f0f4f8;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px rgba(5, 27, 54, 0.28);
}

#back-to-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 130px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}

/* --- Floating WhatsApp pulse --- */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  60%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* --- Section label accent line --- */
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
}

/* --- Nav active indicator --- */
.nav-link.active {
  color: var(--color-primary) !important;
}

/* --- Image lazy load fade --- */
img[loading="lazy"] {
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* =============================================
   PREMIUM MOBILE MENU
   ============================================= */

/* Hide mobile-only panel header on desktop */
.nav-mobile-header {
  display: none;
}

@media (max-width: 768px) {

  /* --- Hamburger Button --- */
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: 1.5px solid rgba(5, 27, 54, 0.14) !important;
    background: rgba(5, 27, 54, 0.05) !important;
    cursor: pointer !important;
    position: relative !important;
    transition: background 0.25s, border-color 0.25s !important;
  }

  .menu-toggle:hover {
    background: rgba(5, 27, 54, 0.1) !important;
    border-color: rgba(5, 27, 54, 0.22) !important;
  }

  .menu-toggle span {
    width: 20px !important;
    height: 2px !important;
    left: 50% !important;
    transform-origin: center !important;
  }

  .menu-toggle span:nth-child(1) { margin-left: -10px; top: 14px !important; }
  .menu-toggle span:nth-child(2) { margin-left: -10px; top: 50%; transform: translate(0, -50%) !important; }
  .menu-toggle span:nth-child(3) { margin-left: -10px; bottom: 14px !important; }

  .menu-toggle.active span:nth-child(1) {
    top: 50% !important;
    transform: translate(0, -50%) rotate(45deg) !important;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: translate(8px, -50%) !important;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 50% !important;
    transform: translate(0, 50%) rotate(-45deg) !important;
  }

  /* Ocultar hamburguesa cuando el nav está abierto — evita doble X */
  .menu-toggle.active {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* --- Backdrop Overlay --- */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 12, 28, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }

  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* --- Nav Panel (slide from right) --- */
  .nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 82vw !important;
    max-width: 340px !important;
    height: 100dvh !important;
    height: 100vh !important;
    background: #fff !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
    opacity: 1 !important;
    visibility: hidden !important;
    transform: translateX(100%) !important;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.42s !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
    padding: 0 !important;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18) !important;
  }

  .nav.open {
    visibility: visible !important;
    transform: translateX(0) !important;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s !important;
  }

  /* --- Mobile Header inside panel --- */
  .nav-mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 22px 20px 20px !important;
    border-bottom: 1px solid rgba(5, 27, 54, 0.07) !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  /* --- Close Button inside panel --- */
  .nav-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border: 1.5px solid rgba(5, 27, 54, 0.12) !important;
    border-radius: 10px !important;
    background: rgba(5, 27, 54, 0.04) !important;
    color: #051B36 !important;
    cursor: pointer !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
    flex-shrink: 0 !important;
  }

  .nav-close:hover {
    background: rgba(5, 27, 54, 0.09) !important;
    border-color: rgba(5, 27, 54, 0.22) !important;
    transform: scale(1.05) !important;
  }

  /* --- Nav Links --- */
  .nav-link {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: rgba(5, 27, 54, 0.55) !important;
    padding: 15px 24px !important;
    min-height: 52px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-left: 3px solid transparent !important;
    border-bottom: 1px solid rgba(5, 27, 54, 0.06) !important;
    box-sizing: border-box !important;
    transition: color 0.2s, border-left-color 0.2s, background 0.2s !important;
    /* Stagger entrance */
    opacity: 0;
    transform: translateX(18px);
    transition: color 0.2s, border-left-color 0.2s, background 0.2s,
                opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo) !important;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-link:hover {
    color: #051B36 !important;
    border-left-color: var(--color-accent) !important;
    background: rgba(5, 27, 54, 0.04) !important;
  }

  .nav-link.active {
    color: #051B36 !important;
    font-weight: 800 !important;
    border-left-color: #5B9BD5 !important;
    background: rgba(91, 155, 213, 0.07) !important;
  }

  /* Arrow on each link */
  .nav-link::before {
    content: none !important;
  }

  /* Staggered entrance when menu opens */
  .nav.open .nav-link {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .nav.open .nav-mobile-header + .nav-link,
  .nav.open .nav-link:nth-of-type(1) { transition-delay: 0.06s !important; }
  .nav.open .nav-link:nth-of-type(2) { transition-delay: 0.10s !important; }
  .nav.open .nav-link:nth-of-type(3) { transition-delay: 0.14s !important; }
  .nav.open .nav-link:nth-of-type(4) { transition-delay: 0.18s !important; }
  .nav.open .nav-link:nth-of-type(5) { transition-delay: 0.22s !important; }
  .nav.open .nav-link:nth-of-type(6) { transition-delay: 0.26s !important; }
  .nav.open .nav-link:nth-of-type(7) { transition-delay: 0.30s !important; }
  .nav.open .nav-link:nth-of-type(8) { transition-delay: 0.34s !important; }
  .nav.open .nav-link:nth-of-type(9) { transition-delay: 0.38s !important; }

  /* --- Cotiza Ya CTA — shown in mobile panel --- */
  .nav-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(100% - 40px) !important;
    margin: 20px 20px 0 !important;
    padding: 15px 24px !important;
    background: linear-gradient(135deg, #1aad4f 0%, #25D366 100%) !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32) !important;
    transition: filter 0.2s, transform 0.2s !important;
    box-sizing: border-box !important;
  }

  .nav-cta:active { filter: brightness(1.1) !important; transform: scale(0.98) !important; }

  /* --- Contact box — immediately after CTA, no huge gap --- */
  .nav-contact-box {
    display: block !important;
    width: 100% !important;
    padding: 20px 20px 24px !important;
    border-top: 1px solid rgba(5, 27, 54, 0.07) !important;
    margin-top: 20px !important;
    box-sizing: border-box !important;
    /* Extra bottom padding so nothing hides behind the fixed CTA bar */
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* iOS: extra room for browser toolbar */
  @supports (-webkit-touch-callout: none) {
    .nav-contact-box {
      padding-bottom: calc(28px + max(env(safe-area-inset-bottom, 0px), 50px)) !important;
    }
  }

  /* --- Contact title with decorative lines --- */
  .nav-contact-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: rgba(5, 27, 54, 0.35) !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 12px !important;
    white-space: nowrap !important;
  }

  .nav-contact-title-line {
    flex: 1 !important;
    height: 1px !important;
    background: rgba(5, 27, 54, 0.1) !important;
    display: block !important;
  }

  /* --- Phone number cards — stacked vertically with premium treatment --- */
  .nav-contact-numbers {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .nav-phone-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 13px 14px !important;
    background: #f4f6f9 !important;
    border: 1px solid rgba(5, 27, 54, 0.08) !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    color: #051B36 !important;
    box-sizing: border-box !important;
    transition: background 0.2s, border-color 0.2s, transform 0.18s !important;
    min-height: 60px !important;
  }

  .nav-phone-card:hover,
  .nav-phone-card:active {
    background: #eaf7ef !important;
    border-color: rgba(37, 211, 102, 0.35) !important;
    transform: translateX(2px) !important;
  }

  .nav-phone-arrow { display: none !important; }

  .nav-phone-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    background: #25D366 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
    flex-shrink: 0 !important;
  }

  .nav-phone-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    flex: 1 !important;
  }

  .nav-phone-number {
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    color: #051B36 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
  }

  .nav-phone-label {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: rgba(5, 27, 54, 0.5) !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
  }

  .nav-phone-arrow {
    color: rgba(255, 255, 255, 0.3) !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s, color 0.2s !important;
    width: 16px !important;
    height: 16px !important;
  }

  .nav-phone-card:hover .nav-phone-arrow {
    transform: translateX(3px) !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .nav-contact-divider { display: none !important; }
  .nav-phone { display: none !important; }

  /* Cotiza Gratis button hidden in mobile panel (Cotiza Ya above handles this) */
  .nav-contact-cta { display: none !important; }

  /* nav-contact-cta already hidden above */

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .nav {
      transition: visibility 0s !important;
    }
    .nav-link {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
}

/* =============================================
   HERO VIDEO BACKGROUND (desktop only)
   ============================================= */

.hero {
  position: relative; /* needed for absolute children */
}

/* The video element — covers the whole hero */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  pointer-events: none;
  /* Fade in once it starts playing */
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video-bg.ready {
  opacity: 0.55; /* dim the video itself so bright frames don't overpower */
}

/* Two-layer overlay: uniform dark base + directional gradient for text readability */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Base uniform dark layer */
    linear-gradient(
      180deg,
      rgba(5, 27, 54, 0.30) 0%,
      rgba(5, 27, 54, 0.30) 100%
    ),
    /* Directional: heavier left (text) lighter right (product image) */
    linear-gradient(
      90deg,
      rgba(5, 27, 54, 0.80) 0%,
      rgba(5, 27, 54, 0.42) 55%,
      rgba(5, 27, 54, 0.60) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* Lift content above the video */
.hero > .container.hero-inner,
.hero-dots {
  position: relative;
  z-index: 2;
}

/* Hide video on mobile — gradient background stays */
@media (max-width: 768px) {
  .hero-video-bg,
  .hero-video-overlay {
    display: none;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }
}

/* =============================================
   MOBILE VIDEO CAROUSEL
   ============================================= */


/* =============================================
   MOBILE CTA BAR (fixed bottom — mobile only)
   ============================================= */

/* Hidden on desktop */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {

  /* Hide the desktop floating WhatsApp button */
  .whatsapp-float {
    display: none !important;
  }

  /* Push page content up so it isn't hidden behind the bar */
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  /* The fixed bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #051B36;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* iOS safe area: accounts for home indicator + bottom UI chrome */
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    /* Slide up on load */
    animation: mctaSlideUp 0.4s 0.6s var(--ease-out-expo) both;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Hide CTA bar when a form field is active (keyboard open).
     NOTE: We only hide the bar visually — do NOT touch body padding-bottom,
     as changing document height while the iOS keyboard is open corrupts scroll state. */
  body.form-active .mobile-cta-bar {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }

  /* iOS Safari: add extra bottom padding to clear the browser toolbar (~49px) */
  @supports (-webkit-touch-callout: none) {
    body {
      padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-cta-bar {
      padding-bottom: max(env(safe-area-inset-bottom, 0px), 50px);
    }
  }

  @keyframes mctaSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  /* Each button */
  .mcta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 10px;
    min-height: 64px;
    text-decoration: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: filter 0.15s;
  }

  .mcta-btn:active {
    filter: brightness(1.15);
  }

  .mcta-call {
    background: linear-gradient(135deg, #0F385F 0%, #1a4f80 100%);
  }

  .mcta-whatsapp {
    background: linear-gradient(135deg, #1aad4f 0%, #25D366 100%);
  }

  /* Divider line between buttons */
  .mcta-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    align-self: stretch;
  }

  /* Icon */
  .mcta-btn svg {
    flex-shrink: 0;
    opacity: 0.95;
  }

  /* Text block */
  .mcta-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    gap: 1px;
  }

  .mcta-btn small {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    opacity: 0.7;
    font-weight: 600;
  }

  .mcta-btn strong {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
}

/* --- Screen reader only utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Form field wrapper --- */
.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* WhatsApp float: hidden everywhere (mobile has its own CTA bar, desktop doesn't need it) */
.whatsapp-float {
  display: none !important;
}
