/* ============================================
   CLAIRVE — COMPLETE REDESIGN
   Editorial luxury. Premium residential + commercial.
   ============================================ */

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

:root {
  --bg: #fdfcfa;
  --bg-alt: #ede8e1;
  --bg-warm: #2c2520;
  --bg-dark: #141211;
  --bg-dark-raised: #1e1c19;
  --accent: #9b7e5e;
  --accent-hover: #876b4d;
  --accent-soft: #c4a882;
  --accent-light: rgba(155,126,94,0.1);
  --accent-mid: rgba(155,126,94,0.2);
  --dark: #141211;
  --dark-mid: #3d3833;
  --text: #4a4540;
  --text-muted: #8a8480;
  --text-faint: #b5afa8;
  --border: #e5e0da;
  --border-light: #eeebe6;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(20,18,17,0.04);
  --shadow-md: 0 4px 20px rgba(20,18,17,0.06);
  --shadow-lg: 0 12px 40px rgba(20,18,17,0.08);
  --shadow-xl: 0 24px 64px rgba(20,18,17,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --max-width: 1240px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.05rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p {
  color: var(--text);
  line-height: 1.7;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 15px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,126,94,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--dark);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 11px 24px;
  font-size: 0.82rem;
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark);
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  padding: 11px 28px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
  padding: 160px 0 100px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-image-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  background: var(--bg-alt);
}

.hero-image-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}

.hero-float-reviews {
  bottom: 48px;
  left: -40px;
}

.hero-float-reviews .stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.hero-float-reviews .review-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.hero-float-reviews .review-sub {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 1px;
}

.hero-float-guarantee {
  top: 48px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-guarantee svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.hero-float-guarantee span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* --- STATS BAR --- */
.stats-bar {
  padding: 56px 0;
  background: var(--bg-dark);
}

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

.stat-item {
  padding: 12px;
}

.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-number span {
  color: var(--accent-soft);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- SERVICES --- */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent-mid);
}

.service-card:hover {
  border-color: var(--border);
  border-top-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.service-card-features {
  margin-bottom: 28px;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text);
}

.service-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-card .btn { width: 100%; }

.service-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-warm);
  color: var(--white);
}

.how-it-works h2,
.how-it-works h3 {
  color: var(--white);
}

.how-it-works .section-subtitle {
  color: var(--text-faint);
}

.how-it-works .step-card p {
  color: var(--text-faint);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-it-works-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* --- SOCIAL PROOF --- */
.social-proof {
  padding: 120px 0;
  background: var(--bg);
}

.social-proof-header {
  text-align: center;
  margin-bottom: 72px;
}

.social-proof-header .section-subtitle {
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.75;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}

.review-location {
  font-size: 0.75rem;
  color: var(--text-faint);
}

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

/* --- BEFORE / AFTER --- */
.before-after {
  padding: 120px 0;
  background: var(--bg);
}

.before-after-header {
  text-align: center;
  margin-bottom: 72px;
}

.before-after-header .section-subtitle {
  margin: 0 auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-images img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: var(--bg-alt);
}

.ba-label {
  position: absolute;
  bottom: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--white);
}

.ba-label.before { left: 8px; background: var(--dark-mid); }
.ba-label.after { right: 8px; background: var(--accent); }

.ba-caption {
  padding: 18px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark);
}

/* --- WHY CLAIRVE --- */
.why-clairve {
  padding: 120px 0;
  background: var(--bg-alt);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-text .section-subtitle {
  margin-bottom: 48px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 18px;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.why-feature h4 {
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-image img,
.why-image > div {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* --- SERVICE AREAS --- */
.service-areas {
  padding: 120px 0;
  background: var(--bg);
}

.areas-header {
  text-align: center;
  margin-bottom: 72px;
}

.areas-header .section-subtitle {
  margin: 0 auto;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.areas-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.85rem;
  border: 1px solid var(--border-light);
}

.areas-list h3 {
  margin-bottom: 24px;
}

.areas-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text);
}

.area-item svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.areas-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-faint);
  font-style: italic;
}

/* --- REFERRAL --- */
.referral {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--white);
}

.referral-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.referral-text .section-label {
  color: var(--accent);
}

.referral-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.referral-text > p {
  color: var(--text-faint);
  margin-bottom: 36px;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.referral-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.referral-step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  flex-shrink: 0;
}

.referral-step-text h4 {
  color: var(--white);
  margin-bottom: 2px;
}

.referral-step-text p {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.referral-card {
  background: var(--bg-dark-raised);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.referral-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.referral-card .reward-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  margin: 20px 0;
  letter-spacing: -0.02em;
}

.referral-card .reward-amount span {
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-faint);
}

.referral-card .reward-note {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 28px;
  line-height: 1.65;
}

.referral-card .reward-extras {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.referral-card .reward-extra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.referral-card .reward-extra svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* --- FAQ --- */
.faq {
  padding: 120px 0;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 72px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
  gap: 24px;
}

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

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

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

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* --- FINAL CTA --- */
.final-cta {
  padding: 120px 0;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(155,126,94,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta > .container > p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.final-cta-phone {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.final-cta-phone a {
  color: var(--accent);
  font-weight: 600;
}

.final-cta-phone a:hover {
  text-decoration: underline;
}

/* --- FOOTER --- */
.footer {
  padding: 72px 0 36px;
  background: var(--bg-dark);
  color: var(--white);
}

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

.footer-brand .nav-logo-text {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--accent); }

.footer-social svg { width: 16px; height: 16px; }

.footer-column h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-column ul li { margin-bottom: 12px; }

.footer-column ul li a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color var(--transition);
}

.footer-column ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }

.footer-bottom-links { display: flex; gap: 28px; }

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-faint);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* --- MOBILE NAV --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 24px 32px;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active { display: flex; }

.mobile-menu .nav-link {
  display: block;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  color: var(--dark);
}

.mobile-menu .nav-link::after { display: none; }

.mobile-menu .mobile-cta { margin-top: 28px; }

.mobile-menu .nav-phone {
  margin-top: 20px;
  justify-content: center;
}

/* --- TRUST STRIP --- */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.trust-badge:hover {
  opacity: 1;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.trust-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.trust-badge-text span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

/* --- SERVICES COMPARISON TABLE --- */
.comparison {
  padding: 0 0 120px;
  background: var(--bg);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}

.comparison-table thead th {
  padding: 24px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  background: var(--bg-dark);
  color: var(--white);
  border-bottom: 2px solid var(--accent);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 240px;
}

.comparison-table tbody td {
  padding: 18px 20px;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--accent-light);
}

.comparison-check {
  color: var(--accent);
  font-size: 1.1rem;
}

.comparison-dash {
  color: var(--text-faint);
}

.comparison-table tfoot td {
  padding: 20px;
  border-top: 2px solid var(--border-light);
}

/* --- FOUNDER PREVIEW --- */
.founder {
  padding: 120px 0;
  background: var(--bg-warm);
}

.founder-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image img,
.founder-image > div {
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.founder-text .section-label {
  color: var(--accent-soft);
}

.founder-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.founder-text .founder-role {
  font-size: 0.85rem;
  color: var(--accent-soft);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.founder-text p {
  color: var(--text-faint);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.founder-text .btn {
  margin-top: 12px;
}

/* --- INSTAGRAM FEED --- */
.instagram-feed {
  padding: 100px 0;
  background: var(--bg);
}

.instagram-header {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-header .section-subtitle {
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.instagram-item {
  aspect-ratio: 1;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,18,17,0);
  transition: background var(--transition);
}

.instagram-item:hover::after {
  background: rgba(20,18,17,0.2);
}

.instagram-handle {
  text-align: center;
  margin-top: 28px;
}

.instagram-handle a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.instagram-handle a:hover {
  color: var(--accent);
}

.instagram-handle svg {
  width: 18px;
  height: 18px;
}

/* --- AVAILABILITY NUDGE --- */
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.hero-availability-dot {
  width: 8px;
  height: 8px;
  background: #4ead6a;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* --- STICKY MOBILE CTA --- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  padding: 12px 18px;
  box-shadow: 0 -4px 20px rgba(20,18,17,0.1);
  border-top: 1px solid var(--border-light);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

/* --- SCROLL ANIMATIONS --- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .founder-content { grid-template-columns: 1fr; gap: 48px; }
  .founder-image { max-width: 360px; margin: 0 auto; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 460px; margin: 0 auto; }
  .why-content { grid-template-columns: 1fr; gap: 56px; }
  .why-image { order: -1; max-width: 460px; margin: 0 auto; }
  .areas-content { grid-template-columns: 1fr; gap: 40px; }
  .referral-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-float-reviews, .hero-float-guarantee { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services, .how-it-works, .social-proof, .before-after,
  .why-clairve, .service-areas, .referral, .faq, .final-cta,
  .founder, .instagram-feed {
    padding: 80px 0;
  }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-lg { padding: 16px 36px; width: 100%; }
  .sticky-mobile-cta { display: block; }
  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .areas-columns { grid-template-columns: 1fr; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; }
}
