/* ============================================================
   CARS BY LUEL – BRAND VARIABLES & RESET
   ============================================================ */
:root {
  --gold-dark:   #6B4F1D;
  --gold:        #9E7B2F;
  --gold-mid:    #C9A227;
  --gold-light:  #FFF5D6;
  --gold-pale:   #FFFDF5;
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #f5f5f5;
  --gray-200:    #eeeeee;
  --gray-300:    #e0e0e0;
  --gray-400:    #bdbdbd;
  --gray-600:    #757575;
  --gray-800:    #424242;
  --gray-900:    #1a1a1a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 30px rgba(0,0,0,.12);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; }

.hidden { display: none !important; }

/* ============================================================
   SPLASH / HERO SCREEN
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,162,39,.06) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #151210 40%, #1a1610 70%, #1f1a12 100%);
  overflow: hidden;
  transition: opacity .6s ease, transform .6s ease;
}

.splash.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* Gold pinstripes */
.hero-pinstripe {
  position: absolute; left: 0; right: 0; z-index: 5;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #6B4F1D 15%, #C9A227 50%, #6B4F1D 85%, transparent 100%);
}
.hero-pinstripe--top { top: 0; }
.hero-pinstripe--bottom { bottom: 0; }

/* Road / ground */
.hero-road {
  position: absolute;
  bottom: 16%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201,162,39,.15) 30%, rgba(201,162,39,.25) 50%, rgba(201,162,39,.15) 70%, transparent 95%);
  z-index: 2;
}
.hero-road::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(201,162,39,.04) 0%, transparent 100%);
}

/* ---- Vector Cars ---- */
.hero-car {
  position: absolute;
  bottom: 8%;
  z-index: 3;
  width: clamp(260px, 35vw, 480px);
  opacity: 0;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.5));
}

.hero-car--left {
  left: -5%;
  animation: carSlideLeft 1.4s cubic-bezier(.23,1,.32,1) .3s forwards;
}

.hero-car--right {
  right: -5%;
  animation: carSlideRight 1.4s cubic-bezier(.23,1,.32,1) .5s forwards;
}

@keyframes carSlideLeft {
  0%   { opacity: 0; transform: translateX(-80px); }
  60%  { opacity: 1; }
  100% { opacity: .85; transform: translateX(0); }
}

@keyframes carSlideRight {
  0%   { opacity: 0; transform: translateX(80px); }
  60%  { opacity: 1; }
  100% { opacity: .85; transform: translateX(0); }
}

.hero-car img,
.hero-car svg {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* ---- Hero Content ---- */
.splash-content {
  text-align: center;
  z-index: 10;
  animation: splashIn 1s ease-out .2s both;
  max-width: 600px;
  padding: 0 1.5rem;
}

@keyframes splashIn {
  from { opacity: 0; transform: translateY(25px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-crest {
  width: clamp(80px, 18vw, 130px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 24px rgba(201,162,39,.25));
  animation: crestIn .8s ease-out .1s both;
}
@keyframes crestIn {
  from { opacity: 0; transform: scale(.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,162,39,.8);
  border: 1px solid rgba(201,162,39,.25);
  padding: .4rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  background: rgba(201,162,39,.05);
}

.splash-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}

/* Gold gradient on title text */
.splash-title {
  background: linear-gradient(180deg, #ffffff 0%, #E8C84A 50%, #C9A227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.hero-divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A227);
}
.hero-divider-line:last-child {
  background: linear-gradient(90deg, #C9A227, transparent);
}

.hero-divider-diamond {
  width: 8px; height: 8px;
  background: #C9A227;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.splash-tagline {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(201,162,39,.75);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: .02em;
}

.btn-start {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gray-900);
  background: linear-gradient(135deg, #C9A227 0%, #E8C84A 50%, #C9A227 100%);
  background-size: 200% 200%;
  animation: btnShimmer 3s ease infinite;
  border: none; border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(201,162,39,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

@keyframes btnShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201,162,39,.5), inset 0 1px 0 rgba(255,255,255,.3);
}

/* Floating celebration particles */
.splash-particles {
  position: absolute; inset: 0; overflow: hidden; z-index: 1;
}

.particle {
  position: absolute;
  bottom: -10%;
  animation: celebFloat linear infinite;
}

/* Sparkle shape */
.particle--sparkle {
  background: var(--p-color, #C9A227);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: .5;
}

/* Confetti rectangle */
.particle--confetti {
  background: var(--p-color, #E8C84A);
  border-radius: 1px;
  opacity: .45;
}

/* Star shape */
.particle--star {
  background: var(--p-color, #D4AF37);
  clip-path: polygon(50% 0%, 65% 38%, 100% 50%, 65% 62%, 50% 100%, 35% 62%, 0% 50%, 35% 38%);
  opacity: .4;
}

@keyframes celebFloat {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  8%   { opacity: .7; }
  50%  { transform: translateY(-55vh) translateX(var(--p-drift, 20px)) rotate(180deg); opacity: .5; }
  90%  { opacity: .3; }
  100% { transform: translateY(-110vh) translateX(var(--p-drift, 20px)) rotate(var(--p-spin, 360deg)); opacity: 0; }
}

/* ---- Celebration cursor: sparkles ---- */
.cursor-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  line-height: 1;
  animation: sparkleOut .7s ease-out forwards;
}

@keyframes sparkleOut {
  0%   { transform: scale(0) translate(0, 0) rotate(0deg); opacity: 1; }
  40%  { transform: scale(1.3) translate(var(--drift-x, 0), var(--drift-y, -20px)) rotate(90deg); opacity: .9; }
  100% { transform: scale(0) translate(calc(var(--drift-x, 0) * 1.5), calc(var(--drift-y, -40px) * 1.8)) rotate(var(--spin, 180deg)); opacity: 0; }
}

/* ---- Celebration cursor: confetti ---- */
.cursor-confetti {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 1px;
  animation: confettiOut .8s ease-out forwards;
}

@keyframes confettiOut {
  0%   { transform: scale(0) translate(0, 0) rotate(0deg); opacity: 1; }
  30%  { transform: scale(1.2) translate(var(--drift-x, 10px), var(--drift-y, -15px)) rotate(120deg); opacity: .9; }
  100% { transform: scale(.3) translate(calc(var(--drift-x, 10px) * 2), calc(var(--drift-y, -30px) + 40px)) rotate(var(--spin, 360deg)); opacity: 0; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--gray-900);
  border-bottom: 3px solid var(--gold-mid);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
}

.header-inner {
  max-width: 900px; margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

.header-brand {
  display: flex; align-items: center; gap: .75rem;
  cursor: pointer;
}

.header-logo { width: 48px; height: 48px; object-fit: contain; }

.header-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold-mid);
}

.header-phone {
  display: block;
  font-size: .8rem; color: rgba(255,255,255,.5);
}

.header-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .85rem;
  color: var(--gray-900);
  background: linear-gradient(135deg, var(--gold-mid), #E8C84A);
  padding: .35rem 1rem;
  border-radius: 50px;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid));
  border-radius: 3px;
  transition: width .4s ease;
  width: 12.5%;
}

.progress-steps {
  display: flex; justify-content: space-between;
  margin-top: .5rem;
  font-size: .7rem; color: var(--gray-400);
  font-weight: 500;
}

.progress-steps span {
  transition: color var(--transition);
}

.progress-steps span.active {
  color: var(--gold);
  font-weight: 700;
}

.progress-steps span.done {
  color: var(--gold-mid);
}

/* ============================================================
   FORM CONTAINER & STEPS
   ============================================================ */
.form-container {
  max-width: 900px; margin: 0 auto;
  padding: 1.5rem;
  min-height: calc(100vh - 280px);
}

.step {
  display: none;
  animation: stepIn .4s ease-out both;
}

.step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.step h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .25rem;
}

.step-desc {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .75rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--gold-light);
}

/* ============================================================
   FORM FIELDS
   ============================================================ */
.field-grid {
  display: grid; gap: 1rem;
}

.field-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.field-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.field-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

.field-grid .span-1 { grid-column: span 1; }
.field-grid .span-2 { grid-column: span 2; }
.field-grid .span-3 { grid-column: span 3; }
.field-grid .span-4 { grid-column: span 4; }

@media (max-width: 640px) {
  .field-grid.cols-2,
  .field-grid.cols-3 { grid-template-columns: 1fr; }
  .field-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .field-grid .span-1,
  .field-grid .span-2,
  .field-grid .span-3,
  .field-grid .span-4 { grid-column: span 1; }
}

.field { display: flex; flex-direction: column; }

.field label, .field-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.optional { font-weight: 400; color: var(--gray-400); text-transform: none; }

.field input,
.field select,
.field textarea {
  padding: .7rem .9rem;
  font-size: .95rem;
  font-family: 'Open Sans', sans-serif;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}

.field input.invalid,
.field select.invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.12);
}

.input-prefix {
  display: flex; align-items: center;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}

.input-prefix:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}

.input-prefix span {
  padding: .7rem .6rem .7rem .9rem;
  font-weight: 600; color: var(--gray-600);
  background: var(--gray-100);
}

.input-prefix input {
  border: none !important; box-shadow: none !important;
  flex: 1;
}

/* ============================================================
   VEHICLE TYPE CARDS (freq-grid reuse)
   ============================================================ */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: .75rem;
  margin-top: .5rem;
}

.freq-card {
  cursor: pointer;
}

.freq-card input { display: none; }

.freq-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem .75rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}

.freq-card input:checked + .freq-inner {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}

.freq-card:hover .freq-inner {
  border-color: var(--gold-mid);
}

.freq-icon { font-size: 1.8rem; margin-bottom: .3rem; }
.freq-text { font-weight: 600; font-size: .85rem; color: var(--gray-800); }
.freq-sub { font-size: .7rem; color: var(--gray-600); margin-top: .15rem; }

/* ============================================================
   CHECKLIST CARDS
   ============================================================ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.checklist-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.checklist-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-sm);
}

.checklist-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-light);
}

.check-sub {
  font-size: .78rem; color: var(--gray-600);
  margin-top: -.5rem; margin-bottom: .75rem;
}

.check-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 0;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
}

.check-item:hover { color: var(--gold-dark); }

.check-item input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-select-all {
  margin-top: .75rem;
  padding: .35rem .8rem;
  font-size: .75rem; font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-select-all:hover {
  background: var(--gold-light);
}

/* ============================================================
   EXTRAS GRID
   ============================================================ */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .75rem;
}

.extra-card {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-size: .9rem;
}

.extra-card:hover {
  border-color: var(--gold-mid);
}

.extra-card input { display: none; }

.extra-card input:checked ~ span {
  color: var(--gold-dark);
  font-weight: 600;
}

.extra-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-light);
}

.extra-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ============================================================
   SIGNATURE
   ============================================================ */
.sig-wrap {
  position: relative;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  height: 160px;
}

.sig-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}

.btn-clear-sig {
  position: absolute; top: .5rem; right: .5rem;
  padding: .3rem .8rem;
  font-size: .75rem; font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  cursor: pointer;
}

/* ============================================================
   REVIEW
   ============================================================ */
.review-content {
  display: grid; gap: 1.25rem;
}

.review-section {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.review-section h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-light);
}

.review-row {
  display: flex; justify-content: space-between;
  padding: .3rem 0;
  font-size: .9rem;
}

.review-row .label { color: var(--gray-600); }
.review-row .value { font-weight: 600; text-align: right; max-width: 60%; }

.review-chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .25rem;
}

.review-chip {
  display: inline-block;
  padding: .25rem .6rem;
  font-size: .78rem;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 50px;
  font-weight: 500;
}

.review-sig-img {
  max-width: 300px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-top: .5rem;
}

.btn-pdf {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem;
  padding: .8rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pdf:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   NAVIGATION BUTTONS
   ============================================================ */
.nav-buttons {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 900px; margin: 2rem auto;
  padding: 0 1.5rem 2rem;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 600;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back {
  color: var(--gray-600);
  background: var(--gray-200);
}

.btn-back:hover {
  background: var(--gray-300);
}

.btn-back.hidden-vis {
  visibility: hidden;
}

.btn-next {
  color: var(--gray-900);
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  box-shadow: 0 4px 12px rgba(201,162,39,.3);
}

.btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,.4);
}

/* ============================================================
   SUCCESS SCREEN
   ============================================================ */
.success-screen {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2218 30%, #3d3220 60%, #6B4F1D 100%);
  animation: stepIn .5s ease-out both;
}

.success-content {
  text-align: center; color: var(--white);
  padding: 2rem;
}

.success-check {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(201,162,39,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-mid);
  animation: popIn .4s ease-out .2s both;
}

@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.success-content h2 { font-size: 2rem; margin-bottom: .75rem; color: var(--gold-mid); }
.success-content p { font-size: 1.05rem; opacity: .9; margin-bottom: .5rem; }
.success-contact { margin-top: 1rem; margin-bottom: 2rem; }

.success-screen .btn-next,
.btn-pdf-success,
.btn-calendar-success {
  color: var(--gray-900);
  background: linear-gradient(135deg, #C9A227, #E8C84A);
  box-shadow: 0 4px 20px rgba(201,162,39,.3);
}

.btn-pdf-success {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  border: 2px solid rgba(201,162,39,.5);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: .5rem;
}

.btn-pdf-success:hover,
.btn-calendar-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,.4);
}

.btn-calendar-success {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  border: 2px solid rgba(201,162,39,.5);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: .75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold-dark);
}

.footer-inner {
  max-width: 900px; margin: 0 auto;
}

.footer-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  opacity: .8;
  margin-bottom: .75rem;
}

.footer p { font-size: .8rem; }
.footer-tag { margin-top: .25rem; opacity: .6; color: var(--gold-mid); }

/* ============================================================
   FRANCHISE BUTTON (sparkle sweep)
   ============================================================ */
.franchise-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem;
  padding: .65rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: rgba(201,162,39,.9);
  background: rgba(201,162,39,.1);
  border: 1.5px solid rgba(201,162,39,.3);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.franchise-btn:hover {
  background: rgba(201,162,39,.2);
  border-color: rgba(201,162,39,.6);
  color: var(--gold-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,162,39,.2);
}

/* Sparkle icon spin */
.franchise-sparkle {
  animation: sparkleSpin 3s linear infinite;
  opacity: .8;
}

@keyframes sparkleSpin {
  0%   { transform: rotate(0deg) scale(1); opacity: .6; }
  50%  { transform: rotate(180deg) scale(1.3); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: .6; }
}

/* Diagonal shine sweep */
.franchise-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(201,162,39,.4) 45%,
    rgba(201,162,39,.6) 50%,
    rgba(201,162,39,.4) 55%,
    transparent 70%
  );
  transform: skewX(-20deg);
  animation: shineSweep 3s ease-in-out infinite;
}

@keyframes shineSweep {
  0%, 100% { left: -75%; }
  40%, 60% { left: 125%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-car--left  { left: -15%; bottom: 5%; }
  .hero-car--right { right: -15%; bottom: 5%; }
  .hero-car { opacity: .5; }
}

@media (max-width: 480px) {
  .splash-title { font-size: 2.2rem; }
  .hero-badge { font-size: .6rem; padding: .3rem 1rem; }
  .btn-start { padding: .8rem 1.8rem; font-size: 1rem; }
  .hero-car { width: 200px; bottom: 4%; }
  .hero-car--left  { left: -20%; }
  .hero-car--right { right: -20%; }
  .header-tag { display: none; }
  .step h2 { font-size: 1.35rem; }
  .freq-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .nav-buttons { padding: 0 1rem 1.5rem; }
  .btn { padding: .7rem 1.2rem; font-size: .85rem; }
}
