/* ============================================================
   NPZ Treatment Center — npzhelpline.space
   Style: Warm Earth (#2) | Architecture: Sticky Header Minimal (#7)
   Generated: 2026-02-13
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #8B5A2B;
  --color-primary-dark: #6B4423;
  --color-secondary: #C4A77D;
  --color-accent: #E07B53;
  --color-text: #3D2914;
  --color-text-light: #6B5B4E;
  --color-bg: #FDF8F3;
  --color-bg-alt: #FFFFFF;
  --color-bg-warm: #F5EDE3;
  --color-border: #E0D5C8;
  --color-border-light: #EDE6DC;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(61,41,20,0.08);
  --shadow-md: 0 4px 16px rgba(61,41,20,0.1);
  --shadow-lg: 0 8px 32px rgba(61,41,20,0.12);
  --radius: 6px;
  --radius-lg: 8px;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-nav:focus { top: 16px; }

/* ============================================================
   HEADER — Sticky Header Minimal (#7)
   Ultra-clean: logo, 4 links, CTA, hamburger
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}
.site-logo span { color: var(--color-accent); }

/* Primary nav — 4 visible links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

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

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.2s;
}
.header-cta:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger menu button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  gap: 5px;
  transition: border-color 0.3s;
}
.hamburger-btn:hover { border-color: var(--color-primary); }

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-out secondary menu */
.slide-menu {
  position: fixed;
  top: var(--header-height);
  right: -320px;
  width: 300px;
  height: calc(100vh - var(--header-height));
  background: var(--color-bg-alt);
  border-left: 1px solid var(--color-border-light);
  box-shadow: -4px 0 24px rgba(61,41,20,0.1);
  z-index: 999;
  padding: 32px 24px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.slide-menu.open { right: 0; }

.slide-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}
.slide-menu a:last-child { border-bottom: none; }
.slide-menu a:hover { color: var(--color-accent); }

.slide-menu .menu-phone {
  margin-top: 24px;
  padding: 16px;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  text-align: center;
}
.slide-menu .menu-phone a {
  font-size: 1.2rem;
  color: var(--color-accent);
  border-bottom: none;
  padding: 0;
}

.menu-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(61,41,20,0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

/* Body offset for fixed header */
body { padding-top: var(--header-height); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,41,20,0.72) 0%, rgba(139,90,43,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: #c96842;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

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

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-primary);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-warm {
  background: var(--color-bg-warm);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 12px; }
.card a.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}
.card a.card-link:hover { color: var(--color-primary); }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stat-item p {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================================
   AMENITIES GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  display: none;
}

.testimonial-card.active { display: block; }

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 16px;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--color-secondary);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-program {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.testimonial-dots button.active { background: var(--color-accent); border-color: var(--color-accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 24px; }
.cta-section .cta-phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 24px;
}
.cta-section .cta-phone:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-col h4 {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col p { font-size: 0.95rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--color-secondary); }

.footer-links li { margin-bottom: 10px; }

.footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--color-secondary); }

/* ============================================================
   INNER PAGE HERO (smaller)
   ============================================================ */
.hero-inner {
  min-height: 320px;
  padding: 60px 0;
}

.hero-inner h1 { font-size: 2.4rem; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs span { margin: 0 8px; }

/* ============================================================
   CONTENT SECTIONS — Inner Pages
   ============================================================ */
.content-block { margin-bottom: 48px; }

.content-block h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border-light);
  margin-bottom: 24px;
}

.content-block h3 { margin-top: 24px; }

/* Timeline / Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-card h4 { margin-top: 8px; }

/* Modality tags */
.modality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modality-tag {
  background: var(--color-bg-warm);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.team-card .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}

.team-card h4 { margin-bottom: 4px; }
.team-card .team-title { color: var(--color-accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.team-card .team-creds { color: var(--color-text-light); font-size: 0.85rem; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.faq-question:hover { color: var(--color-primary); }

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Insurance grid */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.insurance-badge {
  background: var(--color-bg-warm);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.blog-card .blog-cat {
  display: inline-block;
  background: var(--color-bg-warm);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-accent); }
.blog-card p { font-size: 0.95rem; color: var(--color-text-light); }

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.contact-info-card h3 { margin-bottom: 16px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Privacy policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 { font-size: 1.5rem; margin-top: 32px; }
.privacy-content h3 { font-size: 1.2rem; margin-top: 24px; }
.privacy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.privacy-content li { margin-bottom: 6px; color: var(--color-text-light); }

/* Day schedule */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.schedule-table th,
.schedule-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}
.schedule-table th {
  background: var(--color-bg-warm);
  font-weight: 700;
  color: var(--color-primary);
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border: 1px solid var(--color-border-light);
  text-align: center;
}
.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.comparison-table tbody tr:nth-child(even) { background: var(--color-bg-warm); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 2rem; }
  .hero-inner { min-height: 260px; }

  .primary-nav { display: none; }
  .header-cta { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-items { gap: 24px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 56px 0; }

  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { flex-direction: column; align-items: center; gap: 16px; }
  .container { padding: 0 16px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
