/* GharSaathi — shared styles */

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

:root {
  --ink: #241C15;
  --ink-soft: #5B4F42;
  --paper: #FAF7F2;
  --paper-alt: #F1EAE0;
  --accent: #C1602F;
  --accent-dark: #9C4A22;
  --accent-soft: #F3DCC9;
  --line: #E4DACB;
  --dark: #241C15;
  --dark-text: #F1EAE0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

.btn-on-dark {
  border-color: var(--dark-text);
  color: var(--dark-text);
}
.btn-on-dark:hover { background: var(--dark-text); color: var(--dark); }

/* HEADER */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.logo svg { color: var(--accent); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

nav.main-nav a:hover { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg { color: var(--accent); flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
}

/* CARDS */
.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}

/* HERO (shared skeleton) */
.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-centered { text-align: center; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }

/* placeholder photo block (no local image assets in this repo — CSS pattern stand-in) */
.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  border: 1px solid var(--line);
  background-color: var(--paper-alt);
  background-image: radial-gradient(circle at 1px 1px, var(--line) 1px, transparent 0);
  background-size: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.photo-placeholder.wide { aspect-ratio: 16 / 10; }

/* static hero photo (real image, same box as .photo-placeholder).
   Height is capped via max-width (not max-height): since width
   already fills the column at 100%, constraining max-height directly
   would let the browser override aspect-ratio's computed height,
   flattening the portrait crop toward square. Deriving the cap from
   width instead (max-width = height-budget * 4/5) keeps the true 4:5
   ratio always and guarantees height stays within budget as a result. */
.hero-photo {
  aspect-ratio: 4 / 5;
  max-width: calc((100vh - 210px) * 4 / 5);
  border-radius: 10px;
  border: 1px solid var(--line);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about.html hero photo only — same max-width approach, tuned to
   this page's own (shorter) nav+padding offset */
.about-hero-photo {
  max-width: calc((100vh - 170px) * 4 / 5);
}

/* trust-verification.jpg in index.html's .story-teaser only — this
   photo is landscape-sourced and crops awkwardly at the shared
   .hero-photo 4/5 ratio; .hero-photo stays 4/5 everywhere else.
   max-width: none cancels the base class's cap since this shorter
   ratio was never at risk of overflowing to begin with. */
.story-teaser-photo {
  aspect-ratio: 4 / 3.5;
  max-width: none;
}

/* hero photo collage (services.html) */
.photo-collage {
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
}

.photo-collage .collage-main { grid-row: 1 / 3; }

/* hero map embed (service-areas.html and sector pages). Same
   max-width approach as .hero-photo — see comment above it — so the
   4:5 ratio stays true instead of getting flattened by max-height. */
.map-embed {
  aspect-ratio: 4 / 5;
  max-width: calc((100vh - 210px) * 4 / 5);
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* service-areas.html's hero map only — caps height to roughly match
   the text column beside it so the section fits within short
   viewports without scrolling; the 19 sector-page maps keep the
   shared 4/5 .map-embed ratio untouched */
.service-areas-map {
  width: 100%;
  max-width: none;
  max-height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* HERO SLIDER (index.html) */
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - 170px);
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-alt);
}

.hero-slider::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 96px;
  background: linear-gradient(to top, rgba(36, 28, 21, 0.5), rgba(36, 28, 21, 0));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide-caption {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 2;
  background: rgba(36, 28, 21, 0.72);
  color: var(--dark-text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-slide-dot.is-active {
  background: #FFFFFF;
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* service card photo (replaces icon-badge for services with a real photo) */
.service-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* image goes edge-to-edge; padding moves to the text body below it */
.service-card:has(.service-card-photo),
.cross-link-card:has(.service-card-photo) {
  padding: 0;
}

.service-card-body {
  padding: 24px;
}

.cross-link-card .service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 18px 20px 20px;
}

.photo-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 14px;
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* QUICK NAV ICON ROW */
.quick-nav {
  padding: 8px 0 56px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #FFFFFF;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  transition: border-color 0.15s ease;
}

.quick-nav-item:hover { border-color: var(--accent); }

.quick-nav-item .icon-badge { color: var(--accent); }

.quick-nav-item span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* SECTION HEADS */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card .icon-badge { margin-bottom: 18px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }

/* when the whole card is itself the link (e.g. service-areas.html) */
a.service-card { text-decoration: none; color: var(--ink); display: block; }

/* whole-card click target: the "Learn more" link stretches to cover
   the full card via ::after, so the card is clickable everywhere, not
   just on the visible text — see .service-link::after below */
div.service-card {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
div.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
div.service-card .service-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* TRUST SECTION (dark band) */
.section-dark {
  background: var(--dark);
  color: var(--dark-text);
  padding: 72px 0;
}

.section-dark .eyebrow { color: var(--accent-soft); }
.section-dark .eyebrow::before { background: var(--accent-soft); }
.section-dark h2 { color: var(--dark-text); }
.section-dark .section-head p { color: #C9BFAF; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.trust-item { display: flex; gap: 18px; }
.trust-item .icon-badge { background: rgba(241, 234, 224, 0.1); color: var(--accent-soft); }
.trust-item h3 { color: var(--dark-text); font-size: 1.05rem; margin-bottom: 6px; }
.trust-item p { color: #C9BFAF; font-size: 0.93rem; }

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* PILLS (service areas) */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.stars { color: var(--accent); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.98rem; color: var(--ink); margin-bottom: 18px; }
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.testimonial-note { font-size: 0.85rem; font-style: italic; color: var(--ink-soft); }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-question svg { flex-shrink: 0; color: var(--accent); transition: transform 0.15s ease; }
.faq-item[open] .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 520px;
}

.faq-answer a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* FOUNDING STORY TEASER */
.story-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.story-teaser .story-copy p { color: var(--ink-soft); margin: 16px 0 24px; max-width: 480px; }

/* FINAL CTA */
.cta-band {
  background: var(--accent);
  color: #FFFFFF;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { color: #FFFFFF; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 10px; }
.cta-band p { color: var(--accent-soft); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn-primary { background: #FFFFFF; color: var(--accent-dark); }
.cta-band .btn-primary:hover { background: var(--paper-alt); }

/* FOOTER */
footer.site-footer {
  background: var(--dark);
  color: #C9BFAF;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(241, 234, 224, 0.12);
}

.footer-brand .logo { color: var(--dark-text); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; max-width: 260px; }

footer h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 16px;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { font-size: 0.9rem; text-decoration: none; color: #C9BFAF; }
footer ul li a:hover { color: var(--dark-text); }

.footer-bottom {
  padding-top: 24px;
  font-size: 0.82rem;
  color: #8A7F6E;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb span { color: var(--ink); }

/* PRICING (maid.html and other service pages) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

/* modifiers for service pages with fewer than 3 tiers, so the grid
   doesn't leave empty columns */
.pricing-grid.pricing-grid-1 {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.pricing-grid.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card { position: relative; }
.pricing-card.featured { border-color: var(--accent); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
}

.pricing-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.pricing-card .pricing-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; }
.pricing-card .pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.pricing-card .pricing-amount span { font-family: 'Work Sans', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pricing-note { font-size: 0.85rem; font-style: italic; color: var(--ink-soft); }

/* INCLUDED CHECKLIST */
.included-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.included-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.included-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; }
.included-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* CROSS LINKS */
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cross-link-card {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* .cross-link-card is itself the <a>, so the whole card is already one
   click target — no stretched-link needed, just the hover affordance */
.cross-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cross-link-card h3 { font-size: 1rem; }
.cross-link-card .service-link { margin-top: auto; }

/* TWO COLUMN (about.html) */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.two-col-grid .card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.two-col-grid .card p { color: var(--ink-soft); font-size: 0.95rem; }

/* VERIFICATION DEEP DIVE */
.verify-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.verify-item .icon-badge { background: rgba(241, 234, 224, 0.1); color: var(--accent-soft); margin-bottom: 16px; }
.verify-item h3 { color: var(--dark-text); font-size: 1rem; margin-bottom: 8px; }
.verify-item p { color: #C9BFAF; font-size: 0.9rem; }

/* TEAM SECTION */
.team-section { text-align: center; }
.team-section .section-head { margin-left: auto; margin-right: auto; }
.team-section p.team-line { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* LEGAL PAGES (privacy policy, terms of service) */
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.legal-content .last-updated { color: var(--ink-soft); font-size: 0.92rem; margin-top: 10px; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.legal-content p { margin-bottom: 16px; color: var(--ink-soft); }
.legal-content ul { margin: 0 0 16px 22px; color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent-dark); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav.main-nav { display: none; }
  nav.main-nav.nav-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 32px 20px;
  }
  header.site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .story-teaser, .included-layout { grid-template-columns: 1fr; }
  .hero-grid .photo-placeholder, .hero-grid .hero-slider, .hero-grid .hero-photo, .hero-grid .photo-collage, .hero-grid .map-embed, .story-teaser .photo-placeholder { order: -1; }
  .stats-row, .trust-grid, .steps-grid, .services-grid, .testimonial-grid, .pricing-grid, .verify-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .cross-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .header-inner { padding: 14px 20px; }
  .header-actions { gap: 10px; }
  .header-phone { display: none; }
  .header-actions .btn-primary { padding: 10px 12px; }
  .header-actions .btn-primary span { display: none; }
  .container { padding: 0 20px; }
  .stats-row, .trust-grid, .steps-grid, .services-grid, .testimonial-grid, .pricing-grid, .verify-grid, .quick-nav-grid, .two-col-grid, .cross-links-grid { grid-template-columns: 1fr; }
  .pricing-grid.pricing-grid-2 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
