/* ============================================================
   LidFlow.ai — CLOSING SECTIONS
   Mid-CTA · Final-CTA · Footer (one continuous dark anchor)
   ============================================================ */

/* ----------------------------------------------------------
   Shared dark-anchor atmosphere
   ---------------------------------------------------------- */
.cta-mid,
.cta-final,
.site-footer {
  background: #0c1c17;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.dark-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.dark-bg .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(82,196,145,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}
.dark-bg .slashes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -15deg,
    transparent 0,
    transparent 40px,
    rgba(26,46,36,0.55) 40px,
    rgba(26,46,36,0.55) 41px
  );
  opacity: 0.5;
}
.dark-bg .mesh-a,
.dark-bg .mesh-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.dark-bg .mesh-a {
  width: 600px; height: 600px;
  top: -10%; right: -10%;
  background: radial-gradient(circle, rgba(82,196,145,0.18) 0%, transparent 60%);
  animation: meshDrift 24s ease-in-out infinite;
}
.dark-bg .mesh-b {
  width: 800px; height: 800px;
  bottom: -20%; left: -15%;
  background: radial-gradient(circle, rgba(61,143,114,0.18) 0%, transparent 60%);
  animation: meshDrift 28s ease-in-out infinite reverse;
}
@keyframes meshDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, 30px) scale(1.08); }
}
.dark-bg .scanline {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(82,196,145,0.7) 50%, transparent 100%);
  animation: scanX 8s linear infinite;
}
@keyframes scanX {
  0%   { left: -2%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}
.dark-bg .particles {
  position: absolute; inset: 0;
}
.dark-bg .particles span {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: #52c491;
  opacity: 0.5;
  animation: particleDrift 18s linear infinite;
}

@keyframes particleDrift {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translate(60px, -120px); opacity: 0; }
}

/* ============================================================
   DEEL 1 — MID-CTA (PILOT)
   ============================================================ */
.cta-mid {
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 100px 24px;
}
.cta-mid-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
}

.dark-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #52c491; font-weight: 700;
}
.dark-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f59e0b;
  position: relative;
}
.dark-eyebrow .pulse::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%;
  background: #f59e0b; opacity: 0.4;
  animation: lfPulse 1.6s ease-out infinite;
}

.cta-mid h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: #fff;
  margin: 20px 0 28px;
  max-width: 600px;
}
.cta-mid h2 .amber { color: #f59e0b; }

.cta-mid .sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: #b8cec6;
  max-width: 540px;
  margin-bottom: 32px;
}

.dark-pill-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}
.dark-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(82,196,145,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(82,196,145,0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #52c491;
}

.dual-cta { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: #52c491;
  color: #0c1c17;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease-out-expo), background .2s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(82,196,145,0.18);
}
.btn-primary-light:hover {
  background: #fff;
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(82,196,145,0.32), 0 0 0 4px rgba(82,196,145,0.12);
}
.btn-primary-light:focus-visible { outline: 2px solid #52c491; outline-offset: 4px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #52c491;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1px solid #52c491;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .25s var(--ease-out-expo);
}
.btn-ghost:hover { background: rgba(82,196,145,0.1); transform: translateY(-1px); }
.btn-ghost:focus-visible { outline: 2px solid #52c491; outline-offset: 4px; }

/* Pilot counter card */
.pilot-card-wrap {
  perspective: 1400px;
  display: flex;
  justify-content: flex-end;
}
.pilot-card {
  width: 100%;
  max-width: 420px;
  background: rgba(21, 40, 32, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(82,196,145,0.3);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(82,196,145,0.08),
    0 0 60px -10px rgba(82,196,145,0.25);
  transform: rotateY(8deg) rotateX(-2deg);
  transform-style: preserve-3d;
  animation: pilotFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes pilotFloat {
  0%, 100% { transform: rotateY(8deg) rotateX(-2deg) translateY(0); }
  50%      { transform: rotateY(8deg) rotateX(-2deg) translateY(-8px); }
}

.pilot-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #52c491; font-weight: 700;
  margin-bottom: 16px;
}
.pilot-counter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 7.4vw, 96px);
  line-height: 1;
  color: #fff;
  margin: 4px 0 8px;
  letter-spacing: -0.02em;
}
.pilot-counter .num {
  display: inline-block;
  text-shadow: 0 0 24px rgba(82,196,145,0.6);
  animation: counterPulse 1.4s ease-in-out infinite;
}
@keyframes counterPulse {
  0%, 100% { text-shadow: 0 0 24px rgba(82,196,145,0.4); }
  50%      { text-shadow: 0 0 36px rgba(82,196,145,0.85); }
}
.pilot-counter .div { color: #b8cec6; font-weight: 700; }
.pilot-sub {
  font-size: 14px;
  color: #b8cec6;
  margin-bottom: 20px;
}
.pilot-bar {
  height: 8px;
  background: #1a2e24;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.pilot-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #52c491 0%, #52c491 70%, #f59e0b 100%);
  border-radius: 4px;
  transition: width 1.2s var(--ease-out-expo);
}
.cta-mid.in-view .pilot-bar-fill { width: var(--pilot-fill, 40%); }
.pilot-callout {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  color: #f59e0b;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.pilot-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(82,196,145,0.15);
}
.pilot-mini-stat {
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.pilot-mini-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: #52c491;
  line-height: 1;
}
.pilot-mini-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8aa39b;
  margin-top: 4px;
}

/* ============================================================
   DEEL 2 — FINAL CTA
   ============================================================ */
.cta-final {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(82,196,145,0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 24px;
  max-width: 880px;
}
.cta-final h2 .word {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.cta-final.in-view h2 .word { opacity: 1; transform: none; }
.cta-final h2 .accent { color: #52c491; }

.cta-final .sub {
  font-size: 19px;
  color: #b8cec6;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.btn-magnetic {
  display: inline-flex; align-items: center; gap: 10px;
  background: #52c491;
  color: #0c1c17;
  padding: 18px 40px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .2s;
  animation: ctaPulse 2.2s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(82,196,145,0.25);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(82,196,145,0.25), 0 0 0 0 rgba(82,196,145,0.5); }
  50%      { box-shadow: 0 12px 32px rgba(82,196,145,0.35), 0 0 0 8px rgba(82,196,145,0.0); }
}
.btn-magnetic:hover { background: #fff; }
.btn-magnetic:focus-visible { outline: 2px solid #52c491; outline-offset: 4px; }

.cta-footnote {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #8aa39b;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-footnote .sep { color: #2d4a3e; }

.wa-bubble {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(82,196,145,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(82,196,145,0.3);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #52c491;
  text-decoration: none;
  transition: transform .25s var(--ease-out-expo), background .2s, box-shadow .25s;
}
.wa-bubble:hover {
  transform: scale(1.04);
  background: rgba(82,196,145,0.16);
  box-shadow: 0 8px 24px rgba(82,196,145,0.2);
}

/* ============================================================
   DEEL 3 — FOOTER
   ============================================================ */
.site-footer {
  padding: 80px 24px 32px;
  border-top: 1px solid rgba(82,196,145,0.12);
}
.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 35% 21% 21% 23%;
  gap: 64px;
}

/* Brand block */
.f-brand .f-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.f-brand .f-logo .lid { color: #fff; }
.f-brand .f-logo .flow { color: #52c491; }
.f-brand .f-logo .ai { color: #b8cec6; }
.f-brand .f-tagline {
  font-size: 15px;
  color: #b8cec6;
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.6;
}
.f-social {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.f-social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(82,196,145,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(82,196,145,0.2);
  color: #52c491;
  transition: background .2s, color .2s, transform .2s;
}
.f-social a:hover {
  background: #52c491;
  color: #0c1c17;
  transform: translateY(-2px);
}
.f-social svg { width: 18px; height: 18px; }

.f-newsletter { margin-top: 32px; }
.f-newsletter-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #52c491;
  margin-bottom: 12px;
}
.f-newsletter-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #52c491;
}
.f-newsletter-form {
  display: flex;
  max-width: 320px;
  height: 44px;
  position: relative;
}
.f-newsletter-form input {
  flex: 1;
  background: rgba(82,196,145,0.06);
  border: 1px solid rgba(82,196,145,0.2);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.f-newsletter-form input::placeholder { color: #5a6b64; }
.f-newsletter-form input:focus {
  border-color: #52c491;
  background: rgba(82,196,145,0.1);
}
.f-newsletter-form button {
  width: 56px;
  background: #52c491;
  color: #0c1c17;
  border: none;
  border-radius: 0 10px 10px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.f-newsletter-form button:hover { background: #fff; }
.f-newsletter-form.ok input { border-color: #52c491; color: #52c491; }
.f-newsletter-form.ok button { background: #52c491; color: #0c1c17; }
.f-newsletter-disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #5a6b64;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Nav columns */
.f-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8cec6;
  margin: 0 0 18px;
}
.f-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.f-col a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.f-col a:hover { color: #52c491; transform: translateX(2px); }

.f-contact-body {
  font-size: 15px;
  color: #fff;
  line-height: 1.9;
}
.f-contact-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #52c491;
  text-decoration: none;
  margin-top: 12px;
  transition: gap .2s;
}
.f-contact-cta:hover { text-decoration: underline; gap: 10px; }

/* Bottom strip */
.f-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(82,196,145,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #5a6b64;
  letter-spacing: 0.04em;
}
.f-bottom-links {
  display: flex; gap: 24px;
  list-style: none; margin: 0; padding: 0;
}
.f-bottom-links a {
  color: #5a6b64;
  text-decoration: none;
  transition: color .2s;
}
.f-bottom-links a:hover { color: #52c491; }

/* ============================================================
   Calendly-style modal
   ============================================================ */
.lf-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(12,28,23,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lf-modal.open { display: flex; animation: modalFade .3s ease-out; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.lf-modal-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modalRise .35s var(--ease-out-expo);
}
@keyframes modalRise { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.lf-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  border-radius: 999px;
  background: #f0f4f1;
  color: #0c1c17;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}
.lf-modal-close:hover { background: #dcefe4; }
.lf-modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d8f72;
  margin-bottom: 12px;
}
.lf-modal-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: #0c1c17;
  margin: 0 0 8px;
}
.lf-modal-card p {
  color: #5a6b64;
  line-height: 1.6;
  margin: 0 0 24px;
}
.lf-cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.lf-cal-day {
  background: #f8faf8;
  border: 1px solid #e2ebe6;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-mono);
}
.lf-cal-day:hover, .lf-cal-day.sel {
  border-color: #52c491;
  background: #dcefe4;
  transform: translateY(-1px);
}
.lf-cal-day .d { font-size: 11px; color: #5a6b64; letter-spacing: 0.1em; text-transform: uppercase; }
.lf-cal-day .n { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #0c1c17; margin-top: 2px; }
.lf-cal-day.sel .d, .lf-cal-day.sel .n { color: #2d7a5e; }
.lf-cal-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.lf-cal-time {
  padding: 10px;
  border: 1px solid #e2ebe6;
  background: #fff;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #0c1c17;
  cursor: pointer;
  transition: all .2s;
}
.lf-cal-time:hover, .lf-cal-time.sel {
  border-color: #52c491;
  background: #dcefe4;
  color: #2d7a5e;
}
.lf-modal-confirm {
  display: block;
  width: 100%;
  background: #52c491;
  color: #0c1c17;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lf-modal-confirm:hover { background: #3d8f72; color: #fff; transform: translateY(-1px); }
.lf-modal-success {
  text-align: center;
  padding: 32px 8px 8px;
}
.lf-modal-success .check {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #dcefe4;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: #2d7a5e;
  animation: checkPop .4s var(--ease-out-expo);
}
@keyframes checkPop { from { transform: scale(0.6); opacity: 0; } to { transform: none; opacity: 1; } }

/* ============================================================
   Reveal stagger
   ============================================================ */
.dx { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.in-view .dx { opacity: 1; transform: none; }
.in-view .dx[data-d="100"] { transition-delay: 100ms; }
.in-view .dx[data-d="200"] { transition-delay: 200ms; }
.in-view .dx[data-d="300"] { transition-delay: 300ms; }
.in-view .dx[data-d="400"] { transition-delay: 400ms; }
.in-view .dx[data-d="500"] { transition-delay: 500ms; }
.in-view .dx[data-d="600"] { transition-delay: 600ms; }
.in-view .dx[data-d="700"] { transition-delay: 700ms; }
.in-view .dx[data-d="800"] { transition-delay: 800ms; }
.in-view .dx[data-d="900"] { transition-delay: 900ms; }
.in-view .dx[data-d="1000"] { transition-delay: 1000ms; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cta-mid-inner { grid-template-columns: 1.1fr 0.9fr; gap: 40px; padding: 0 24px; }
  .pilot-card { transform: rotateY(6deg) rotateX(-1deg); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .f-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .cta-mid { padding: 80px 20px; min-height: auto; }
  .cta-mid-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 4px;
  }
  .pilot-card-wrap { justify-content: center; }
  .pilot-card { transform: none; max-width: 100%; }
  @keyframes pilotFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .cta-final { padding: 80px 20px; min-height: auto; }
  .wa-bubble {
    bottom: 16px; right: 16px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .f-brand { grid-column: auto; }
  .footer-inner { padding: 0 16px; }
  .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .lf-cal-grid, .lf-cal-times { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-card, .dark-bg .mesh-a, .dark-bg .mesh-b,
  .dark-bg .scanline, .dark-bg .particles span,
  .pilot-counter .num, .btn-magnetic { animation: none !important; }
  .dx, .cta-final h2 .word { opacity: 1 !important; transform: none !important; transition: none !important; }
}
