/* ─── ParkPlz Production Stylesheet (Corporate SaaS Flat UI) ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --green-600: #059669;
  --green-700: #047857;
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand img { height: 28px; max-height: 28px; width: auto; }
.brand strong { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.02em; }
.brand strong span { color: var(--green-600); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a, .nav-links button {
  background: none; border: none; font-family: inherit; font-size: 13.5px; font-weight: 500;
  color: var(--slate-600); text-decoration: none; cursor: pointer; transition: color .15s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--slate-900); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; font-weight: 600; font-size: 13.5px; padding: 8px 16px;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: all .15s ease; line-height: 1;
}
.btn-ghost { background: transparent; color: var(--slate-700); border-color: var(--slate-200); }
.btn-ghost:hover { background: var(--slate-50); border-color: var(--slate-300); }
.btn-secondary { background: var(--slate-100); color: var(--slate-800); border-color: var(--slate-200); }
.btn-secondary:hover { background: var(--slate-200); border-color: var(--slate-300); }
.btn-primary { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.btn-primary:hover { background: var(--green-700); border-color: var(--green-700); }
.btn-blue { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn-blue:hover { background: var(--blue-700); border-color: var(--blue-700); }
.btn-dark { background: var(--slate-900); color: var(--white); }
.btn-dark:hover { background: var(--slate-800); }
.btn-lg { padding: 12px 24px; font-size: 14px; }
.btn-sm { padding: 6px 12px; font-size: 12px; }

/* ─── FORM & CARD PRIMITIVES ─── */
.form-card, .spa-legal-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}
.form-group, .fg { margin-bottom: 16px; }
.form-label, .fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--slate-700); margin-bottom: 5px; }
.form-control, .fg input, .fg textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--slate-200);
  border-radius: var(--radius); font-family: inherit; font-size: 13.5px;
  color: var(--slate-800); background: var(--white); transition: border-color .15s;
}
.form-control:focus, .fg input:focus, .fg textarea:focus { border-color: var(--blue-600); outline: none; }

.badge {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--green-600);
  background: var(--green-50); padding: 3px 10px; border-radius: 4px; border: 1px solid var(--green-100);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}

.pill {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
}
.pill-green { background: var(--green-50); color: var(--green-600); border: 1px solid var(--green-100); }
.pill-blue { background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); }

/* Table Wrapper */
.table-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  overflow-x: auto;
}
table { width: 100%; border-collapse: collapse; font-size: 13.5px; text-align: left; }
thead { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
th { padding: 12px 16px; font-weight: 700; color: var(--slate-700); }
td { padding: 12px 16px; border-bottom: 1px solid var(--slate-200); color: var(--slate-700); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--slate-50); }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  background: var(--white);
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--slate-200);
  overflow: hidden;
}

.hero-map-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background: url('/static/images/hero-map.jpg') center right/cover no-repeat;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 30%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.85) 30%, black 100%);
  opacity: 0.95;
  animation: fadeInMap 1.2s ease-out;
}

@keyframes fadeInMap {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 0.95; transform: translateX(0); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 380px;
}

.hero h1 {
  font-size: 2.85rem; font-weight: 900; line-height: 1.08;
  letter-spacing: -.03em; color: var(--slate-900); margin-bottom: 14px;
  animation: slideUp 0.6s ease-out;
}
.hero h1 em { font-style: normal; color: var(--green-600); }
.hero-sub {
  font-size: 1rem; color: var(--slate-600); line-height: 1.6;
  margin-bottom: 24px; max-width: 460px;
  animation: slideUp 0.7s ease-out;
}

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

.hero-actions {
  display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
  animation: slideUp 0.8s ease-out;
}

.hero-trust { 
  display: flex; gap: 18px; font-size: 12.5px; color: var(--slate-600); font-weight: 500;
  animation: slideUp 0.9s ease-out;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--green-600); font-size: 13px; }

.hero-lot-preview {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: floatCard 0.9s ease-out;
}

@keyframes floatCard {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.map-card {
  width: 100%;
  max-width: 330px;
  background: var(--white);
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid var(--slate-200);
  margin-top: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.map-card:hover {
  transform: translateY(-4px);
  border-color: var(--slate-300);
}
.map-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.map-card-top h4 { font-size: 14.5px; font-weight: 700; color: var(--slate-900); letter-spacing: -0.01em; }
.verified-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; color: var(--green-700);
  background: var(--green-50); padding: 3px 8px; border-radius: 4px; border: 1px solid var(--green-100);
}
.map-card-rating {
  display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--slate-600); margin-bottom: 12px;
  line-height: 1;
}
.map-card-rating .star { color: #f59e0b; font-size: 12px; display: inline-flex; align-items: center; }
.map-card-rating .rating-count { color: var(--slate-400); font-size: 11.5px; }
.map-card-rating .rating-sep { color: var(--slate-300); font-size: 10px; margin: 0 2px; }
.map-card-rating .access-icons { display: inline-flex; align-items: center; gap: 3px; font-size: 11.5px; font-weight: 600; color: var(--slate-600); }

.map-card-price {
  font-size: 24px; font-weight: 800; color: var(--slate-900); line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 2px; letter-spacing: -0.02em;
}
.map-card-price .currency { font-size: 20px; font-weight: 800; }
.map-card-price .unit { font-size: 12.5px; font-weight: 500; color: var(--slate-500); margin-left: 2px; }

.map-card-hours {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  font-size: 12px; color: var(--slate-500); margin-bottom: 16px; line-height: 1.4;
}
.map-card-hours .dot-sep { color: var(--slate-300); font-size: 8px; }

.btn-get-dir {
  width: 100%; font-size: 13px; font-weight: 700; padding: 10px 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius);
}

/* ─── STATS BAR ─── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--slate-200); padding: 20px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; transition: transform 0.2s ease; }
.stat:hover { transform: translateY(-2px); }
.stat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; margin-bottom: 6px; font-size: 16px;
  transition: transform 0.2s ease;
}
.stat:hover .stat-icon { transform: scale(1.1); }
.stat-icon.green { background: var(--green-50); color: var(--green-600); }
.stat-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.stat-icon.purple { background: #f5f3ff; color: #7c3aed; }
.stat-icon.amber { background: #fffbeb; color: #d97706; }
.stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.02em; }
.stat span { font-size: 12px; font-weight: 500; color: var(--slate-500); }

/* ─── SECTIONS SHARED ─── */
.sec { padding: 44px 0; }
.sec-alt { background: var(--slate-50); border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.sec-header { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.sec-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.02em; line-height: 1.2; }
.sec-header p { color: var(--slate-500); font-size: 13.5px; margin-top: 6px; }

/* ─── VEHICLE TYPES ─── */
.vtype-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vtype-card {
  position: relative; background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden; 
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
  display: flex; flex-direction: column;
}
.vtype-card:hover { transform: translateY(-4px); border-color: var(--slate-300); }
.vtype-img { height: 190px; overflow: hidden; border-bottom: 1px solid var(--slate-200); position: relative; }
.vtype-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vtype-card:hover .vtype-img img { transform: scale(1.06); }
.vtype-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; color: var(--white);
  padding: 4px 10px; border-radius: 4px; backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; z-index: 2;
}
.vtype-badge.tw { background: rgba(5, 150, 105, 0.92); border: 1px solid rgba(255,255,255,0.2); }
.vtype-badge.fw { background: rgba(37, 99, 235, 0.92); border: 1px solid rgba(255,255,255,0.2); }
.vtype-body { padding: 20px; display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
.vtype-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.vtype-body p { font-size: 13.5px; color: var(--slate-600); line-height: 1.6; margin-bottom: 16px; }

.vtype-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--slate-100); }
.vtype-tags span {
  font-size: 11.5px; font-weight: 600; color: var(--slate-600); background: var(--slate-50);
  border: 1px solid var(--slate-200); padding: 4px 10px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 5px;
}
.vtype-tags span i { color: var(--green-600); font-size: 10.5px; }

/* ─── USER FLOWS ─── */
.flow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.flow-card {
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 22px 24px; background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}
.flow-card:hover { transform: translateY(-3px); border-color: var(--slate-300); }
.flow-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.flow-icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: transform 0.2s ease;
}
.flow-card:hover .flow-icon { transform: scale(1.08); }
.flow-icon.green { background: var(--green-50); color: var(--green-600); }
.flow-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.flow-card-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-900); }
.flow-card-header small { font-size: 11px; font-weight: 600; }
.flow-card-header .green-label small { color: var(--green-600); }
.flow-card-header .blue-label small { color: var(--blue-600); }
.flow-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.flow-step { display: flex; align-items: flex-start; gap: 10px; }
.flow-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  line-height: 1;
  text-align: center;
  margin-top: 1px;
  transition: transform 0.2s ease;
}
.flow-step:hover .flow-num { transform: scale(1.12); }
.flow-num.green { background: #059669; color: #ffffff !important; }
.flow-num.blue { background: #2563eb; color: #ffffff !important; }
.flow-step strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--slate-900); margin-bottom: 2px; }
.flow-step span { font-size: 12.5px; color: var(--slate-500); line-height: 1.45; }

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 20px; position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--slate-300); }
.step-num { font-size: 1.75rem; font-weight: 900; color: var(--slate-200); letter-spacing: -.03em; margin-bottom: 6px; }
.step-card:nth-child(1) .step-num { color: var(--green-600); }
.step-card:nth-child(2) .step-num { color: var(--blue-600); }
.step-card:nth-child(3) .step-num { color: #7c3aed; }
.step-card .step-icon { position: absolute; top: 20px; right: 20px; color: var(--slate-300); font-size: 16px; transition: transform 0.2s; }
.step-card:hover .step-icon { transform: scale(1.2); }
.step-card:nth-child(1) .step-icon { color: var(--green-600); opacity: .6; }
.step-card:nth-child(2) .step-icon { color: var(--blue-600); opacity: .6; }
.step-card:nth-child(3) .step-icon { color: #7c3aed; opacity: .6; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.step-card p { font-size: 12.5px; color: var(--slate-500); line-height: 1.5; }

/* ─── APP SHOWCASE ─── */
.app-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: center; }
.app-grid h2 { font-size: 1.6rem; font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 16px; }
.app-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--slate-700); }
.app-features li i { color: var(--green-600); font-size: 13px; width: 18px; text-align: center; }
.store-btns { display: flex; gap: 10px; }

.phones-display { display: flex; gap: 14px; justify-content: center; }
.phone-mockup {
  width: 170px; background: var(--slate-900); border-radius: 20px;
  padding: 7px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-mockup:hover { transform: translateY(-8px) scale(1.02); }
.phone-mockup:nth-child(2) { margin-top: 24px; }
.phone-mockup:nth-child(3) { margin-top: 12px; }
.phone-screen-inner { border-radius: 14px; overflow: hidden; }
.phone-screen-inner img { display: block; width: 100%; height: 310px; object-fit: cover; object-position: top; }

/* ─── CITIES ─── */
.cities-header { text-align: center; margin-bottom: 20px; }
.cities-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); }
.cities-photo-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.city-card {
  position: relative; height: 96px; border-radius: 0; overflow: hidden;
  border: 1px solid var(--slate-200); background: var(--slate-900);
  display: block; cursor: default; user-select: none;
}
.city-card img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.8) 100%);
  display: flex; align-items: flex-end; justify-content: center; padding: 8px 4px;
}
.city-card-name {
  color: var(--white); font-size: 12.5px; font-weight: 700;
  letter-spacing: -0.01em; text-shadow: 0 1px 2px rgba(0,0,0,0.6); text-align: center;
}

/* ─── OWNER CTA ─── */
.owner-cta {
  background: var(--slate-900); border-radius: 8px; padding: 36px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  align-items: center; color: var(--white);
}
.owner-cta h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.owner-cta p { color: var(--slate-400); font-size: 13.5px; margin-bottom: 20px; line-height: 1.55; }
.owner-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.owner-benefits li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate-300); }
.owner-benefits i { color: var(--green-600); font-size: 13px; width: 16px; text-align: center; }

/* ─── DOWNLOAD BANNER ─── */
.download-banner {
  background: linear-gradient(135deg, var(--green-600) 0%, #10b981 50%, var(--blue-600) 100%);
  border-radius: 8px; padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
}
.download-banner h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.download-banner p { font-size: 13.5px; opacity: .9; }
.download-stores { display: flex; gap: 10px; align-items: center; }

/* ─── FAQ ─── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: var(--slate-300); }
.faq-item summary {
  padding: 14px 18px; font-size: 13.5px; font-weight: 600; color: var(--slate-800);
  cursor: pointer; outline: none; list-style: none;
  display: flex; justify-content: space-between; align-items: center; transition: color 0.15s;
}
.faq-item summary:hover { color: var(--green-600); }
.faq-item summary::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--slate-400); transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
/* ─── BLOGS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--slate-300); }
.blog-cover { height: 180px; width: 100%; overflow: hidden; background: var(--slate-900); position: relative; }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.05); }
.blog-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(4px);
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em;
}
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--slate-400); margin-bottom: 8px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); line-height: 1.35; margin-bottom: 8px; transition: color 0.15s; }
.blog-card:hover h3 { color: var(--green-600); }
.blog-card p { font-size: 13px; color: var(--slate-500); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.blog-card-footer { font-size: 12.5px; font-weight: 600; color: var(--green-600); display: flex; align-items: center; gap: 6px; }

/* Blog Article Content */
.blog-article { max-width: 800px; margin: 0 auto; background: var(--white); border: 1px solid var(--slate-200); border-radius: 8px; padding: 40px; }
.blog-article h1 { font-size: 2.3rem; font-weight: 900; line-height: 1.15; color: var(--slate-900); margin-bottom: 16px; letter-spacing: -0.02em; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--slate-500); padding-bottom: 20px; border-bottom: 1px solid var(--slate-200); margin-bottom: 28px; }
.blog-article-meta span { display: flex; align-items: center; gap: 6px; }
.blog-article-cover { width: 100%; height: 360px; object-fit: cover; border-radius: 6px; margin-bottom: 32px; border: 1px solid var(--slate-200); }
.blog-body { font-size: 15px; line-height: 1.75; color: var(--slate-700); }
.blog-body p { margin-bottom: 18px; }
.blog-body p.lead { font-size: 17px; font-weight: 500; color: var(--slate-800); line-height: 1.7; }
.blog-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin: 32px 0 14px; }
.blog-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--slate-900); margin: 24px 0 10px; }
.blog-body ul { margin: 0 0 20px 24px; }
.blog-body li { margin-bottom: 8px; }
.blog-callout {
  background: var(--green-50); border-left: 4px solid var(--green-600);
  border-radius: 0 6px 6px 0; padding: 16px 20px; margin: 24px 0;
}
.blog-callout h4 { font-size: 14px; font-weight: 700; color: var(--green-700); margin-bottom: 4px; }
.blog-callout p { font-size: 13.5px; color: var(--slate-700); margin-bottom: 0; }


/* ─── FOOTER ─── */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 44px 0 24px; font-size: 12.5px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr; gap: 28px; margin-bottom: 32px; }
.footer-brand p { margin-top: 10px; line-height: 1.6; max-width: 260px; }
.footer-col h5 { color: var(--white); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-col ul li button {
  color: var(--slate-400); text-decoration: none; background: none; border: none;
  font: inherit; cursor: pointer; transition: color .15s;
}
.footer-col ul li a:hover, .footer-col ul li button:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--slate-500); font-size: 14px; transition: color .15s; }
.footer-social a:hover { color: var(--white); }

/* ─── MODALS ─── */
.modal-bg {
  position: fixed; inset: 0; background: rgba(15,23,42,.45); backdrop-filter: blur(4px);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all .2s;
}
.modal-bg.show { opacity: 1; visibility: visible; }
.modal-panel {
  background: var(--white); border-radius: 8px; width: 100%; max-width: 460px;
  padding: 28px; position: relative; transform: translateY(12px); transition: transform .2s;
}
.modal-bg.show .modal-panel { transform: translateY(0); }
.modal-x { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; color: var(--slate-400); cursor: pointer; line-height: 1; }
.modal-x:hover { color: var(--slate-700); }
.modal-panel h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.modal-panel .modal-sub { font-size: 13px; color: var(--slate-500); margin-bottom: 20px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--slate-700); margin-bottom: 5px; }
.fg input, .fg textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--slate-200);
  border-radius: var(--radius); font-family: inherit; font-size: 13.5px;
  color: var(--slate-800); transition: border-color .15s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--blue-600); outline: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .cities-photo-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid, .owner-cta, .flow-grid, .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-lot-preview { justify-content: center; }
  .map-card { max-width: 100%; }
  
  .cities-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .city-card { height: 90px; }
  
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 24px 16px; border-radius: 6px; }
  .blog-article h1 { font-size: 1.65rem; }
  .blog-article-cover { height: 220px; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid, .faq-grid { grid-template-columns: 1fr; }
  .vtype-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  
  .phones-display { flex-wrap: wrap; gap: 12px; }
  .phone-mockup { width: calc(50% - 10px); min-width: 135px; max-width: 160px; margin-top: 0 !important; }
  .phone-screen-inner img { height: 250px; }
  
  .download-banner { flex-direction: column; text-align: center; gap: 18px; padding: 24px 20px; }
  .download-stores { width: 100%; justify-content: center; }
  .download-stores .btn { width: 100%; justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 13px; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: flex-start; }
  
  .cities-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .phones-display { justify-content: center; }
  .phone-mockup { width: 100%; max-width: 220px; }
  .phone-screen-inner img { height: 320px; }
  
  .modal-panel { padding: 20px 16px; margin: 10px; }
  .stats-grid { grid-template-columns: 1fr; }
}

