/* ============================================================
   V2 STYLES - Mount Joy Home Inspection
   ============================================================ */

/* --- Déco radial glows --- */

/* Hero - glow orange top-right */
#hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.14), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Hero - second glow bottom-left subtil */
#hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Process - glow top-left + bottom-right */
#process { position: relative; overflow: hidden; }
#process::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.11), transparent 70%);
  pointer-events: none;
}
#process::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.09), transparent 70%);
  pointer-events: none;
}

/* Testimonials - glow top-right */
#testimonials { position: relative; overflow: hidden; }
#testimonials::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
  pointer-events: none;
}

/* About - glow derrière la photo */
#about { position: relative; overflow: hidden; }
#about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
  pointer-events: none;
}


/* --- Banner preview --- */
.preview-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(249,115,22,0.95);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

/* --- About V2 - Photo top-left, content below --- */
.about-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-v2-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-v2-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(30,58,95,0.14);
}
.about-v2-photo-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-v2-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}
.about-v2-photo-badge .about-years-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.about-v2-photo-badge .about-years-txt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .about-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-v2-photo-img { aspect-ratio: 3 / 2; }
}

/* --- About V2 - Quote --- */
.about-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
}
.about-quote-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
}
.about-quote-author {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* --- About V2 - Certs --- */
.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.about-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.about-cert-badge svg { width: 14px; height: 14px; color: var(--accent); stroke-width: 2; }

/* --- About V2 - Why Independent --- */
.about-why {
  background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
}
.about-why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-why-list li {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.about-why-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Testimonials V2 - Rating hero --- */
.testi-rating-hero {
  text-align: center;
  margin-bottom: 56px;
  padding: 40px;
  background: var(--navy);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.testi-rating-hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  pointer-events: none;
}
.testi-rating-score-big {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}
.testi-rating-score-big span { color: var(--accent); }
.testi-rating-label {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.testi-rating-stars-big {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 12px 0 8px;
}
.testi-rating-stars-big svg { width: 22px; height: 22px; color: #FBBF24; fill: #FBBF24; }
.testi-rating-google-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

/* --- CTA Band V2 --- */
.cta-v2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.cta-v2-badge svg { width: 12px; height: 12px; color: var(--accent); }
.cta-v2-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px,2.8vw,36px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.cta-v2-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.cta-v2-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-v2-note svg { width: 12px; height: 12px; color: rgba(249,115,22,0.6); }
.cta-v2-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}
.cta-v2-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}
.cta-v2-phone:hover { color: white; }
.cta-v2-phone svg { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .cta-v2-inner { flex-direction: column; }
  .cta-v2-actions { width: 100%; }
  .cta-v2-actions .btn { width: 100%; justify-content: center; }
  .about-why { margin: 0; }
}

/* --- Process V2 - Duration badges --- */
.proc-duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  margin-top: 6px;
  margin-bottom: 12px;
}

/* --- Hero V2 - title line colors --- */
.hero-title-v2 .line-highlight { color: var(--accent); }
.hero-title-v2 .line-sub { color: rgba(255,255,255,0.9); }

/* --- TrustBar V2 - Google item --- */
.trust-google-stars { display: flex; gap: 2px; }
.trust-google-stars svg { width: 13px; height: 13px; color: #FBBF24; fill: #FBBF24; }
.trust-google-wrap { display: flex; flex-direction: column; gap: 2px; }
.trust-google-score { font-size: 13px; font-weight: 700; color: white; line-height: 1; }
.trust-google-label { font-size: 11px; color: rgba(255,255,255,0.5); }
