html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #7C6FCD;
  --purple-dark:  #5B4FB5;
  --purple-light: #F0EBFF;
  --purple-mid:   #C4B5FD;
  --dark:         #1E1B3A;
  --gray:         #64748B;
  --light-gray:   #F8F7FF;
  --border:       #E4DCFF;
  --white:        #FFFFFF;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(124,111,205,0.10);
  --shadow-lg:    0 8px 48px rgba(124,111,205,0.16);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple-light); }
.btn-white  { background: var(--white); color: var(--purple); }
.btn-white:hover { background: var(--purple-light); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--purple); white-space: nowrap; }
.nav-logo-img { height: 72px; width: auto; display: block; }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 14px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray);
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--purple); background: var(--purple-light); }

/* Cities dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px;
  min-width: 180px; box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px;
  font-size: 0.9rem; color: var(--dark);
  border-radius: 8px; transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--purple-light); color: var(--purple); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  background-image: url('https://images.unsplash.com/photo-1498824392822-1ad333fc6cc1?fm=jpg&q=70&w=1600&auto=format&fit=crop');
  background-size: cover; background-position: center;
  padding: 96px 28px 88px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(91,79,181,0.78) 0%, rgba(30,27,58,0.72) 100%);
}
.hero .hero-inner { position: relative; z-index: 1; }
.hero .badge {
  display: inline-block;
  background: rgba(255,255,255,0.2); color: var(--white);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.hero h1 span { color: var(--purple-mid); }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 540px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* City cards in hero */
.city-cards {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 52px;
}
.city-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 32px; text-align: center;
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent; min-width: 140px;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-mid); }
.city-card .city-icon { font-size: 2rem; margin-bottom: 10px; }
.city-card h3 { font-size: 1rem; font-weight: 700; }
.city-card p { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ── STATS BAR ───────────────────────────────────────────────────── */
.stats-bar { background: var(--purple); padding: 40px 28px; }
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.stat-item .label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ── SECTION HEADINGS ────────────────────────────────────────────── */
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--gray); margin-top: 14px; max-width: 560px; }

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how { padding: 96px 28px; }
.how-header { text-align: center; margin-bottom: 60px; }
.how-header .section-sub { margin: 14px auto 0; }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.step {
  background: var(--light-gray); border-radius: var(--radius);
  padding: 40px 32px; position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--purple); color: var(--white);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; margin-bottom: 24px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 0.95rem; }

/* ── WHY US ──────────────────────────────────────────────────────── */
.why { padding: 96px 28px; background: var(--purple-light); }
.why-header { max-width: 560px; margin-bottom: 56px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pillar {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow);
}
.pillar-icon { font-size: 2rem; margin-bottom: 18px; }
.pillar h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { color: var(--gray); font-size: 0.95rem; }

/* ── CITIES SECTION ──────────────────────────────────────────────── */
.cities-section { padding: 96px 28px; }
.cities-header { text-align: center; margin-bottom: 56px; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.city-block {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.city-block:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.city-block-img {
  height: 200px;
  background: linear-gradient(135deg, var(--purple) 0%, #9B8FE0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.city-block-body { padding: 28px; }
.city-block-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.city-block-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

/* ── CONCIERGE TEASER ────────────────────────────────────────────── */
.concierge { padding: 96px 28px; background: var(--dark); }
.concierge-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.concierge-copy .section-label { color: var(--purple-mid); }
.concierge-copy .section-title { color: var(--white); }
.concierge-copy .section-sub { color: rgba(255,255,255,0.65); }
.concierge-list { margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.concierge-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.concierge-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,111,205,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.concierge-visual {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(255,255,255,0.1);
}
.chat-bubble {
  background: rgba(255,255,255,0.1); border-radius: 14px;
  padding: 18px 20px; margin-bottom: 14px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.chat-bubble.reply {
  background: var(--purple); margin-left: 32px;
  color: var(--white);
}

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials { padding: 96px 28px; background: var(--light-gray); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; }
.review-text { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--purple); font-size: 0.9rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-city { font-size: 0.8rem; color: var(--gray); }

/* ── CTA BAND ────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, #9B8FE0 100%);
  padding: 80px 28px; text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CITY PAGE HERO ──────────────────────────────────────────────── */
.city-hero {
  background: linear-gradient(145deg, var(--purple) 0%, #5B4FB5 100%);
  padding: 88px 28px 72px; color: var(--white);
  background-size: cover; background-position: center;
  position: relative;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(91,79,181,0.82) 0%, rgba(30,27,58,0.75) 100%);
}
.city-hero .container { position: relative; z-index: 1; }
.city-hero-austin {
  background-image: url('https://images.unsplash.com/photo-1557335200-a65f7f032602?fm=jpg&q=70&w=1600&auto=format&fit=crop');
}
.city-hero-atlanta {
  background-image: url('https://images.unsplash.com/photo-1663601460253-aba72eea6edf?fm=jpg&q=70&w=1600&auto=format&fit=crop');
}
.city-hero .badge { background: rgba(255,255,255,0.2); color: var(--white); }
.city-hero h1 { color: var(--white); }
.city-hero p { color: rgba(255,255,255,0.8); }
.city-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* Filter tiles */
.filter-tiles { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 48px; }
.filter-tile {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 10px 20px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: background 0.15s;
}
.filter-tile:hover { background: rgba(255,255,255,0.25); }

/* ── FORM SECTION ────────────────────────────────────────────────── */
.form-section { padding: 96px 28px; background: var(--purple-light); }
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 56px; max-width: 740px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.form-card h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
.form-sub { color: var(--gray); margin-bottom: 40px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 0.88rem; }
input, select, textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--white); transition: border-color 0.2s; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,111,205,0.1); }
textarea { resize: vertical; }
.btn-submit {
  width: 100%; margin-top: 12px;
  padding: 16px; font-size: 1.05rem; font-weight: 700;
  background: var(--purple); color: var(--white);
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section { padding: 96px 28px; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  padding: 22px 24px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: background 0.15s;
}
.faq-q:hover { background: var(--purple-light); }
.faq-q .chevron { transition: transform 0.2s; font-size: 0.75rem; color: var(--purple); }
.faq-a { padding: 0 24px 22px; color: var(--gray); font-size: 0.93rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .chevron { transform: rotate(180deg); }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-hero { padding: 96px 28px; background: var(--purple-light); }
.about-hero-inner { max-width: 700px; }
.about-story { padding: 96px 28px; }
.about-story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-story-copy .section-sub { margin-top: 20px; }
.about-story-copy p + p { margin-top: 16px; }
.about-visual {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  border-radius: var(--radius); height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.about-visual img { width: 220px; height: 220px; object-fit: contain; }
.values { padding: 96px 28px; background: var(--dark); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-label { color: var(--purple-mid); }
.values-header .section-title { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.value-card {
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  padding: 32px; border: 1px solid rgba(255,255,255,0.08);
}
.value-card .icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ── CONCIERGE PAGE ──────────────────────────────────────────────── */
.concierge-page-hero { padding: 96px 28px; background: var(--dark); color: var(--white); text-align: center; }
.concierge-page-hero h1 { color: var(--white); margin-bottom: 16px; }
.concierge-page-hero p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 36px; font-size: 1.1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; }

/* ── THANK YOU ───────────────────────────────────────────────────── */
.thankyou { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 28px; background: var(--purple-light); }
.thankyou-card { background: var(--white); border-radius: var(--radius); padding: 64px 52px; text-align: center; max-width: 520px; box-shadow: var(--shadow-lg); }
.thankyou-icon { width: 88px; height: 88px; margin: 0 auto 24px; display: block; }
.thankyou-card h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.thankyou-card p { color: var(--gray); font-size: 1rem; margin-bottom: 32px; }

/* ── GET STARTED MULTI-STEP FORM ─────────────────────────────────── */
.gs-section {
  min-height: calc(100vh - 80px);
  background: var(--light-gray);
  display: flex;
  align-items: stretch;
}
.gs-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  width: 100%;
  min-height: calc(100vh - 80px);
}

/* Sidebar */
.gs-sidebar {
  background: linear-gradient(160deg, var(--dark) 0%, #2d2a6e 100%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
}
.gs-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gs-logo { height: 56px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.gs-headline {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.gs-headline span { color: var(--purple-mid); }
.gs-tagline { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; margin-bottom: 28px; }

.gs-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.gs-perk { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.gs-perk-icon {
  width: 22px; height: 22px;
  background: rgba(196,181,253,0.2);
  color: var(--purple-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.gs-step-labels { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.gs-step-label { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.gs-step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
  transition: all 0.2s;
}
.gs-step-dot.active {
  background: var(--purple);
  color: white;
  box-shadow: 0 0 0 4px rgba(124,111,205,0.3);
}
.gs-step-dot.done {
  background: #10b981;
  color: white;
}

/* Form panel */
.gs-form-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.gs-progress {
  height: 4px;
  background: var(--border);
}
.gs-progress-bar {
  height: 100%;
  background: var(--purple);
  transition: width 0.4s ease;
  border-radius: 0 2px 2px 0;
}
.gs-form-wrap {
  flex: 1;
  padding: 48px 56px;
  max-width: 640px;
}
.gs-step-counter {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 8px;
}
.gs-step-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.gs-step-sub {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

/* Steps visibility */
.gs-step { display: none; }
.gs-step.active { display: block; }

/* Field rows */
.gs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.req { color: var(--purple); }
.hint-label { font-weight: 400; color: var(--gray); font-size: 0.82rem; }

.input-wrap { position: relative; }
.input-wrap input {
  width: 100%;
  padding: 11px 38px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.15s, box-shadow 0.15s;
  background: white;
}
.input-wrap input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.12);
}
.field-tick {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.field-error { font-size: 0.8rem; color: #dc2626; min-height: 16px; }

/* Validation states */
.field.error .input-wrap input,
.field.error select {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.field.success .input-wrap input { border-color: #10b981; }

/* Plain inputs (not in input-wrap) */
.field input[type=text]:not(.input-wrap input),
.field input[type=email]:not(.input-wrap input),
.field input[type=tel]:not(.input-wrap input),
.field input[type=date]:not(.input-wrap input),
.field input[type=number]:not(.input-wrap input) {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input[type=date],
.field input[type=number] {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  background: white;
}
.field input[type=date]:focus,
.field input[type=number]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.12);
}
.field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  background: white;
  cursor: pointer;
}
.field select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.12);
}
.field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  resize: vertical;
  transition: border-color 0.15s;
}
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.12);
}

/* Pill buttons */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.pill:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-light);
}
.pill.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

/* Neighborhood chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.chip:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-light);
}
.chip.selected {
  background: var(--purple-light);
  border-color: var(--purple);
  color: var(--purple-dark);
  font-weight: 700;
}

/* Budget row */
.budget-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.money-field {
  position: relative;
  flex: 1;
}
.money-field.error input { border-color: #dc2626; }
.money-prefix {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
}
.field .money-field input[type=number] {
  padding: 11px 14px 11px 38px !important;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  background: white;
}
.money-field input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.12);
}
.budget-dash { color: var(--gray); font-weight: 600; flex-shrink: 0; }

/* Must-have grid */
.must-have-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.must-have-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  background: white;
}
.must-have-item:hover {
  border-color: var(--purple);
  background: var(--purple-light);
}
.must-have-item input[type=checkbox] {
  display: none;
}
.must-have-item:has(input:checked) {
  border-color: var(--purple);
  background: var(--purple-light);
}
.mh-icon { font-size: 1.4rem; line-height: 1; }
.mh-label { font-size: 0.78rem; font-weight: 600; color: var(--dark); }

/* Navigation buttons */
.gs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.gs-btn-back {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  padding: 10px 0;
  font-family: inherit;
  transition: color 0.15s;
}
.gs-btn-back:hover { color: var(--dark); }
.gs-btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(124,111,205,0.3);
}
.gs-btn-next:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,111,205,0.4);
}
.gs-btn-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(124,111,205,0.35);
}
.gs-btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124,111,205,0.45);
}
.gs-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Responsive */
@media (max-width: 900px) {
  .gs-container { grid-template-columns: 1fr; }
  .gs-sidebar {
    position: static;
    height: auto;
    padding: 32px 28px;
  }
  .gs-step-labels { display: none; }
  .gs-form-wrap { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .gs-row { grid-template-columns: 1fr; }
  .must-have-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-form-wrap { padding: 24px 20px; }
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 64px 28px 36px; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: #C4B5FD; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; max-width: 260px; line-height: 1.7; }
.footer-brand a { color: var(--purple-mid); font-size: 0.88rem; display: block; margin-top: 10px; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
.social-link:hover { background: var(--purple); color: var(--white); }

/* ── BLOG ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--purple-light), var(--purple-mid)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 0.75rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.blog-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-body p { color: var(--gray); font-size: 0.88rem; }

/* ── HAMBURGER ───────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .concierge-inner { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px 20px 20px; gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-dropdown .dropdown-menu {
    position: static; box-shadow: none; border: none;
    padding: 4px 0 4px 16px;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 20px 64px; }
  .how, .why, .cities-section, .testimonials { padding: 64px 20px; }
  .nav-logo-img { height: 52px; }
}
