/* Page-specific layout extensions for the GSC home duplicate. */

.section--alt { background: var(--bg-page-alt); }

/* Section padding rhythm */
.section { padding: 96px 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } }

/* ---- Hero stats strip ---- */
.stats-strip {
  background: #fff;
  border-top: var(--border-hairline-light);
  border-bottom: var(--border-hairline-light);
  padding: 56px 0;
}
.stats-strip__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
@media (max-width: 900px) { .stats-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-strip__grid { grid-template-columns: 1fr; } }
.stat-cell { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.stat-cell__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--gsc-blue-medium);
}
.stat-cell__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  max-width: 18ch;
  line-height: 1.4;
}

/* ---- Two-column intro ---- */
.two-col {
  display: grid; gap: 56px;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col p { font-size: 17px; line-height: 1.65; color: var(--fg1); margin: 0 0 18px; }
.two-col p:last-child { margin-bottom: 0; }

/* ---- Service cards (image + title) ---- */
.svc6-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .svc6-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc6-grid { grid-template-columns: 1fr; } }
.svc6 {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-hairline-light);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.svc6:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.svc6__photo {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  background-color: #2a3a6a;
}
.svc6__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.svc6__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: var(--gsc-blue-dark);
  margin: 0;
}
.svc6__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gsc-red);
}

/* ---- Core 4 list ---- */
.core4 {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) { .core4 { grid-template-columns: 1fr; } }
.core4__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 28px;
  border: var(--border-hairline-light);
  box-shadow: var(--shadow-1);
  display: flex; gap: 18px; align-items: flex-start;
}
.core4__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(39, 70, 144, 0.08);
  color: var(--gsc-blue-medium);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.core4__heading {
  font-weight: 700; color: var(--gsc-blue-dark);
  font-size: 18px; margin: 0 0 8px;
}
.core4__body { font-size: 15px; line-height: 1.55; color: var(--fg2); margin: 0; }

/* ---- Why-us 6 cards ---- */
.why6 {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .why6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why6 { grid-template-columns: 1fr; } }
.why6__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: var(--border-hairline-light);
  box-shadow: var(--shadow-1);
}
.section--dark .why6__card {
  background: rgba(255,255,255,0.06);
  border: var(--border-hairline-dark);
  backdrop-filter: blur(2px);
}
.why6__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gsc-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why6__title {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--gsc-blue-dark);
  margin: 0 0 12px;
  line-height: 1;
}
.section--dark .why6__title { color: #fff; }
.why6__body { font-size: 15px; line-height: 1.6; color: var(--fg2); margin: 0; }
.section--dark .why6__body { color: rgba(255,255,255,0.8); }

/* ---- Reviews block ---- */
.reviews-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: var(--border-hairline-light);
  box-shadow: var(--shadow-2);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) { .reviews-card { grid-template-columns: 1fr; text-align: center; } }
.reviews-stars { display: flex; gap: 4px; color: #f5b400; }
.reviews-num {
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--gsc-blue-dark);
}
.reviews-meta { display: flex; flex-direction: column; gap: 6px; }
.reviews-meta b { font-weight: 700; font-size: 18px; color: var(--gsc-blue-dark); }
.reviews-meta span { font-size: 14px; color: var(--fg2); }

/* ---- Checklist (helps homeowners) ---- */
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; line-height: 1.55;
}
.checklist li svg { color: var(--gsc-green); flex-shrink: 0; margin-top: 4px; }

/* ---- 8 Reasons ---- */
.reasons {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  background: #fff;
  border-radius: var(--radius-md);
  border: var(--border-hairline-light);
  border-left: 4px solid var(--gsc-red);
  box-shadow: var(--shadow-1);
  padding: 28px 28px;
}
.reason__num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  color: var(--gsc-blue-medium);
  opacity: 0.35;
  display: block; margin-bottom: 4px;
}
.reason__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--gsc-blue-dark);
  margin: 0 0 10px;
}
.reason__body { font-size: 15px; line-height: 1.6; color: var(--fg2); margin: 0; }

/* ---- 3-step process ---- */
.steps {
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  text-align: center;
  padding: 32px 24px;
}
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gsc-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 64px;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: var(--shadow-2);
}
.step__title {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
}
.step__body {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 28ch;
  margin-left: auto; margin-right: auto;
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: var(--border-hairline-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.faq-item[open] { box-shadow: var(--shadow-2); border-color: rgba(39,70,144,0.2); }
.faq-item summary {
  padding: 22px 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--gsc-blue-dark);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gsc-red);
  width: 24px; line-height: 1;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg2);
  margin: 0;
}

/* ---- Meet the owner ---- */
.owner {
  display: grid; gap: 56px;
  grid-template-columns: 360px 1fr;
  align-items: start;
}
@media (max-width: 800px) { .owner { grid-template-columns: 1fr; gap: 32px; } }
.owner__photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-3);
  background-color: #2a3a6a;
}
.owner__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--gsc-blue-dark);
  margin: 0 0 8px;
}
.owner__role {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsc-red);
  margin-bottom: 24px;
  display: block;
}
.owner__body p { font-size: 16px; line-height: 1.7; color: var(--fg1); margin: 0 0 18px; }

/* ---- Final CTA banner ---- */
.cta-final {
  background: var(--gsc-gradient-hero);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.cta-final p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* ---- Photo collage tweaks for hero — ensure visible ---- */
.collage__photo { background-color: rgba(255,255,255,0.08); background-blend-mode: normal; }

/* Small helpers */
.text-center { text-align: center; }
.divider-flag {
  width: 56px; height: 4px;
  background: var(--gsc-red);
  margin: 0 0 24px;
  border-radius: 2px;
}
.section--dark .divider-flag { background: #fff; }
.text-center .divider-flag { margin-left: auto; margin-right: auto; }
