/*
Theme Name: Supervised Connections
Theme URI: https://supervisedconnections.org
Author: Supervised Connections
Description: Custom theme for Supervised Connections — professional supervised visitation services in Dallas–Fort Worth.
Version: 1.0
License: Private
Text Domain: supervised-connections
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — COLOR SYSTEM
   ============================================================ */
:root {
  --blue-900: #0F2E4A;
  --blue-800: #163D5E;
  --blue-700: #1B4F72;
  --blue-600: #2471A3;
  --blue-500: #2E86C1;
  --blue-100: #D6EAF8;
  --blue-50:  #EBF5FB;

  --amber-600: #D4911E;
  --amber-500: #E8A020;
  --amber-400: #F0B644;
  --amber-300: #F5CC70;
  --amber-100: #FDF2D9;

  --gray-900: #1A1A2E;
  --gray-800: #2D2D3F;
  --gray-700: #4A4A5A;
  --gray-600: #6B6B7B;
  --gray-500: #8E8E9E;
  --gray-400: #B0B0BE;
  --gray-300: #D1D1DB;
  --gray-200: #E8E8ED;
  --gray-100: #F3F3F6;
  --gray-50:  #F9F9FB;
  --white:    #FFFFFF;

  --teal-600: #1A8A7D;
  --teal-500: #20B2AA;
  --teal-100: #D1F2EF;
  --teal-50:  #E8FAF8;

  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted:     var(--gray-600);
  --bg-body:        var(--gray-50);
  --bg-card:        var(--white);
  --border-light:   var(--gray-200);

  --shadow-sm:  0 1px 3px rgba(15,46,74,0.06), 0 1px 2px rgba(15,46,74,0.04);
  --shadow-md:  0 4px 12px rgba(15,46,74,0.08), 0 2px 4px rgba(15,46,74,0.04);
  --shadow-lg:  0 12px 32px rgba(15,46,74,0.10), 0 4px 8px rgba(15,46,74,0.04);
  --shadow-xl:  0 20px 48px rgba(15,46,74,0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-body);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  color: var(--blue-900);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.section-heading { margin-bottom: 16px; }
.section-subtext { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber-500);
  color: var(--blue-900);
  border-color: var(--amber-500);
  box-shadow: 0 2px 8px rgba(232,160,32,0.3);
}
.btn-primary:hover {
  background: var(--amber-600);
  border-color: var(--amber-600);
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
  transform: translateY(-1px);
  color: var(--blue-900);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}
.btn-outline:hover {
  background: var(--blue-700);
  color: var(--white);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn:active { transform: scale(0.98); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-800);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 24px; height: 24px; }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--blue-700); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-700);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; color: var(--text-secondary); padding: 8px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-phone { font-weight: 700; color: var(--blue-700); font-size: 1.1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, #1A6B8A 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(232,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,138,125,0.06) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-body);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber-300);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.025em;
}

.hero h1 span { color: var(--amber-400); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

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

.hero-shapes {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}

.hero-shapes .shape-1 { width: 500px; height: 500px; top: -80px; right: -120px; }
.hero-shapes .shape-2 { width: 300px; height: 300px; bottom: 60px; right: 80px; }
.hero-shapes .shape-3 { width: 160px; height: 160px; top: 40%; right: 40%; background: var(--amber-400); opacity: 0.08; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding: 0 24px;
  margin-bottom: 80px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item { display: flex; align-items: center; gap: 16px; }

.trust-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg { width: 26px; height: 26px; color: var(--blue-700); }

.trust-text { font-size: 0.92rem; font-weight: 600; color: var(--blue-900); line-height: 1.35; }
.trust-text small { display: block; font-weight: 400; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   SECTION SPACING
   ============================================================ */
section { padding: 80px 0; }
.section-header { margin-bottom: 56px; }

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

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border-light);
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(27,79,114,0.25);
}

.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.95rem; line-height: 1.65; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.serve-card.parents::before { background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); }
.serve-card.attorneys::before { background: linear-gradient(90deg, var(--amber-600), var(--amber-400)); }
.serve-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.serve-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.serve-card.parents .serve-card-icon { background: var(--blue-50); }
.serve-card.attorneys .serve-card-icon { background: var(--amber-100); }
.serve-card-icon svg { width: 32px; height: 32px; }
.serve-card h3 { margin-bottom: 16px; font-size: 1.35rem; }
.serve-card > p { margin-bottom: 20px; font-size: 0.97rem; }
.serve-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.serve-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.serve-card li svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.serve-card.parents li svg { color: var(--blue-600); }
.serve-card.attorneys li svg { color: var(--amber-600); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { background: var(--white); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.city-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.city-badge:hover {
  background: var(--blue-50);
  border-color: var(--blue-100);
  color: var(--blue-700);
}

.city-badge svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}

.faq-item:hover { border-color: var(--blue-100); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-900);
  text-align: left;
  gap: 16px;
  transition: color 0.2s var(--ease);
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  transition: transform 0.3s var(--ease);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--blue-100);
}

.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 28px; }

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

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.diff-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
}

.diff-icon svg { width: 20px; height: 20px; color: var(--teal-600); }
.diff-text { font-size: 0.9rem; font-weight: 600; color: var(--blue-900); line-height: 1.4; }
.diff-text small { display: block; font-weight: 400; color: var(--text-muted); margin-top: 2px; font-size: 0.82rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, #1A6B8A 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,160,32,0.1) 0%, transparent 60%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.6rem,3.5vw,2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { font-size: 1.1rem; padding: 16px 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 280px; }

.footer h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s var(--ease); text-decoration: none; }
.footer-links a:hover { color: var(--amber-400); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--amber-400); }

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

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 120px 0 60px;
  position: relative;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-300); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.page-content h2 { margin-top: 48px; margin-bottom: 16px; }
.page-content h3 { margin-top: 32px; margin-bottom: 12px; }
.page-content p { margin-bottom: 20px; line-height: 1.75; }
.page-content ul, .page-content ol { margin-bottom: 20px; padding-left: 28px; }
.page-content li { margin-bottom: 8px; color: var(--text-secondary); }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content a { color: var(--blue-600); text-decoration: underline; }
.page-content a:hover { color: var(--blue-800); }

.sc-cta-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 40px 0;
}

.sc-cta-box h2 { font-size: 1.4rem; margin-bottom: 12px; margin-top: 0; }
.sc-cta-box p { margin-bottom: 12px; }
.sc-cta-box p:last-child { margin-bottom: 0; }

.sc-offsite-note {
  background: var(--amber-100);
  border-left: 4px solid var(--amber-500);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: 0.97rem;
}

/* Article / News styles */
.article-content { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }
.article-content h1 { margin-bottom: 24px; }
.article-content h2 { margin-top: 48px; margin-bottom: 16px; font-size: clamp(1.3rem,2.5vw,1.8rem); }
.article-content h3 { margin-top: 32px; margin-bottom: 12px; }
.article-content p { margin-bottom: 20px; line-height: 1.8; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 28px; }
.article-content li { margin-bottom: 8px; color: var(--text-secondary); }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content a { color: var(--blue-600); text-decoration: underline; }
.article-content a:hover { color: var(--blue-800); }
.article-content em { font-style: italic; }
.article-content strong { font-weight: 700; color: var(--blue-900); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 100px; }
  .hero-content { padding: 40px 0; }
  .hero-shapes { opacity: 0.5; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
  .trust-bar { margin-top: -30px; margin-bottom: 40px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: 24px; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .serve-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .differentiators { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .trust-bar { padding: 0 16px; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .serve-card { padding: 32px 24px; }
  .step-card { padding: 32px 24px; }
  .cities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .city-badge { padding: 10px 14px; font-size: 0.85rem; }
  .faq-question { padding: 18px 20px; font-size: 0.98rem; }
  .faq-answer-inner { padding: 0 20px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
