.geo-page {
  --geo-blue: #2268f6;
  --geo-blue-dark: #1450d9;
  --geo-text: #333333;
  --geo-muted: #646a73;
  --geo-light: #f5fbff;
  --geo-line: #edf1f7;
  --geo-orange: #ff7d24;
}

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

.geo-page {
  color: var(--geo-text);
  font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: #ffffff;
  letter-spacing: 0;
}

body.geo-is-locked {
  overflow: hidden;
}

.geo-page * {
  font-family: inherit;
}

.geo-page :where(span, strong, b, em, i, small) {
  font-size: inherit;
  line-height: inherit;
}

.geo-page :where(span, em, i, small) {
  font-weight: inherit;
}

.geo-page :where(strong, b) {
  font-weight: 700;
}

.geo-page img {
  display: block;
  max-width: 100%;
}

.geo-page a {
  color: inherit;
  text-decoration: none;
}

.geo-page :where(button, input, textarea) {
  font: inherit;
}

.geo-page :where(button) {
  cursor: pointer;
}

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

.geo-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}

.geo-site-header.geo-is-scrolled {
  box-shadow: 0 8px 24px rgba(20, 60, 120, 0.08);
}

.geo-header-inner {
  width: min(1400px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.geo-brand {
  flex: 0 0 auto;
}

.geo-brand img {
  width: 121px;
  height: 38px;
  object-fit: contain;
}

.geo-site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  height: 100%;
}

.geo-site-nav a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: #333333;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.geo-site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--geo-blue);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.geo-site-nav a:hover,
.geo-site-nav a.geo-is-active {
  color: var(--geo-blue);
}

.geo-site-nav a:hover::after,
.geo-site-nav a.geo-is-active::after {
  width: 62px;
}

.geo-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: auto;
}

.geo-icon-button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(34, 104, 246, 0.16);
}

.geo-phone-pill {
  min-width: 150px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #1d83ff 0%, #255ff5 100%);
  box-shadow: 0 8px 18px rgba(34, 104, 246, 0.18);
}

.geo-phone-pill img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.geo-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.geo-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #222222;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.geo-site-header.geo-is-open .geo-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.geo-site-header.geo-is-open .geo-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.geo-site-header.geo-is-open .geo-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.geo-hero-section {
  height: 600px;
  background-image:
    linear-gradient(90deg, #f4f9ff 0%, #f4f9ff 58%, rgba(244, 249, 255, 0.86) 66%, rgba(244, 249, 255, 0) 80%),
    url("../geo/hero-bg.png");
  background-position: center top, center top;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat;
}

.geo-hero-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.geo-hero-copy {
  width: 760px;
  padding-bottom: 24px;
}

.geo-hero-copy h1 {
  margin: 0 0 24px;
  color: #333333;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 800;
}

.geo-hero-copy h1 span {
  display: inline;
}

.geo-hero-copy h1 span + span {
  margin-left: 14px;
}

.geo-hero-copy p {
  margin: 0 0 18px;
  color: #4d535c;
  font-size: 32px;
  line-height: 1.25;
}

.geo-about-section {
  padding: 74px 0 70px;
  background: #ffffff;
}

.geo-about-grid {
  display: grid;
  grid-template-columns: 1fr 670px;
  gap: 72px;
  align-items: center;
}

.geo-about-copy h2,
.geo-section-title {
  margin: 0;
  color: #333333;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.geo-about-copy h2 {
  margin-bottom: 30px;
  text-align: left;
}

.geo-about-copy h2 span,
.geo-section-title span {
  color: var(--geo-blue);
}

.geo-about-copy p {
  margin: 0 0 24px;
  color: #30353d;
  font-size: 14px;
  line-height: 2;
}

.geo-about-copy p:last-child {
  margin-bottom: 0;
}

.geo-about-copy strong {
  color: #222222;
  font-weight: 800;
}

.geo-about-media {
  overflow: hidden;
}

.geo-about-media img {
  width: 670px;
  height: 460px;
  object-fit: cover;
}

.geo-platform-section,
.geo-service-section {
  background: var(--geo-light);
}

.geo-platform-section {
  padding: 72px 0 70px;
}

.geo-platform-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.geo-platform-card {
  min-height: 228px;
  padding: 34px 12px 24px;
  background: #ffffff;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(35, 106, 238, 0.12);
}

.geo-platform-card img {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.geo-platform-card h3 {
  margin: 0 0 10px;
  color: #333333;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.geo-platform-card p {
  margin: 0;
  color: #656b75;
  font-size: 12px;
  line-height: 1.4;
}

.geo-advantage-section {
  padding: 72px 0 74px;
  background: #ffffff;
}

.geo-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 44px;
}

.geo-advantage-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 340px;
  overflow: hidden;
  background: #f6fbff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(28, 92, 180, 0.12);
}

.geo-advantage-text {
  padding: 42px 40px;
}

.geo-advantage-text span {
  display: block;
  margin-bottom: 22px;
  color: var(--geo-orange);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.geo-advantage-text h3 {
  margin: 0 0 14px;
  color: var(--geo-blue);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.geo-advantage-text p {
  margin: 0;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.geo-advantage-card img {
  width: 340px;
  height: 210px;
  object-fit: cover;
}

.geo-service-section {
  padding: 72px 0 84px;
}

.geo-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  padding-top: 34px;
}

.geo-service-card {
  min-height: 314px;
  padding: 42px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #edf4ff 0%, #ffffff 48%);
  text-align: center;
  outline: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.geo-service-card:hover,
.geo-service-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(35, 106, 238, 0.14);
}

.geo-service-card.geo-is-active {
  min-height: 382px;
  transform: translateY(-34px);
  color: #ffffff;
  background: linear-gradient(180deg, #2f8bff 0%, #1762f2 100%);
  box-shadow: 0 18px 30px rgba(24, 96, 230, 0.32);
}

.geo-service-card.geo-is-active:hover,
.geo-service-card.geo-is-active:focus-visible {
  transform: translateY(-40px);
}

.geo-service-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 34px;
  object-fit: contain;
}

.geo-service-card.geo-is-active img {
  filter: brightness(0) invert(1);
}

.geo-service-card h3 {
  margin: 0 0 22px;
  color: #333333;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.geo-service-card p {
  margin: 0;
  color: #656b75;
  font-size: 14px;
  line-height: 1.8;
}

.geo-service-card.geo-is-active h3,
.geo-service-card.geo-is-active p {
  color: #ffffff;
}

.geo-service-button {
  min-width: 102px;
  height: 34px;
  margin-top: auto;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--geo-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: #ffffff;
}

.geo-service-card.geo-is-active .geo-service-button {
  display: inline-flex;
}

.geo-case-section {
  padding: 62px 0 62px;
  background: #ffffff;
}

.geo-case-grid {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-bottom: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(34, 104, 246, 0.42) #edf3fb;
  scrollbar-width: thin;
}

.geo-case-grid::-webkit-scrollbar {
  height: 8px;
}

.geo-case-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #edf3fb;
}

.geo-case-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 104, 246, 0.42);
}

.geo-case-card {
  flex: 0 0 clamp(360px, 32vw, 460px);
  scroll-snap-align: start;
  overflow: hidden;
  background: #f7f7f7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(28, 51, 84, 0.12);
}

.geo-case-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: left top;
}

.geo-case-body {
  padding: 24px 28px 28px;
}

.geo-case-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.geo-case-heading h3 {
  margin: 0;
  color: #333333;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.geo-case-heading span {
  flex: 0 0 auto;
  min-width: 100px;
  height: 36px;
  padding: 0 16px;
  border: 2px solid #ff9b43;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff8a27;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.geo-case-body p {
  display: -webkit-box;
  min-height: 95px;
  margin: 0 0 18px;
  overflow: hidden;
  color: #5f6570;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.geo-case-body a {
  color: var(--geo-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.geo-case-action {
  margin-top: 36px;
  text-align: center;
}

.geo-primary-button {
  min-width: 302px;
  height: 54px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #1d83ff 0%, #2260f6 100%);
  box-shadow: 0 12px 28px rgba(34, 104, 246, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 104, 246, 0.3);
}

.geo-site-footer {
  min-height: 615px;
  position: relative;
  color: #ffffff;
  background: url("../geo/footer-bg.png") center bottom / cover no-repeat;
  overflow: hidden;
}

.geo-footer-inner {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 42px;
}

.geo-footer-brand h2 {
  margin: 0 0 98px;
  font-size: 42px;
  line-height: 1.32;
  font-weight: 500;
}

.geo-footer-brand img {
  width: 148px;
  filter: brightness(0) invert(1);
}

.geo-footer-contact {
  justify-self: end;
  padding-top: 72px;
  text-align: left;
}

.geo-social-list {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-left: 96px;
}

.geo-social-list a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.26);
  transition: background 0.2s ease, transform 0.2s ease;
}

.geo-social-list a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.4);
}

.geo-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.geo-footer-phone img {
  width: 30px;
  height: 30px;
}

.geo-footer-phone span {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.geo-footer-contact p {
  margin: 14px 0 0 42px;
  font-size: 15px;
}

.geo-footer-nav {
  position: absolute;
  right: 0;
  bottom: 110px;
  display: flex;
  gap: 52px;
}

.geo-footer-nav a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}

.geo-footer-nav a:hover {
  color: #ffffff;
}

.geo-copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  text-align: center;
}

.geo-search-panel,
.geo-consult-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 20, 42, 0.42);
}

.geo-search-panel.geo-is-open,
.geo-consult-modal.geo-is-open {
  display: flex;
}

.geo-search-box,
.geo-modal-card {
  position: relative;
  width: min(640px, 100%);
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(8, 20, 42, 0.22);
}

.geo-search-box {
  padding: 54px 56px;
}

.geo-search-close,
.geo-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #8b929d;
  font-size: 26px;
  line-height: 1;
  background: #f2f6fb;
}

.geo-search-form {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 12px;
}

.geo-search-form input,
.geo-consult-form input,
.geo-consult-form textarea {
  width: 100%;
  border: 1px solid #dfe7f2;
  color: #27313f;
  background: #ffffff;
  outline: none;
}

.geo-search-form input {
  height: 52px;
  padding: 0 18px;
}

.geo-search-form button {
  border: 0;
  color: #ffffff;
  background: var(--geo-blue);
}

.geo-modal-card {
  max-width: 500px;
  padding: 44px 42px 38px;
}

.geo-modal-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.geo-modal-card p {
  margin: 0 0 24px;
  color: var(--geo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.geo-consult-form {
  display: grid;
  gap: 14px;
}

.geo-consult-form input {
  height: 48px;
  padding: 0 14px;
}

.geo-consult-form textarea {
  min-height: 96px;
  resize: vertical;
  padding: 12px 14px;
}

.geo-consult-form .geo-primary-button {
  width: 100%;
  min-width: 0;
  height: 48px;
  margin-top: 4px;
  font-size: 16px;
}

.geo-modal-phone {
  display: block;
  margin-top: 18px;
  color: var(--geo-blue);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.geo-toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  z-index: 120;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  background: rgba(18, 31, 54, 0.92);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.geo-toast.geo-is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.geo-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.geo-reveal.geo-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1500px) {
  .geo-site-nav {
    gap: 26px;
  }

  .geo-header-inner {
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .geo-platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .geo-about-grid {
    grid-template-columns: 1fr 520px;
    gap: 42px;
  }

  .geo-about-media img {
    width: 100%;
  }

  .geo-advantage-card {
    grid-template-columns: minmax(190px, 1fr) 300px;
  }

  .geo-advantage-card img {
    width: 300px;
  }

  .geo-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .geo-service-card,
  .geo-service-card.geo-is-active,
  .geo-service-card.geo-is-active:hover,
  .geo-service-card.geo-is-active:focus-visible {
    min-height: 314px;
    transform: none;
  }

  .geo-case-grid {
    gap: 24px;
  }

  .geo-footer-nav {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .geo-site-header {
    height: 66px;
  }

  .geo-header-inner {
    width: min(100% - 32px, 1400px);
  }

  .geo-menu-toggle {
    display: block;
  }

  .geo-site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    height: auto;
    display: none;
    padding: 12px 24px 20px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(18, 52, 92, 0.12);
  }

  .geo-site-header.geo-is-open .geo-site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .geo-site-nav a {
    height: 44px;
    justify-content: center;
  }

  .geo-site-nav a::after {
    height: 2px;
  }

  .geo-hero-section {
    height: 520px;
    background-position: center top, right top;
  }

  .geo-hero-copy {
    width: 520px;
  }

  .geo-hero-copy h1 {
    font-size: 38px;
  }

  .geo-hero-copy h1 span {
    display: block;
  }

  .geo-hero-copy h1 span + span {
    margin-left: 0;
  }

  .geo-hero-copy p {
    font-size: 24px;
  }

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

  .geo-about-media img {
    height: auto;
  }

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

  .geo-advantage-card {
    grid-template-columns: 1fr 340px;
  }

  .geo-advantage-card img {
    width: 340px;
  }

  .geo-case-grid {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .geo-case-card {
    flex-basis: min(360px, calc(100vw - 64px));
  }

  .geo-case-card > img {
    height: 300px;
  }

  .geo-footer-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 38px;
  }

  .geo-footer-brand h2 {
    margin-bottom: 44px;
    font-size: 34px;
  }

  .geo-footer-contact {
    justify-self: start;
    padding-top: 0;
  }

  .geo-social-list {
    padding-left: 0;
  }

  .geo-footer-contact p {
    margin-left: 42px;
  }

  .geo-footer-nav {
    position: static;
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 700px) {
  .geo-container {
    width: min(100% - 32px, 1400px);
  }

  .geo-phone-pill {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .geo-phone-pill span {
    display: none;
  }

  .geo-hero-section {
    height: 470px;
    background-image:
      linear-gradient(90deg, #f4f9ff 0%, #f4f9ff 56%, rgba(244, 249, 255, 0.18) 76%, rgba(244, 249, 255, 0) 100%),
      url("../geo/hero-bg.png");
    background-position: center top, right top;
  }

  .geo-hero-copy {
    width: 78%;
    padding-bottom: 110px;
  }

  .geo-hero-copy h1 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.42;
  }

  .geo-hero-copy p {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .geo-about-section,
  .geo-platform-section,
  .geo-advantage-section,
  .geo-service-section,
  .geo-case-section {
    padding: 52px 0;
  }

  .geo-about-copy h2,
  .geo-section-title {
    font-size: 28px;
  }

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

  .geo-platform-card {
    min-height: 196px;
    padding-top: 26px;
  }

  .geo-platform-card img {
    margin-bottom: 18px;
  }

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

  .geo-advantage-card img {
    width: 100%;
    height: 220px;
  }

  .geo-advantage-text {
    padding: 30px 28px;
  }

  .geo-service-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .geo-service-card {
    min-height: 0;
  }

  .geo-case-card > img {
    height: 210px;
  }

  .geo-case-body {
    padding: 24px 22px 28px;
  }

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

  .geo-case-heading h3 {
    font-size: 24px;
  }

  .geo-case-heading span {
    height: 34px;
    font-size: 15px;
  }

  .geo-case-body p {
    font-size: 14px;
  }

  .geo-primary-button {
    width: 100%;
    min-width: 0;
  }

  .geo-site-footer {
    min-height: 650px;
  }

  .geo-footer-inner {
    min-height: 610px;
    padding-top: 28px;
  }

  .geo-footer-brand h2 {
    font-size: 28px;
  }

  .geo-footer-phone span {
    font-size: 30px;
  }

  .geo-footer-contact p {
    margin-left: 0;
    line-height: 1.7;
  }

  .geo-footer-nav {
    gap: 14px 22px;
  }

  .geo-search-box,
  .geo-modal-card {
    padding: 50px 22px 28px;
  }

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

@media (max-width: 430px) {
  .geo-header-inner {
    width: min(100% - 24px, 1400px);
    gap: 12px;
  }

  .geo-brand img {
    width: 110px;
  }

  .geo-hero-copy {
    width: 90%;
  }

  .geo-hero-copy h1 {
    font-size: 26px;
  }

  .geo-hero-copy p {
    font-size: 17px;
  }

  .geo-site-header.geo-is-open .geo-site-nav {
    grid-template-columns: 1fr;
  }

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

  .geo-footer-phone span {
    font-size: 26px;
  }

  .geo-copyright {
    padding: 0 16px;
    line-height: 1.6;
  }
}
