@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --navy: #1B3A5C;
  --navy-dark: #122843;
  --navy-light: #2a4f7a;
  --orange: #D4763B;
  --orange-light: #e8956a;
  --orange-pale: #FDF1E8;
  --cream: #F7F5F1;
  --gray-100: #F2F2F0;
  --gray-200: #E5E4E0;
  --gray-400: #9A9690;
  --gray-600: #5C5852;
  --gray-800: #2E2B27;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

/* ─── Navigation ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text strong {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--navy);
}

.nav-logo-text span {
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  color: var(--white) !important;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 118, 59, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ─── Hero ─── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 118, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent 60%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 118, 59, 0.15);
  border: 1px solid rgba(212, 118, 59, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeSlideIn 0.6s ease both;
}

.hero-stat:nth-child(2) { animation-delay: 0.1s; }
.hero-stat:nth-child(3) { animation-delay: 0.2s; }

.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 118, 59, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-stat-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-stat-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

/* ─── Dual CTA Banner ─── */
.dual-cta {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}

.dual-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dual-cta-card {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.dual-cta-card:first-child {
  border-right: 1px solid var(--gray-200);
}

.dual-cta-card:hover {
  background: var(--white);
}

.dual-cta-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.dual-cta-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.dual-cta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dual-cta-card:hover .dual-cta-arrow {
  transform: translateX(4px);
}

.dual-cta-card.agency .dual-cta-arrow {
  background: var(--navy);
  color: var(--white);
}

.dual-cta-card.resident .dual-cta-arrow {
  background: var(--orange);
  color: var(--white);
}

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,58,92,0.08);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── Steps ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--navy));
  z-index: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.step:nth-child(2) .step-number { background: var(--navy-light); }
.step:nth-child(3) .step-number { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.step:nth-child(4) .step-number { background: var(--orange-light); box-shadow: 0 0 0 2px var(--orange-light); }

.step-content {
  padding-top: 0.6rem;
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── Pricing Table ─── */
.pricing-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }

.pricing-table .price {
  font-weight: 600;
  color: var(--navy);
}

/* ─── Two-Column Checklist ─── */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 3rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.checklist-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.checklist-item.cross::before {
  content: '✗';
  color: var(--gray-400);
}

/* ─── Callout / Highlight ─── */
.callout {
  border-left: 4px solid var(--orange);
  background: var(--orange-pale);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.callout p {
  font-size: 0.95rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
}

.callout strong { font-style: normal; }

/* ─── Info Banner ─── */
.info-banner {
  background: var(--navy);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-banner-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.info-banner-item strong { color: var(--white); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-q::before {
  content: 'Q';
  background: var(--orange);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding-left: 2.25rem;
}

/* ─── Section Divider ─── */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0;
}

/* ─── Section Intro ─── */
.section-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-intro .eyebrow {
  margin-bottom: 0.75rem;
}

.section-intro .section-title {
  margin-bottom: 1rem;
}

/* ─── Two-col layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col.center { align-items: center; }

/* ─── Stats Strip ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.stat-item {
  background: var(--white);
  padding: 1.75rem 2rem;
  text-align: center;
}

.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .label {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ─── CTA Section ─── */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(212,118,59,0.15) 0%, transparent 60%);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}

.cta-text .eyebrow { color: var(--orange-light); margin-bottom: 0.75rem; }
.cta-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ─── Footer ─── */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img { height: 36px; opacity: 0.8; }

.footer-logo-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.footer-logo-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.footer-contact span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ─── Animations ─── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.animate-up {
  animation: fadeUp 0.6s ease both;
}

.animate-up:nth-child(1) { animation-delay: 0.05s; }
.animate-up:nth-child(2) { animation-delay: 0.12s; }
.animate-up:nth-child(3) { animation-delay: 0.2s; }
.animate-up:nth-child(4) { animation-delay: 0.28s; }
.animate-up:nth-child(5) { animation-delay: 0.36s; }
.animate-up:nth-child(6) { animation-delay: 0.44s; }

/* ════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE
   Designed for 99% mobile intake — touch targets, spacing,
   readability and forms all optimized for small screens
   ════════════════════════════════════════════════════════ */

/* ─── Mobile hamburger menu ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Tablet ─── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {

  /* Layout */
  .container { padding: 0 1.1rem; }
  .section { padding: 3rem 0; }
  .section--lg { padding: 3.5rem 0; }

  /* Nav */
  nav { padding: 0 1.1rem; }
  .nav-inner { height: 60px; position: relative; }
  .nav-logo-text { display: none; }
  .nav-logo img { height: 36px; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: -1.1rem;
    right: -1.1rem;
    background: var(--white);
    border-bottom: 2px solid var(--gray-200);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: none !important;
  }
  .nav-links a:hover { background: var(--cream); }
  .nav-cta {
    margin: 0.5rem 1.1rem 0;
    border-radius: var(--radius) !important;
    text-align: center;
    padding: 0.75rem 1.2rem !important;
  }

  /* Hero */
  .hero { padding: 3rem 1.1rem 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero p { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-badge { margin-bottom: 1rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; }

  /* Dual CTA */
  .dual-cta-inner { grid-template-columns: 1fr; }
  .dual-cta-card {
    padding: 1.5rem 1.25rem;
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200);
  }
  .dual-cta-card:last-child { border-bottom: none; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.25rem; }

  /* Two-col */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }

  /* Stats strip */
  .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-item .num { font-size: 1.7rem; }
  .stat-item .label { font-size: 0.72rem; }

  /* Checklist */
  .checklist-grid { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Steps */
  .steps::before { left: 20px; }
  .step-number { width: 40px; height: 40px; font-size: 0.95rem; }

  /* Section intro */
  .section-intro { margin-bottom: 2rem; }
  .section-intro .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* CTA section */
  .cta-inner { flex-direction: column; padding: 3rem 1.1rem; gap: 1.75rem; }
  .cta-inner .btn-group { width: 100%; }
  .cta-inner .btn-group .btn { width: 100%; justify-content: center; }

  /* Info banner */
  .info-banner { padding: 1rem 1.1rem; gap: 0.75rem; flex-direction: column; align-items: flex-start; }

  /* Pricing table — scroll on mobile */
  .pricing-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table table { min-width: 480px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-contact { text-align: left; }
  .footer-links { gap: 1.25rem; }
  footer { padding: 2rem 1.1rem; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; }

  /* Callout */
  .callout { padding: 1rem 1.1rem; }

  /* Form inputs — bigger touch targets */
  input, select, textarea {
    font-size: 16px !important; /* prevents iOS zoom */
    min-height: 48px;
  }
  textarea { min-height: 90px !important; }

  /* Multi-step progress bar labels — hide on small screens */
  .step-label { display: none; }

  /* Resident form steps — full width on mobile */
  .form-grid-2 { grid-template-columns: 1fr !important; }

  /* Agency referral form inner grids */
  .ref-grid-2 { grid-template-columns: 1fr !important; }
}
