/* ===== REGIONAL SERVICE PAGES ===== */

.geo-page {
  background: var(--white);
}
.geo-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 18%, rgba(39, 163, 228, .2), transparent 30%),
    linear-gradient(135deg, #061827 0%, var(--navy) 66%, #0c3850 100%);
}

.geo-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.geo-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, .62fr);
  gap: 72px;
  align-items: center;
}

.geo-kicker,
.geo-section-kicker {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.geo-kicker span {
  padding: 0 8px;
  color: rgba(255, 255, 255, .32);
}

.geo-hero__title {
  max-width: 820px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.045em;
}

.geo-hero__lead {
  max-width: 760px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.68;
}

.geo-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.geo-hero__micro {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12.5px;
  line-height: 1.5;
}

.geo-hero__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.geo-hero__panel-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.geo-hero__panel-head span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.geo-hero__panel-head strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.geo-fact {
  position: relative;
  padding: 19px 24px 19px 53px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.geo-fact:last-child {
  border-bottom: 0;
}

.geo-fact::before {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 10px;
  height: 10px;
  border: 3px solid rgba(39, 163, 228, .3);
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-sizing: content-box;
}

.geo-fact strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.25;
}

.geo-fact span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 12.5px;
  line-height: 1.45;
}

.geo-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.geo-section-head .section-title,
.geo-industries-layout .section-title {
  margin-bottom: 0;
}

.geo-focus {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.72;
}

/* Verified projects */
.geo-objects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.geo-object {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: inherit;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(11, 35, 54, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.geo-object:hover {
  border-color: rgba(39, 163, 228, .55);
  box-shadow: 0 20px 48px rgba(11, 35, 54, .12);
  transform: translateY(-4px);
}

.geo-object__img {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 208px;
  place-items: center;
  background: linear-gradient(135deg, #dce8ef, #eef4f7);
}

.geo-object__img::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(4, 20, 32, .42));
  pointer-events: none;
}

.geo-object__img img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  transition: transform .5s ease;
}

.geo-object:hover .geo-object__img img {
  transform: scale(1.035);
}

.geo-object__placeholder {
  color: rgba(11, 35, 54, .18);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.geo-object__tag {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 23, 36, .68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.geo-object__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 22px 20px;
}

.geo-object__name {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.38;
}

.geo-object__meta {
  min-height: 38px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.geo-object__link {
  margin-top: auto;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 750;
}

/* Contract-grounded supplies */
.geo-evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.geo-evidence__item {
  position: relative;
  overflow: hidden;
  padding: 29px 30px 30px;
  border: 1px solid #cfe1ec;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcfe, #eef7fb);
}

.geo-evidence__item::after {
  position: absolute;
  top: -32px;
  right: -25px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(39, 163, 228, .07);
  border-radius: 50%;
  content: "";
}

.geo-evidence__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.geo-evidence__item h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.28;
}

.geo-evidence__item p,
.geo-coverage p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.geo-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Regional engineering priorities */
.geo-priorities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.geo-priority {
  padding: 25px 25px 27px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--white);
}

.geo-priority__number {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
}

.geo-priority h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.geo-priority p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Industries and honest operational model */
.geo-industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 70px;
  align-items: start;
}

.geo-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.geo-industry {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: #f7fafc;
  font-size: 13px;
  font-weight: 650;
}

.geo-note {
  padding: 28px 29px;
  border: 1px solid #d3e4ed;
  border-radius: 18px;
  background: #f3f9fc;
}

.geo-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.geo-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.72;
}

.geo-industry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.geo-industry-links span {
  margin-right: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.geo-industry-links a,
.geo-nearby a {
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gray-bg2);
  font-size: 12.5px;
  font-weight: 700;
  transition: color .2s, background .2s;
}

.geo-industry-links a:hover,
.geo-nearby a:hover {
  color: #fff;
  background: var(--blue);
}

/* Process */
.geo-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.geo-process__grid li {
  min-height: 225px;
  padding: 24px 25px;
  border: 1px solid var(--border);
  border-right: 0;
  background: var(--white);
}

.geo-process__grid li:first-child {
  border-radius: 17px 0 0 17px;
}

.geo-process__grid li:last-child {
  border-right: 1px solid var(--border);
  border-radius: 0 17px 17px 0;
}

.geo-process__grid li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.geo-process__grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.geo-process__grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.62;
}

/* Common services + CTA */
.geo-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 34px;
}

.geo-service {
  display: block;
  padding: 25px 26px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--white);
  transition: border-color .2s, background .2s, transform .2s;
}

.geo-service:hover {
  border-color: var(--blue);
  background: #f7fbfe;
  transform: translateY(-2px);
}

.geo-service__title {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.geo-service__text {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.geo-cta {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px 38px;
  border-radius: 21px;
  background: linear-gradient(125deg, var(--navy), #0b3b55);
}

.geo-cta::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 45px solid rgba(39, 163, 228, .1);
  border-radius: 50%;
  content: "";
}

.geo-cta__text,
.geo-cta .btn {
  position: relative;
  z-index: 1;
}

.geo-cta__text strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.geo-cta__text span {
  color: rgba(255, 255, 255, .62);
  font-size: 13.5px;
}

/* Hub region matrix */
.geo-regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo-region {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 25px 26px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: inherit;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 35, 54, .045);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.geo-region:hover {
  border-color: rgba(39, 163, 228, .6);
  box-shadow: 0 18px 42px rgba(11, 35, 54, .1);
  transform: translateY(-3px);
}

.geo-region::before {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.geo-region--deliveries::before {
  background: #36a67d;
}

.geo-region--coverage::before {
  background: #9ca7af;
}

.geo-region__macro {
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.geo-region__city {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.geo-region__area {
  margin-bottom: 23px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.geo-region__footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--blue);
}

.geo-region__count {
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.4;
}

.geo-hub-projects .geo-objects {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.geo-hub-projects .geo-object__img,
.geo-hub-projects .geo-object__img img {
  min-height: 170px;
  height: 170px;
}

.geo-nearby {
  border-top: 1px solid var(--border);
  background: #f7fafc;
}

.geo-nearby__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  padding-bottom: 21px;
}

.geo-nearby__inner > span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.geo-nearby__inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1100px) {
  .geo-hero__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
    gap: 38px;
  }

  .geo-hub-projects .geo-objects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .geo-hero {
    padding: 58px 0 52px;
  }

  .geo-hero__layout,
  .geo-section-head,
  .geo-industries-layout,
  .geo-coverage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .geo-hero__panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .geo-hero__panel-head {
    grid-column: 1 / -1;
  }

  .geo-fact {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
  }

  .geo-fact:last-child {
    border-right: 0;
  }

  .geo-section-head {
    align-items: start;
  }

  .geo-objects,
  .geo-hub-projects .geo-objects,
  .geo-regions,
  .geo-priorities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .geo-process__grid li,
  .geo-process__grid li:first-child,
  .geo-process__grid li:last-child {
    border: 1px solid var(--border);
    border-radius: 16px;
  }
}

@media (max-width: 680px) {
  .geo-hero {
    padding: 42px 0 38px;
  }

  .geo-hero::before {
    background-size: 46px 46px;
  }

  .geo-hero__title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
  }

  .geo-hero__lead {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .geo-hero__cta,
  .geo-hero__cta .btn {
    width: 100%;
  }

  .geo-hero__cta .btn {
    justify-content: center;
    min-height: 48px;
  }

  .geo-hero__panel {
    display: block;
    border-radius: 18px;
  }

  .geo-fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .geo-fact:last-child {
    border-bottom: 0;
  }

  .geo-objects,
  .geo-hub-projects .geo-objects,
  .geo-regions,
  .geo-priorities,
  .geo-services,
  .geo-process__grid {
    grid-template-columns: 1fr;
  }

  .geo-object__img,
  .geo-object__img img,
  .geo-hub-projects .geo-object__img,
  .geo-hub-projects .geo-object__img img {
    height: 196px;
    min-height: 196px;
  }

  .geo-evidence {
    grid-template-columns: 1fr;
  }

  .geo-evidence__item,
  .geo-priority,
  .geo-note {
    padding: 23px 22px;
  }

  .geo-priority__number,
  .geo-process__grid li > span {
    margin-bottom: 22px;
  }

  .geo-process__grid li {
    min-height: 0;
    padding: 22px;
  }

  .geo-cta {
    align-items: stretch;
    padding: 28px 23px;
  }

  .geo-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .geo-nearby__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
