/* =========================================================
   GEOAREA — PHOTO / VIDEO SERVICE PAGE
========================================================= */

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

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

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

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


/* HERO */

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

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

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

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

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

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

.ghpv-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;
}

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

.ghpv-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;
}

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

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

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

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

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

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

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

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

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

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

.ghpv-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);
}

.ghpv-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);
}

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

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


/* COMMON SECTIONS */

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

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

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

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

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

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

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

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


/* BENEFITS */

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

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

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

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

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


/* SERVICES */

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

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

.ghpv-service-number {
  display: block;
  margin-bottom: 24px;
  color: #cbd5e1;
  font-size: 34px;
  font-weight: 950;
}


/* TWO COLUMN */

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

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

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

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

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

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

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

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


/* PREPARATION */

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

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

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

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


/* PROCESS */

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

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

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


/* DELIVERABLES / ORDER */

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

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

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

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

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

.ghpv-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);
}

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

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

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

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

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

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

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


/* FAQ */

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

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

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

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

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

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

.ghpv-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(--ghpv-blue);
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

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

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

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


/* FINAL CTA */

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

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

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

.ghpv-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) {
  .ghpv-hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .ghpv-service-grid,
  .ghpv-prep-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .ghpv-order-layout {
    grid-template-columns: 1fr 340px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

  .ghpv-benefit-grid,
  .ghpv-service-grid,
  .ghpv-prep-grid,
  .ghpv-process {
    grid-template-columns: 1fr;
  }

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

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

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

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