/* ═══════════════════════════════════════════
   ESTATE CLEANOUT PROS — STYLESHEET
═══════════════════════════════════════════ */

:root {
  --blue-dark:    #0a2748;
  --blue-mid:     #1a4a7a;
  --blue-light:   #2563a8;
  --blue-accent:  #3b82f6;
  --blue-pale:    #dbeafe;
  --white:        #ffffff;
  --gray-100:     #f8fafc;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --green:        #16a34a;
  --red:          #dc2626;
  --text:         #1e293b;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --font:         'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════
   BUTTONS
════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
  justify-content: center;
  font-family: var(--font);
}
.btn-primary { background: var(--blue-accent); color: var(--white); border-color: var(--blue-accent); }
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.45); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }
.btn-outline-dark { border-color: var(--blue-accent); color: var(--blue-accent); background: transparent; }
.btn-outline-dark:hover { background: var(--blue-accent); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-outline-white { border-color: rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-large { padding: 12px 28px; font-size: 14px; border-radius: 10px; }
.btn-full { width: 100%; }
.btn-nav { padding: 8px 18px; font-size: 13px; background: var(--blue-accent); color: var(--white); border-radius: 8px; }

/* ════════════════════════
   SECTION HEADERS
════════════════════════ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.section-header h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 12px; color: var(--blue-dark); }
.section-header p { font-size: 17px; color: var(--gray-600); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ════════════════════════
   TOP BAR
════════════════════════ */
.top-bar { background: var(--blue-dark); color: var(--white); padding: 8px 0; font-size: 12px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; align-items: center; gap: 10px; }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a { color: var(--white); font-weight: 600; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--blue-pale); }
.usa-flag { height: 18px; width: auto; border-radius: 3px; border: 1px solid rgba(255,255,255,0.3); }

/* ════════════════════════
   NAVBAR
════════════════════════ */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.08); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge { background: var(--blue-accent); color: var(--white); font-size: 13px; font-weight: 900; width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; letter-spacing: 1px; flex-shrink: 0; }
.logo-main { display: block; font-weight: 800; font-size: 15px; color: var(--blue-dark); line-height: 1.1; }
.logo-sub { display: block; font-size: 10px; color: var(--gray-400); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-accent); }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--blue-dark); padding: 4px; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); padding: 20px 24px; gap: 16px; border-bottom: 2px solid var(--gray-200); }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--gray-800); padding: 4px 0; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════
   HERO — TWO COLUMN — TEXT 50% SMALLER
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d3460 50%, var(--blue-mid) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600') center/cover no-repeat;
  opacity: 0.05;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,39,72,0.97) 0%, rgba(10,39,72,0.8) 55%, rgba(10,39,72,0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── 50% SMALLER HERO TEXT ── */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 6px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.hero-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* make buttons slightly smaller in hero too */
.hero-ctas .btn-large {
  padding: 9px 20px;
  font-size: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 12px;
  border-radius: 8px;
  width: fit-content;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.trust-num { font-size: 11px; font-weight: 900; color: var(--white); line-height: 1; }
.trust-item span:last-child { font-size: 8px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* RIGHT — COLLAGE */
.hero-collage {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.collage-header { margin-bottom: 3px; }

.collage-title {
  display: block;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1px;
}

.collage-sub {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 8px;
}

.collage-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.collage-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.collage-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.collage-card:hover img { transform: scale(1.05); }

.collage-overlay-tag {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(0,0,0,0.78);
  color: white;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 6px;
  border-radius: 20px;
  text-transform: uppercase;
}

.collage-see-more {
  text-align: center;
  font-size: 9px;
  color: var(--blue-pale);
  font-weight: 700;
  text-decoration: underline;
  margin-top: 3px;
  cursor: pointer;
  display: block;
}
.collage-see-more:hover { color: white; }

/* ════════════════════════
   EMPATHY BAND
════════════════════════ */
.empathy-band { background: var(--blue-pale); border-top: 3px solid var(--blue-accent); border-bottom: 1px solid #bfdbfe; padding: 20px 0; text-align: center; }
.empathy-band p { font-size: 15px; color: var(--blue-dark); max-width: 800px; margin: 0 auto; }

/* ════════════════════════
   TRUST BADGES
════════════════════════ */
.trust-badges { padding: 28px 0; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trust-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.badge-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; color: var(--blue-dark); padding: 8px 16px; border: 1.5px solid var(--gray-200); border-radius: 8px; background: var(--gray-100); transition: all 0.2s; }
.badge-item:hover { border-color: var(--blue-accent); background: var(--blue-pale); }
.badge-icon { font-size: 17px; }

/* ════════════════════════
   WHO WE HELP
════════════════════════ */
.who-we-help { padding: 80px 0; background: var(--gray-100); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-bottom: 32px; }
.who-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1.5px solid var(--gray-200); transition: all 0.25s; display: flex; flex-direction: column; gap: 12px; }
.who-card:hover { border-color: var(--blue-accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.who-icon { font-size: 30px; }
.who-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); }
.who-card p { font-size: 14px; color: var(--gray-600); flex: 1; line-height: 1.7; }
.who-link { color: var(--blue-accent); font-weight: 700; font-size: 14px; }
.keyword-cloud { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 22px; font-size: 13px; color: var(--gray-600); line-height: 2.2; }
.keyword-cloud a { color: var(--blue-light); text-decoration: underline; margin: 0 2px; }
.keyword-cloud a:hover { color: var(--blue-accent); }

/* ════════════════════════
   HOW IT WORKS
════════════════════════ */
.how-it-works { padding: 80px 0; background: var(--blue-dark); }
.steps-grid { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.step-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px; flex: 1; min-width: 230px; max-width: 320px; }
.step-num { font-size: 42px; font-weight: 900; color: var(--blue-accent); opacity: 0.9; line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; }
.step-link { display: inline-block; margin-top: 14px; color: var(--blue-pale); font-weight: 700; font-size: 14px; }
.step-arrow { font-size: 22px; color: rgba(255,255,255,0.2); align-self: center; }
.how-cta { text-align: center; }

/* ════════════════════════════════════
   BEFORE & AFTER
════════════════════════════════════ */
.before-after { padding: 80px 0; background: var(--white); }
.ba-real-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-bottom: 40px; }
.ba-real-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-200); background: var(--white); transition: all 0.25s; box-shadow: var(--shadow); }
.ba-real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-accent); }
.ba-real-card img { width: 100%; height: 240px; object-fit: cover; object-position: center; display: block; transition: transform 0.4s; }
.ba-real-card:hover img { transform: scale(1.03); }
.ba-real-info { padding: 18px 20px; }
.ba-real-tag { display: inline-block; background: var(--blue-pale); color: var(--blue-light); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.ba-real-info p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.ba-cta { text-align: center; padding: 44px; background: var(--blue-pale); border-radius: var(--radius-lg); border: 1px solid #bfdbfe; }
.ba-cta p { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; }

/* ════════════════════════
   TEAM
════════════════════════ */
.team { padding: 80px 0; background: var(--gray-100); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-200); text-align: center; transition: all 0.25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-accent); }
.team-card img { width: 100%; height: 230px; object-fit: cover; object-position: top; }
.team-card h3 { font-size: 17px; font-weight: 700; margin: 16px 16px 4px; color: var(--blue-dark); }
.team-role { display: block; font-size: 12px; color: var(--blue-accent); font-weight: 700; margin: 0 16px 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.team-card p { font-size: 13px; color: var(--gray-600); padding: 0 16px 24px; font-style: italic; line-height: 1.6; }

/* ════════════════════════
   WHY US
════════════════════════ */
.why-us { padding: 80px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { font-size: clamp(22px, 3.2vw, 36px); font-weight: 800; color: var(--blue-dark); margin-bottom: 30px; line-height: 1.2; margin-top: 12px; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-check { font-size: 18px; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.why-point strong { color: var(--blue-dark); font-size: 15px; display: block; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--gray-600); margin: 0; }
.why-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 500px; object-fit: cover; }
.why-badge-float { position: absolute; bottom: 24px; left: 24px; }
.float-badge { background: var(--blue-dark); color: var(--white); padding: 16px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.float-num { display: block; font-size: 40px; font-weight: 900; color: var(--blue-pale); line-height: 1; }
.float-badge span:last-child { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ════════════════════════
   STATS
════════════════════════ */
.stats { background: var(--blue-dark); padding: 52px 0; }
.stats-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 46px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); display: block; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ════════════════════════
   REVIEWS
════════════════════════ */
.reviews { padding: 80px 0; background: var(--gray-100); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 22px; margin-bottom: 48px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1.5px solid var(--gray-200); border-top: 4px solid var(--blue-accent); transition: box-shadow 0.2s, transform 0.2s; }
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; position: relative; }
.review-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-header strong { display: block; font-size: 15px; color: var(--blue-dark); }
.review-header > div > span { font-size: 12px; color: var(--gray-400); display: block; }
.review-source { position: absolute; top: 0; right: 0; font-size: 11px; background: var(--blue-pale); color: var(--blue-light); padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.stars { color: #f59e0b; font-size: 13px; margin-top: 3px; }
.review-card > p { font-size: 14px; color: var(--gray-600); line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.review-job { font-size: 11px; color: var(--gray-400); border-top: 1px solid var(--gray-200); padding-top: 10px; }
.review-summary { text-align: center; padding-top: 40px; }
.review-score { font-size: 58px; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.review-stars-big { font-size: 30px; margin: 10px 0; }
.review-summary > p { color: var(--gray-600); margin-bottom: 24px; font-size: 15px; }

/* ════════════════════════
   SERVICE AREA
════════════════════════ */
.service-area { padding: 80px 0; background: var(--white); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 20px; }
.area-item { background: var(--blue-pale); border-radius: 8px; padding: 12px 16px; text-align: center; transition: all 0.2s; border: 1px solid #bfdbfe; }
.area-item a { font-size: 13px; font-weight: 600; color: var(--blue-dark); }
.area-item:hover { background: var(--blue-accent); border-color: var(--blue-accent); }
.area-item:hover a { color: var(--white); }
.area-note { text-align: center; font-size: 14px; color: var(--gray-600); margin-top: 8px; }
.area-note a { color: var(--blue-accent); text-decoration: underline; }

/* ════════════════════════
   BLOG PREVIEW
════════════════════════ */
.blog-preview { padding: 80px 0; background: var(--gray-100); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-200); transition: all 0.25s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--blue-accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-tag { display: inline-block; background: var(--blue-pale); color: var(--blue-light); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; width: fit-content; }
.blog-card-body h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); line-height: 1.4; flex: 1; }
.blog-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.blog-read { font-size: 13px; color: var(--blue-accent); font-weight: 700; }

/* ════════════════════════
   FINAL CTA
════════════════════════ */
.final-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 80px 0; text-align: center; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(26px, 5vw, 46px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.7; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════
   FOOTER
════════════════════════ */
.footer { background: var(--gray-800); padding: 60px 0 0; color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 22px; width: auto; border-radius: 3px; }
.footer-col p { font-size: 13px; line-height: 1.75; margin-bottom: 8px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.footer-trust span { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 6px; }
.footer-keywords { font-size: 11px !important; line-height: 2; }

/* ════════════════════════════════════
   QUOTE PAGE
════════════════════════════════════ */
.quote-page { background: var(--gray-100); }
.quote-section { padding: 60px 0; }
.quote-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: flex-start; }
.quote-info h1 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: var(--blue-dark); margin-bottom: 14px; line-height: 1.2; }
.quote-info > p { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.7; }
.quote-trust-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.qtrust { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--blue-dark); font-weight: 500; }
.qtrust span { color: var(--green); font-weight: 900; font-size: 18px; }
.quote-reviews h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 14px; }
.mini-review { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; padding: 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.mini-review img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.mini-review p { font-size: 13px; color: var(--gray-600); font-style: italic; margin: 4px 0; }
.mini-review strong { font-size: 12px; color: var(--blue-dark); }
.quote-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-200); }
.form-progress { display: flex; align-items: center; margin-bottom: 36px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-200); color: var(--gray-400); font-weight: 700; font-size: 14px; justify-content: center; transition: all 0.3s; position: relative; flex-shrink: 0; }
.progress-step span { position: absolute; top: 44px; font-size: 11px; white-space: nowrap; color: var(--gray-400); font-weight: 600; }
.progress-step.active { background: var(--blue-accent); color: var(--white); }
.progress-step.active span { color: var(--blue-accent); }
.progress-step.done { background: var(--green); color: var(--white); }
.progress-line { flex: 1; height: 2px; background: var(--gray-200); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { font-size: 20px; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.step-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 15px; font-family: var(--font); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-accent); outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-group textarea { resize: vertical; min-height: 80px; }
.size-options, .urgency-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.size-option, .urgency-option { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 10px; border: 2px solid var(--gray-200); border-radius: 10px; cursor: pointer; transition: all 0.2s; text-align: center; }
.size-option:hover, .urgency-option:hover { border-color: var(--blue-accent); background: var(--blue-pale); }
.size-option input, .urgency-option input { display: none; }
.size-option span, .urgency-option span { font-weight: 700; font-size: 14px; color: var(--blue-dark); }
.size-option small, .urgency-option small { font-size: 11px; color: var(--gray-400); }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; color: var(--gray-600); }
.checkbox-group input { accent-color: var(--blue-accent); width: 15px; height: 15px; flex-shrink: 0; }
.time-options { display: flex; flex-direction: column; gap: 8px; }
.time-option { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; transition: all 0.2s; color: var(--gray-600); }
.time-option:hover { border-color: var(--blue-accent); background: var(--blue-pale); }
.time-option input { accent-color: var(--blue-accent); }
.consent-label { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray-600); cursor: pointer; line-height: 1.6; }
.consent-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--blue-accent); }
.form-step-btns { display: flex; gap: 12px; margin-top: 24px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 12px; line-height: 1.6; }

/* ════════════════════════════════════
   THANK YOU PAGE
════════════════════════════════════ */
.thankyou-page { background: var(--gray-100); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.thankyou-wrap { padding: 40px 20px; width: 100%; }
.thankyou-card { max-width: 560px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 48px; text-align: center; box-shadow: var(--shadow-lg); }
.ty-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-card h1 { font-size: 32px; font-weight: 900; color: var(--blue-dark); margin-bottom: 12px; }
.ty-sub { font-size: 16px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.75; }
.ty-what-next { background: var(--blue-pale); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; text-align: left; }
.ty-what-next h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; }
.ty-step { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--blue-dark); margin-bottom: 10px; font-weight: 500; }
.ty-step span { background: var(--blue-accent); color: var(--white); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.ty-contact p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; }
.ty-home { display: block; margin-top: 20px; font-size: 14px; color: var(--blue-accent); }
.ty-home:hover { text-decoration: underline; }

/* ════════════════════════════════════
   BLOG PAGE
════════════════════════════════════ */
.blog-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 80px 0; text-align: center; }
.blog-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.blog-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.blog-main { padding: 60px 0; }
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 20px; border: 1.5px solid var(--gray-200); border-radius: 30px; background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer; color: var(--gray-600); transition: all 0.2s; font-family: var(--font); }
.filter-btn:hover, .filter-btn.active { background: var(--blue-accent); color: var(--white); border-color: var(--blue-accent); }
.blog-cta-strip { background: var(--blue-dark); padding: 32px; border-radius: var(--radius); text-align: center; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.blog-cta-strip p { color: var(--white); font-size: 16px; font-weight: 600; }

/* ════════════════════════════════════
   BLOG POST PAGE
════════════════════════════════════ */
.breadcrumb { background: var(--gray-100); padding: 12px 0; font-size: 13px; color: var(--gray-400); border-bottom: 1px solid var(--gray-200); }
.breadcrumb a { color: var(--blue-accent); }
.breadcrumb a:hover { text-decoration: underline; }
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding-top: 48px; padding-bottom: 80px; align-items: flex-start; }
.post-hero-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 32px; }
.post-header { margin-bottom: 32px; }
.post-header h1 { font-size: clamp(22px, 4vw, 38px); font-weight: 900; color: var(--blue-dark); line-height: 1.2; margin: 12px 0; }
.post-meta-bar { font-size: 13px; color: var(--gray-400); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.post-content { font-size: 16px; line-height: 1.85; color: #334155; }
.post-content h2 { font-size: 24px; font-weight: 800; color: var(--blue-dark); margin: 36px 0 14px; }
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin: 28px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 10px; }
.post-content a { color: var(--blue-accent); text-decoration: underline; }
.post-content strong { color: var(--blue-dark); }
.post-content blockquote { border-left: 4px solid var(--blue-accent); padding: 16px 24px; background: var(--blue-pale); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--blue-dark); }
.post-cta-strip { background: var(--blue-dark); border-radius: var(--radius); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 36px 0; }
.post-cta-strip p { color: var(--white); font-size: 16px; flex: 1; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.post-tags span { background: var(--blue-pale); color: var(--blue-light); font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 20px; }
.author-box { display: flex; gap: 20px; padding: 28px; background: var(--gray-100); border-radius: var(--radius); margin: 36px 0; align-items: flex-start; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box strong { display: block; font-size: 16px; color: var(--blue-dark); }
.author-box > div > span { font-size: 13px; color: var(--blue-accent); display: block; margin-bottom: 8px; }
.author-box p { font-size: 13px; color: var(--gray-600); }
.related-posts { margin-top: 48px; }
.related-posts h3 { font-size: 20px; font-weight: 800; color: var(--blue-dark); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 10px; }
.related-card img { border-radius: 8px; height: 100px; object-fit: cover; }
.related-card span { font-size: 13px; font-weight: 600; color: var(--blue-dark); }
.related-card:hover span { color: var(--blue-accent); }
.post-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }
.sidebar-cta { background: var(--blue-dark); border-radius: var(--radius); padding: 28px; }
.sidebar-cta h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.sidebar-trust, .sidebar-reviews, .sidebar-articles { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.sidebar-trust h4, .sidebar-reviews h4, .sidebar-articles h4 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 14px; }
.sidebar-point { font-size: 14px; color: var(--blue-dark); padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-weight: 500; }
.sidebar-review { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.sidebar-review:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-review p { font-size: 13px; color: var(--gray-600); font-style: italic; margin: 6px 0 4px; }
.sidebar-review strong { font-size: 12px; color: var(--blue-dark); }
.sidebar-articles ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-articles li a { font-size: 13px; color: var(--blue-accent); font-weight: 600; }
.sidebar-articles li a:hover { text-decoration: underline; }
.loading-post { text-align: center; padding: 60px; color: var(--gray-400); font-size: 15px; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero-text { max-width: 100%; }
  .collage-stack { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
  .collage-card img { height: 80px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .quote-inner { grid-template-columns: 1fr; }
  .ba-real-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .size-options, .urgency-options { grid-template-columns: 1fr 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .stats-grid { gap: 28px; }
  .trust-divider { display: none; }
  .quote-form-wrap { padding: 22px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ba-real-grid { grid-template-columns: 1fr; }
  .hero-collage { display: none; }
}

@media (max-width: 480px) {
  .top-bar-right { display: none; }
  .hero h1 { font-size: 13px; }
  .hero-sub { font-size: 9px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .size-options { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .ba-cta { padding: 28px 20px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}