/* ═══════════════════════════════════════════
   BuyRight Retail™ — Global Stylesheet
   buyrightretail.com
═══════════════════════════════════════════ */

:root {
  --navy:      #1F3864;
  --navy-dark: #162849;
  --navy-lt:   #EAF0FA;
  --navy-mid:  #c2d0e8;
  --orange:    #E87722;
  --orange-lt: #FFF0E6;
  --green:     #1A6B50;
  --green-lt:  #E8F5EF;
  --amber:     #D4860B;
  --amber-lt:  #FEF5E7;
  --red:       #B03A2E;
  --red-lt:    #FDECEA;
  --gray-dark: #1C1C1C;
  --gray-mid:  #5A5A5A;
  --gray-lt:   #F6F6F4;
  --border:    #DDE3EE;
  --white:     #FFFFFF;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.1;
}
p { line-height: 1.7; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  background: var(--navy);
  height: 64px;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: var(--white);
}
.nav-brand em { font-style: italic; color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  transition: color 0.18s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: #cf6a1a !important; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover { background: #cf6a1a; }
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: white; }
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ══════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════ */
.section { padding: 80px 56px; }
.section-sm { padding: 56px 56px; }
.section-lg { padding: 100px 56px; }
.container { max-width: 980px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }
.container-lg { max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.08;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.72;
  margin-bottom: 44px;
}
.center .section-sub { max-width: 580px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 64px 56px 56px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: white;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.65;
}

/* ══════════════════════════════
   ORANGE STRIP
══════════════════════════════ */
.orange-strip {
  background: var(--orange);
  padding: 22px 56px;
  text-align: center;
}
.orange-strip p {
  font-size: 16px;
  color: white;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.orange-strip p em { font-style: italic; font-weight: 300; }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
}
.card-top-accent { border-top: 3px solid var(--navy); }
.card-orange-accent { border-top: 3px solid var(--orange); }

/* ══════════════════════════════
   DASHBOARD TILE MOCKUPS
══════════════════════════════ */
.dashboard-mock {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
}
.mock-bar {
  background: var(--navy-dark);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-bar-title { font-size: 10px; color: rgba(255,255,255,0.38); margin-left: 8px; letter-spacing: 0.04em; }
.mock-header { background: var(--navy); padding: 10px 16px 8px; text-align: center; }
.mock-header-brand { font-family: 'DM Serif Display', serif; font-size: 14px; color: white; }
.mock-header-sub { font-size: 9px; color: rgba(255,255,255,0.48); margin-top: 1px; }
.mock-section-label {
  background: var(--gray-lt);
  padding: 6px 14px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.mock-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.mock-kpi { padding: 10px 14px; border-right: 1px solid var(--border); }
.mock-kpi:last-child { border-right: none; }
.mock-kpi-label { font-size: 7.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 3px; }
.mock-kpi-val { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--navy); line-height: 1; }
.mock-kpi-badge { display: inline-block; margin-top: 4px; font-size: 7px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 6px; border-radius: 2px; }
.mock-cmd-row { display: grid; grid-template-columns: repeat(3,1fr); }
.mock-cmd-tile { border-right: 1px solid var(--border); }
.mock-cmd-tile:last-child { border-right: none; }
.mock-cmd-tile.shaded { background: var(--gray-lt); }
.mock-cmd-head { background: var(--navy); color: white; padding: 6px 10px; font-size: 7.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.mock-cmd-body { padding: 10px 12px; }
.mock-cmd-lbl { font-size: 7px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 2px; }
.mock-cmd-amt { font-family: 'DM Serif Display', serif; font-size: 22px; line-height: 1; margin-bottom: 7px; }
.mock-cmd-status { display: inline-block; padding: 3px 7px; border-radius: 2px; font-size: 7.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* Status colors */
.s-safe { background: var(--green-lt); color: var(--green); }
.s-wait { background: var(--amber-lt); color: var(--amber); }
.s-stop { background: var(--red-lt);   color: var(--red); }
.badge-ok   { background: var(--green-lt); color: var(--green); }
.badge-over { background: var(--red-lt);   color: var(--red); }

/* ══════════════════════════════
   STEP CARDS
══════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.step-card { background: white; padding: 28px 22px; }
.step-card.shaded { background: var(--gray-lt); }
.step-num { font-family: 'DM Serif Display', serif; font-size: 52px; color: var(--navy-mid); line-height: 1; margin-bottom: 12px; }
.step-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 12.5px; color: var(--gray-mid); line-height: 1.62; }
.step-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

/* ══════════════════════════════
   PRICING CARDS
══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 40px rgba(31,56,100,0.25);
  transform: translateY(-8px);
}
.price-head { padding: 24px 22px 18px; border-bottom: 1px solid var(--border); }
.price-card.featured .price-head { border-bottom: 1px solid rgba(255,255,255,0.1); }
.featured-pill {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.price-tier { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.price-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 5px; }
.price-card.featured .price-name { color: white; }
.price-tagline { font-size: 11.5px; color: var(--gray-mid); line-height: 1.45; }
.price-card.featured .price-tagline { color: rgba(255,255,255,0.52); }
.price-body { padding: 18px 22px; flex: 1; }
.price-line { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-lbl { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); width: 56px; flex-shrink: 0; }
.price-card.featured .price-lbl { color: rgba(255,255,255,0.42); }
.price-amt { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); line-height: 1; }
.price-card.featured .price-amt { color: white; }
.price-per { font-size: 11px; color: var(--gray-mid); }
.price-card.featured .price-per { color: rgba(255,255,255,0.42); }
.price-divider { height: 1px; background: var(--border); margin: 14px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-list { list-style: none; }
.price-list li { font-size: 12.5px; color: var(--gray-mid); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.price-card.featured .price-list li { color: rgba(255,255,255,0.7); }
.price-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; font-size: 12px; }
.price-foot { padding: 16px 22px; border-top: 1px solid var(--border); }
.price-card.featured .price-foot { border-top: 1px solid rgba(255,255,255,0.1); }
.price-note { font-size: 11px; color: var(--gray-mid); font-style: italic; }
.price-card.featured .price-note { color: rgba(255,255,255,0.42); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 13.5px; color: var(--gray-mid); line-height: 1.7; }

/* ══════════════════════════════
   FORMS
══════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 13.5px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-dark);
  outline: none;
  transition: border-color 0.18s;
  background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inline-form { display: flex; gap: 0; }
.inline-form .form-input { border-radius: 2px 0 0 2px; flex: 1; }
.inline-form .btn { border-radius: 0 2px 2px 0; white-space: nowrap; }

/* ══════════════════════════════
   ZONE CARDS (navy bg)
══════════════════════════════ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 24px 22px 20px;
}
.zone-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 24px; height: 24px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.zone-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 7px; }
.zone-desc { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.62; }

/* ══════════════════════════════
   STATS ROW
══════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 2px;
}
.stat-number { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 13px; color: var(--gray-mid); line-height: 1.55; }

/* ══════════════════════════════
   MULTI-LOCATION NOTE
══════════════════════════════ */
.multi-note {
  background: var(--navy-lt);
  border: 1px solid var(--navy-mid);
  border-radius: 2px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--navy);
  margin-top: 6px;
}
.multi-note strong { font-weight: 700; }
.multi-note a { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 88px 56px;
  text-align: center;
}
.cta-band h2 { font-family: 'DM Serif Display', serif; font-size: 40px; color: white; margin-bottom: 16px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.58); max-width: 480px; margin: 0 auto 38px; font-weight: 300; line-height: 1.65; }
.cta-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.divider-text { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; margin: 18px 0; }
.inline-form-dark .form-input { border: none; border-radius: 2px 0 0 2px; }
.form-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 48px 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: white; margin-bottom: 10px; }
.footer-brand-name em { color: var(--orange); font-style: normal; }
.footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.65; max-width: 220px; }
.footer-col-title { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 9px; transition: color 0.16s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,0.24); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 10.5px; color: rgba(255,255,255,0.3); transition: color 0.16s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════
   UTILITIES
══════════════════════════════ */
.bg-gray  { background: var(--gray-lt); }
.bg-navy  { background: var(--navy); }
.bg-white { background: white; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: white; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ══════════════════════════════
   MOBILE RESPONSIVE — 768px and below
══════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .nav {
    padding: 0 20px;
    height: auto;
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 12px;
    position: relative;
  }
  .nav-brand { font-size: 18px; }
  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding: 7px 14px; font-size: 11px !important; }

  /* ── SECTIONS ── */
  .section    { padding: 48px 20px; }
  .section-sm { padding: 36px 20px; }
  .section-lg { padding: 56px 20px; }

  /* ── TYPOGRAPHY ── */
  .section-title { font-size: 28px; }
  .section-sub   { font-size: 14px; margin-bottom: 28px; }
  .eyebrow       { font-size: 9px; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 44px 20px 36px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p  { font-size: 14px; }

  /* ── HERO (index) ── */
  .hero-headline { font-size: 34px !important; }
  .hero-sub-text { font-size: 14px !important; }
  .cta-group { flex-direction: column; align-items: center; gap: 10px; }
  .btn { padding: 13px 24px; font-size: 12px; width: 100%; text-align: center; }

  /* ── DASHBOARD MOCK ── */
  .dashboard-mock { margin: 0 -4px; }
  .mock-kpi-val   { font-size: 16px; }
  .mock-cmd-amt   { font-size: 16px; }
  .mock-kpi-label { font-size: 6.5px; }
  .mock-cmd-lbl   { font-size: 6px; }
  .mock-cmd-head  { font-size: 6.5px; padding: 5px 8px; }
  .mock-cmd-body  { padding: 8px; }
  .mock-kpi       { padding: 8px; }
  .mock-header-brand { font-size: 12px; }

  /* ── GRIDS → SINGLE COLUMN ── */
  .grid-2,
  .grid-3,
  .stats-grid,
  .zones-grid,
  .pricing-grid,
  .steps-grid,
  .pain-grid,
  .how-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── PRICING ── */
  .price-card.featured { transform: none; }

  /* ── STEPS ── */
  .steps-grid { border-radius: 3px; }
  .step-card  { padding: 22px 18px; }
  .step-num   { font-size: 42px; }

  /* ── ORANGE STRIP ── */
  .orange-strip { padding: 18px 20px; }
  .orange-strip p { font-size: 14px; }

  /* ── FOOTER ── */
  .footer { padding: 36px 20px 24px; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal { justify-content: center; }

  /* ── CTA BAND ── */
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band p  { font-size: 14px; }
  .inline-form { flex-direction: column; gap: 8px; }
  .inline-form .form-input { border-radius: 2px; }
  .inline-form .btn { border-radius: 2px; width: 100%; }

  /* ── MULTI NOTE ── */
  .multi-note { flex-direction: column; gap: 8px; }

  /* ── HOW IT WORKS detail page ── */
  .how-detail-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── CONTACT page ── */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── ZONE CARDS ── */
  .zone-card { padding: 18px 16px; }

  /* ── STAT CARDS ── */
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 38px; }

  /* ── FAQ ── */
  .faq-q { font-size: 14px; }
  .faq-a { font-size: 13px; }

  /* ── PAIN CARDS ── */
  .card { padding: 22px 18px; }
}

/* ══════════════════════════════
   SMALL PHONES — 480px and below
══════════════════════════════ */
@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .page-hero h1  { font-size: 26px; }
  .cta-band h2   { font-size: 24px; }

  .mock-kpi-val  { font-size: 14px; }
  .mock-cmd-amt  { font-size: 14px; }

  .nav-links {
    display: none; /* hide nav links on very small screens, keep brand + CTA */
  }
  .nav { justify-content: space-between; }
}

/* ══════════════════════════════
   CONTACT & HOW-IT-WORKS MOBILE FIXES
══════════════════════════════ */
@media (max-width: 768px) {
  .contact-grid,
  .how-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Fix form inputs being too narrow on mobile */
  .form-input,
  .form-select,
  .form-textarea {
    width: 100% !important;
    font-size: 16px !important; /* prevents iOS zoom on focus */
  }

  /* Fix button width on contact page */
  #contact-form .btn {
    width: 100% !important;
  }

  /* Fix sidebar cards overflowing */
  .contact-grid > div {
    width: 100% !important;
    overflow: hidden !important;
  }

  /* Fix form grid (first/last name) staying side by side too long */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Pricing stats 2-col stays readable on mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
