:root {
  --saas-bg: #f4f7fb;
  --saas-surface: #ffffff;
  --saas-soft: #f8fbff;
  --saas-ink: #152033;
  --saas-muted: #66758c;
  --saas-line: #dce5f1;
  --saas-blue: #1368e8;
  --saas-blue-dark: #0b4fb5;
  --saas-blue-soft: #eaf3ff;
  --saas-green: #16824a;
  --saas-green-soft: #e8f7ef;
  --saas-amber: #b45309;
  --saas-amber-soft: #fff5df;
  --saas-red: #dc2626;
  --saas-red-soft: #fff1f1;
  --saas-shadow: 0 18px 46px rgba(21, 32, 51, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--saas-bg);
  color: var(--saas-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.geo-saas-site {
  background:
    radial-gradient(circle at 80% 0%, rgba(19, 104, 232, 0.18), transparent 36%),
    linear-gradient(180deg, #f7fbff 0%, #edf4ff 42%, #f7f9fc 100%);
}

.geo-saas-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(220, 229, 241, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.geo-saas-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 880;
}

.geo-saas-brand img {
  width: 34px;
  height: 34px;
}

.geo-saas-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--saas-muted);
  font-size: 14px;
  font-weight: 780;
}

.geo-saas-nav a:hover {
  color: var(--saas-blue);
}

.geo-saas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  background: #fff;
  color: var(--saas-ink);
  cursor: pointer;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.geo-saas-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(19, 104, 232, 0.14);
}

.geo-saas-button:disabled,
.geo-saas-button.is-loading {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.geo-saas-button.primary {
  border-color: var(--saas-blue);
  background: var(--saas-blue);
  color: #fff;
}

.geo-saas-button.secondary {
  border-color: rgba(19, 104, 232, 0.28);
  background: var(--saas-blue-soft);
  color: var(--saas-blue-dark);
}

.geo-saas-button.small {
  min-height: 38px;
  padding: 9px 14px;
}

.geo-saas-button.ghost {
  background: var(--saas-soft);
}

.geo-saas-button.full {
  width: 100%;
  margin-top: 14px;
}

.geo-saas-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 72px);
  padding: 72px 6vw 64px;
}

.geo-saas-kicker,
.geo-saas-section-head span,
.geo-saas-contact span {
  margin: 0;
  color: var(--saas-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.geo-saas-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.geo-saas-lede {
  max-width: 640px;
  margin: 0;
  color: #39485d;
  font-size: 22px;
  line-height: 1.65;
}

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

.geo-saas-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.geo-saas-audience span {
  padding: 8px 11px;
  border: 1px solid rgba(19, 104, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #44546a;
  font-size: 13px;
  font-weight: 760;
}

.geo-saas-product-visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(19, 104, 232, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--saas-shadow);
  overflow: hidden;
}

.geo-saas-product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 104, 232, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 104, 232, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
  pointer-events: none;
}

.geo-saas-product-visual > * {
  position: relative;
}

.geo-saas-visual-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--saas-muted);
  font-size: 13px;
}

.geo-saas-visual-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--saas-green);
  box-shadow: 0 0 0 6px rgba(22, 130, 74, 0.11);
}

.geo-saas-score-card {
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f2748 0%, #1368e8 100%);
  color: #fff;
}

.geo-saas-score-card p,
.geo-saas-score-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.geo-saas-score-card strong {
  display: block;
  margin: 8px 0;
  font-size: 44px;
  line-height: 1;
}

.geo-saas-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.geo-saas-mini-grid div,
.geo-saas-evidence-list p {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--saas-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.geo-saas-mini-grid b,
.geo-saas-mini-grid span {
  display: block;
}

.geo-saas-mini-grid b {
  font-size: 22px;
}

.geo-saas-mini-grid span,
.geo-saas-evidence-list p {
  color: var(--saas-muted);
  font-size: 13px;
  line-height: 1.5;
}

.geo-saas-evidence-list {
  display: grid;
  gap: 10px;
}

.geo-saas-section {
  padding: 72px 6vw;
}

.geo-saas-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.geo-saas-section-head h2,
.geo-saas-contact h2 {
  margin: 10px 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
}

.geo-saas-section-head p,
.geo-saas-contact p {
  margin: 0;
  color: var(--saas-muted);
  font-size: 17px;
  line-height: 1.75;
}

.geo-saas-value-grid,
.geo-saas-steps,
.geo-saas-package-grid {
  display: grid;
  gap: 16px;
}

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

.geo-saas-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.geo-saas-value-grid article,
.geo-saas-steps article,
.geo-saas-package-grid article,
.geo-saas-contact,
.geo-saas-form {
  border: 1px solid var(--saas-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--saas-shadow);
}

.geo-saas-value-grid article,
.geo-saas-steps article,
.geo-saas-package-grid article {
  padding: 22px;
}

.geo-saas-value-grid b,
.geo-saas-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--saas-blue-soft);
  color: var(--saas-blue);
  font-weight: 900;
}

.geo-saas-value-grid h3,
.geo-saas-steps h3,
.geo-saas-package-grid h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.geo-saas-value-grid p,
.geo-saas-steps p,
.geo-saas-package-grid p,
.geo-saas-package-grid li {
  color: var(--saas-muted);
  line-height: 1.65;
}

.geo-saas-package-grid ul {
  margin: 18px 0;
  padding-left: 20px;
}

.geo-saas-package-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--saas-blue);
  font-size: 18px;
}

.geo-saas-package-grid .featured {
  border-color: rgba(19, 104, 232, 0.45);
  background: linear-gradient(180deg, #fff 0%, #eaf3ff 100%);
}

.geo-saas-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 28px;
  margin: 24px 6vw 80px;
  padding: 32px;
}

.geo-saas-contact dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.geo-saas-contact dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
}

.geo-saas-contact dt {
  color: var(--saas-muted);
  font-weight: 800;
}

.geo-saas-contact dd {
  margin: 0;
  font-weight: 820;
}

.geo-saas-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  box-shadow: none;
}

.geo-saas-form label {
  display: grid;
  gap: 7px;
  color: var(--saas-muted);
  font-size: 13px;
  font-weight: 820;
}

.geo-saas-form input,
.geo-saas-form textarea,
.geo-saas-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--saas-ink);
}

.geo-saas-form-note {
  margin: 0;
  color: var(--saas-muted);
  font-size: 12px;
  line-height: 1.5;
}

.geo-diagnosis-panel {
  margin-bottom: 16px;
}

.geo-trial-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  border-color: rgba(19, 104, 232, 0.25);
  background: linear-gradient(135deg, #fff 0%, #eef6ff 100%);
}

.geo-trial-entry h2 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.geo-trial-entry p {
  max-width: 760px;
  margin: 0;
  color: var(--saas-muted);
  line-height: 1.65;
}

.geo-diagnosis-intro {
  max-width: 980px;
  margin: 0 0 16px;
  color: var(--saas-muted);
  line-height: 1.7;
}

.geo-diagnosis-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.geo-diagnosis-form label {
  display: grid;
  gap: 7px;
  color: var(--saas-muted);
  font-size: 12px;
  font-weight: 840;
}

.geo-diagnosis-form label.wide,
.geo-diagnosis-actions,
.geo-diagnosis-result {
  grid-column: 1 / -1;
}

.geo-diagnosis-form input,
.geo-diagnosis-form textarea {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: var(--saas-ink);
  font: inherit;
}

.geo-diagnosis-form textarea {
  min-height: 72px;
  resize: vertical;
}

.geo-diagnosis-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.geo-diagnosis-actions span {
  color: var(--saas-muted);
  font-size: 12px;
  line-height: 1.5;
}

.geo-diagnosis-result {
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed #bfdbfe;
  border-radius: 10px;
  background: #f8fbff;
}

.geo-diagnosis-empty b {
  display: block;
  margin-bottom: 6px;
}

.geo-diagnosis-result > p {
  margin: 0;
  color: var(--saas-muted);
  line-height: 1.6;
}

.geo-diagnosis-loading {
  color: var(--saas-blue);
  font-weight: 820;
}

.geo-diagnosis-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: start;
  gap: 16px;
  margin-bottom: 14px;
}

.geo-diagnosis-result-head p {
  margin: 0;
  color: var(--saas-muted);
  line-height: 1.6;
}

.geo-diagnosis-mode {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 860;
}

.geo-diagnosis-mode.is-demo {
  background: var(--saas-amber-soft);
  color: #92400e;
}

.geo-diagnosis-mode.is-live {
  background: var(--saas-green-soft);
  color: #166534;
}

.geo-diagnosis-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--saas-muted);
  font-size: 12px;
  font-weight: 780;
}

.geo-diagnosis-note {
  margin: 0 0 14px;
  color: var(--saas-muted);
  line-height: 1.55;
}

.geo-diagnosis-saved {
  color: var(--saas-green) !important;
  font-weight: 820;
}

.geo-diagnosis-summary {
  margin-top: 16px;
}

.geo-diagnosis-summary h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.geo-diagnosis-summary p,
.geo-diagnosis-summary li {
  color: #344256;
  line-height: 1.7;
}

.geo-diagnosis-summary ol {
  margin: 0;
  padding-left: 22px;
}

.geo-diagnosis-answer-list {
  display: grid;
  gap: 10px;
}

.geo-diagnosis-answer-list article {
  padding: 12px;
  border: 1px solid var(--saas-line);
  border-radius: 10px;
  background: #fff;
}

.geo-diagnosis-answer-list b,
.geo-diagnosis-answer-list span {
  display: block;
}

.geo-diagnosis-answer-list p {
  margin: 8px 0;
}

.geo-diagnosis-answer-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  background: #f0fdf4;
  color: #166534;
  box-shadow: var(--saas-shadow);
  font-weight: 780;
}

.geo-app-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.geo-app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 20px 16px;
  background: #0f172a;
  color: #eef4ff;
}

.geo-app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.geo-app-brand img {
  width: 36px;
  height: 36px;
}

.geo-app-brand strong {
  display: block;
  font-size: 15px;
}

.geo-app-brand span {
  color: #aab6c8;
  font-size: 12px;
}

.geo-app-nav {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.geo-app-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 800;
}

.geo-app-nav a:hover,
.geo-app-nav a.active {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.geo-app-nav i {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
  font-style: normal;
  font-size: 11px;
}

.geo-app-sidebar-note {
  margin-top: 22px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.6;
}

.geo-app-main {
  min-width: 0;
  padding: 24px;
}

.geo-app-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.geo-app-topline h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0;
}

.geo-app-topline p {
  margin: 7px 0 0;
  color: var(--saas-muted);
  line-height: 1.6;
}

.geo-app-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.geo-app-alert,
.geo-app-headline,
.geo-app-card,
.geo-app-panel,
.geo-app-report,
.geo-app-modal-card {
  border: 1px solid var(--saas-line);
  border-radius: 12px;
  background: var(--saas-surface);
  box-shadow: var(--saas-shadow);
}

.geo-app-alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-color: #bfdbfe;
  background: var(--saas-blue-soft);
  color: #1d4ed8;
  font-weight: 800;
  line-height: 1.55;
}

.geo-readiness-notice p {
  margin: 0;
}

.geo-readiness-notice p + p {
  margin-top: 6px;
}

.geo-app-headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #eaf3ff 100%);
}

.geo-app-headline span,
.geo-app-panel-head span {
  color: var(--saas-blue);
  font-size: 13px;
  font-weight: 900;
}

.geo-app-headline h2 {
  margin: 8px 0;
  font-size: 32px;
  letter-spacing: 0;
}

.geo-app-headline p {
  margin: 0;
  color: var(--saas-muted);
  line-height: 1.65;
}

.geo-app-headline-side {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.geo-app-headline-side b {
  font-size: 16px;
}

.geo-app-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.geo-app-grid.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.geo-app-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.geo-app-grid.seven {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.geo-app-card,
.geo-app-panel,
.geo-app-report {
  min-width: 0;
  padding: 18px;
}

.geo-app-card span {
  color: var(--saas-muted);
  font-size: 13px;
  font-weight: 820;
}

.geo-app-card strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.05;
}

.geo-app-card p {
  margin: 8px 0 0;
  color: var(--saas-muted);
  font-size: 13px;
  line-height: 1.5;
}

.geo-app-card.good {
  border-color: #bbf7d0;
  background: var(--saas-green-soft);
}

.geo-app-card.warn {
  border-color: #fde68a;
  background: var(--saas-amber-soft);
}

.geo-app-card.bad {
  border-color: #fecaca;
  background: var(--saas-red-soft);
}

.geo-app-card.blue {
  border-color: #bfdbfe;
  background: var(--saas-blue-soft);
}

.geo-subpanel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  background: var(--saas-soft);
}

.geo-app-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.geo-app-panel-head h2 {
  margin: 0;
  font-size: 20px;
}

.geo-app-panel-head h3 {
  margin: 0;
  font-size: 16px;
}

.geo-app-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.geo-app-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 13px;
}

.geo-app-table.compact {
  min-width: 1120px;
}

.geo-app-table th,
.geo-app-table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--saas-line);
  text-align: left;
  vertical-align: top;
}

.geo-app-table th {
  color: var(--saas-muted);
  background: var(--saas-soft);
  font-weight: 860;
}

.geo-tag-list,
.geo-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-tag,
.geo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--saas-blue-soft);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 820;
}

.geo-tag.green {
  background: var(--saas-green-soft);
  color: #166534;
}

.geo-tag.red {
  background: var(--saas-red-soft);
  color: #991b1b;
}

.geo-tag.amber {
  background: var(--saas-amber-soft);
  color: #92400e;
}

.geo-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.geo-detail-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}

.geo-detail-list dt {
  color: var(--saas-muted);
  font-weight: 860;
}

.geo-detail-list dd {
  margin: 0;
  line-height: 1.65;
}

.geo-answer {
  max-width: 420px;
  color: #344256;
  line-height: 1.55;
}

.geo-answer.large {
  max-width: 520px;
  max-height: 180px;
  overflow: auto;
}

.geo-trace-line {
  margin: 12px 0 0;
  color: var(--saas-muted);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
}

.geo-filter-control {
  display: inline-grid;
  gap: 7px;
  min-width: min(260px, 100%);
  margin-bottom: 14px;
  color: var(--saas-muted);
  font-size: 13px;
  font-weight: 840;
}

.geo-filter-control select {
  min-height: 40px;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: var(--saas-ink);
}

.geo-screenshot-placeholder {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--saas-soft);
  color: var(--saas-muted);
  font-size: 12px;
  font-weight: 800;
}

.geo-app-report-section {
  padding: 18px 0;
  border-top: 1px solid var(--saas-line);
}

.geo-app-report-section:first-child {
  border-top: 0;
}

.geo-app-report-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.geo-app-report-section ul {
  margin: 0;
  padding-left: 20px;
  color: #344256;
  line-height: 1.85;
}

.geo-package-card {
  display: grid;
  gap: 12px;
}

.geo-package-card h3 {
  margin: 0;
  font-size: 22px;
}

.geo-package-card p,
.geo-package-card li {
  color: var(--saas-muted);
  line-height: 1.65;
}

.geo-package-card ul {
  margin: 0;
  padding-left: 20px;
}

.geo-package-card strong {
  color: var(--saas-blue);
  font-size: 18px;
}

.geo-app-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.46);
}

.geo-app-modal.is-open {
  display: flex;
}

.geo-app-modal-card {
  width: min(720px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 22px;
}

.geo-app-modal-card h2 {
  margin: 0 0 8px;
}

.geo-app-modal-card p {
  margin: 0 0 18px;
  color: var(--saas-muted);
  line-height: 1.65;
}

.geo-app-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.geo-modal-notice {
  margin: 0 0 14px !important;
  padding: 10px 12px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: var(--saas-blue-soft);
  color: #1d4ed8 !important;
  font-size: 13px;
  font-weight: 800;
}

.geo-demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.geo-demo-form label {
  display: grid;
  gap: 7px;
  color: var(--saas-muted);
  font-size: 13px;
  font-weight: 840;
}

.geo-demo-form label.wide,
.geo-demo-form .wide,
.geo-demo-form .geo-app-modal-actions {
  grid-column: 1 / -1;
}

.geo-demo-form input,
.geo-demo-form textarea,
.geo-demo-form select {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--saas-line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--saas-ink);
  font: inherit;
}

.geo-demo-form textarea {
  min-height: 84px;
  resize: vertical;
}

.geo-empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed #bfdbfe;
  border-radius: 10px;
  background: #f8fbff;
  color: var(--saas-muted);
  line-height: 1.6;
}

.geo-report-draft {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--saas-line);
  border-radius: 10px;
  background: var(--saas-soft);
}

.geo-report-draft h3 {
  margin: 0;
  font-size: 20px;
}

.geo-report-copy {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 14px 0 0;
  padding: 14px;
  border: 1px solid var(--saas-line);
  border-radius: 10px;
  background: #fff;
  color: #344256;
  font: inherit;
  line-height: 1.7;
}

.geo-package-card.recommended {
  border-color: #86efac;
  box-shadow: 0 18px 40px rgba(22, 130, 74, 0.13);
}

.geo-package-card.selected {
  border-color: rgba(19, 104, 232, 0.55);
  background: linear-gradient(180deg, #fff 0%, #eaf3ff 100%);
}

.geo-package-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 1180px) {
  .geo-saas-steps,
  .geo-app-grid.seven,
  .geo-app-grid.metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .geo-saas-product-visual {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .geo-saas-topbar,
  .geo-app-topline,
  .geo-app-panel-head {
    align-items: flex-start;
  }

  .geo-saas-topbar {
    position: static;
    display: grid;
  }

  .geo-saas-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

	  .geo-saas-value-grid,
	  .geo-saas-package-grid,
	  .geo-saas-contact,
	  .geo-app-grid.two,
	  .geo-app-grid.three,
	  .geo-app-grid.seven,
	  .geo-app-headline,
	  .geo-trial-entry,
	  .geo-diagnosis-result-head {
    grid-template-columns: 1fr;
  }

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

  .geo-app-sidebar {
    position: static;
    height: auto;
  }

  .geo-app-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .geo-saas-hero,
  .geo-saas-section {
    padding: 44px 18px;
  }

  .geo-saas-contact {
    margin: 18px;
    padding: 20px;
  }

  .geo-saas-mini-grid,
	  .geo-saas-steps,
	  .geo-app-grid.metrics,
	  .geo-app-grid.four,
	  .geo-app-grid.seven,
	  .geo-app-nav {
    grid-template-columns: 1fr;
  }

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

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

  .geo-app-main {
    padding: 18px;
  }

  .geo-app-topline {
    display: grid;
  }

  .geo-app-actions {
    justify-content: flex-start;
  }

  .geo-diagnosis-meta {
    justify-items: start;
  }

  .geo-detail-list div {
    grid-template-columns: 1fr;
  }

  .geo-saas-hero h1 {
    font-size: 40px;
  }

  .geo-saas-lede {
    font-size: 18px;
  }
}
