/* =========================================================
   THE HEALTH SCALE GROUP — Shared Stylesheet
   Brand system: thehealthscalegroup.com
   Fraunces (display serif) + Inter Tight (body sans)
   Deep navy base, sky cyan accent, orange action colour
   Mobile first: base styles target 375px, tablet at 640px,
   desktop at 980px
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-navy:     #060F24;
  --navy:          #0A1F44;
  --navy-2:        #0D2654;
  --navy-card:     #0B1B3A;
  --navy-border:   #16305E;
  --blue:          #2563EB;
  --accent:        #7DD3FC;
  --accent-soft:   #A5E1FD;
  --accent-glow:   rgba(125, 211, 252, 0.18);
  --accent-faint:  rgba(125, 211, 252, 0.10);
  --highlight:     #FF8A3D;
  --highlight-soft:#FFB070;
  --highlight-glow:rgba(255, 138, 61, 0.22);
  --green:         #34D399;
  --text-soft:     #D4DCEC;
  --text-muted:    #94A3C4;
  --white:         #FFFFFF;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --shadow-md:     0 10px 30px rgba(3, 8, 20, 0.45);
  --shadow-lg:     0 24px 60px rgba(3, 8, 20, 0.55);
  --max-width:     1180px;
  --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter Tight', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 em, h2 em, .section-title em, .category-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-soft); }

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

::selection { background: var(--accent); color: var(--deep-navy); }

/* ---------- Utilities ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(125, 211, 252, 0.28);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--highlight);
  color: #1A0F04;
}
.btn-primary:hover {
  background: var(--highlight-soft);
  color: #1A0F04;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--highlight-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-soft);
  border-color: rgba(125, 211, 252, 0.45);
}
.btn-outline:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(125, 211, 252, 0.06);
}

.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 15, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 48, 94, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 100%; height: 100%; }

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.nav-links {
  display: none;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14.5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-inner > .btn {
  display: inline-flex;
  margin-left: auto;
  padding: 10px 16px;
  font-size: 13.5px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }

.site-nav.nav-open .nav-toggle .icon-open { display: none; }
.site-nav.nav-open .nav-toggle .icon-close { display: block; }

.site-nav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.site-nav.nav-open .nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15.5px;
}
.site-nav.nav-open .nav-links a:hover { background: var(--navy-2); }

.nav-cta-mobile { margin-left: auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0 0;
  font-size: 13px;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list .sep { color: var(--navy-border); }
.breadcrumb-list .current { color: var(--text-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 44px 0 52px;
  background:
    radial-gradient(ellipse 80% 55% at 85% -10%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 45% at 10% 110%, rgba(125, 211, 252, 0.07), transparent 60%),
    linear-gradient(180deg, #091736 0%, #071126 100%);
  border-bottom: 1px solid rgba(22, 48, 94, 0.6);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(1.9rem, 6.4vw, 2.4rem);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 26px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 26px;
}
.hero-cta .btn { width: 100%; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.hero .service-card-icon { display: none; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: rgba(10, 31, 68, 0.55);
  border-bottom: 1px solid rgba(22, 48, 94, 0.6);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: flex-start;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }

/* ---------- Page layout (content + sidebar) ---------- */
.page-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-content h2 {
  font-size: clamp(1.42rem, 4.6vw, 1.75rem);
  margin: 42px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.18rem;
  margin: 30px 0 12px;
}
.page-content p { margin-bottom: 16px; color: var(--text-soft); }
.page-content p strong { color: var(--white); font-weight: 600; }
.page-content ul, .page-content ol {
  margin: 0 0 20px 2px;
  padding-left: 0;
  list-style: none;
}
.page-content ul li, .page-content ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-48deg);
  border-radius: 1px;
}
.page-content ol { counter-reset: item; }
.page-content ol li { counter-increment: item; }
.page-content ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

/* ---------- Sidebar ---------- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.sidebar-card h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.sidebar-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-cta {
  background:
    radial-gradient(ellipse 120% 90% at 100% 0%, rgba(37, 99, 235, 0.30), transparent 65%),
    var(--navy);
  border-color: rgba(125, 211, 252, 0.30);
}
.sidebar-cta .btn,
.sidebar-cta a.btn {
  background: var(--highlight);
  color: #1A0F04;
  width: 100%;
}
.sidebar-cta .btn:hover {
  background: var(--highlight-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--highlight-glow);
}

.sidebar-links { list-style: none; }
.sidebar-links li {
  border-bottom: 1px solid rgba(22, 48, 94, 0.6);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 11px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.sidebar-links a:hover { color: var(--accent); }

/* ---------- Section headers ---------- */
.section-header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.55rem, 5.4vw, 2.1rem);
}
.section-sub {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 16px;
}

/* ---------- Stats row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat-cell {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.45;
}

/* ---------- Service category sections & cards ---------- */
.category-section { padding: 52px 0; }
.category-section:nth-of-type(even) { background: rgba(10, 31, 68, 0.35); }
.category-title {
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  margin-bottom: 10px;
}
.category-sub {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  color: var(--text-soft);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: var(--shadow-md);
  color: var(--text-soft);
}
.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--accent-faint);
  border: 1px solid rgba(125, 211, 252, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.service-card-link svg { width: 15px; height: 15px; stroke: currentColor; transition: transform .18s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- FAQs ---------- */
.faqs { padding: 56px 0; background: rgba(10, 31, 68, 0.35); }

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: rgba(125, 211, 252, 0.40); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--white);
  padding: 18px 20px;
  cursor: pointer;
  line-height: 1.45;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-faint);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ---------- CTA section ---------- */
.cta-section { padding: 56px 0; }

.cta-inner {
  position: relative;
  background:
    radial-gradient(ellipse 90% 100% at 85% 0%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 80% at 5% 100%, rgba(125, 211, 252, 0.10), transparent 60%),
    var(--navy);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: var(--radius-lg);
  padding: 44px 26px;
  text-align: center;
  overflow: hidden;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 5.4vw, 2.05rem);
  margin-bottom: 14px;
}
.cta-inner p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 16px;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--highlight);
  color: #1A0F04;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta-btn-dark:hover {
  background: var(--highlight-soft);
  color: #1A0F04;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--highlight-glow);
}

.cta-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid rgba(125, 211, 252, 0.45);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.cta-btn-outline-dark:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(125, 211, 252, 0.06);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050C1D;
  border-top: 1px solid rgba(22, 48, 94, 0.6);
  padding: 52px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 42px;
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 16px 0 18px;
  max-width: 340px;
}

.footer-contact { list-style: none; }
.footer-contact li { margin-bottom: 8px; font-size: 14px; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-serving {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-serving svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 1.6; flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(22, 48, 94, 0.6);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   TABLET — 640px and up
   ========================================================= */
@media (min-width: 640px) {
  .container { padding: 0 24px; }

  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 2.7rem); }
  .hero-cta { flex-direction: row; align-items: center; }
  .hero-cta .btn { width: auto; }

  .stats-row { grid-template-columns: repeat(4, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { padding: 56px 44px; }
  .cta-btn-group { flex-direction: row; justify-content: center; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =========================================================
   DESKTOP — 980px and up
   ========================================================= */
@media (min-width: 980px) {
  .nav-inner { padding: 16px 0; gap: 28px; }
  .nav-logo-mark { width: 38px; height: 38px; }
  .nav-logo-text { font-size: 1.05rem; }

  .nav-toggle, .nav-cta-mobile { display: none; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
  }
  .nav-inner > .btn { margin-left: 0; padding: 12px 22px; font-size: 14.5px; }

  .breadcrumb { padding: 18px 0 0; }

  .hero { padding: 76px 0 80px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .hero h1 { font-size: clamp(2.6rem, 3.4vw, 3.1rem); }
  .hero-sub { font-size: 17.5px; }

  .hero .service-card-icon {
    display: flex;
    width: 120px !important;
    height: 120px !important;
    border-radius: 28px !important;
    background: var(--accent-faint) !important;
    border: 1px solid rgba(125, 211, 252, 0.25);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 80px rgba(125, 211, 252, 0.12);
  }
  .hero .service-card-icon svg { width: 52px; height: 52px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

  .page-layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
  .page-content { flex: 1; min-width: 0; max-width: 720px; }
  .sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 92px;
  }

  .category-section { padding: 72px 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .faqs { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .cta-section { padding: 80px 0; }
  .cta-inner { padding: 72px 60px; }

  .site-footer { padding: 64px 0 36px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
}
