/* ═══════════════════════════════════════════════════════════════════════════
   606 Property Services — Landing Page Styles
   Full revision: Outfit + Switzer typography, all layout fixes, breakpoints
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --primary:        #513F3D;
  --primary-hover:  #362C27;
  --heading:        #463939;
  --accent-mid:     #68524F;
  --accent-light:   #755B59;
  --dark-bg:        #1F1F1F;
  --pain-dark:      #362C27;
  --body-text:      #5F5F5F;
  --bg-white:       #FFFFFF;
  --bg-gray:        #DDE0E3;
  --bg-warm:        #F5F0EE;
  --text-on-dark:   #FFFFFF;
  --text-muted-dark:#DDD5D0;
  --border:         #DDE0E3;
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Switzer', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--body-text);
  background-color: var(--bg-white);
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: 47px; }
h2, .section h2 { font-size: 36px; margin-bottom: 20px; }
h3, .section h3 { font-size: 30px; }

/* Beat Tailwind preflight (h1-h6{font-size/weight:inherit}) — class+element
   specificity 0,1,1 overrides Tailwind's tag-only 0,0,1 regardless of load order.
   NOTE: color intentionally omitted so dark-section headings keep their own color */
.section h2, .section h3, .section h4 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 1.15;
}

p { margin: 0; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; }

/* ── Eyebrow label ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 12px;
}

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section base ───────────────────────────────────────────────────────── */
.section {
  padding: 64px 0;
}

.text-center { text-align: center; }

.section-sub {
  font-size: 18px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-headline {
  color: var(--heading);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── Button System ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  width: 100%;
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(81,63,61,0.3);
}

.btn--on-dark:hover {
  background: var(--accent-light);
}

/* ── Phone link ─────────────────────────────────────────────────────────── */
.phone-link {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FIXED TOP ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  color: #fff;
  height: 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0 16px;
}

.top-bar__stars {
  color: #C9A84C;
  letter-spacing: 2px;
}

.top-bar__sep {
  opacity: 0.35;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 1 — Hero
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Offset for fixed top bar */
  padding-top: 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #362C27; /* fallback when no image */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54,44,39,0.82) 0%, rgba(54,44,39,0.50) 100%);
}

/* Hero content: split layout */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 80px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__headline {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 47px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero__sub {
  font-family: 'Switzer', system-ui, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__left .btn--primary {
  width: auto;
  min-width: 260px;
  padding: 16px 32px;
  font-size: 16px;
}

.hero__micro {
  font-size: 14px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
}

.hero__phone:hover {
  color: #fff;
  text-decoration: underline;
}

/* Hero right: estimate preview card */
.hero__right {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__preview {
  width: 100%;
}

.preview-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.preview-card__eyebrow {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.preview-card__price {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.preview-card__detail {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.preview-card__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-step {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 10px;
  border-radius: 6px;
}

.preview-step--done {
  color: var(--accent-mid);
  background: var(--bg-warm);
}

.preview-step--active {
  color: #fff;
  background: var(--primary);
  font-weight: 600;
}

.preview-card__note {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--body-text);
  text-align: center;
  opacity: 0.7;
}

/* Scroll arrow */
.hero__scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInBounce 1s ease-out 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
}

@keyframes fadeInBounce {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 2 — Pain
   ═══════════════════════════════════════════════════════════════════════════ */
.pain {
  background-color: var(--pain-dark);
  color: var(--text-on-dark);
}

.pain__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pain__copy {
  max-width: 100%;
}

.pain__headline {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.pain__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.pain__bullets li {
  position: relative;
  padding-left: 24px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
}

.pain__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}

.pain__callout {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--accent-light);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  max-width: 640px;
}

.pain__callout p {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* Pain point cards (right column) */
.pain__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-self: flex-start;
}

.pain__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.30s ease,
    border-color 0.30s ease,
    background 0.30s ease;
}

/* top accent line that fades in on hover */
.pain__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C0827E 0%, rgba(192,130,126,0) 100%);
  opacity: 0;
  transition: opacity 0.30s ease;
}

.pain__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(192, 130, 126, 0.40);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.40);
}

.pain__card:hover::after {
  opacity: 1;
}

/* header row: icon box + number badge */
.pain__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pain__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.60);
  transition: color 0.30s ease;
}

.pain__card:hover .pain__card-icon {
  color: rgba(255, 255, 255, 0.90);
}

.pain__card-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.30s ease;
}

.pain__card:hover .pain__card-num {
  color: rgba(192, 130, 126, 0.80);
}

.pain__card-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.pain__card-desc {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 3 — Solution
   ═══════════════════════════════════════════════════════════════════════════ */
.solution {
  background: var(--bg-white);
}

/* ── Stats Strip (full-width top row) ─────────────────────────────────────── */
.solution__stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 8px 16px;
}

.stat__number {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 62px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.stat__label {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--body-text);
  letter-spacing: 0.01em;
}

.stat__divider {
  width: 1px;
  height: 68px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Centered content block ───────────────────────────────────────────────── */
.solution__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.solution__content h2 {
  margin-bottom: 20px;
}

.solution__body {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 auto 36px;
  max-width: 660px;
}

.solution__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.solution__bullets li {
  position: relative;
  padding-left: 22px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--body-text);
}

.solution__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.solution__bullets li strong {
  font-weight: 600;
  color: var(--heading);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 4 — Portfolio
   ═══════════════════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--bg-gray);
}

.portfolio .section-sub {
  font-size: 18px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

/* Mobile: show max 3 cards */
@media (max-width: 767px) {
  .portfolio__card:nth-child(n+4) { display: none; }
}

.portfolio__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.portfolio__card:hover {
  transform: scale(1.03);
}

.portfolio__photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.portfolio__placeholder {
  color: rgba(255,255,255,0.6);
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  padding: 16px;
}

.portfolio__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(54,44,39,0.82);
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 5 — How It Works
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-white);
}

/* Desktop: horizontal flex row */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.step-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.steps__arrow {
  display: none; /* hidden on mobile, shown on desktop */
  flex-shrink: 0;
  align-self: center; /* vertically centered between cards */
}

.step-card {
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.step-card__icon {
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-card__number {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.step-card__title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.step-card__body {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.65;
  flex: 1;
}

/* Note below steps (replaces callout-box) */
.steps-note {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.6;
  text-align: center;
  max-width: 520px;
  margin: 28px auto 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ESTIMATOR SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.estimator-section {
  background: var(--bg-warm);
  padding: 64px 0 80px;
}

.estimator-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(54,44,39,0.12);
  overflow: hidden;
  max-width: 720px;
  margin: 32px auto 0;
  width: 100%;
}

/* Trust strip below form */
.estimator-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 24px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-light);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 6 — Reviews
   ═══════════════════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--bg-white);
}

.reviews__google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
}

.reviews__stars {
  color: var(--primary);
  letter-spacing: 2px;
}

.reviews__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.review-card__stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card__quote {
  font-size: 56px;
  line-height: 0.8;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.review-card__text {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.7;
}

.review-card__name {
  margin-top: 16px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--heading);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 7 — FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.faq {
  background: var(--bg-gray);
}

.faq__accordion {
  max-width: 800px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid #C8CCCF;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  gap: 16px;
  min-height: 44px;
  line-height: 1.4;
}

.faq__question:hover {
  background: rgba(0,0,0,0.02);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq__item.open .faq__chevron {
  transform: rotate(90deg);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
  opacity: 1;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 8 — Final CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--dark-bg);
  padding: 80px 0;
}

.final-cta__headline {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.final-cta__body {
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta .btn {
  width: 100%;
}

.final-cta__phone {
  margin-top: 24px;
}

.final-cta__phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.final-cta__phone a:hover {
  color: #fff;
  text-decoration: underline;
}

.final-cta__micro {
  margin-top: 12px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

.final-cta__trust-anchors {
  margin-top: 32px;
  font-family: 'Switzer', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STICKY MOBILE PHONE BAR — Mobile only
   ═══════════════════════════════════════════════════════════════════════════ */
.sticky-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #362C27;
  z-index: 998;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-phone-bar.visible {
  transform: translateY(0);
}

.sticky-phone-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* Desktop: force hidden */
@media (min-width: 769px) {
  .sticky-phone-bar {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP (min-width: 1024px) — Full layout
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Sections */
  .section {
    padding: 96px 0;
  }

  /* Typography */
  h1 { font-size: 47px; }
  h2, .section h2 { font-size: 36px; }
  h3, .section h3 { font-size: 30px; }

  /* Buttons */
  .btn--primary {
    width: auto;
    min-width: 240px;
  }

  /* Hero: side-by-side */
  .hero__right {
    display: flex; /* visible on desktop */
  }

  /* Pain: side-by-side 60/40 */
  .pain__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .pain__copy {
    flex: 0 0 56%;
  }

  .pain__cards {
    flex: 1;
    min-width: 0;
  }

  /* pain__headline inherits h2 36px — no override needed */

  /* Portfolio: 3-col grid */
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hide any cards beyond 6 on desktop */
  .portfolio__card:nth-child(n+7) { display: none; }

  /* How It Works: horizontal row */
  .steps {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .step-wrapper {
    flex: 1;
    min-width: 0;
  }

  .steps__arrow {
    display: flex;
    flex-shrink: 0;
    width: 48px;
    align-self: center;
    justify-content: center;
    /* Center vertically between the cards */
    margin-top: 0;
  }

  /* Reviews: 3 columns */
  .reviews__grid {
    flex-direction: row;
    gap: 24px;
  }

  .review-card {
    flex: 1;
  }

  /* FAQ question larger */
  .faq__question {
    font-size: 18px;
  }

  /* Final CTA wider button */
  .final-cta {
    padding: 120px 0;
  }

  .final-cta__headline {
    font-size: 36px;
  }

  .final-cta__body {
    font-size: 20px;
  }

  .final-cta .btn {
    width: auto;
    min-width: 360px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TABLET (768px – 1023px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  .section { padding: 72px 0; }

  h1 { font-size: 40px; }
  h2, .section h2 { font-size: 32px; }
  h3, .section h3 { font-size: 26px; }

  /* Hero: stack on tablet */
  .hero__content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 64px 24px;
  }

  .hero__left {
    align-items: center;
  }

  .hero__headline {
    font-size: 38px;
    text-align: center;
  }

  .hero__sub {
    text-align: center;
    margin-bottom: 28px;
  }

  /* Hide preview card on tablet */
  .hero__right {
    display: none;
  }

  /* Pain: side-by-side */
  .pain__grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .pain__copy {
    flex: 1;
  }

  .pain__grid {
    gap: 40px;
  }

  .pain__copy {
    flex: 0 0 54%;
  }

  .pain__cards {
    flex: 1;
    min-width: 0;
  }

  /* Solution stats: slightly smaller on tablet */
  .stat__number { font-size: 48px; }

  /* Portfolio: 2 cols on tablet */
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps: row on tablet */
  .steps {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .step-wrapper { flex: 1; min-width: 0; }

  .steps__arrow {
    display: flex;
    flex-shrink: 0;
    width: 40px;
    align-self: center;
    justify-content: center;
  }

  /* Reviews: 3-col */
  .reviews__grid {
    flex-direction: row;
    gap: 20px;
  }

  .review-card { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE (max-width: 767px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2, .section h2 { font-size: 28px; }
  h3, .section h3 { font-size: 22px; }

  body { font-size: 17px; }

  .section { padding: 56px 0; }

  /* Show sticky phone bar on mobile */
  .sticky-phone-bar {
    display: flex;
  }

  /* Add bottom padding so content isn't hidden behind sticky bar */
  .final-cta {
    padding-bottom: 80px;
  }

  /* Hero: single column */
  .hero {
    padding-top: 40px; /* top bar offset */
  }

  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px 64px;
    gap: 32px;
  }

  .hero__left {
    width: 100%;
  }

  .hero__headline {
    font-size: 34px;
  }

  .hero__sub {
    font-size: 17px;
  }

  /* Hide estimate preview card on mobile */
  .hero__right {
    display: none;
  }

  /* Pain: stacked */
  .pain__grid {
    flex-direction: column;
  }

  .pain__copy {
    max-width: 100%;
  }

  .pain__headline {
    font-size: 26px;
  }

  .pain__bullets li {
    font-size: 17px;
  }

  /* Pain cards: full-width 2×2 grid on mobile */
  .pain__cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Solution stats: hide dividers on mobile, use 3-col grid */
  .stat__divider {
    display: none;
  }

  .solution__stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 0 36px;
    margin-bottom: 36px;
  }

  .stat__number { font-size: 36px; }
  .stat__label  { font-size: 12px; }

  /* Solution bullets: single column on mobile */
  .solution__bullets {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  /* Portfolio: 1 col, 3 cards max (via nth-child above) */
  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  /* How It Works: Apple-style sticky stacking */
  .steps {
    display: block;
    margin-top: 32px;
  }

  .steps__arrow {
    display: none; /* hide horizontal arrows on mobile */
  }

  /* Sticky stacking animation — Apple-style cards stack as you scroll */
  .step-wrapper {
    position: sticky;
    min-height: 340px; /* enough height to create scroll travel */
  }

  /* Offset by 40px (top-bar) + incremental stagger */
  .step-wrapper:nth-child(1) { top: 48px; z-index: 1; }
  .step-wrapper:nth-child(3) { top: 56px; z-index: 2; }
  .step-wrapper:nth-child(5) { top: 64px; z-index: 3; }

  .step-card {
    border-radius: 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    margin-bottom: 4px;
  }

  /* Estimator: full width */
  .estimator-trust-strip {
    flex-direction: column;
    gap: 8px;
  }

  /* Final CTA */
  .final-cta__headline {
    font-size: 28px;
  }

  .final-cta__body {
    font-size: 17px;
  }

  /* Buttons: full width on mobile */
  .btn--primary {
    width: 100%;
    padding: 16px 24px;
  }

  .hero__left .btn--primary {
    width: 100%;
  }

  .final-cta .btn {
    width: 100%;
  }

  /* Section sub text */
  .section-sub {
    font-size: 17px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2, .section h2 { font-size: 24px; }
  h3, .section h3 { font-size: 20px; }

  .hero__headline { font-size: 28px; }
  .hero__sub { font-size: 16px; }

  .pain__headline { font-size: 23px; }
  .final-cta__headline { font-size: 24px; }

  .preview-card__price { font-size: 26px; }

  /* Top bar: smaller on tiny screens */
  .top-bar {
    font-size: 11px;
    gap: 4px 8px;
  }

  /* Stats: tighter numbers on very small screens, keep 3-col */
  .stat__number { font-size: 28px; }
  .stat__label  { font-size: 11px; }
}
