.geo-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 198, 122, 0.18), transparent 38%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 28%, #f7f9fc 100%);
  padding: 28px 0 56px;
}

.geo-wrap {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.geo-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.geo-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5f6b7a;
  font-size: 0.95rem;
}

.geo-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #9aa6b2;
}

.geo-breadcrumbs a {
  color: #1f4b7a;
  text-decoration: none;
}

.geo-breadcrumbs a:hover {
  text-decoration: underline;
}

.geo-hero,
.geo-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(225, 232, 240, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.geo-hero {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.geo-hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 146, 31, 0.16), transparent 68%);
}

.geo-kicker {
  margin: 0 0 10px;
  color: #b45309;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-hero h1 {
  margin: 0;
  color: #18212b;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
}

.geo-summary {
  width: min(760px, 100%);
  margin: 16px 0 0;
  color: #49586a;
  font-size: 1.08rem;
  line-height: 1.7;
}

.geo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.geo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.geo-btn:hover {
  transform: translateY(-1px);
}

.geo-btn--primary {
  background: linear-gradient(135deg, #ff8f1f 0%, #ef6c00 100%);
  box-shadow: 0 14px 28px rgba(239, 108, 0, 0.24);
  color: #ffffff;
}

.geo-btn--secondary {
  background: #102a43;
  color: #ffffff;
}

.geo-btn--ghost {
  border: 1px solid #d7dee7;
  background: #ffffff;
  color: #23364a;
}

.geo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.geo-stat-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  border: 1px solid #fde3bd;
}

.geo-stat-card strong {
  color: #18212b;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.geo-stat-card span {
  color: #6a7584;
  font-size: 0.96rem;
}

.geo-section {
  padding: 28px;
}

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

.geo-section__head h2 {
  margin: 0;
  color: #18212b;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.geo-inline-link {
  color: #1f4b7a;
  font-weight: 700;
  text-decoration: none;
}

.geo-inline-link:hover {
  text-decoration: underline;
}

.geo-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.geo-link-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dde7f0;
  color: #18212b;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.geo-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  border-color: #c7d8ea;
}

.geo-link-card span {
  color: #607082;
  font-size: 0.94rem;
}

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

.geo-guide-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #d5e7fb;
  color: #12406d;
  text-decoration: none;
  font-weight: 700;
}

.geo-guide-chip:hover {
  background: #e2f0ff;
}

.geo-product-grid {
  display: grid;
  gap: 18px;
}

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

.geo-faq-item {
  border-radius: 18px;
  border: 1px solid #dbe4ee;
  background: #fbfdff;
  padding: 0 18px;
}

.geo-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  color: #18212b;
  font-weight: 800;
}

.geo-faq-item summary::-webkit-details-marker {
  display: none;
}

.geo-faq-item p {
  margin: 0 0 18px;
  color: #506173;
  line-height: 1.7;
}

.geo-empty {
  margin: 0;
  color: #607082;
}

@media (max-width: 900px) {
  .geo-shell {
    padding: 18px 0 42px;
  }

  .geo-wrap {
    width: min(100% - 18px, 100%);
    gap: 18px;
  }

  .geo-hero,
  .geo-section {
    border-radius: 22px;
    padding: 22px;
  }

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

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