/* ══════════════════════════════════════════════════════════
   Lakeland Ford – Top Bidder Conquest Theme
   Matched to React/Tailwind reference design
   ══════════════════════════════════════════════════════════ */

:root {
  /* Ford Blue Palette */
  --ford-blue: hsl(209, 100%, 22%);
  --ford-blue-dark: hsl(209, 100%, 16%);
  --ford-blue-light: hsl(206, 85%, 29%);

  /* Gold Palette */
  --gold: hsl(42, 100%, 55%);
  --gold-dark: hsl(40, 100%, 45%);
  --gold-light: hsl(42, 100%, 70%);

  /* Orange */
  --orange: hsl(19, 100%, 59%);
  --orange-dark: hsl(17, 82%, 50%);

  /* Neutrals */
  --bg: hsl(210, 25%, 97%);
  --card: #FFFFFF;
  --foreground: hsl(210, 50%, 15%);
  --muted: hsl(210, 20%, 94%);
  --muted-fg: hsl(213, 15%, 45%);
  --border: hsl(210, 20%, 88%);
  --off-white: hsl(40, 33%, 96%);
}

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }

/* Override old styles */
.first-nav, .main-nav { display: none !important; }
.jumbotron { display: none !important; }
.container-fluid { padding: 0; }
.footerHeight { display: none !important; }
#form-box-two { margin-top: 0 !important; background: transparent !important; }

/* ── Font Utilities ── */
.font-display { font-family: 'Oswald', sans-serif; }
.font-bebas { font-family: 'Bebas Neue', Impact, sans-serif; }

/* ── Gradient Utilities ── */
.gradient-hero {
  background: linear-gradient(160deg, var(--ford-blue-dark) 0%, var(--ford-blue) 40%, var(--ford-blue-light) 100%);
}
.gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* ── Shadow Utilities ── */
.shadow-gold { box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35); }
.shadow-blue { box-shadow: 0 8px 30px hsla(209, 100%, 22%, 0.3); }

/* ── Glass Card ── */
.glass-card {
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  backdrop-filter: blur(5px);
}

/* ── Animations ── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 hsla(42, 100%, 55%, 0.4); }
  50% { box-shadow: 0 0 20px 6px hsla(42, 100%, 55%, 0.25); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes submitPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@keyframes faqOpen {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 300px; }
}
@keyframes faqClose {
  from { opacity: 1; max-height: 300px; }
  to { opacity: 0; max-height: 0; }
}

/* ── Vegas Prize Animations ── */
@keyframes borderGlow {
  0%, 100% { border-color: hsla(42, 100%, 55%, 0.2); box-shadow: 0 0 8px hsla(42, 100%, 55%, 0), inset 0 0 8px hsla(42, 100%, 55%, 0); }
  50% { border-color: hsla(42, 100%, 55%, 0.7); box-shadow: 0 0 18px hsla(42, 100%, 55%, 0.3), inset 0 0 12px hsla(42, 100%, 55%, 0.1); }
}
@keyframes vegasSpark {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0); opacity: 0; }
}
@keyframes prizeGlow {
  0%, 100% { text-shadow: 0 0 8px hsla(42, 100%, 55%, 0.4), 0 0 2px hsla(42, 100%, 55%, 0.2); filter: drop-shadow(0 0 6px hsla(42, 100%, 55%, 0.3)); }
  50% { text-shadow: 0 0 20px hsla(42, 100%, 55%, 0.8), 0 0 40px hsla(42, 100%, 55%, 0.4), 0 0 60px hsla(19, 100%, 59%, 0.2); filter: drop-shadow(0 0 14px hsla(42, 100%, 55%, 0.6)); }
}
@keyframes lightSweep {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(300%) rotate(25deg); }
}
@keyframes starBurst {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  15% { opacity: 1; transform: scale(1) rotate(20deg); }
  30% { opacity: 0; transform: scale(0.3) rotate(40deg); }
}
@keyframes sparkFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-12px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-24px) scale(0.4); opacity: 0; }
}

/* ── Hero Background Effects ── */
@keyframes auroraShift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
  33% { transform: translate(60px, -40px) rotate(120deg) scale(1.2); opacity: 0.7; }
  66% { transform: translate(-40px, 30px) rotate(240deg) scale(0.9); opacity: 0.4; }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); opacity: 0.5; }
}
@keyframes driftOrb {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(80px, -50px); }
  50% { transform: translate(-30px, -80px); }
  75% { transform: translate(-60px, 20px); }
}
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.15; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.05; }
  100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.15; }
}
@keyframes scanLine {
  0% { top: -5%; }
  100% { top: 105%; }
}
@keyframes meshMove {
  0% {
    background:
      radial-gradient(ellipse 700px 500px at 15% 75%, hsla(19, 100%, 59%, 0.18) 0%, transparent 50%),
      radial-gradient(ellipse 600px 600px at 80% 25%, hsla(42, 100%, 55%, 0.2) 0%, transparent 50%),
      radial-gradient(ellipse 500px 450px at 45% 55%, hsla(206, 85%, 40%, 0.14) 0%, transparent 60%);
  }
  50% {
    background:
      radial-gradient(ellipse 700px 500px at 35% 55%, hsla(19, 100%, 59%, 0.14) 0%, transparent 50%),
      radial-gradient(ellipse 600px 600px at 60% 45%, hsla(42, 100%, 55%, 0.22) 0%, transparent 50%),
      radial-gradient(ellipse 500px 450px at 70% 35%, hsla(206, 85%, 40%, 0.16) 0%, transparent 60%);
  }
  100% {
    background:
      radial-gradient(ellipse 700px 500px at 25% 65%, hsla(19, 100%, 59%, 0.16) 0%, transparent 50%),
      radial-gradient(ellipse 600px 600px at 75% 35%, hsla(42, 100%, 55%, 0.2) 0%, transparent 50%),
      radial-gradient(ellipse 500px 450px at 40% 45%, hsla(206, 85%, 40%, 0.12) 0%, transparent 60%);
  }
}
@keyframes stripeScroll {
  0% { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, hsla(0, 0%, 100%, 0.15) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

/* ══════════════════════════════════════════
   1. ANNOUNCEMENT BAR (Marquee)
   ══════════════════════════════════════════ */
.announcement-bar {
  background: var(--ford-blue-dark);
  color: white;
  padding: 8px 16px;
  overflow: hidden;
}
.announcement-bar .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.announcement-bar .marquee-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}
.announcement-bar .marquee-star {
  color: var(--orange);
  margin: 0 8px;
}

/* ══════════════════════════════════════════
   2. STICKY HEADER
   ══════════════════════════════════════════ */
.conquest-header {
  background: var(--card);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 56px;
}
.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}
.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; gap: 12px; }
.header-center {
  flex-shrink: 0;
}
.header-ford-logo { height: 28px; width: auto; }
.header-tb-logo { height: 28px; width: auto; }
.header-dealer-logo { height: 24px; width: auto; }
.header-cta {
  display: none;
}

/* ══════════════════════════════════════════
   3. HERO SECTION
   ══════════════════════════════════════════ */
.conquest-hero {
  background: linear-gradient(160deg, var(--ford-blue-dark) 0%, var(--ford-blue) 40%, var(--ford-blue-light) 100%);
  color: white;
  padding: 40px 16px 48px;
  position: relative;
  overflow: hidden;
}

/* ── Hero Background Texture ── */
/* Soft gold glow - top right */
.conquest-hero .hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, hsla(42, 100%, 55%, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
/* Gradient mesh texture overlay - animated gradient positions */
.conquest-hero .hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at var(--gx1, 20%) var(--gy1, 70%), hsla(19, 100%, 59%, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 500px 500px at var(--gx2, 80%) var(--gy2, 30%), hsla(42, 100%, 55%, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 400px 350px at var(--gx3, 50%) var(--gy3, 50%), hsla(206, 85%, 40%, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: meshMove 30s ease-in-out infinite alternate;
}
/* Diagonal stripe pattern - scrolling */
.conquest-hero .hero-stripes {
  position: absolute;
  inset: 0;
  background-size: 56px 56px;
  background-image:
    repeating-linear-gradient(
      135deg,
      hsla(0, 0%, 100%, 0.035) 0px,
      hsla(0, 0%, 100%, 0.035) 1px,
      transparent 1px,
      transparent 28px
    );
  pointer-events: none;
  animation: stripeScroll 20s linear infinite;
}

.conquest-hero .hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--gold), var(--orange), var(--gold));
  z-index: 1;
}
.hero-content {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-right {
  width: 100%;
}

/* Event Badge */
.event-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

/* March Madness Logo */
@keyframes logoPop {
  0% { transform: scale(0.3); opacity: 0; filter: blur(8px); }
  60% { transform: scale(1.1); opacity: 1; filter: blur(0); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.hero-logo {
  width: 100%;
  max-width: 380px;
  margin-bottom: 16px;
  animation: logoPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Hero H1 */
.conquest-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
  color: white;
}
.conquest-hero h1 .accent { color: var(--gold); }

/* Prize Banner */
.prize-banner {
  background: var(--ford-blue-dark);
  border: 2px solid hsla(42, 100%, 55%, 0.3);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 10px;
  color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 30px hsla(209, 100%, 22%, 0.3);
  animation: borderGlow 3s ease-in-out infinite;
}
.prize-banner .glow {
  position: absolute;
  top: -50%;
  right: -15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, hsla(42, 100%, 55%, 0.2) 0%, transparent 70%);
}
/* Second glow - left side */
.prize-banner .glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -400%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, hsla(19, 100%, 59%, 0.1) 0%, transparent 70%);
}
.prize-banner .label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsla(42, 100%, 55%, 0.7);
  margin-bottom: 6px;
  position: relative;
}
.prize-banner .amount {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  position: relative;
  animation: prizeGlow 3s ease-in-out infinite;
  letter-spacing: 3px;
}
.prize-banner .sub {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: hsla(0, 0%, 100%, 0.7);
  position: relative;
}

/* Prize Grid */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
/* ── Vegas Prize Cards ── */
.prize-card {
  background: hsla(209, 100%, 16%, 0.7);
  border: 2px solid hsla(42, 100%, 55%, 0.25);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: borderGlow 2.5s ease-in-out infinite;
}
/* Stagger the glow animation per card */
.prize-card:nth-child(1) { animation-delay: 0s; }
.prize-card:nth-child(2) { animation-delay: 0.6s; }
.prize-card:nth-child(3) { animation-delay: 1.2s; }
.prize-card:nth-child(4) { animation-delay: 1.8s; }

.prize-card:hover {
  border-color: hsla(42, 100%, 55%, 0.8);
  box-shadow: 0 0 24px hsla(42, 100%, 55%, 0.4), inset 0 0 16px hsla(42, 100%, 55%, 0.15);
}

/* Top radial glow */
.prize-card .card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, hsla(42, 100%, 55%, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Light sweep across card */
.prize-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, hsla(0, 0%, 100%, 0.12) 50%, transparent 100%);
  animation: lightSweep 3s ease-in-out infinite;
  pointer-events: none;
}
.prize-card:nth-child(1)::before { animation-delay: 0s; }
.prize-card:nth-child(2)::before { animation-delay: 0.8s; }
.prize-card:nth-child(3)::before { animation-delay: 1.6s; }
.prize-card:nth-child(4)::before { animation-delay: 2.4s; }

/* Spark dots that float up from the amount */
.prize-card::after {
  content: '✦';
  position: absolute;
  font-size: 10px;
  color: var(--gold);
  top: 30%;
  left: 50%;
  animation: sparkFloat 2s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}
.prize-card:nth-child(1)::after { content: '✦'; animation-delay: 0.3s; left: 30%; }
.prize-card:nth-child(2)::after { content: '✧'; animation-delay: 1.1s; left: 65%; }
.prize-card:nth-child(3)::after { content: '✦'; animation-delay: 0.7s; left: 40%; }
.prize-card:nth-child(4)::after { content: '✧'; animation-delay: 1.5s; left: 55%; }

.prize-card .emoji { font-size: 14px; margin-bottom: 4px; position: relative; z-index: 1; }

.prize-card .prize-amt {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 24px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  animation: prizeGlow 2.5s ease-in-out infinite;
}
.prize-card:nth-child(1) .prize-amt { animation-delay: 0s; }
.prize-card:nth-child(2) .prize-amt { animation-delay: 0.6s; }
.prize-card:nth-child(3) .prize-amt { animation-delay: 1.2s; }
.prize-card:nth-child(4) .prize-amt { animation-delay: 1.8s; }

.prize-card .prize-desc {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: hsla(0, 0%, 100%, 0.5);
  font-weight: 700;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* Spark burst - corner accent lights */
.prize-card .spark-burst {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.prize-card .spark-burst::before,
.prize-card .spark-burst::after {
  content: '✦';
  position: absolute;
  font-size: 8px;
  color: var(--gold);
  opacity: 0;
}
.prize-card .spark-burst::before {
  top: 8px;
  right: 10px;
  animation: starBurst 3s ease-in-out infinite;
}
.prize-card .spark-burst::after {
  bottom: 10px;
  left: 10px;
  animation: starBurst 3s ease-in-out infinite 1.5s;
}
.prize-card:nth-child(2) .spark-burst::before { animation-delay: 0.8s; }
.prize-card:nth-child(2) .spark-burst::after { animation-delay: 2.3s; }
.prize-card:nth-child(3) .spark-burst::before { animation-delay: 1.6s; }
.prize-card:nth-child(3) .spark-burst::after { animation-delay: 0.4s; }
.prize-card:nth-child(4) .spark-burst::before { animation-delay: 2.2s; }
.prize-card:nth-child(4) .spark-burst::after { animation-delay: 1s; }

/* JS-emitted spark particles */
@keyframes vegasSparkFly {
  0% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.2); opacity: 0; }
}
.vegas-spark {
  position: absolute;
  font-size: 10px;
  pointer-events: none;
  z-index: 2;
  animation: vegasSparkFly 1.2s ease-out forwards;
  text-shadow: 0 0 6px currentColor;
}

/* Countdown Timer */
.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.countdown-item {
  position: relative;
  background: hsla(209, 100%, 16%, 0.8);
  border: 2px solid hsla(42, 100%, 55%, 0.3);
  border-radius: 12px;
  padding: 12px 12px;
  text-align: center;
  min-width: 60px;
  overflow: hidden;
}
.countdown-item .inner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, hsla(42, 100%, 55%, 0.15) 0%, transparent 70%);
}
.countdown-item .num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 40px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  text-shadow: 0 2px 20px hsla(42, 100%, 55%, 0.4);
  filter: drop-shadow(0 0 12px hsla(42, 100%, 55%, 0.5));
}
.countdown-item .label {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsla(42, 100%, 55%, 0.6);
  font-weight: 700;
  position: relative;
}

/* ══════════════════════════════════════════
   FORM CARD
   ══════════════════════════════════════════ */
.form-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  color: var(--foreground);
  box-shadow: 0 30px 80px rgba(0, 59, 115, 0.3);
  border-top: 4px solid var(--gold);
}
.form-card .form-heading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 2px;
  color: var(--ford-blue);
  font-weight: 800;
}
.form-card .form-heading .step-label {
  color: var(--gold-dark);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}
.form-subtitle {
  text-align: center;
  font-size: 12px;
  color: var(--muted-fg);
  margin-bottom: 12px;
  font-weight: 400;
}

/* Skip vehicle checkbox */
.skip-vehicle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted-fg);
  cursor: pointer;
  margin-bottom: 4px;
}
.skip-vehicle input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--ford-blue);
  flex-shrink: 0;
}
.vehicle-fields { transition: all 0.25s ease; }
.vehicle-fields.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
}
.vehicle-fields.visible {
  max-height: 600px;
  opacity: 1;
}

/* Form fields */
.form-card .form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.form-card .conquest-field { flex: 1; }
.form-card .conquest-field.full-width { flex: 1 1 100%; }

.form-card .form-control {
  width: 100%;
  border: 2px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 12px 12px !important;
  font-size: 12px !important;
  color: var(--foreground) !important;
  background: hsla(210, 20%, 94%, 0.3) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
  height: auto !important;
  box-shadow: none !important;
  appearance: auto;
  -webkit-appearance: auto;
}
.form-card .form-control:focus {
  border-color: var(--ford-blue) !important;
  outline: none;
}
.form-card .form-control:hover {
  border-color: var(--ford-blue);
}
.form-card .form-control::placeholder {
  color: hsla(213, 15%, 45%, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0 12px;
}

/* Phone inputs */
.form-card .phone-group {
  display: flex;
  gap: 6px;
  flex: 1;
}
.form-card .phone-group .form-control { text-align: center; }

/* SMS Opt-in */
.sms-optin {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  font-size: 10px;
  color: var(--muted-fg);
  line-height: 1.5;
  background: hsla(210, 20%, 94%, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.sms-optin input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--ford-blue);
  flex-shrink: 0;
}
.sms-optin a { color: var(--ford-blue); text-decoration: underline; }

/* Submit Button */
.conquest-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--ford-blue-dark) !important;
  border: none !important;
  padding: 14px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif !important;
}
.conquest-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(42, 100%, 55%, 0.5);
}
.conquest-submit.ready {
  animation: submitPulse 0.8s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   4. OFFERS STRIP
   ══════════════════════════════════════════ */
.offers-strip {
  background: var(--ford-blue-dark);
  border-bottom: 4px solid var(--gold);
}
.offers-strip .strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.offers-strip .strip-item {
  padding: 20px 12px;
  text-align: center;
  color: white;
  border-right: 1px solid hsla(0, 0%, 100%, 0.08);
}
.offers-strip .strip-item:last-child { border-right: none; }
.offers-strip .strip-item:nth-child(2) { border-right: none; }
.offers-strip .icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
}
.offers-strip .icon-box i {
  font-size: 18px;
  color: var(--ford-blue-dark);
}
.offers-strip .headline {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 2px;
}
.offers-strip .detail {
  font-size: 9px;
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   5. HOW IT WORKS
   ══════════════════════════════════════════ */
.how-it-works {
  padding: 48px 16px;
  background: hsla(210, 20%, 94%, 0.4);
}
.how-it-works .inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ford-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--muted-fg);
  margin-bottom: 32px;
  font-weight: 400;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.step-card {
  flex: 1;
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  border-top: 3px solid var(--gold);
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, var(--ford-blue), var(--ford-blue-light));
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 8px 30px hsla(209, 100%, 22%, 0.3);
}
.step-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ford-blue);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   6. WHY TOP BIDDER
   ══════════════════════════════════════════ */
.why-topbidder {
  padding: 48px 16px;
  background: hsla(210, 20%, 94%, 0.3);
}
.why-topbidder .inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.why-topbidder .dealer-logo {
  height: 32px;
  margin: 0 auto 16px;
  opacity: 0.8;
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pillar-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  text-align: center;
}
.pillar-card .pillar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
}
.pillar-card .pillar-icon i {
  font-size: 22px;
  color: var(--ford-blue-dark);
}
.pillar-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ford-blue);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   7. PRE-OWNED SECTION
   ══════════════════════════════════════════ */
.preowned-section {
  background: linear-gradient(to bottom right, var(--ford-blue), var(--ford-blue-dark));
  color: white;
  padding: 48px 16px;
  position: relative;
  overflow: hidden;
}
.preowned-section .bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(circle at right, hsla(42, 100%, 55%, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.preowned-section .inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
}
.preowned-section .section-label { color: var(--gold); }
.preowned-section .section-title { color: white; }

.perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
  width: 100%;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 12px 12px;
  transition: background 0.2s;
}
.perk-item:hover { background: hsla(0, 0%, 100%, 0.12); }
.perk-item .perk-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-item .perk-icon i { font-size: 14px; color: var(--ford-blue-dark); }
.perk-item span { font-size: 13px; font-weight: 600; color: white; }

.browse-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ford-blue-dark);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.browse-btn:hover { transform: translateY(-2px); text-decoration: none; color: var(--ford-blue-dark); }

.stats-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.stat-box {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  transition: transform 0.2s;
}
.stat-box:hover { transform: scale(1.05); }
.stat-box .stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-box .stat-label {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: hsla(0, 0%, 100%, 0.5);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   8. TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
  padding: 48px 16px;
}
.testimonials .inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

/* Rating badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ford-blue);
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px hsla(209, 100%, 22%, 0.3);
}
.rating-badge .rating-num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.rating-badge .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.rating-badge .review-count {
  font-size: 12px;
  color: hsla(0, 0%, 100%, 0.7);
  font-weight: 600;
}

/* Testimonial cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
.testimonial-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
}
.testimonial-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.testimonial-card .author {
  font-size: 13px;
  color: var(--ford-blue);
  font-weight: 700;
}
.testimonial-card .author span {
  color: var(--muted-fg);
  font-weight: 400;
}
.google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--ford-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid hsla(209, 100%, 22%, 0.15);
  border-radius: 8px;
  transition: all 0.2s;
}
.google-link:hover {
  background: hsla(209, 100%, 22%, 0.04);
  border-color: var(--ford-blue);
  color: var(--ford-blue);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   9. FAQ (Accordion)
   ══════════════════════════════════════════ */
.conquest-faq {
  padding: 48px 16px;
  background: hsla(210, 20%, 94%, 0.4);
}
.conquest-faq .inner {
  max-width: 768px;
  margin: 0 auto;
}
.conquest-faq .section-label,
.conquest-faq .section-title,
.conquest-faq .section-subtitle { text-align: center; }

.faq-list { margin-top: 8px; }
.faq-item {
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07); }
.faq-question {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-question .q-badge {
  width: 20px;
  height: 20px;
  background: linear-gradient(to bottom right, var(--ford-blue), var(--ford-blue-light));
  color: var(--gold);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-question h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ford-blue);
  flex: 1;
  margin: 0;
}
.faq-question .toggle {
  color: hsla(209, 100%, 22%, 0.5);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}
.faq-answer p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
  padding: 0 16px 16px 46px;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   10. BOTTOM CTA
   ══════════════════════════════════════════ */
.bottom-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 48px 16px;
  text-align: center;
  color: var(--ford-blue-dark);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.bottom-cta .cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, hsla(0, 0%, 100%, 0.2) 0%, transparent 50%);
}
.bottom-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  color: var(--ford-blue-dark);
}
.bottom-cta p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
  color: var(--ford-blue-dark);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-cta-btn {
  display: inline-block;
  background: var(--ford-blue);
  color: var(--gold);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 30px hsla(209, 100%, 22%, 0.3);
  transition: transform 0.2s;
  position: relative;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  animation: pulseGlow 2s ease-in-out infinite;
}
.bottom-cta-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   11. DEALER TRUST SECTION
   ══════════════════════════════════════════ */
.dealer-trust {
  background: hsla(210, 20%, 94%, 0.5);
  padding: 48px 16px;
  border-top: 1px solid hsla(210, 20%, 88%, 0.6);
}
.dealer-trust .inner {
  max-width: 1024px;
  margin: 0 auto;
}
.dealer-trust .section-label,
.dealer-trust .section-title { text-align: center; }
.dealer-trust .section-title { margin-bottom: 32px; }

.dealer-trust .trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* Contact info */
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-item .ci-icon {
  width: 40px;
  height: 40px;
  background: var(--ford-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .ci-icon i { color: var(--gold); font-size: 18px; }
.contact-item .ci-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ford-blue);
  margin-bottom: 2px;
}
.contact-item .ci-text {
  font-size: 13px;
  color: var(--muted-fg);
}
.contact-item .ci-link {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  margin-top: 2px;
  display: inline-block;
}
.contact-item .ci-link:hover { text-decoration: underline; }

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trust-badge {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  transition: transform 0.2s;
}
.trust-badge:hover { transform: translateY(-3px); }
.trust-badge i {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.trust-badge .badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ford-blue);
}
.trust-badge .badge-sub {
  font-size: 11px;
  color: var(--muted-fg);
}
.trust-badge.full-width {
  grid-column: span 2;
}
.trust-badge .stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.trust-badge .stars-row .big-num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.trust-badge .stars-row .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   12. FOOTER
   ══════════════════════════════════════════ */
.conquest-footer {
  background: var(--ford-blue-dark);
  color: hsla(0, 0%, 100%, 0.4);
  padding: 32px 16px;
  text-align: center;
  padding-bottom: 80px;
}
.conquest-footer .brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.3;
}
.conquest-footer p {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.4);
}
.conquest-footer .disclaimer {
  margin-top: 8px;
  font-size: 9px;
  opacity: 0.5;
  padding: 0 8px;
}
.conquest-footer .footer-links {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.conquest-footer .footer-links a {
  color: hsla(0, 0%, 100%, 0.4);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s;
}
.conquest-footer .footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   13. FLOATING MOBILE CTA
   ══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ford-blue-dark);
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 -4px 20px hsla(42, 100%, 55%, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: none;
  width: 100%;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.floating-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, hsla(0, 0%, 100%, 0.15) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════════ */
.confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.thankyou-hero {
  background: linear-gradient(160deg, var(--ford-blue-dark) 0%, var(--ford-blue) 40%, var(--ford-blue-light) 100%);
  color: white;
  padding: 60px 16px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-hero .hero-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, hsla(42, 100%, 55%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.thankyou-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.thankyou-hero .ty-logo {
  max-width: 240px;
  width: 100%;
  margin-bottom: 20px;
}
.thankyou-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: white;
}
.thankyou-hero h1 .accent { color: var(--gold); }
.thankyou-hero .subtitle {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  color: white;
}

/* Prize Code Card */
.prize-code-section {
  padding: 48px 16px;
  background: var(--bg);
}
.prize-code-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 59, 115, 0.15);
}
.prize-code-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ford-blue-dark);
  padding: 16px 24px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.prize-code-body {
  padding: 28px 24px;
  text-align: center;
}
.prize-code-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.prize-code-label {
  font-size: 13px;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.prize-code-value {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 56px;
  color: var(--ford-blue);
  letter-spacing: 10px;
  line-height: 1;
  margin-bottom: 16px;
  padding: 16px 28px;
  background: var(--bg);
  border-radius: 10px;
  border: 2px dashed var(--border);
  display: inline-block;
}
.prize-code-copy {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ford-blue-dark);
  border: none;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
}
.prize-code-copy:hover { transform: translateY(-2px); }
.prize-code-desc {
  font-size: 14px;
  color: var(--muted-fg);
  margin-top: 16px;
  line-height: 1.5;
}
.prize-code-footer {
  background: var(--bg);
  padding: 14px 24px;
  text-align: center;
  font-size: 11px;
  color: var(--muted-fg);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* Next Steps */
.next-steps {
  padding: 48px 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.next-steps-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.next-step-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid hsla(210, 20%, 88%, 0.6);
  border-top: 3px solid var(--gold);
}
.next-step-card .step-icon { font-size: 32px; margin-bottom: 12px; }
.next-step-card h3 { font-size: 16px; font-weight: 800; color: var(--ford-blue); margin-bottom: 8px; }
.next-step-card p { font-size: 13px; color: var(--muted-fg); line-height: 1.5; }

/* ══════════════════════════════════════════
   RESPONSIVE: SM (640px+)
   ══════════════════════════════════════════ */
@media (min-width: 640px) {
  .conquest-header { padding: 0 24px; height: 64px; }
  .header-ford-logo { height: 32px; }
  .header-tb-logo { height: 32px; }
  .header-dealer-logo { height: 28px; }

  .conquest-hero { padding: 64px 24px 72px; }
  .conquest-hero h1 { font-size: 30px; }
  .hero-logo { max-width: 480px; }
  .event-badge { font-size: 11px; padding: 4px 14px; }

  .prize-banner { padding: 24px 28px; }
  .prize-banner .label { font-size: 12px; letter-spacing: 4px; }
  .prize-banner .amount { font-size: 72px; letter-spacing: 4px; }
  .prize-banner .sub { font-size: 15px; }

  .prize-grid { grid-template-columns: repeat(4, 1fr); }
  .prize-card { padding: 16px 8px; }
  .prize-card .prize-amt { font-size: 30px; }
  .prize-card .prize-desc { font-size: 9px; }

  .countdown { gap: 12px; }
  .countdown-item { min-width: 72px; padding: 12px 16px; }
  .countdown-item .num { font-size: 48px; }
  .countdown-item .label { font-size: 9px; }

  .form-card { padding: 28px; }
  .form-card .form-heading { font-size: 18px; }
  .form-card .form-control { font-size: 13px !important; padding: 14px 16px !important; }
  .conquest-submit { padding: 16px !important; font-size: 15px !important; }

  .offers-strip .strip-item { padding: 28px 20px; }
  .offers-strip .icon-box { width: 48px; height: 48px; }
  .offers-strip .icon-box i { font-size: 22px; }
  .offers-strip .headline { font-size: 20px; }
  .offers-strip .detail { font-size: 11px; }

  .how-it-works { padding: 80px 24px; }
  .step-card { padding: 36px; padding-top: 32px; }
  .step-num { width: 48px; height: 48px; font-size: 20px; margin-bottom: 20px; }
  .step-card h3 { font-size: 17px; }

  .why-topbidder { padding: 80px 24px; }
  .why-topbidder .dealer-logo { height: 40px; }
  .pillar-card { padding: 32px; }

  .preowned-section { padding: 80px 24px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .perk-item .perk-icon { width: 36px; height: 36px; }
  .perk-item .perk-icon i { font-size: 18px; }
  .stat-box .stat-num { font-size: 24px; }

  .testimonials { padding: 80px 24px; }
  .testimonial-card { padding: 28px; }
  .testimonial-card blockquote { font-size: 15px; }

  .conquest-faq { padding: 80px 24px; }
  .faq-question { padding: 20px 24px; }
  .faq-question .q-badge { width: 24px; height: 24px; font-size: 12px; }
  .faq-question h3 { font-size: 15px; }
  .faq-answer p { padding: 0 24px 20px 52px; }

  .bottom-cta { padding: 64px 24px; }
  .bottom-cta h2 { font-size: 30px; }
  .bottom-cta p { margin-bottom: 28px; }
  .bottom-cta-btn { padding: 16px 40px; font-size: 15px; }

  .dealer-trust { padding: 64px 24px; }
  .trust-badge { padding: 20px; }
  .trust-badge i { font-size: 36px; }

  .conquest-footer { padding: 40px 24px; padding-bottom: 80px; }
  .conquest-footer .brand-logos { gap: 20px; font-size: 14px; }

  .section-title { font-size: 30px; }

  .thankyou-hero { padding: 80px 24px 60px; }
  .thankyou-hero h1 { font-size: 40px; }
  .thankyou-hero .ty-logo { max-width: 280px; }

  .next-steps-cards { grid-template-columns: repeat(3, 1fr); }
  .prize-code-value { font-size: 64px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE: MD (768px+)
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .conquest-header { padding: 0 48px; }
  .header-ford-logo { height: 38px; }
  .header-tb-logo { height: 36px; }
  .header-dealer-logo { height: 32px; }

  .offers-strip .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-strip .strip-item:nth-child(2) { border-right: 1px solid hsla(0, 0%, 100%, 0.08); }
  .offers-strip .headline { font-size: 24px; }

  .steps { flex-direction: row; gap: 24px; }
  .steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    z-index: 0;
  }

  .pillar-grid { grid-template-columns: repeat(3, 1fr); }

  .preowned-section .inner { flex-direction: row; }
  .preowned-section .left-col { flex: 1; }
  .preowned-section .right-col { width: 380px; flex-shrink: 0; }
  .stats-row { flex-direction: row; gap: 20px; }

  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

  .dealer-trust .trust-layout { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section-title { font-size: 36px; }

  .conquest-hero h1 { font-size: 36px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE: LG (1024px+)
   ══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 48px;
  }
  .hero-left {
    flex: 1;
  }
  .hero-right {
    width: 440px;
    flex-shrink: 0;
  }
  .conquest-hero { min-height: 640px; padding: 80px 48px; }
  .conquest-hero h1 { font-size: 36px; }
  .hero-logo { max-width: 520px; }
  .prize-banner .amount { font-size: 80px; letter-spacing: 5px; }

  .floating-cta { display: none; }
  .conquest-footer { padding-bottom: 40px; }
  .bottom-cta { margin-bottom: 0; }

  .header-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--ford-blue-dark);
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    box-shadow: 0 6px 20px hsla(42, 100%, 55%, 0.35);
  }
  .header-cta:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--ford-blue-dark);
  }
}

/* ══════════════════════════════════════════
   Override Bootstrap form controls in card
   ══════════════════════════════════════════ */
.form-card select.form-control {
  appearance: auto;
  -webkit-appearance: auto;
}
