/* ==========================================================
   FORMAS DIGITAIS — DESIGN TOKENS
   ========================================================== */
:root {
  --fd-bg: #F8FAFC;
  --fd-text: #0F172A;
  --fd-text-secondary: #6B7280;
  --fd-accent: #2563EB;
  --fd-accent-dark: #1D4ED8;
  --fd-success: #10B981;
  --fd-success-dark: #0EA271;
  --fd-border: #E2E8F0;
  --fd-white: #FFFFFF;
  --fd-danger-soft: #EF4444;

  --fd-font-display: 'Poppins', sans-serif;
  --fd-font-body: 'Inter', sans-serif;

  --fd-radius-sm: 12px;
  --fd-radius-md: 16px;
  --fd-radius-lg: 24px;

  --fd-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --fd-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --fd-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 17.5px;
}
@media (max-width: 767px) {
  html { font-size: 16px; }
}

body {
  font-family: var(--fd-font-body);
  background: var(--fd-bg);
  color: var(--fd-text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

p { line-height: 1.7; }

img { max-width: 100%; display: block; }

a { text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--fd-accent);
  outline-offset: 3px;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
.fd-h1 {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fd-text);
  margin-bottom: 1.25rem;
}

.fd-underline {
  position: relative;
  white-space: nowrap;
}
.fd-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.32em;
  background: rgba(37, 99, 235, 0.18);
  z-index: -1;
  border-radius: 4px;
}

.fd-h2 {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.fd-lead {
  font-size: 1.2rem;
  color: var(--fd-text-secondary);
  max-width: 540px;
  margin-bottom: 2rem;
}

.fd-lead-small {
  font-size: 1.08rem;
  color: var(--fd-text-secondary);
  margin-bottom: 1.75rem;
}

.fd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--fd-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fd-accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.fd-eyebrow-dark {
  color: var(--fd-white);
  background: rgba(255, 255, 255, 0.1);
}

.fd-section-head {
  margin-bottom: 3rem;
}

/* ==========================================================
   NAV
   ========================================================== */
.fd-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fd-border);
}

.fd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.fd-logo {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--fd-text);
}
.fd-logo span { color: var(--fd-success); }

.fd-nav-links { gap: 2rem; }
.fd-nav-links a {
  color: var(--fd-text-secondary);
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}
.fd-nav-links a:hover { color: var(--fd-text); }

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fd-text);
  color: var(--fd-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--fd-radius-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-cta-nav:hover { background: #1e293b; transform: translateY(-1px); color: var(--fd-white); }

/* ==========================================================
   BUTTONS (shared)
   ========================================================== */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--fd-success);
  color: var(--fd-white);
  font-family: var(--fd-font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--fd-radius-sm);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: fd-pulse 2.6s ease-in-out infinite;
}
.btn-cta-primary:hover {
  background: var(--fd-success-dark);
  color: var(--fd-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

@keyframes fd-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.32); }
  50% { box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5); }
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fd-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--fd-radius-sm);
  border: 1.5px solid var(--fd-border);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn-cta-secondary:hover {
  border-color: var(--fd-text);
  background: var(--fd-white);
  color: var(--fd-text);
  transform: translateY(-2px);
}

.btn-cta-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

.fd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ==========================================================
   HERO
   ========================================================== */
.fd-hero {
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.fd-hero-trust { display: flex; flex-direction: column; gap: 0.75rem; }
.fd-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--fd-text-secondary);
}
.fd-trust-item i {
  color: var(--fd-success);
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.fd-phone-stage {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.fd-phone-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(37,99,235,0) 70%);
  filter: blur(10px);
  z-index: 0;
}

.fd-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--fd-radius-md);
}

.fd-race-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--fd-radius-md);
  box-shadow: var(--fd-shadow-md);
  padding: 1.25rem 1.4rem;
  margin: -2.5rem 1rem 0;
}

.fd-race-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fd-text-secondary);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fd-race-row {
  display: grid;
  grid-template-columns: 78px 1fr 42px;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.fd-race-row:last-child { margin-bottom: 0; }

.fd-race-label { font-size: 0.78rem; font-weight: 600; }
.fd-race-slow { color: var(--fd-danger-soft); }
.fd-race-fast { color: var(--fd-success); }

.fd-race-track {
  height: 7px;
  background: var(--fd-border);
  border-radius: 100px;
  overflow: hidden;
}
.fd-race-bar {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fd-race-bar-slow { background: var(--fd-danger-soft); }
.fd-race-bar-fast { background: var(--fd-success); }
.fd-race-track.fd-in-view .fd-race-bar-slow { width: 88%; }
.fd-race-track.fd-in-view .fd-race-bar-fast { width: 8%; }

.fd-race-time { font-size: 0.82rem; font-weight: 700; text-align: right; }
.fd-race-time-slow { color: var(--fd-danger-soft); }
.fd-race-time-fast { color: var(--fd-success); }

/* ==========================================================
   GENERIC SECTION
   ========================================================== */
.fd-section { padding: 6rem 0; }

/* ==========================================================
   DOR DO MERCADO
   ========================================================== */
.fd-dor {
  background: var(--fd-text);
  color: var(--fd-white);
}
.fd-dor .fd-h2 { color: var(--fd-white); }

.fd-pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--fd-radius-md);
  padding: 2.25rem 1.75rem;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease;
}
.fd-pain-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.fd-pain-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, 0.12);
  color: var(--fd-danger-soft);
  border-radius: var(--fd-radius-sm);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.fd-pain-card h3 {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.fd-pain-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  margin: 0;
}

/* ==========================================================
   PILARES
   ========================================================== */
.fd-pillar-card {
  background: var(--fd-white);
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fd-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fd-shadow-md);
  border-color: transparent;
}
.fd-pillar-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--fd-accent);
  border-radius: var(--fd-radius-sm);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.fd-pillar-icon-green { background: rgba(16, 185, 129, 0.1); color: var(--fd-success); }
.fd-pillar-card h3 {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.fd-pillar-card p {
  color: var(--fd-text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* ==========================================================
   PORTFÓLIO
   ========================================================== */
.fd-portfolio-section { background: var(--fd-white); }

.fd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.fd-filter {
  background: var(--fd-bg);
  border: 1px solid var(--fd-border);
  color: var(--fd-text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fd-filter:hover { border-color: var(--fd-accent); color: var(--fd-accent); }
.fd-filter.active { background: var(--fd-text); color: var(--fd-white); border-color: var(--fd-text); }

.fd-portfolio-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.fd-portfolio-item.fd-hidden { display: none; }

.fd-portfolio-card {
  position: relative;
  border-radius: var(--fd-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--fd-shadow-sm);
}
.fd-portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.fd-portfolio-card:hover img { transform: scale(1.06); }

.fd-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--fd-white);
}
.fd-tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.fd-portfolio-overlay h3 {
  font-family: var(--fd-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.fd-portfolio-overlay p { font-size: 0.95rem; margin: 0; opacity: 0.9; }

/* ==========================================================
   NÚMEROS / RESULTADOS
   ========================================================== */
.fd-stats-section { background: var(--fd-white); }

.fd-stat-card {
  background: var(--fd-bg);
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fd-stat-card:hover { transform: translateY(-4px); box-shadow: var(--fd-shadow-md); }

.fd-stat-icon {
  font-size: 1.6rem;
  color: var(--fd-accent);
  margin-bottom: 0.9rem;
  display: inline-block;
}

.fd-stat-value {
  font-family: var(--fd-font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fd-text);
  margin: 0 0 0.25rem;
  line-height: 1.1;
}

.fd-stat-label {
  font-size: 0.9rem;
  color: var(--fd-text-secondary);
  margin: 0;
}

/* ==========================================================
   PROCESSO
   ========================================================== */
.fd-processo { background: var(--fd-text); color: var(--fd-white); }
.fd-processo .fd-h2 { color: var(--fd-white); }

.fd-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.fd-timeline-item:nth-child(-n+3) { grid-column: span 2; }
.fd-timeline-item:nth-child(n+4) { grid-column: span 3; }

@media (max-width: 991px) {
  .fd-timeline { grid-template-columns: repeat(2, 1fr); }
  .fd-timeline-item:nth-child(-n+3),
  .fd-timeline-item:nth-child(n+4) { grid-column: span 1; }
}
@media (max-width: 576px) {
  .fd-timeline { grid-template-columns: 1fr; }
}

.fd-timeline-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--fd-radius-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.fd-timeline-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.fd-timeline-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--fd-success);
  margin-bottom: 0.75rem;
}
.fd-timeline-num {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fd-success);
  margin-bottom: 0.75rem;
}
.fd-timeline-body h3 {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.fd-timeline-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}
.fd-timeline-body p:last-child {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 0;
}

.fd-processo-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================
   PLANOS
   ========================================================== */
.fd-guarantee-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--fd-radius-md);
  padding: 1.25rem 1.75rem;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.fd-guarantee-strip i {
  font-size: 1.6rem;
  color: var(--fd-success);
  flex-shrink: 0;
}
.fd-guarantee-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fd-text);
}

.fd-plan-card {
  background: var(--fd-white);
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fd-plan-card:hover { transform: translateY(-4px); box-shadow: var(--fd-shadow-md); }

.fd-plan-featured {
  background: var(--fd-text);
  border-color: var(--fd-text);
  color: var(--fd-white);
  transform: scale(1.03);
  box-shadow: var(--fd-shadow-lg);
}
.fd-plan-featured:hover { transform: scale(1.03) translateY(-4px); }

.fd-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fd-success);
  color: var(--fd-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.fd-plan-card h3 {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.fd-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}
.fd-plan-price-currency {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fd-text-secondary);
}
.fd-plan-price-value {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  color: var(--fd-text);
  line-height: 1;
}
.fd-plan-price-period {
  font-size: 0.88rem;
  color: var(--fd-text-secondary);
  margin-left: 0.15rem;
}
.fd-plan-featured .fd-plan-price-currency,
.fd-plan-featured .fd-plan-price-value { color: var(--fd-white); }
.fd-plan-featured .fd-plan-price-period { color: rgba(255,255,255,0.6); }
.fd-plan-price-featured .fd-plan-price-value { color: var(--fd-success); }
.fd-plan-desc {
  color: var(--fd-text-secondary);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}
.fd-plan-featured .fd-plan-desc { color: rgba(255,255,255,0.75); }

.fd-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}
.fd-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.fd-plan-list li i { color: var(--fd-success); margin-top: 0.2rem; }

.fd-plan-note {
  font-size: 0.82rem;
  color: var(--fd-text-secondary);
  margin: -1.25rem 0 1.25rem;
}
.fd-plan-featured .fd-plan-note { color: rgba(255,255,255,0.6); }

/* ==========================================================
   FAQ
   ========================================================== */
.fd-faq-section { background: var(--fd-white); }

.fd-accordion .accordion-item {
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.fd-accordion .accordion-button {
  font-family: var(--fd-font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--fd-text);
  background: var(--fd-white);
  padding: 1.25rem 1.5rem;
}
.fd-accordion .accordion-button:not(.collapsed) {
  color: var(--fd-accent);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: none;
}
.fd-accordion .accordion-button:focus { box-shadow: none; }
.fd-accordion .accordion-button::after {
  filter: none;
}
.fd-accordion .accordion-body {
  color: var(--fd-text-secondary);
  font-size: 1.02rem;
  padding: 0 1.5rem 1.5rem;
}

/* ==========================================================
   CTA FINAL
   ========================================================== */
.fd-final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--fd-accent) 0%, #1E40AF 100%);
  color: var(--fd-white);
}
.fd-final-cta h2 {
  font-family: var(--fd-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.fd-final-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 2.25rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.fd-footer {
  background: var(--fd-text);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  font-size: 1rem;
}
.fd-logo-footer { color: var(--fd-white); margin-bottom: 0.5rem; display: inline-block; }
.fd-footer p { margin: 0; }
.fd-footer hr { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.fd-footer-copy { text-align: center; margin: 0; font-size: 0.88rem; opacity: 0.65; }
.fd-footer-whats { color: var(--fd-white); font-weight: 600; }
.fd-footer-whats i { color: var(--fd-success); margin-right: 0.4rem; }

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.fd-float-whats {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: var(--fd-success);
  color: var(--fd-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.4);
  z-index: 998;
  transition: transform 0.2s ease;
}
.fd-float-whats:hover { transform: scale(1.08); color: var(--fd-white); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 767px) {
  .fd-hero { padding: 3rem 0 3rem; }
  .fd-section { padding: 4rem 0; }
  .fd-plan-featured { transform: none; }
  .fd-plan-featured:hover { transform: translateY(-4px); }
  .fd-race-card { margin: -2rem 0.25rem 0; }

  .fd-hero-ctas { flex-direction: column; align-items: stretch; }
  .fd-hero-ctas .btn-cta-primary,
  .fd-hero-ctas .btn-cta-secondary { width: 100%; }

  .fd-guarantee-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.4rem;
    text-align: left;
  }

  .fd-plan-card { padding: 2rem 1.5rem; }

  .fd-race-row { grid-template-columns: 64px 1fr 42px; gap: 0.4rem; }
  .fd-race-label { font-size: 0.7rem; }

  .fd-footer .col-md-4 { text-align: left !important; }
}

@media (max-width: 480px) {
  .fd-logo { font-size: 1.1rem; }
  .fd-h1 { margin-bottom: 1rem; }
  .fd-section-head { margin-bottom: 2.25rem; }
  .fd-final-cta { padding: 4rem 0; }
  .btn-cta-lg { width: 100%; }
  .fd-float-whats { width: 52px; height: 52px; font-size: 1.3rem; bottom: 1.25rem; right: 1.25rem; }
}