:root {
  --bg: #f5efe7;
  --bg-soft: #fbf8f4;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #102133;
  --surface-dark-2: #17324a;
  --ink: #102133;
  --ink-soft: #526779;
  --ink-faint: #7d8d9a;
  --line: rgba(16, 33, 51, 0.1);
  --accent: #be8247;
  --accent-deep: #915620;
  --teal: #2d756d;
  --shadow-lg: 0 28px 70px rgba(16, 33, 51, 0.14);
  --shadow-md: 0 18px 40px rgba(16, 33, 51, 0.1);
  --shadow-sm: 0 10px 24px rgba(16, 33, 51, 0.07);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1280px, calc(100vw - 40px));
  --container-wide: min(1360px, calc(100vw - 72px));
  --display-font: "Futura PT", "Futura", "Avenir Next Condensed", "Avenir Next", "Century Gothic", "Avant Garde", sans-serif;
  --body-font: "Avenir Next", "Avenir", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, rgba(45, 117, 109, 0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(190, 130, 71, 0.14), transparent 20%),
    linear-gradient(180deg, #efe6db 0%, var(--bg-soft) 46%, #f3ece3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 33, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 51, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  z-index: 0;
}

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

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

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar .container,
.hero .container {
  width: var(--container-wide);
  max-width: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 18px;
  background: linear-gradient(180deg, rgba(6, 11, 18, 0.44) 0%, rgba(6, 11, 18, 0) 100%);
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 0 18px 0 20px;
  border-radius: 24px;
  background: rgba(10, 21, 33, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 54px rgba(5, 10, 16, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display-font);
}

.brand__mark {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  filter: drop-shadow(0 16px 28px rgba(8, 15, 24, 0.18));
}

.brand__lockup {
  display: grid;
  gap: 2px;
}

.brand__text {
  font-size: 1.36rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
}

.brand__sub {
  color: rgba(248, 242, 234, 0.62);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.nav__links a {
  color: rgba(248, 242, 234, 0.74);
  padding: 10px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), rgba(190, 130, 71, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5e7d1 0%, #e8cfac 100%);
  color: #102133;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(7, 13, 20, 0.18);
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(7, 13, 20, 0.22);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.nav__links a:focus-visible,
.nav__cta:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 207, 172, 0.24);
}

.hero,
.overview,
.modules,
.flow,
.positioning,
.contact {
  padding: 68px 0;
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 108px;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  background:
    radial-gradient(circle at 18% 14%, rgba(190, 130, 71, 0.18), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(45, 117, 109, 0.12), transparent 16%),
    linear-gradient(132deg, #0a141f 0%, #102133 44%, #17324a 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 108px;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(600px, 1.12fr);
  gap: clamp(40px, 4.2vw, 74px);
  align-items: center;
  min-height: clamp(560px, calc(100vh - 220px), 690px);
}

.positioning__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 28px;
  align-items: start;
}

.contact__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 51, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 234, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
}

.eyebrow--hero {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(245, 221, 192, 0.88);
}

.hero h1,
.section-head h2,
.flow__intro h2,
.positioning__copy h2,
.contact__copy h2,
.signal-panel__header h2 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.02em;
}

.hero h1 {
  margin-top: 24px;
  max-width: none;
  color: #fff;
  font-size: clamp(4rem, 6.1vw, 6.35rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
}

.hero__line--accent {
  color: #efd2ae;
}

.hero__content {
  padding: 10px 0 0;
  max-width: 620px;
}

.hero__lede {
  margin: 24px 0 0;
  max-width: 37ch;
  color: rgba(248, 242, 234, 0.8);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 30px;
}

.hero__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #f7f1ea;
  font-weight: 700;
}

.hero__highlights span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #102133 0%, #1d4463 60%, #2d756d 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(16, 33, 51, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(16, 33, 51, 0.14);
  color: var(--ink);
}

.hero .btn--primary {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7ead8 0%, #e7cfac 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: #102133;
  box-shadow: 0 22px 36px rgba(7, 13, 20, 0.3);
}

.hero .btn--ghost {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.hero .btn--primary:hover,
.hero .btn--primary:focus-visible {
  box-shadow: 0 26px 42px rgba(7, 13, 20, 0.36);
}

.hero .btn--ghost:hover,
.hero .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--full {
  width: 100%;
}

.hero__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: rgba(248, 242, 234, 0.72);
  font-size: 0.95rem;
}

.hero__contact span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero__contact a {
  font-weight: 700;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 34px auto -18px 24px;
  width: min(44%, 280px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("/assets/img/geo-hero-board.svg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.24;
  transform: rotate(-6deg);
  filter: saturate(0.7);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, #09131d 0%, #102133 52%, #18354e 100%);
  box-shadow: 0 42px 92px rgba(4, 10, 17, 0.46);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 208, 179, 0.12), rgba(233, 208, 179, 0));
  pointer-events: none;
}

.hero-stage__chrome,
.hero-stage__body {
  position: relative;
  z-index: 1;
}

.hero-stage__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 18px;
}

.hero-stage__window-controls {
  display: inline-flex;
  gap: 8px;
}

.hero-stage__window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-stage__window-controls span:nth-child(1) {
  background: rgba(217, 123, 111, 0.8);
}

.hero-stage__window-controls span:nth-child(2) {
  background: rgba(210, 161, 91, 0.86);
}

.hero-stage__window-controls span:nth-child(3) {
  background: rgba(89, 166, 157, 0.84);
}

.hero-stage__product {
  display: grid;
  gap: 3px;
  margin-right: auto;
}

.hero-stage__product strong {
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.hero-stage__product span,
.hero-stage__metric span,
.hero-stage__flow span,
.hero-stage__module span,
.hero-stage__footer-card span,
.hero-stage__summary span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-stage__product span {
  color: rgba(248, 242, 234, 0.58);
}

.hero-stage__status {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 221, 192, 0.86);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage__body {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
}

.hero-stage__rail {
  display: grid;
  gap: 16px;
}

.hero-stage__metric,
.hero-stage__flow,
.hero-stage__workspace,
.hero-stage__kpi,
.hero-stage__footer-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__metric--primary,
.hero-stage__flow,
.hero-stage__kpi {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stage__metric--primary {
  padding: 22px 20px 20px;
}

.hero-stage__metric span,
.hero-stage__flow span,
.hero-stage__module span,
.hero-stage__footer-card span {
  color: rgba(233, 208, 179, 0.88);
}

.hero-stage__metric strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: var(--display-font);
  max-width: 9ch;
  font-size: 1.92rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-stage__metric small {
  display: block;
  margin-top: 12px;
  color: rgba(248, 242, 234, 0.66);
  line-height: 1.52;
}

.hero-stage__kpis {
  display: grid;
  gap: 12px;
}

.hero-stage__kpi {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.hero-stage__kpi span {
  color: rgba(248, 242, 234, 0.68);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-stage__kpi strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
  text-align: right;
}

.hero-stage__flow {
  padding: 18px;
}

.hero-stage__steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-stage__steps span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 242, 234, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.hero-stage__steps .is-active {
  background: linear-gradient(180deg, rgba(232, 207, 172, 0.22), rgba(190, 130, 71, 0.2));
  color: #fff;
}

.hero-stage__workspace {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stage__summary {
  display: grid;
  gap: 18px;
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3e8d8 0%, #f8f3ea 100%);
  color: #102133;
}

.hero-stage__summary span {
  color: #915620;
}

.hero-stage__summary strong {
  display: block;
  margin-top: 10px;
  max-width: 18ch;
  font-family: var(--display-font);
  font-size: 1.72rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-stage__summary-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stage__summary-flow em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 33, 51, 0.08);
  color: #1e3850;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage__modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.hero-stage__module,
.hero-stage__footer-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(9, 19, 29, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stage__module strong,
.hero-stage__footer-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-stage__bars,
.hero-stage__columns,
.hero-stage__lines {
  margin-top: 18px;
}

.hero-stage__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 88px;
}

.hero-stage__bars span,
.hero-stage__columns span {
  display: block;
  flex: 1;
  border-radius: 14px 14px 8px 8px;
}

.hero-stage__bars span:nth-child(1) {
  height: 42px;
  background: #d3c0a4;
}

.hero-stage__bars span:nth-child(2) {
  height: 64px;
  background: #4e7896;
}

.hero-stage__bars span:nth-child(3) {
  height: 78px;
  background: #59a69d;
}

.hero-stage__bars span:nth-child(4) {
  height: 56px;
  background: #e3b179;
}

.hero-stage__columns {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 88px;
}

.hero-stage__columns span:nth-child(1) {
  height: 76px;
  background: rgba(248, 242, 234, 0.2);
}

.hero-stage__columns span:nth-child(2) {
  height: 60px;
  background: rgba(233, 208, 179, 0.5);
}

.hero-stage__columns span:nth-child(3) {
  height: 82px;
  background: rgba(78, 120, 150, 0.88);
}

.hero-stage__columns span:nth-child(4) {
  height: 48px;
  background: rgba(89, 166, 157, 0.86);
}

.hero-stage__lines {
  display: grid;
  gap: 12px;
}

.hero-stage__lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(248, 242, 234, 0.14);
  position: relative;
}

.hero-stage__lines span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #59a69d;
  transform: translateY(-50%);
}

.hero-stage__lines span:nth-child(1) {
  width: 86%;
}

.hero-stage__lines span:nth-child(2) {
  width: 100%;
}

.hero-stage__lines span:nth-child(3) {
  width: 74%;
}

.hero-stage__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.showcase-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 239, 0.94));
  box-shadow: 0 24px 42px rgba(16, 33, 51, 0.1);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #102133 0%, #17324a 52%, rgba(16, 33, 51, 0) 100%);
  z-index: 1;
}

.showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.04), rgba(16, 33, 51, 0));
}

.showcase-card__copy {
  padding: 18px 22px 24px;
}

.showcase-card__copy span,
.footer__meta span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
}

.showcase-card__copy span {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 51, 0.08);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card__copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.22;
}

.showcase-card__copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.showcase-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--surface-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.showcase-card__link:hover,
.showcase-card__link:focus-visible {
  color: var(--teal-deep);
}

.overview {
  padding-top: 44px;
}

.overview__shell {
  position: relative;
  padding: clamp(34px, 4vw, 52px);
  border-radius: 34px;
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.98));
  box-shadow: 0 26px 60px rgba(16, 33, 51, 0.08);
  overflow: hidden;
}

.overview__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(240px, 42%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #102133 0%, #17324a 58%, rgba(16, 33, 51, 0) 100%);
}

.overview__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 33, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 51, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 100%);
}

.overview__intro,
.overview__grid {
  position: relative;
  z-index: 1;
}

.overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.overview__copy {
  max-width: 760px;
}

.overview__copy h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.overview__copy p {
  max-width: 56ch;
}

.overview__brief {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(23, 50, 74, 0.96));
  box-shadow: 0 18px 36px rgba(8, 15, 24, 0.18);
  color: #f8f2ea;
}

.overview__brief-label,
.overview-card__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overview__brief-label {
  color: rgba(233, 208, 179, 0.86);
}

.overview__brief strong {
  display: block;
  max-width: 22ch;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.overview__brief-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.overview__brief-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 242, 234, 0.74);
  line-height: 1.6;
}

.overview__brief-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3b179, #59a69d);
}

.footer__meta span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 51, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.signal-panel,
.overview-card,
.module-card,
.flow-step,
.mini-panel,
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 33, 51, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.signal-panel {
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(16, 33, 51, 0.98), rgba(23, 50, 74, 0.95) 62%, rgba(24, 69, 84, 0.93));
  color: #f8f2ea;
  overflow: hidden;
  position: relative;
}

.signal-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -170px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 130, 71, 0.36), rgba(190, 130, 71, 0));
  pointer-events: none;
}

.signal-panel__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.signal-panel__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 234, 0.7);
}

.signal-panel__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.signal-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 242, 234, 0.64);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-item strong {
  font-size: 1rem;
  line-height: 1.45;
}

.section-head {
  margin-bottom: 30px;
  text-align: center;
}

.section-head--left {
  text-align: left;
}

.section-head h2,
.flow__intro h2,
.positioning__copy h2,
.contact__copy h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.modules__copy h2 {
  max-width: 13ch;
}

.flow__intro h2 {
  max-width: 16ch;
}

.positioning__copy h2 {
  max-width: 13ch;
}

.contact__copy h2 {
  max-width: 16ch;
}

.section-head p,
.flow__intro p,
.positioning__copy p,
.contact__copy p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.overview__grid,
.module-grid,
.flow__grid {
  display: grid;
  gap: 16px;
}

.overview__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.overview-card,
.module-card,
.mini-panel,
.contact-card {
  background: var(--surface);
}

.overview-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 228px;
  padding: 24px 24px 22px;
  background: rgba(255, 255, 255, 0.9);
}

.overview-card--wide {
  grid-column: span 7;
}

.overview__grid .overview-card:not(.overview-card--wide) {
  grid-column: span 5;
}

.overview-card__label {
  color: var(--accent-deep);
}

.overview-card__label::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.overview-card--accent {
  background: linear-gradient(180deg, rgba(190, 130, 71, 0.1), rgba(255, 255, 255, 0.92));
}

.overview-card--primary {
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.03), rgba(255, 255, 255, 0.96));
}

.overview-card--dark {
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(23, 50, 74, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(8, 15, 24, 0.16);
}

.overview-card--dark .overview-card__label {
  color: rgba(233, 208, 179, 0.9);
}

.overview-card--dark h3,
.overview-card--dark p {
  color: #f8f2ea;
}

.overview-card--dark p {
  color: rgba(248, 242, 234, 0.76);
}

.overview-card h3,
.module-card h3,
.flow-step h3,
.mini-panel h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.overview-card p,
.module-card p,
.flow-step p,
.mini-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.modules {
  padding-top: 34px;
}

.modules__copy {
  max-width: 760px;
}

.modules__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.modules__summary {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.modules__summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #102133 0%, #17324a 52%, rgba(16, 33, 51, 0) 100%);
}

.modules__summary-label,
.module-group__label,
.flow__proof-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modules__summary-label,
.module-group__label {
  color: var(--accent-deep);
}

.modules__summary strong {
  display: block;
  max-width: 18ch;
  font-family: var(--display-font);
  font-size: 1.62rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.modules__summary p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.module-groups {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.module-group {
  position: relative;
  overflow: hidden;
  grid-column: span 5;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 292px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.module-group::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 33, 51, 0.92) 0%, rgba(23, 50, 74, 0.72) 50%, rgba(16, 33, 51, 0) 100%);
}

.module-group--wide {
  grid-column: span 7;
}

.module-group--primary {
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.03), rgba(255, 255, 255, 0.96));
}

.module-group--dark {
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(24, 50, 73, 0.95));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 44px rgba(8, 15, 24, 0.18);
}

.module-group--dark::before {
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.9) 0%, rgba(89, 166, 157, 0.72) 52%, rgba(16, 33, 51, 0) 100%);
}

.module-group--dark .module-group__label,
.module-group--dark h3,
.module-group--dark p,
.module-group--dark .module-group__chips span {
  color: #f8f2ea;
}

.module-group--dark .module-group__label {
  color: rgba(233, 208, 179, 0.9);
}

.module-group--dark p {
  color: rgba(248, 242, 234, 0.76);
}

.module-group h3 {
  margin: 0;
  max-width: 18ch;
  font-size: 1.56rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.module-group p {
  margin: 14px 0 0;
  max-width: 36ch;
  color: var(--ink-soft);
  line-height: 1.68;
}

.module-group__media {
  position: relative;
  overflow: hidden;
  margin: 6px 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.08), rgba(16, 33, 51, 0.02));
}

.module-group__media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 33, 51, 0.92) 0%, rgba(23, 50, 74, 0.72) 52%, rgba(16, 33, 51, 0) 100%);
  z-index: 1;
}

.module-group__media img {
  display: block;
  width: 100%;
  height: auto;
}

.module-group__media--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.module-group__media--dark::before {
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.9) 0%, rgba(89, 166, 157, 0.7) 52%, rgba(16, 33, 51, 0) 100%);
}

.module-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.module-group__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 33, 51, 0.06);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.module-group--dark .module-group__chips span {
  background: rgba(255, 255, 255, 0.08);
}

.module-group__footer {
  margin-top: 20px;
}

.module-group__link {
  display: inline-flex;
  align-items: center;
  color: var(--surface-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.module-group__link:hover,
.module-group__link:focus-visible {
  color: var(--teal-deep);
}

.module-group--dark .module-group__link {
  color: #f8f2ea;
}

.module-group--dark .module-group__link:hover,
.module-group--dark .module-group__link:focus-visible {
  color: rgba(233, 208, 179, 0.92);
}

.flow {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 20, 31, 0.99), rgba(16, 33, 51, 0.98) 54%, rgba(18, 41, 62, 0.98));
  color: #f8f2ea;
}

.flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 94%);
}

.flow .container {
  position: relative;
  z-index: 1;
}

.flow__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.flow__intro {
  max-width: 60ch;
  margin-bottom: 0;
}

.flow__intro p {
  color: rgba(248, 242, 234, 0.78);
}

.flow__proof {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 38px rgba(5, 10, 16, 0.14);
}

.flow__proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.92) 0%, rgba(89, 166, 157, 0.7) 52%, rgba(16, 33, 51, 0) 100%);
}

.flow__proof::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 130px;
  height: 94px;
  border-radius: 18px;
  background: url("/assets/img/geo-hero-board.svg") center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.75);
  pointer-events: none;
}

.flow__proof > * {
  position: relative;
  z-index: 1;
}

.flow__proof-label {
  color: rgba(233, 208, 179, 0.9);
}

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

.flow__proof-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 242, 234, 0.78);
  line-height: 1.62;
}

.flow__proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3b179, #59a69d);
}

.flow__sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
  padding: 6px 0;
}

.flow__sequence::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.18), rgba(248, 242, 234, 0.22), rgba(89, 166, 157, 0.24));
  transform: translateY(-50%);
}

.flow__sequence span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 22px rgba(5, 10, 16, 0.12);
  color: rgba(248, 242, 234, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-step {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.flow-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(248, 242, 234, 0.24) 0%, rgba(248, 242, 234, 0.08) 100%);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(190, 130, 71, 0.18);
  color: #f8f2ea;
  font-weight: 800;
}

.flow-step h3 {
  color: #fff;
}

.flow-step p {
  max-width: 30ch;
  color: rgba(248, 242, 234, 0.78);
}

.flow-step--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(233, 208, 179, 0.24);
}

.flow-step--accent::before {
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.92) 0%, rgba(89, 166, 157, 0.64) 52%, rgba(255, 255, 255, 0.08) 100%);
}

.positioning {
  padding-top: 42px;
}

.positioning__copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(23, 50, 74, 0.96));
  box-shadow: 0 22px 46px rgba(8, 15, 24, 0.18);
}

.positioning__copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.92) 0%, rgba(89, 166, 157, 0.7) 52%, rgba(16, 33, 51, 0) 100%);
}

.positioning__copy h2 {
  color: #fff;
}

.positioning__copy p {
  max-width: 58ch;
  color: rgba(248, 242, 234, 0.78);
}

.positioning__stack {
  display: grid;
  gap: 16px;
}

.mini-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.mini-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #102133 0%, rgba(23, 50, 74, 0.72) 52%, rgba(16, 33, 51, 0) 100%);
}

.mini-panel__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-panel h3 {
  margin-bottom: 10px;
  max-width: 22ch;
}

.contact {
  position: relative;
  color: #f8f2ea;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  background:
    radial-gradient(circle at 18% 12%, rgba(190, 130, 71, 0.18), transparent 16%),
    linear-gradient(140deg, #0a141f 0%, #102133 44%, #17324a 100%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact__copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact__copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.92) 0%, rgba(89, 166, 157, 0.7) 52%, rgba(16, 33, 51, 0) 100%);
}

.contact__copy::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 176px;
  height: 132px;
  border-radius: 24px;
  background: url("/assets/img/geo-hero-board.svg") center/cover no-repeat;
  opacity: 0.08;
  filter: saturate(0.7);
  pointer-events: none;
}

.contact__copy > * {
  position: relative;
  z-index: 1;
}

.contact__copy p {
  color: rgba(248, 242, 234, 0.8);
}

.contact__copy h2,
.contact__copy p {
  max-width: 32rem;
}

.contact__panel {
  display: grid;
}

.contact-agenda {
  display: grid;
  gap: 12px;
}

.contact-agenda__item {
  position: relative;
  padding: 18px 118px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-agenda__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.7) 0%, rgba(89, 166, 157, 0.54) 62%, rgba(16, 33, 51, 0) 100%);
}

.contact-agenda__item::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 92px;
  height: 62px;
  border-radius: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.14;
  filter: saturate(0.78);
  pointer-events: none;
}

.contact-agenda__item:nth-child(1)::after {
  background-image: url("/assets/img/geo-scene-procurement.svg");
}

.contact-agenda__item:nth-child(2)::after {
  background-image: url("/assets/img/geo-scene-field.svg");
}

.contact-agenda__item:nth-child(3)::after {
  background-image: url("/assets/img/geo-scene-client.svg");
}

.contact-agenda__item > * {
  position: relative;
  z-index: 1;
}

.contact-agenda__item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(233, 208, 179, 0.88);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-agenda__item strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.3;
}

.contact-agenda__item p {
  margin: 8px 0 0;
  color: rgba(248, 242, 234, 0.72);
  line-height: 1.55;
}

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

.contact-point {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-point span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 242, 234, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-point a {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
}

.form-shell {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: linear-gradient(90deg, #102133 0%, #17324a 42%, rgba(16, 33, 51, 0) 100%);
}

.form-shell::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 160px;
  height: 116px;
  border-radius: 22px;
  background: url("/assets/img/geo-hero-board.svg") center/cover no-repeat;
  opacity: 0.05;
  filter: saturate(0.72);
  pointer-events: none;
}

.form-shell > * {
  position: relative;
  z-index: 1;
}

.form-shell__head {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 33, 51, 0.08);
}

.form-shell__head .eyebrow {
  justify-self: start;
}

.form-shell__head h3 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.form-shell__head p {
  margin: 0;
  max-width: 32rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.form-status {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  outline: none;
}

.form-status strong {
  font-size: 1rem;
}

.form-status span {
  color: inherit;
  line-height: 1.65;
}

.form-status--success {
  border: 1px solid rgba(45, 117, 109, 0.22);
  background: rgba(45, 117, 109, 0.12);
  color: #215b55;
}

.form-status--error {
  border: 1px solid rgba(190, 130, 71, 0.26);
  background: rgba(190, 130, 71, 0.16);
  color: #7c4d20;
}

.demo-form {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field legend {
  margin-bottom: 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 33, 51, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  min-height: 56px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(45, 117, 109, 0.46);
  box-shadow: 0 0 0 4px rgba(45, 117, 109, 0.1);
  outline: none;
}

.form-field--error input,
.form-field--error select,
.form-field--error textarea,
.form-field--error .check-chip {
  border-color: rgba(190, 130, 71, 0.44);
}

.form-error,
.form-help {
  line-height: 1.6;
}

.form-error {
  color: #97541f;
  font-size: 0.92rem;
}

.form-help {
  color: var(--ink-faint);
  font-size: 0.92rem;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.check-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 74px;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(16, 33, 51, 0.1);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.check-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 33, 51, 0.2);
  box-shadow: var(--shadow-sm);
}

.check-chip input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--surface-dark);
}

.check-chip__copy {
  display: grid;
  gap: 4px;
}

.check-chip__copy strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.check-chip__copy small {
  color: var(--ink-faint);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 33, 51, 0.08);
}

.form-note {
  flex: 1 1 320px;
  margin: 0;
  max-width: 30ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-card__item + .contact-card__item {
  margin-top: 18px;
}

.contact-card__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__item a {
  font-size: 1.22rem;
  font-weight: 800;
}

.contact-card__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.footer {
  padding: 34px 0 42px;
  background: #0a141f;
  color: #f8f2ea;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 0.6fr));
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  max-width: 34rem;
  padding-right: 108px;
}

.footer__brand::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: url("/assets/img/geo-mark.svg") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.footer__brand > * {
  position: relative;
  z-index: 1;
}

.brand--footer {
  margin-bottom: 10px;
}

.footer__statement {
  max-width: 31rem;
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.1rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.footer__brand p,
.footer p {
  margin: 0;
  color: rgba(248, 242, 234, 0.7);
  line-height: 1.72;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__column span {
  color: rgba(233, 208, 179, 0.86);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column p {
  color: rgba(248, 242, 234, 0.76);
  line-height: 1.6;
}

.footer__column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__column a:hover,
.footer__column a:focus-visible {
  color: #fff;
  transform: translateX(1px);
}

.footer .brand__sub {
  color: rgba(248, 242, 234, 0.54);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 242, 234, 0.72);
}

.footer__signature {
  margin: 18px 0 0;
  color: rgba(248, 242, 234, 0.56);
  max-width: 34rem;
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1.16;
  letter-spacing: 0.01em;
}

.page-main {
  background: linear-gradient(180deg, #f4efe8 0%, #f8f5ef 100%);
}

.page-hero {
  position: relative;
  padding: 56px 0 48px;
  color: #f8f2ea;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(190, 130, 71, 0.18), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(45, 117, 109, 0.12), transparent 16%),
    linear-gradient(134deg, #0a141f 0%, #102133 46%, #17324a 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__grid,
.page-band,
.page-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: start;
}

.page-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(248, 242, 234, 0.58);
  font-size: 0.86rem;
}

.page-breadcrumb a {
  color: rgba(248, 242, 234, 0.78);
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus-visible {
  color: #fff;
}

.page-hero h1,
.page-band__copy h2,
.page-cta__copy h2 {
  margin: 18px 0 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.page-hero__subtitle {
  margin: 22px 0 0;
  max-width: 18ch;
  color: #efd2ae;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-hero__lede,
.page-band__copy p,
.page-cta__copy p {
  margin: 18px 0 0;
  max-width: 36rem;
  color: rgba(248, 242, 234, 0.8);
  font-size: 1.06rem;
  line-height: 1.75;
}

.page-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.page-hero__points span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #f8f2ea;
  font-weight: 700;
  line-height: 1.45;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero .btn--primary,
.page-cta .btn--primary {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7ead8 0%, #e7cfac 100%);
  color: #102133;
  box-shadow: 0 22px 36px rgba(7, 13, 20, 0.24);
}

.page-hero .btn--ghost,
.page-cta .btn--ghost {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.page-hero__card,
.page-band__panel,
.page-cta__actions {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 38px rgba(5, 10, 16, 0.14);
}

.page-hero__card::before,
.page-band__panel::before,
.page-cta__actions::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 208, 179, 0.92) 0%, rgba(89, 166, 157, 0.7) 52%, rgba(16, 33, 51, 0) 100%);
}

.page-hero__card-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(233, 208, 179, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero__card strong {
  display: block;
  max-width: 18ch;
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.64rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-hero__card p {
  margin: 14px 0 0;
  color: rgba(248, 242, 234, 0.76);
  line-height: 1.68;
}

.page-hero__contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.page-hero__contact a {
  color: #fff;
  font-weight: 800;
}

.page-section {
  padding: 60px 0;
}

.page-section--light,
.page-section--faq,
.page-section--links {
  background: transparent;
}

.page-section--band,
.page-cta {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 20, 31, 0.99), rgba(16, 33, 51, 0.98) 56%, rgba(18, 41, 62, 0.98));
  color: #f8f2ea;
}

.page-section--band::before,
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 96%);
}

.page-section--band .container,
.page-cta .container {
  position: relative;
  z-index: 1;
}

.page-card-grid,
.faq-grid,
.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card,
.faq-item,
.related-link {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16, 33, 51, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.page-card::before,
.faq-item::before,
.related-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(16, 33, 51, 0.92) 0%, rgba(23, 50, 74, 0.72) 52%, rgba(16, 33, 51, 0) 100%);
}

.page-card__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-card h3,
.faq-item h3,
.related-link strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.page-card p,
.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.page-band__copy h2,
.page-cta__copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.page-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-checklist li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 242, 234, 0.82);
  line-height: 1.64;
}

.page-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3b179, #59a69d);
}

.page-cta {
  padding: 0 0 68px;
}

.page-cta__layout {
  padding-top: 52px;
  align-items: center;
}

.page-cta__actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.page-cta__actions span {
  color: rgba(248, 242, 234, 0.7);
  line-height: 1.6;
}

.related-link span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.related-link:hover,
.related-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(16, 33, 51, 0.12);
}

@media (max-width: 1100px) {
  .hero__grid,
  .positioning__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .modules__head,
  .flow__layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__content {
    max-width: none;
  }

  .hero__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .hero__visual::before {
    display: none;
  }

  .hero-stage {
    max-width: none;
  }

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

  .overview__intro {
    grid-template-columns: 1fr;
  }

  .overview__copy h2,
  .overview__brief strong {
    max-width: none;
  }

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

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

  .page-hero__grid,
  .page-band,
  .page-cta__layout {
    grid-template-columns: 1fr;
  }

  .modules__summary,
  .flow__proof {
    max-width: none;
  }

  .overview-card,
  .overview__grid .overview-card:not(.overview-card--wide),
  .overview-card--wide {
    grid-column: auto;
  }

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

  .module-group,
  .module-group--wide {
    grid-column: auto;
  }

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

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

  .page-card-grid,
  .faq-grid,
  .related-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(10, 21, 33, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav__links a {
    width: 100%;
    padding: 0;
  }

  .nav__cta {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .overview__shell {
    padding: 28px;
  }

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

  .modules__head,
  .flow__layout,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .overview__grid {
    grid-template-columns: 1fr;
  }

  .module-groups,
  .showcase-strip,
  .hero-stage__body,
  .hero-stage__modules,
  .hero-stage__footer,
  .contact-points,
  .page-card-grid,
  .faq-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

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

  .page-hero__points,
  .interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage__summary strong {
    max-width: none;
  }

  .module-group,
  .flow-step {
    min-height: 0;
  }

  .contact-agenda__item {
    padding-right: 18px;
  }

  .contact__copy::after,
  .flow__proof::after,
  .form-shell::after {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1200px);
    --container-wide: calc(100vw - 24px);
  }

  .hero,
  .overview,
  .modules,
  .flow,
  .positioning,
  .contact {
    padding: 44px 0;
  }

  .topbar__inner {
    min-height: 76px;
    padding: 0 14px 0 16px;
  }

  .overview__grid,
  .module-grid,
  .flow__grid,
  .showcase-strip,
  .page-hero__points {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .interest-grid,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    padding-right: 0;
  }

  .footer__brand::after {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .page-hero {
    padding: 40px 0 42px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .overview {
    padding-top: 36px;
  }

  .overview__shell {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .modules__summary,
  .module-group,
  .flow__proof,
  .positioning__copy,
  .contact__copy,
  .form-shell,
  .page-hero__card,
  .page-band__panel,
  .page-card,
  .faq-item,
  .related-link,
  .page-cta__actions {
    padding: 22px 20px;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__contact {
    gap: 10px;
  }

  .overview__brief,
  .overview-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .module-group h3,
  .form-shell__head h3,
  .page-card h3,
  .faq-item h3,
  .related-link strong {
    max-width: none;
  }

  .module-group__chips span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .overview-card {
    min-height: 0;
  }

  .overview-card h3 {
    font-size: 1.24rem;
  }

  .brand__mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand__text {
    font-size: 1.16rem;
  }

  .brand__sub {
    display: none;
  }

  .hero-stage {
    padding: 14px;
    border-radius: 28px;
  }

  .hero-stage__chrome {
    padding: 6px 6px 14px;
  }

  .hero-stage__workspace,
  .hero-stage__module,
  .hero-stage__footer-card,
  .hero-stage__summary,
  .hero-stage__flow,
  .hero-stage__metric--primary,
  .hero-stage__kpi {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-meta {
    align-items: stretch;
  }

  .contact-point a {
    font-size: 1.04rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}
