/* =========================================================
   GEOAREA SERVICES PAGE
========================================================= */

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

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

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

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


/* HERO */

.ghs-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(37, 99, 235, .38),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #0b1220 0%,
      #172554 58%,
      #1d4ed8 100%
    );
}

.ghs-hero::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ghs-hero-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(15px);
}

.ghs-panel-label {
  display: block;
  margin-bottom: 22px;
  color: var(--ghs-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ghs-panel-list {
  display: grid;
  gap: 12px;
}

.ghs-panel-list > div {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, .055);
}

.ghs-panel-list strong {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: var(--ghs-gold);
  font-size: 12px;
  font-weight: 950;
}

.ghs-panel-list span {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}


/* COMMON */

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

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

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

.ghs-section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

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

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


/* VALUES */

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

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

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

.ghs-values-grid h3,
.ghs-process-grid h3 {
  margin: 0;
  color: var(--ghs-navy);
  font-size: 20px;
  font-weight: 950;
}

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


/* SERVICE CARDS */

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

.ghs-service-card {
  overflow: hidden;
  border: 1px solid var(--ghs-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .075);
}

.ghs-service-image {
  position: relative;
  height: 330px;
  overflow: hidden;
  display: block;
  background: var(--ghs-navy);
}

.ghs-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(15, 23, 42, .44),
      transparent 55%
    );
}

.ghs-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.ghs-service-card:hover .ghs-service-image img {
  transform: scale(1.055);
}

.ghs-service-number {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, .76);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.ghs-service-body {
  padding: 30px;
}

.ghs-service-category {
  display: block;
  margin-bottom: 10px;
  color: var(--ghs-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ghs-service-body h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.25;
}

.ghs-service-body h3 a {
  color: var(--ghs-navy);
  text-decoration: none;
}

.ghs-service-body h3 a:hover {
  color: var(--ghs-blue);
}

.ghs-service-body > p {
  margin: 16px 0 0;
  color: var(--ghs-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.ghs-service-body ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  list-style: none;
}

.ghs-service-body li {
  position: relative;
  padding-left: 23px;
  color: var(--ghs-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.ghs-service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ghs-green);
  font-weight: 950;
}

.ghs-service-link {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ghs-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

.ghs-service-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.ghs-service-link:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.ghs-service-link:hover span {
  transform: translateX(4px);
}


/* COMBINED */

.ghs-combined-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 65px;
  align-items: center;
}

.ghs-combined-content h2 {
  color: #fff;
}

.ghs-combined-content > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.8;
}

.ghs-dark-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.ghs-dark-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 750;
}

.ghs-dark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 950;
}

.ghs-combined-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .07);
}

.ghs-combined-panel > span {
  color: var(--ghs-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ghs-combined-steps {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.ghs-combined-steps > div {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ghs-combined-steps b {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: var(--ghs-gold);
  font-size: 12px;
}

.ghs-combined-steps strong {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}


/* PROCESS */

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

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

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


/* WHY */

.ghs-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 58px;
  align-items: start;
}

.ghs-why-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.ghs-why-list > div {
  padding: 17px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  gap: 13px;
  background: #fff;
}

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

.ghs-why-list p {
  margin: 0;
  color: var(--ghs-text);
  font-size: 15px;
  font-weight: 750;
}

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

.ghs-contact-card > span {
  color: var(--ghs-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.ghs-contact-card > p {
  margin: 16px 0 24px;
  color: var(--ghs-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

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


/* FAQ */

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

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

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

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

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

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

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

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

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

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


/* FINAL CTA */

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

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

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

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


/* RESPONSIVE */

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

  .ghs-hero-panel {
    max-width: 650px;
  }

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

  .ghs-combined-grid,
  .ghs-why-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

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

  .ghs-services-grid,
  .ghs-combined-grid,
  .ghs-why-grid,
  .ghs-faq-layout {
    grid-template-columns: 1fr;
  }

  .ghs-contact-card,
  .ghs-faq-intro {
    position: static;
  }

  .ghs-service-image {
    height: 300px;
  }

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

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

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

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

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

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

  .ghs-btn {
    width: 100%;
  }

  .ghs-values-grid,
  .ghs-process-grid {
    grid-template-columns: 1fr;
  }

  .ghs-service-image {
    height: 235px;
  }

  .ghs-service-body {
    padding: 23px 20px;
  }

  .ghs-service-body h3 {
    font-size: 23px;
  }

  .ghs-service-body ul {
    grid-template-columns: 1fr;
  }

  .ghs-section-heading h2,
  .ghs-combined-content h2,
  .ghs-why-copy h2,
  .ghs-faq-intro h2 {
    font-size: 31px;
  }
}