/* =========================================================
   GEOAREA — PROPERTY VALUATION PAGE
========================================================= */

.ghv-page {
  --ghv-navy: #0f172a;
  --ghv-blue: #2563eb;
  --ghv-green: #16a34a;
  --ghv-gold: #f4c768;
  --ghv-text: #334155;
  --ghv-muted: #64748b;
  --ghv-border: #e5e7eb;
  --ghv-soft: #f6f8fc;

  overflow: hidden;
  background: #fff;
  color: var(--ghv-text);
}

.ghv-page *,
.ghv-page *::before,
.ghv-page *::after {
  box-sizing: border-box;
}

.ghv-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}


/* HERO */

.ghv-hero {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, .35), transparent 34%),
    linear-gradient(135deg, #0b1220 0%, #14234b 55%, #1d4ed8 100%);
}

.ghv-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.ghv-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 70px;
  align-items: center;
}

.ghv-eyebrow,
.ghv-kicker,
.ghv-section-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ghv-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghv-eyebrow {
  color: var(--ghv-gold);
}

.ghv-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.ghv-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.75;
}

.ghv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.ghv-btn {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.ghv-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ghv-btn-primary {
  background: var(--ghv-green);
  color: #fff;
}

.ghv-btn-primary:hover {
  background: #15803d;
  color: #fff;
}

.ghv-btn-secondary {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ghv-btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.ghv-btn-light {
  background: #fff;
  color: var(--ghv-navy);
}

.ghv-btn-block {
  width: 100%;
}

.ghv-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.ghv-hero-points span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.ghv-hero-media {
  position: relative;
}

.ghv-hero-media > img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
}

.ghv-floating-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(310px, calc(100% - 30px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .25);
  backdrop-filter: blur(14px);
}

.ghv-floating-card span,
.ghv-floating-card small {
  display: block;
  color: var(--ghv-muted);
  font-size: 12px;
  font-weight: 750;
}

.ghv-floating-card strong {
  display: block;
  margin: 5px 0 7px;
  color: var(--ghv-navy);
  font-size: 18px;
  font-weight: 950;
}


/* SECTIONS */

.ghv-section {
  padding: 90px 0;
}

.ghv-section-soft {
  background: var(--ghv-soft);
}

.ghv-section-dark {
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, .28), transparent 35%),
    var(--ghv-navy);
}

.ghv-section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.ghv-section-heading h2,
.ghv-copy h2,
.ghv-deliverables h2,
.ghv-faq-intro h2 {
  margin: 0;
  color: var(--ghv-navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.ghv-section-heading > p,
.ghv-copy > p,
.ghv-faq-intro > p {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--ghv-muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.8;
}

.ghv-heading-light h2 {
  color: #fff;
}

.ghv-heading-light > p {
  color: rgba(255, 255, 255, .72);
}


/* BENEFITS */

.ghv-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ghv-benefit-card {
  padding: 28px;
  border: 1px solid var(--ghv-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .055);
}

.ghv-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #eaf1ff;
  color: var(--ghv-blue);
  font-size: 20px;
  font-weight: 950;
}

.ghv-benefit-card h3,
.ghv-type-grid h3,
.ghv-process h3 {
  margin: 0;
  color: var(--ghv-navy);
  font-size: 20px;
  font-weight: 950;
}

.ghv-benefit-card p,
.ghv-type-grid p,
.ghv-process p {
  margin: 12px 0 0;
  color: var(--ghv-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}


/* TWO COLUMN */

.ghv-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 60px;
  align-items: start;
}

.ghv-check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  list-style: none;
}

.ghv-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ghv-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.ghv-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ghv-green);
  font-weight: 950;
}

.ghv-info-panel {
  padding: 32px;
  border: 1px solid #dbe5f3;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .07);
}

.ghv-info-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff4d9;
  color: #9a6400;
  font-size: 11px;
  font-weight: 900;
}

.ghv-info-panel h3 {
  margin: 0;
  color: var(--ghv-navy);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.3;
}

.ghv-info-panel p {
  margin: 17px 0 0;
  color: var(--ghv-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}


/* TYPES */

.ghv-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ghv-type-grid article {
  padding: 28px;
  border-top: 4px solid var(--ghv-blue);
  border-right: 1px solid var(--ghv-border);
  border-bottom: 1px solid var(--ghv-border);
  border-left: 1px solid var(--ghv-border);
  border-radius: 0 0 22px 22px;
  background: #fff;
}

.ghv-type-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: #cbd5e1;
  font-size: 34px;
  font-weight: 950;
}


/* FACTORS */

.ghv-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ghv-factor-grid > div {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.ghv-factor-grid strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.ghv-factor-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}


/* PROCESS */

.ghv-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ghv-process article {
  padding: 28px;
  border: 1px solid var(--ghv-border);
  border-radius: 24px;
  background: #fff;
}

.ghv-step-number {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ghv-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}


/* DELIVERABLES */

.ghv-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: start;
}

.ghv-deliverable-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.ghv-deliverable-list > div {
  padding: 17px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
}

.ghv-deliverable-list span {
  color: var(--ghv-green);
  font-weight: 950;
}

.ghv-deliverable-list p {
  margin: 0;
  color: var(--ghv-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.ghv-order-card {
  position: sticky;
  top: 160px;
  padding: 30px;
  border: 1px solid #dfe7f1;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .1);
}

.ghv-order-card > span {
  color: var(--ghv-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ghv-order-card h3 {
  margin: 12px 0 0;
  color: var(--ghv-navy);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.3;
}

.ghv-order-card > p {
  margin: 15px 0 0;
  color: var(--ghv-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.ghv-order-card ul {
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.ghv-order-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ghv-text);
  font-size: 13px;
  font-weight: 750;
}

.ghv-order-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ghv-blue);
  font-size: 18px;
}

.ghv-order-phone {
  margin-top: 15px;
  display: block;
  color: var(--ghv-navy);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}


/* FAQ */

.ghv-faq-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.ghv-faq-intro {
  position: sticky;
  top: 160px;
}

.ghv-faq-list {
  display: grid;
  gap: 12px;
}

.ghv-faq-list details {
  overflow: hidden;
  border: 1px solid var(--ghv-border);
  border-radius: 18px;
  background: #fff;
}

.ghv-faq-list summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  color: var(--ghv-navy);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.ghv-faq-list summary::-webkit-details-marker {
  display: none;
}

.ghv-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3fb;
  color: var(--ghv-blue);
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

.ghv-faq-list details[open] summary::after {
  content: "−";
}

.ghv-faq-list details > div {
  padding: 0 22px 22px;
}

.ghv-faq-list details p {
  margin: 0;
  color: var(--ghv-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}


/* FINAL CTA */

.ghv-final-cta {
  padding: 62px 0;
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
}

.ghv-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ghv-final-cta span {
  color: var(--ghv-gold);
  font-size: 13px;
  font-weight: 900;
}

.ghv-final-cta h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.2;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
  .ghv-hero-grid {
    grid-template-columns: 1fr;
  }

  .ghv-hero-media {
    max-width: 760px;
  }

  .ghv-floating-card {
    right: 20px;
  }

  .ghv-benefit-grid,
  .ghv-type-grid,
  .ghv-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ghv-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ghv-service-layout {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 850px) {
  .ghv-section {
    padding: 70px 0;
  }

  .ghv-two-column,
  .ghv-service-layout,
  .ghv-faq-layout {
    grid-template-columns: 1fr;
  }

  .ghv-order-card,
  .ghv-faq-intro {
    position: static;
  }

  .ghv-check-list {
    grid-template-columns: 1fr;
  }

  .ghv-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .ghv-container {
    width: min(100% - 28px, 1320px);
  }

  .ghv-hero {
    padding: 58px 0;
  }

  .ghv-hero h1 {
    font-size: 39px;
  }

  .ghv-hero-lead {
    font-size: 16px;
  }

  .ghv-hero-media > img {
    height: 360px;
    border-radius: 23px;
  }

  .ghv-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -45px auto 0;
  }

  .ghv-benefit-grid,
  .ghv-type-grid,
  .ghv-factor-grid,
  .ghv-process {
    grid-template-columns: 1fr;
  }

  .ghv-section-heading {
    margin-bottom: 30px;
  }

  .ghv-section-heading h2,
  .ghv-copy h2,
  .ghv-deliverables h2,
  .ghv-faq-intro h2 {
    font-size: 31px;
  }

  .ghv-hero-actions {
    display: grid;
  }

  .ghv-btn {
    width: 100%;
  }
}