/* ============================================================
   LANDLORD.CSS — List Your Place landing page + wizards
   ============================================================ */

/* ── Nav ── */
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 52px; background: rgba(247,242,234,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(196,98,45,0.08); position: sticky; top: 0; z-index: 200; }
.nav-logo { font-family: var(--serif); font-size: 24px; color: var(--clay); font-weight: 700; text-decoration: none; letter-spacing: -0.04em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 13.5px; font-weight: 500; opacity: 0.65; transition: all 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--clay); font-weight: 600; }
.nav-login { color: var(--clay) !important; opacity: 1 !important; padding: 8px 18px; border: 1.5px solid var(--clay); border-radius: 10px; font-weight: 600 !important; }
.nav-login:hover { background: var(--clay) !important; color: white !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 210; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav.nav-open .nav-links { display: flex !important; }

/* Force hero content visible (above fold, no scroll-reveal needed) */
.landing-hero .reveal { opacity: 1 !important; transform: none !important; }

/* ── Landing Hero ───────────────────────────────────────────── */

.landing-hero {
  background: var(--ink);
  padding: 80px 40px 64px;
  text-align: center;
}

.landing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196, 98, 45, 0.15);
  border: 1px solid rgba(196, 98, 45, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clay-light);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.landing-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.landing-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}


/* ── Shared Section Styling ─────────────────────────────────── */

.section-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  text-align: center;
  margin-bottom: 8px;
  color: var(--ink);
}

.section-sub {
  text-align: center;
  color: var(--warm-grey);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.5;
}


/* ── Path Chooser ───────────────────────────────────────────── */

.path-section {
  padding: 72px 24px;
  background: var(--cream);
}

.path-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  background: white;
  border: 2px solid var(--sand);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  width: 100%;
}

.path-card:hover {
  border-color: var(--clay);
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.08);
  transform: translateY(-2px);
}

.path-card:active {
  transform: translateY(0);
}

.path-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.path-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}

.path-card > p {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.path-tag {
  display: inline-block;
  background: var(--clay-pale);
  color: var(--clay);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.path-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--clay);
}


/* ── How It Works ───────────────────────────────────────────── */

.how-section {
  padding: 72px 24px;
  background: white;
}

.how-section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  text-align: center;
  padding: 32px 20px;
}

.how-step-num {
  width: 48px;
  height: 48px;
  background: var(--clay);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
}

.how-step h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}

.how-step p {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
}


/* ── Pricing ────────────────────────────────────────────────── */

.pricing-section {
  padding: 72px 24px;
  background: var(--cream);
}

.pricing-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--sand);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(26, 22, 18, 0.06);
}

.pricing-card.featured {
  border-color: var(--clay);
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.12);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clay);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-grey);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--warm-grey);
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 221, 208, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-features li:last-child {
  border-bottom: none;
}


/* ── Wizard Sections ────────────────────────────────────────── */

.wizard-section {
  padding: 48px 24px 80px;
  background: var(--cream);
  min-height: 60vh;
}

.wizard-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.wizard-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  background: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  transition: all 0.2s;
  line-height: 1;
}

.wizard-close:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.wizard-title {
  font-family: var(--serif);
  font-size: 28px;
  text-align: center;
  margin-bottom: 6px;
  color: var(--ink);
}

.wizard-sub {
  text-align: center;
  color: var(--warm-grey);
  font-size: 15px;
  margin-bottom: 32px;
}


/* ── Wizard Dots ────────────────────────────────────────────── */

.wiz-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.wiz-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  background: transparent;
  cursor: default;
  padding: 0;
  transition: all 0.3s ease;
}

.wiz-dot.active {
  background: var(--clay);
  border-color: var(--clay);
  transform: scale(1.2);
}

.wiz-dot.done {
  background: var(--green);
  border-color: var(--green);
}


/* ── Wizard Steps ───────────────────────────────────────────── */

.wiz-step {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid var(--sand);
}

.wiz-step-title {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}

.wiz-step-desc {
  font-size: 14px;
  color: var(--warm-grey);
  margin-bottom: 24px;
  line-height: 1.5;
}


/* ── Wizard Navigation ──────────────────────────────────────── */

.wiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}

.wiz-nav .wiz-back {
  flex: 0 0 auto;
}

.wiz-nav .wiz-next {
  margin-left: auto;
  min-width: 120px;
}

.wiz-publish {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  font-size: 16px;
}

.wiz-publish-note {
  text-align: center;
  font-size: 12px;
  color: var(--warm-grey);
  margin-top: 12px;
}


/* ── Wizard Terms ───────────────────────────────────────────── */

.wiz-terms {
  margin-top: 20px;
  background: #FFF9F5;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 14px 16px;
}

.wiz-terms.highlight {
  border-color: #C4622D;
  animation: pulse-border 0.6s ease;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(196,98,45,0.15); }
}

.wiz-terms label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.wiz-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--clay);
  flex-shrink: 0;
  margin-top: 2px;
}

.wiz-terms span {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.5;
}

.wiz-terms a {
  color: var(--clay);
}


/* ── Wizard Error ───────────────────────────────────────────── */

.wiz-error {
  font-size: 13px;
  color: #E53E3E;
  margin-top: 8px;
  font-weight: 500;
}


/* ── Form Fields (shared by both wizards) ───────────────────── */

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}

.field label .req {
  color: var(--clay);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--sans);
  background: white;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field .hint {
  font-size: 12px;
  color: var(--warm-grey);
  margin-top: 6px;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-error {
  border-color: #E53E3E !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}


/* ── Toggle Pills (amenities) ───────────────────────────────── */

.toggle-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.toggle-pill:hover {
  border-color: var(--clay);
}

.toggle-pill.active {
  background: var(--clay);
  border-color: var(--clay);
  color: white;
}

.toggle-pill.active::before {
  content: '\2713 ';
}


/* ── Photo Grid ─────────────────────────────────────────────── */

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 140px;
}

.photo-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.photo-grid.drag-active {
  outline: 2px dashed var(--clay);
  outline-offset: 4px;
  border-radius: 12px;
}

.photo-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder {
  border: 2px dashed var(--sand);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.photo-placeholder:hover {
  border-color: var(--clay);
}

.photo-placeholder input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.photo-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--warm-grey);
  pointer-events: none;
}

.photo-plus {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.photo-label {
  font-size: 12px;
}

.photo-thumb.uploading {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--sand);
  border-top-color: var(--clay);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26, 22, 18, 0.7);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  line-height: 1;
}

.photo-thumb:hover .photo-remove {
  opacity: 1;
}

/* ── Photo reorder ── */
.photo-thumb[draggable="true"] { cursor: grab; }
.photo-thumb[draggable="true"]:active { cursor: grabbing; }
.photo-thumb.dragging { opacity: 0.4; transform: scale(0.95); }
.photo-thumb.drag-over { outline: 2px dashed var(--clay); outline-offset: 2px; border-radius: 12px; }
.photo-cover-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(26,22,18,0.7);
  color: white;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}


/* ── Upload Area (verification docs) ────────────────────────── */

.upload-area {
  border: 2px dashed var(--sand);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  position: relative;
}

.upload-area:hover {
  border-color: var(--clay);
  background: rgba(196, 98, 45, 0.02);
}

.upload-area.has-file {
  border-color: var(--green);
  background: var(--green-light);
}

.upload-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.upload-sub {
  font-size: 12px;
  color: var(--warm-grey);
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-filename {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px;
}


/* ── ID Method Toggle ───────────────────────────────────────── */

.id-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.id-opt {
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: none;
  font: inherit;
  width: 100%;
}

.id-opt:hover {
  border-color: var(--clay);
}

.id-opt.active {
  border-color: var(--clay);
  background: rgba(196, 98, 45, 0.04);
}

.id-opt-icon { font-size: 24px; margin-bottom: 6px; }
.id-opt-title { font-size: 13px; font-weight: 600; }
.id-opt-sub { font-size: 11px; color: var(--warm-grey); margin-top: 2px; }


/* ── Trust Bar ──────────────────────────────────────────────── */

.trust-bar {
  background: var(--green-light);
  border: 1px solid rgba(45, 122, 58, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.trust-text h4 { font-size: 15px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.trust-text p { font-size: 13px; color: #4A7A52; line-height: 1.5; }


/* ── Verify Email Row ───────────────────────────────────────── */

.verify-email-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-light);
  border: 1px solid rgba(45, 122, 58, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
}

.verify-check {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.verify-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.verify-value {
  font-size: 13px;
  color: #4A7A52;
}


/* ── Description Generator Button ───────────────────────────── */

.btn-generate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: white;
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-generate:hover {
  border-color: var(--clay);
  background: var(--clay-pale);
}


/* ── Review Preview Card ────────────────────────────────────── */

.review-preview {
  margin-bottom: 20px;
}

.preview-card {
  border: 1.5px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.preview-card-large .preview-body {
  padding: 24px;
}

.preview-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.preview-img-large {
  height: 200px;
}

.preview-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  font-size: 14px;
}

.preview-body {
  padding: 20px;
}

.preview-badge {
  display: inline-block;
  background: rgba(196, 98, 45, 0.1);
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.preview-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.preview-addr {
  font-size: 13px;
  color: var(--warm-grey);
  margin-bottom: 6px;
}

.preview-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.preview-amenities {
  font-size: 12px;
  color: var(--warm-grey);
}

.preview-desc {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.5;
  margin-bottom: 8px;
}

.preview-status {
  font-size: 12px;
  color: var(--clay);
  font-weight: 600;
}


/* ── Success Screen ─────────────────────────────────────────── */

.success-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.success-title {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}

.success-sub {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 32px;
}

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

.success-actions .btn-primary,
.success-actions .btn-outline {
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  nav { padding: 14px 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(247,242,234,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sand); flex-direction: column; padding: 16px; gap: 12px;
    box-shadow: 0 8px 32px rgba(26,22,18,0.08);
  }
  nav.nav-open .nav-links { display: flex !important; }

  .landing-hero {
    padding: 48px 20px 40px;
  }

  .landing-hero h1 {
    font-size: 28px;
  }

  .landing-hero-sub {
    font-size: 15px;
  }

  .stats-strip {
    gap: 24px;
  }

  .stat-num {
    font-size: 24px;
  }

  .path-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-step {
    padding: 24px 16px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .id-options {
    grid-template-columns: 1fr;
  }

  .photo-grid-large {
    grid-template-columns: 1fr 1fr;
  }

  .wizard-close {
    top: -4px;
    right: -4px;
  }
}

@media (max-width: 480px) {
  .landing-hero h1 {
    font-size: 24px;
  }

  .stats-strip {
    flex-direction: column;
    gap: 16px;
  }

  .stat-item {
    flex-direction: row;
    gap: 8px;
  }

  .stat-num {
    font-size: 22px;
  }

  .path-section,
  .how-section,
  .pricing-section {
    padding: 48px 16px;
  }

  .wizard-section {
    padding: 32px 12px 60px;
  }

  .wiz-step {
    padding: 24px 18px;
  }

  .toggle-pill {
    padding: 8px 14px;
    font-size: 13px;
  }
}
