/* free-roof-inspection.css — page styles (matches index.html design system) */

:root {
  --navy: #383F50;
  --navy-deep: #2a303d;
  --navy-soft: #4a5266;
  --orange: #3088F4;
  --blue: #3088F4;
  --blue-deep: #1a6dd9;
  --blue-light: #e8f1fe;
  --cream: #faf9f6;
  --warm-gray: #f4f3ef;
  --line: rgba(56, 63, 80, 0.12);
  --line-2: rgba(56, 63, 80, 0.2);
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(56,63,80,.05), 0 2px 6px rgba(56,63,80,.04);
  --shadow-md: 0 4px 16px rgba(56,63,80,.06), 0 12px 32px rgba(56,63,80,.08);
  --shadow-lg: 0 12px 32px rgba(56,63,80,.08), 0 32px 80px rgba(56,63,80,.12);
  --shadow-blue: 0 8px 24px rgba(48, 136, 244, 0.25);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --display: 'Montserrat', sans-serif;
  --body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.text-orange { color: var(--blue); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(48,136,244,0.34);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-large { padding: 18px 32px; font-size: 14px; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 26px 0 6px;
  font-size: 13px;
  color: var(--navy-soft);
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: var(--blue); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb span { margin: 0 10px; opacity: .35; }

/* ============ HERO (dark, matches index.html) ============ */
.page-hero {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 56px 0 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -200px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(48,136,244,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(48,136,244,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ec8ff;
  margin-bottom: 22px;
  padding: 7px 16px;
  background: rgba(48,136,244,0.14);
  border: 1px solid rgba(48,136,244,0.4);
  border-radius: 999px;
  width: fit-content;
}
.hero-eyebrow svg { color: #7ec8ff; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 22px;
  text-transform: none;
}
.page-hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250,249,246,0.78);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--display);
  letter-spacing: 0.04em;
  color: rgba(250,249,246,0.78);
  text-transform: uppercase;
}
.hero-trust-item svg { color: var(--blue); flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-card > p {
  font-size: 14px;
  color: var(--navy-soft);
  margin-bottom: 24px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(48,136,244,0.12);
}
.field textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card .btn { width: 100%; margin-top: 6px; }
.hero-card-fine {
  font-size: 11px;
  color: var(--navy-soft);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ============ INTRO ============ */
.intro-block {
  background: var(--warm-gray);
  padding: 88px 0;
  position: relative;
}
.intro-block .section-eyebrow { margin-bottom: 18px; }
.intro-block h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 760px;
}
.intro-block h2 span { color: var(--blue); }
.intro-block p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 780px;
}
.intro-block p strong { color: var(--navy); font-weight: 700; }
.intro-block p:last-child { margin-bottom: 0; }

/* ============ SECTION HEADS ============ */
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--blue);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-head h2 span { color: var(--blue); }
.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-soft);
  max-width: 640px;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { border-color: var(--blue); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-4deg);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--navy-soft);
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-card:hover .service-link { color: var(--blue); gap: 14px; }

/* ============ LONG CONTENT ============ */
.long-content { background: var(--white); padding: 96px 0; }
.long-content h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
  margin-top: 56px;
  margin-bottom: 18px;
}
.long-content h2:first-child { margin-top: 0; }
.long-content h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.long-content p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--navy);
  margin-bottom: 18px;
}
.long-content strong { color: var(--navy); font-weight: 700; }
.long-content ul, .long-content ol { margin: 0 0 18px 1.25em; padding: 0; }
.long-content li {
  font-size: 16px;
  line-height: 1.78;
  color: var(--navy);
  margin-bottom: 10px;
}
.callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 26px;
  margin: 30px 0;
}
.callout p { margin: 0; font-size: 15px; color: var(--navy); }
.callout strong { color: var(--navy); }

.neighborhoods {
  background: var(--warm-gray);
  border-radius: var(--r-lg);
  padding: 38px 42px;
  margin: 36px 0;
  border: 1px solid var(--line);
}
.neighborhoods h3 {
  margin-top: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.neighborhoods-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.neighborhoods-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  padding: 0;
}
.neighborhoods-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============ WHY US (dark) ============ */
.why-us {
  background: var(--navy);
  color: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(48,136,244,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.why-us .section-head h2 { color: var(--cream); }
.why-us .section-head h2 span { color: #7ec8ff; }
.why-us .section-head p { color: rgba(250,249,246,0.7); }
.why-us .section-eyebrow { color: #7ec8ff; }
.why-us .section-eyebrow::before { background: #7ec8ff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.why-item {
  display: flex;
  gap: 22px;
  padding: 28px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  transition: all 0.3s;
}
.why-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(48,136,244,0.5);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(48,136,244,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec8ff;
  flex-shrink: 0;
}
.why-item h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-item p {
  font-size: 14px;
  color: rgba(250,249,246,0.75);
  line-height: 1.65;
  margin: 0;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.cta-band p { font-size: 16px; opacity: 0.92; margin-bottom: 26px; max-width: 600px; }
.cta-band .btn { background: var(--white); color: var(--blue); }
.cta-band .btn:hover { background: var(--navy); color: var(--white); }
.cta-phone { text-align: right; }
.cta-phone-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--display);
}
.cta-phone-num {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ============ REVIEWS STRIP ============ */
.reviews-strip { padding: 80px 0; background: var(--cream); }
.reviews-strip-head { text-align: center; margin-bottom: 48px; }
.reviews-strip-head .stars {
  color: #ffb700;
  display: inline-flex;
  gap: 3px;
  margin-bottom: 8px;
}
.reviews-strip-head .rating-big {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.reviews-strip-head p {
  color: var(--navy-soft);
  font-size: 15px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-mini {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: all .3s;
}
.review-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.review-mini-stars { color: #ffb700; display: flex; gap: 3px; margin-bottom: 14px; }
.review-mini p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 18px;
  font-style: italic;
}
.review-mini-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-mini-avatar {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
}
.review-mini-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.review-mini-meta { font-size: 12px; color: var(--navy-soft); }

/* ============ FAQ — Horizontal flip-card rail (matches index.html) ============ */
.faq-section {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(1rem, 2vw, 2rem);
  background: var(--cream);
  overflow: hidden;
}
.faq-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.faq-headline {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0.4rem 0 0;
  color: var(--navy);
}
.faq-headline span { color: var(--blue); }
.faq-hint {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
  text-align: right;
  max-width: 320px;
}
.faq-rail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px 0;
  overflow: hidden;
}
.faq-rail {
  display: flex;
  gap: 1.4rem;
  padding: 0.8rem 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq-rail::-webkit-scrollbar { display: none; }
.faq-card {
  flex: 0 0 calc((100% - 2 * 1.4rem) / 3);
  aspect-ratio: 4 / 5;
  perspective: 1400px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: start;
  font-family: inherit;
  text-align: left;
}
.faq-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 6px; border-radius: 14px; }
.faq-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.55, 0.085, 0.32, 1);
  will-change: transform;
}
.faq-card[aria-pressed="true"] .faq-card-inner { transform: rotateY(180deg); }
.faq-card-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1.8rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(56, 63, 80, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-card-front { background: var(--white); color: var(--navy); }
.faq-card:nth-child(even) .faq-card-front {
  background: var(--navy);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.1);
}
.faq-card:nth-child(even) .faq-card-front .faq-card-question { color: var(--cream); }
.faq-card:nth-child(even) .faq-card-front .faq-card-num {
  color: #7ec8ff;
  border-bottom-color: #7ec8ff;
}
.faq-card:nth-child(even) .faq-card-front .faq-card-flip-hint { color: rgba(250, 249, 246, 0.55); }
.faq-card-back {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.1);
  transform: rotateY(180deg);
}
.faq-card:not([aria-pressed="true"]):hover .faq-card-front {
  box-shadow: 0 22px 42px rgba(56, 63, 80, 0.16);
  border-color: var(--blue);
}
.faq-card-num {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
  align-self: flex-start;
}
.faq-card-num-back { color: #7ec8ff; border-bottom-color: #7ec8ff; }
.faq-card-question {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 1.2rem 0 0;
  letter-spacing: -0.015em;
}
.faq-card-back p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.82);
  margin: 1.2rem 0 0;
  max-height: calc(100% - 5rem);
  overflow-y: auto;
  flex-grow: 1;
}
.faq-card-flip-hint {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(56, 63, 80, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 1rem;
}
.faq-card-back .faq-card-flip-hint { color: rgba(250, 249, 246, 0.55); }

/* ============ POSTER LIST — punchy bullet rows with giant numerals ============ */
.poster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.poster-list li {
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 110px) 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: baseline;
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, color 0.3s ease;
}
.poster-list li:hover {
  padding-left: 12px;
  color: var(--navy);
}
.poster-list .pl-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
}
.poster-list .pl-body h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 6px;
}
.poster-list .pl-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-soft);
  margin: 0;
}
.poster-list .pl-body strong { color: var(--navy); }

/* Big-stats row — index-style oversized counters */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin: clamp(36px, 5vw, 56px) 0;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.stat-strip .stat-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 6px;
  display: block;
}
.stat-strip .stat-label {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

@media (max-width: 768px) {
  .faq-header-row { grid-template-columns: 1fr; align-items: start; }
  .faq-hint { text-align: left; max-width: none; }
  .faq-card { flex: 0 0 85%; }
  .stat-strip { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .faq-card { flex: 0 0 calc((100% - 1.4rem) / 2); }
}

/* ============ MOBILE FLOAT BAR ============ */
.mobile-float {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 99;
  gap: 10px;
}
.mobile-float .btn {
  flex: 1;
  padding: 15px 16px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.mobile-float .btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .container, .container-narrow { padding: 0 22px; }
  .page-hero { padding: 32px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-row { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-phone { text-align: left; }
  .neighborhoods-list { grid-template-columns: 1fr 1fr; }
  .section, .intro-block, .long-content, .why-us, .faq, .reviews-strip { padding: 64px 0; }
  .mobile-float { display: flex; }
  body { padding-bottom: 84px; }
}
@media (max-width: 560px) {
  .neighborhoods-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .neighborhoods { padding: 28px 22px; }
  .hero-card { padding: 26px 22px; }
}
