/* =====================================================
   TOKENS
   ===================================================== */
:root {
  --navy:        #0A2353;
  --navy-deep:   #06152F;
  --orange:      #EB5F2B;
  --orange-dark: #C94E1F;
  --blue:        #2569ED;
  --green:       #10B981;
  --yellow:      #F59E0B;
  --bg:          #F5F7FC;
  --white:       #FFFFFF;
  --text:        #111827;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --shadow:      0 2px 16px rgba(14,31,82,.08);
  --radius:      16px;
  --radius-sm:   10px;
  --font:        'Plus Jakarta Sans', sans-serif;
  --max-w:       1160px;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   HELPERS
   ===================================================== */
.c-orange { color: var(--orange); }
.c-blue   { color: var(--blue); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.55); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.75;
  text-align: center;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14,31,82,.25);
}
.btn--primary:hover { background: #1a3275; box-shadow: 0 8px 28px rgba(14,31,82,.35); }

.btn--nav {
  background: var(--blue);
  color: var(--white);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}
.btn--nav:hover { background: #1a58d4; }

.btn--nav--lg { padding: 15px 32px; font-size: 17px; }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,92,48,.3);
}
.btn--orange:hover { background: var(--orange-dark); box-shadow: 0 8px 28px rgba(249,92,48,.4); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo svg {
  height: 34px;
  width: auto;
  display: block;
}
.logo--light svg path { fill: var(--white); }

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
  margin-right: 40px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color .15s;
}
.nav__links a:hover { color: var(--blue); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  width: 36px;
  height: 36px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--bg);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 86px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 900px;
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

/* Decorative corners */
.hero__deco-corner {
  position: absolute;
  pointer-events: none;
}
.hero__deco-corner--tr {
  top: 30px;
  right: 40px;
  width: 132px;
  height: 132px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  border-radius: 0 28px 0 0;
}
.hero__deco-corner--bl {
  bottom: 40px;
  left: 40px;
  width: 118px;
  height: 118px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-radius: 0 0 0 28px;
}
.hero__deco-corner--br {
  bottom: 40px;
  right: 40px;
  width: 82px;
  height: 82px;
  border-bottom: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  border-radius: 0 0 28px 0;
}

/* =====================================================
   COUNTDOWN
   ===================================================== */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.countdown__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown__units {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 68px;
}
.countdown__unit strong {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__unit span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
  margin-top: 4px;
}

.countdown__sep {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  opacity: .35;
  margin-bottom: 18px;
  line-height: 1;
}

/* =====================================================
   STEPS
   ===================================================== */
.steps {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}

.steps h2 {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px 32px;
  position: relative;
  transition: transform .2s ease;
}
.step-card:hover { transform: translateY(-3px); }

.step-card--1 { border: 2px solid var(--blue); }
.step-card--2 { border: 2px solid var(--orange); }
.step-card--3 { border: 2px solid var(--green); }
.step-card--4 { border: 2px solid var(--yellow); }

.step-card__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  color: var(--white);
  background-color: var(--c);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   LOTS
   ===================================================== */
.lots {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}

.lots h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* 3-col row 1 + 2-col row 2 (each half-width) */
.lots__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.lot-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,35,83,.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(10,35,83,.13);
}

/* Row 2: 2 cards centered, same width as row-1 cards */
.lot-card:nth-child(4) { grid-column: 2 / span 2; }
.lot-card:nth-child(5) { grid-column: 4 / span 2; }

.lot-card__illo {
  overflow: hidden;
  line-height: 0;
}
.lot-card__illo img {
  width: 100%;
  height: auto;
  display: block;
}

.lot-card__body {
  padding: 24px 24px 28px;
  flex: 1;
}

.lot-card__hours {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--h-color, var(--orange));
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lot-card__hours span {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.lot-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.lot-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--white);
  padding: 80px 0;
}

.cta-section__inner {
  background: linear-gradient(130deg, #0a1845 0%, #1836a8 52%, #2d5bff 100%);
  border-radius: 32px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.eyebrow--light { color: #FADF54; }

.cta-section__left .eyebrow { justify-content: flex-start; }

.cta-section__left h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.cta-section__left p {
  font-size: 15px;
  color: rgba(255,255,255,.70);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--white);
  transition: background .18s ease;
  margin-bottom: 10px;
  cursor: pointer;
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card:hover { background: rgba(255,255,255,.20); }

.contact-card__icon-wrap {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  line-height: 1;
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FADF54;
}

.contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}

.faq h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
}

.faq__list {
  max-width: 720px;
  margin: 52px auto 0;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq__q span:not(.faq__dot) { flex: 1; }

.faq__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq__dot--orange { background: var(--orange); }
.faq__dot--blue   { background: var(--blue); }

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s ease;
  margin-left: auto;
}
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq__a[hidden] { display: block; max-height: 0; }
.faq__a.is-open { max-height: 400px; }

.faq__a p {
  padding: 0 0 20px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand .logo {
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li { font-size: 13px; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* =====================================================
   MODAL
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 21, 47, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayIn .22s ease;
}
.modal-overlay[hidden] { display: none; }

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

.modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(6,21,47,.35);
  animation: modalIn .25s ease;
  overflow: hidden;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 0;
  flex-shrink: 0;
}

.badge--modal {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  transition: background .15s, color .15s;
  margin-top: 2px;
}
.modal__close:hover { background: var(--border); color: var(--text); }
.modal__close svg { width: 18px; height: 18px; }

/* Scrollable body */
.modal__body {
  overflow-y: auto;
  flex: 1;
  padding: 24px 28px 0;
}
.modal__body::-webkit-scrollbar { width: 5px; }
.modal__body::-webkit-scrollbar-track { background: transparent; }
.modal__body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Form sections */
.form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-of-type { border-bottom: none; }

.form-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--n-bg, var(--navy));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.form-section__opt {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.form-group { margin-bottom: 14px; }
.form-group:last-child { margin-bottom: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
  margin-bottom: 6px;
}

.form-required { color: var(--orange); }

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  line-height: 1.5;
}
.form-input::placeholder { color: #B0B7C3; }
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,105,237,.12);
}
.form-input:invalid:not(:placeholder-shown) { border-color: #F87171; }

.form-textarea { resize: vertical; min-height: 80px; }
.form-textarea--lg { min-height: 130px; }
.form-group--spaced { margin-top: 20px; }

/* Cours items */
.cours-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.cours-item:last-child { margin-bottom: 0; }

.cours-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cours-item__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cours-remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #F87171;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s;
}
.cours-remove:hover { background: #FEF2F2; }

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: none;
  border: 1.5px dashed var(--blue);
  color: var(--blue);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-add:hover { background: rgba(37,105,237,.06); }

/* File upload */
.file-drop {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  position: relative;
}
.file-drop:hover { border-color: var(--blue); background: rgba(37,105,237,.03); }

.file-drop__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-drop__icon { font-size: 26px; flex-shrink: 0; }

.file-drop__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.file-drop__text strong { font-size: 14px; color: var(--navy); }
.file-drop__text span  { font-size: 12px; color: var(--muted); }

.files-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.files-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.files-list__icon { font-size: 15px; flex-shrink: 0; }

/* Footer */
.modal__footer {
  padding: 20px 28px 28px;
  flex-shrink: 0;
}

.btn--full { width: 100%; padding: 16px; font-size: 16px; }

.submit-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* Success state */
.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 36px;
  flex: 1;
  overflow-y: auto;
}
.modal__success[hidden] { display: none; }

.success-icon { font-size: 52px; margin-bottom: 16px; }

.success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 20px;
}
.success-sub strong { color: var(--navy); }

.success-files {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  background: rgba(235,95,43,.07);
  border: 1px solid rgba(235,95,43,.2);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;
  line-height: 1.7;
  max-width: 480px;
  text-align: left;
}

.success-summary {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
  text-align: left;
  max-height: 180px;
  overflow-y: auto;
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.btn--ghost:hover { background: var(--bg); border-color: #ccc; }

/* =====================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ===================================================== */
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Switch to 2-column for lots */
  .lots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lot-card              { grid-column: span 1; }
  .lot-card:nth-child(4) { grid-column: span 1; }
  .lot-card:nth-child(5) { grid-column: span 1; }

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 36px;
  }
  .cta-section__left p { max-width: 100%; }
}

/* =====================================================
   RESPONSIVE — SMALL TABLET  ≤ 768px
   ===================================================== */
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .hero h1 br { display: none; }

  .lots h2 br { display: none; }

  .lot-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ===================================================== */
@media (max-width: 640px) {
  /* Nav */
  .navbar__inner { flex-wrap: wrap; gap: 0; padding: 12px 16px; }

  .nav__toggle { 
    display: flex;
    position: absolute;
    right: 20px;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 4;
    border-top: 1px solid var(--border);
    padding: 8px 0;
    margin-top: 8px;
  }
  .nav__links.is-open { 
    display: flex;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    margin-top: 0;
  }
  .nav__links a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links li:last-child a { border-bottom: none; }

  .btn--nav { display: none; }

  /* Hero */
  .hero__deco-corner { display: none; }
  .countdown__unit { min-width: 56px; padding: 10px 12px; }
  .countdown__unit strong { font-size: 24px; }

  /* Sections */
  .steps { padding: 64px 0; }
  .steps__grid { grid-template-columns: 1fr; gap: 14px; }

  .lots { padding: 64px 0; }
  .lots__grid { grid-template-columns: 1fr; }
  .lot-card:nth-child(4),
  .lot-card:nth-child(5) { grid-column: span 1; }

  .cta-section__inner { padding: 32px 24px; border-radius: 20px; }

  .faq { padding: 64px 0; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__brand { grid-column: auto; }
  .footer__brand p { max-width: 100%; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .sticky-mobile{
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 100;
  }

  /* Modal */
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal { max-height: 96vh; border-radius: 20px 20px 0 0; }
  .modal__header { padding: 20px 20px 0; }
  .modal__body { padding: 20px 20px 0; }
  .modal__footer { padding: 16px 20px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .success-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn--ghost { width: 100%; }
}
