:root {
  --bg: #f5f2ec;
  --bg-alt: #ece8e1;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #eef2f5;
  --text-primary: #11161c;
  --text-secondary: #5f6975;
  --line: rgba(38, 61, 85, 0.16);
  --line-strong: rgba(38, 61, 85, 0.28);
  --section-divider: rgba(38, 61, 85, 0.08);
  --accent: #d52215;
  --accent-soft: #263d55;
  --accent-soft-rgb: 38, 61, 85;
  --accent-rgb: 213, 34, 21;
  --status-progress: #8f5d0e;
  --status-progress-border: rgba(143, 93, 14, 0.72);
  --status-progress-surface: #f3ebdd;
  --mono: "IBM Plex Mono", monospace;
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: none;
  --container: min(1400px, calc(100vw - 40px));
  --content-column: 640px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(213, 34, 21, 0.06), transparent 30%),
    linear-gradient(180deg, #f7f4ef 0%, #f1ede6 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
summary {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.ambient-one {
  top: 180px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(var(--accent-rgb), 0.08);
}

.ambient-two {
  top: 920px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: rgba(var(--accent-soft-rgb), 0.08);
}

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

.section {
  position: relative;
  padding: 104px 0;
}

.alt-section {
  background: #ffffff;
  border-top: 1px solid var(--section-divider);
  border-bottom: 1px solid var(--section-divider);
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h2 {
  max-width: 14ch;
  font-size: 3.1rem;
  line-height: 1.05em;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.17em;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  font-size: 1.15em;
  line-height: 1.55;
}

.headline-mark {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.9);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.14em;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading.centered,
.pricing-wrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered h2,
.pricing-wrap h2 {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 16px;
  background: transparent;
  transition: background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
  padding: 0 18px 0 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand img {
  width: 132px;
  height: auto;
}

.protected-logo {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links {
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: #2f3135;
  font-size: 0.8em;
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
  cursor: pointer;
}

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

.button-primary {
  border-color: #b71f14;
  background: linear-gradient(180deg, #e4493b 0%, #c62518 100%);
  color: #f7f4ef;
}

.button-primary:hover {
  background: linear-gradient(180deg, #ec5749 0%, #d52a1d 100%);
  border-color: #d52a1d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-secondary-link {
  color: #2f3135;
  font-size: 0.98rem;
  font-weight: 600;
}

.header-secondary-link:hover {
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(38, 61, 85, 0.06);
}

.hero-learn-more {
  border-width: 2px;
  border-color: rgba(var(--accent-rgb), 0.8);
  color: var(--accent);
  background: transparent;
}

.hero-learn-more:hover {
  border-color: rgba(var(--accent-rgb), 1);
  background: rgba(var(--accent-rgb), 0.06);
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-primary);
}

.hero {
  padding-top: 104px;
  border-bottom: none;
}

.pricing-section {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 234, 226, 0.76));
  border-top: 1px solid var(--section-divider);
  border-bottom: none;
}

.pricing-section::before,
.pricing-section::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--content-column)));
  gap: 48px;
  justify-content: space-between;
  align-items: start;
}

.split-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: start;
}

.hero-copy {
  width: 100%;
  max-width: var(--content-column);
}

.hero-copy,
.split-copy,
.contact-copy {
  display: grid;
  gap: 22px;
}

.hero-text {
  max-width: 38rem;
  font-size: 1.15em;
}

.hero-text-emphasis {
  display: block;
  margin-top: 10px;
  color: var(--text-primary);
  font-weight: 700;
}

.hero-copy h1 {
  width: 100%;
  max-width: var(--content-column);
  font-size: 5.5em;
  margin-bottom: 15px;
}

.eyebrow-muted {
  color: #a0a8b8;
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  letter-spacing: 0.12em;
}

.why-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 234, 226, 0.76));
  border-top: none;
  border-bottom: none;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--section-divider);
}

.why-heading {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  justify-items: start;
  text-align: left;
}

.why-heading h2 {
  width: 100%;
  max-width: var(--content-column);
}

.why-intro {
  width: 100%;
  max-width: var(--content-column);
  margin: 0;
  font-size: 1.15em;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--content-column)));
  gap: 48px;
  justify-content: space-between;
  align-items: start;
}

.why-copy {
  display: grid;
  align-content: start;
  gap: 34px;
  width: 100%;
  max-width: var(--content-column);
}

.why-blocks {
  display: grid;
  gap: 0;
}

.why-block {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 24px 20px 22px;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.why-block:first-child {
  border-top: none;
}

.why-block::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.82);
}

.why-block h3 {
  margin-bottom: 0;
}

.feature-title {
  display: block;
}

.why-visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.work-log-card {
  width: 100%;
  max-width: var(--content-column);
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 250, 246, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.work-log-card.is-pending {
  opacity: 0;
  transform: translateY(16px);
}

.work-log-card.is-pending.is-active {
  opacity: 1;
  transform: translateY(0);
}

.work-log-accent {
  display: none;
}

.work-log-header {
  display: grid;
  gap: 6px;
}

.work-log-label,
.work-log-subline,
.work-log-meta,
.work-log-footer p {
  font-family: var(--mono);
}

.work-log-label {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.work-log-subline {
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-log-feed {
  display: grid;
  margin-top: 18px;
}

.work-log-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
  transition:
    opacity 300ms ease,
    transform 300ms ease,
    background-color var(--transition);
}

.work-log-card.is-pending .work-log-item {
  opacity: 0;
  transform: translateY(8px);
}

.work-log-card.is-pending .work-log-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-log-item:first-child {
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.work-log-item:hover {
  background: rgba(38, 61, 85, 0.035);
}

.work-log-check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(76, 135, 87, 0.24);
  border-radius: 50%;
  background: rgba(236, 245, 236, 0.96);
  transform: scale(0.72);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease;
}

.work-log-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid rgba(47, 107, 63, 0.95);
  border-bottom: 2px solid rgba(47, 107, 63, 0.95);
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transform-origin: center;
  transition:
    opacity 220ms ease 90ms,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
}

.work-log-item.is-visible .work-log-check {
  transform: scale(1);
}

.work-log-item.is-visible .work-log-check::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.work-log-item:hover .work-log-check {
  transform: translateX(2px) scale(1);
  border-color: rgba(47, 107, 63, 0.34);
}

.work-log-item-progress .work-log-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(177, 134, 61, 0.24);
  background: var(--status-progress-surface);
  transform: scale(0.72);
}

.work-log-item-progress .work-log-check::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: var(--status-progress);
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease;
}

.work-log-item-progress.is-visible .work-log-check {
  transform: scale(1);
}

.work-log-item-progress.is-visible .work-log-check::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.work-log-item-progress:hover .work-log-check {
  transform: translateX(2px) scale(1);
  border-color: rgba(177, 134, 61, 0.34);
}

.work-log-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.work-log-task {
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.work-log-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border: 1px solid rgba(38, 61, 85, 0.12);
  border-radius: 0;
  background: #f4f0e9;
  color: #8f5d0e;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.work-log-meta-completed {
  border-color: rgba(76, 135, 87, 0.18);
  background: #e8f2e6;
  color: #2f6b3f;
}

.work-log-meta-progress {
  border-color: rgba(177, 134, 61, 0.16);
  background: var(--status-progress-surface);
  color: var(--status-progress);
}

.work-log-footer {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.work-log-footer p {
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.55;
}

.ideal-section {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.ideal-heading {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.ideal-heading h2 {
  max-width: 18ch;
  text-transform: uppercase;
  line-height: 0.95;
}

.ideal-intro {
  max-width: 38rem;
  margin: 0;
  text-align: center;
}

.bullet-list,
.fit-list,
.pricing-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list,
.fit-list {
  display: grid;
  gap: 8px;
}

.bullet-list li,
.fit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-primary);
}

.bullet-list li {
  display: grid;
  grid-template-columns: 8px 1fr;
  align-items: start;
  gap: 14px;
  padding-left: 0;
}

.bullet-list li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--text-primary);
}

.bullet-list li::before {
  position: relative;
  top: 0.5rem;
}

.fit-muted li {
  color: var(--text-secondary);
}

.fit-muted li::before {
  background: rgba(38, 61, 85, 0.22);
}

.fit-positive li::before {
  background: rgba(var(--accent-rgb), 0.82);
}

.fit-panel {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.fit-panel-top {
  display: none;
}

.fit-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(38, 61, 85, 0.08);
}

.fit-panel-header h3 {
  margin: 0;
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fit-panel-positive .fit-panel-header h3 {
  color: rgba(var(--accent-rgb), 0.9);
}

.fit-panel-muted .fit-panel-header h3 {
  color: rgba(38, 61, 85, 0.48);
}

.fit-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
}

.fit-panel-badge-positive {
  background: rgba(var(--accent-rgb), 0.08);
  color: rgba(var(--accent-rgb), 0.88);
}

.fit-panel-badge-muted {
  background: rgba(38, 61, 85, 0.08);
  color: rgba(38, 61, 85, 0.45);
}

.fit-detail-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-detail-list li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 24px 20px 42px;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.fit-detail-list li:first-child {
  border-top: none;
}

.fit-detail-list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.82);
}

.fit-detail-list strong {
  color: var(--text-primary);
  font-size: 1.17em;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.fit-detail-list span {
  color: var(--text-secondary);
  font-size: 1.15em;
  line-height: 1.55;
}

.fit-detail-list-muted li::before {
  background: rgba(38, 61, 85, 0.24);
}

.fit-detail-list-muted strong,
.fit-detail-list-muted span {
  color: rgba(38, 61, 85, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual,
.search-mock {
  position: relative;
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.graph-card {
  position: relative;
  width: 100%;
  max-width: var(--content-column);
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 250, 246, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.graph-card::before {
  display: none;
}

.graph-header {
  display: grid;
  gap: 6px;
}

.graph-title,
.graph-heading,
.graph-axis span,
.graph-years span,
.point-label,
.graph-source {
  font-family: var(--mono);
}

.graph-heading {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.graph-title {
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.graph-layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
}

.graph-axis {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  height: 320px;
  padding-top: 6px;
}

.graph-axis span {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.graph-main {
  min-width: 0;
}

.graph-plot {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 246, 240, 0.94));
}

.graph-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
}

.graph-grid span {
  border-top: 1px solid rgba(38, 61, 85, 0.14);
}

.graph-grid span:last-child {
  border-bottom: 1px solid rgba(38, 61, 85, 0.14);
}

.graph-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.graph-line polyline {
  fill: none;
  stroke: rgba(var(--accent-rgb), 0.42);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.trend-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 3px solid rgba(var(--accent-rgb), 0.88);
  border-radius: 50%;
  background: #f7e7e3;
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 480ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trend-point::after {
  content: "";
  position: absolute;
  inset: -10px;
}

.trend-point:hover,
.trend-point:focus-visible,
.trend-point.is-sequenced {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(var(--accent-rgb), 0.96);
  background: #f3ddd8;
}

.trend-point:focus-visible {
  outline: none;
}

.trend-point.is-sequenced {
  animation: trend-point-pulse 1.35s ease-out 1;
}

@keyframes trend-point-pulse {
  0% {}

  65% {}

  100% {}
}

.point-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  transform: translateX(-50%);
}

.point-label-right {
  left: calc(100% + 12px);
  bottom: 50%;
  transform: translateY(50%);
}

@media (max-width: 720px) {
  .trend-point:last-child .point-label {
    left: auto;
    right: -6px;
    bottom: calc(100% - 6px);
    transform: none;
  }

  .point-label-right {
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
  }
}

.graph-years {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
}

.graph-years span {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.graph-source {
  margin-top: 14px;
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.55;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 61, 85, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.service-tile {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 236px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.86);
  border-right: 1px solid rgba(38, 61, 85, 0.1);
  border-bottom: 1px solid rgba(38, 61, 85, 0.1);
  transition: background-color var(--transition), transform var(--transition);
}

.service-tile:nth-child(3n) {
  border-right: none;
}

.service-tile:nth-last-child(-n + 3) {
  border-bottom: none;
}

.service-tile:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.service-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: rgba(38, 61, 85, 0.42);
}

.section-icon {
  width: 24px;
  height: 24px;
  flex: none;
  color: rgba(var(--accent-rgb), 0.85);
}

.service-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.section-icon::before {
  width: 24px;
  height: 24px;
}

.service-icon-car::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1.5' y='14.5' width='16' height='4' rx='1.2'/%3E%3Cpath d='M4.5 14.5l2-4.5h7l2 4.5'/%3E%3Cline x1='10' y1='14.5' x2='10' y2='10'/%3E%3Ccircle cx='5' cy='19' r='1.7' fill='black' stroke='none'/%3E%3Ccircle cx='14' cy='19' r='1.7' fill='black' stroke='none'/%3E%3Cline x1='20' y1='13.5' x2='20' y2='5.5'/%3E%3Cpath d='M17.5 8L20 5.5l2.5 2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1.5' y='14.5' width='16' height='4' rx='1.2'/%3E%3Cpath d='M4.5 14.5l2-4.5h7l2 4.5'/%3E%3Cline x1='10' y1='14.5' x2='10' y2='10'/%3E%3Ccircle cx='5' cy='19' r='1.7' fill='black' stroke='none'/%3E%3Ccircle cx='14' cy='19' r='1.7' fill='black' stroke='none'/%3E%3Cline x1='20' y1='13.5' x2='20' y2='5.5'/%3E%3Cpath d='M17.5 8L20 5.5l2.5 2.5'/%3E%3C/svg%3E");
}

.service-icon-content::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4H7a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9z'/%3E%3Cpath d='M14 4v5h5'/%3E%3Cpath d='M8.5 13h7M8.5 16h5.5M8.5 19h3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4H7a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9z'/%3E%3Cpath d='M14 4v5h5'/%3E%3Cpath d='M8.5 13h7M8.5 16h5.5M8.5 19h3'/%3E%3C/svg%3E");
}

.service-icon-pin::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.5S5.5 15 5.5 9.5a6.5 6.5 0 0 1 13 0c0 5.5-6.5 12-6.5 12z'/%3E%3Ccircle cx='12' cy='9.5' r='2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.5S5.5 15 5.5 9.5a6.5 6.5 0 0 1 13 0c0 5.5-6.5 12-6.5 12z'/%3E%3Ccircle cx='12' cy='9.5' r='2.5'/%3E%3C/svg%3E");
}

.service-icon-link::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13.5a4 4 0 0 0 5.66.5l2.5-2.5a4 4 0 0 0-5.66-5.66l-1.5 1.5'/%3E%3Cpath d='M14 10.5a4 4 0 0 0-5.66-.5l-2.5 2.5a4 4 0 0 0 5.66 5.66l1.5-1.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13.5a4 4 0 0 0 5.66.5l2.5-2.5a4 4 0 0 0-5.66-5.66l-1.5 1.5'/%3E%3Cpath d='M14 10.5a4 4 0 0 0-5.66-.5l-2.5 2.5a4 4 0 0 0 5.66 5.66l1.5-1.5'/%3E%3C/svg%3E");
}

.service-icon-list::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Ccircle cx='8' cy='10.5' r='2'/%3E%3Cpath d='M12.5 10h5.5M12.5 13h4.5M4.5 16.5h15'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Ccircle cx='8' cy='10.5' r='2'/%3E%3Cpath d='M12.5 10h5.5M12.5 13h4.5M4.5 16.5h15'/%3E%3C/svg%3E");
}

.service-icon-search::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m19 19-3.5-3.5'/%3E%3Cpath d='M8 13.5l2.5-3 3 1.5 2-3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m19 19-3.5-3.5'/%3E%3Cpath d='M8 13.5l2.5-3 3 1.5 2-3'/%3E%3C/svg%3E");
}

.service-icon-compare::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 6h10'/%3E%3Cpath d='M7 12h6'/%3E%3Cpath d='M7 18h10'/%3E%3Cpath d='m15 9 2-2 2 2'/%3E%3Cpath d='m19 15-2 2-2-2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 6h10'/%3E%3Cpath d='M7 12h6'/%3E%3Cpath d='M7 18h10'/%3E%3Cpath d='m15 9 2-2 2 2'/%3E%3Cpath d='m19 15-2 2-2-2'/%3E%3C/svg%3E");
}

.service-icon-report::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Crect x='4.5' y='14' width='3.5' height='7' fill='black' stroke='none'/%3E%3Crect x='10.25' y='9.5' width='3.5' height='11.5' fill='black' stroke='none'/%3E%3Crect x='16' y='6' width='3.5' height='15' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Crect x='4.5' y='14' width='3.5' height='7' fill='black' stroke='none'/%3E%3Crect x='10.25' y='9.5' width='3.5' height='11.5' fill='black' stroke='none'/%3E%3Crect x='16' y='6' width='3.5' height='15' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.service-icon-log::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='6.5' width='14' height='15' rx='2'/%3E%3Cpath d='M9 6.5V5h6v1.5'/%3E%3Cpath d='m8.2 11.5 1.3 1.4 2.2-2.7'/%3E%3Cpath d='M14 11h3.5'/%3E%3Cpath d='m8.2 16.2 1.3 1.4 2.2-2.7'/%3E%3Cpath d='M14 15.7h3.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='6.5' width='14' height='15' rx='2'/%3E%3Cpath d='M9 6.5V5h6v1.5'/%3E%3Cpath d='m8.2 11.5 1.3 1.4 2.2-2.7'/%3E%3Cpath d='M14 11h3.5'/%3E%3Cpath d='m8.2 16.2 1.3 1.4 2.2-2.7'/%3E%3Cpath d='M14 15.7h3.5'/%3E%3C/svg%3E");
}

.service-icon-briefcase::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='7' width='15' height='11.5' rx='2'/%3E%3Cpath d='M9 7V5.8A1.8 1.8 0 0 1 10.8 4h2.4A1.8 1.8 0 0 1 15 5.8V7'/%3E%3Cpath d='M4.5 11.25h15'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='7' width='15' height='11.5' rx='2'/%3E%3Cpath d='M9 7V5.8A1.8 1.8 0 0 1 10.8 4h2.4A1.8 1.8 0 0 1 15 5.8V7'/%3E%3Cpath d='M4.5 11.25h15'/%3E%3C/svg%3E");
}

.service-icon-team::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='2.2'/%3E%3Ccircle cx='6.5' cy='10' r='1.8'/%3E%3Ccircle cx='17.5' cy='10' r='1.8'/%3E%3Cpath d='M8.2 16.8c.7-1.9 2.1-2.8 3.8-2.8s3.1.9 3.8 2.8'/%3E%3Cpath d='M3.8 17c.4-1.4 1.4-2.2 2.8-2.5'/%3E%3Cpath d='M20.2 17c-.4-1.4-1.4-2.2-2.8-2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='2.2'/%3E%3Ccircle cx='6.5' cy='10' r='1.8'/%3E%3Ccircle cx='17.5' cy='10' r='1.8'/%3E%3Cpath d='M8.2 16.8c.7-1.9 2.1-2.8 3.8-2.8s3.1.9 3.8 2.8'/%3E%3Cpath d='M3.8 17c.4-1.4 1.4-2.2 2.8-2.5'/%3E%3Cpath d='M20.2 17c-.4-1.4-1.4-2.2-2.8-2.5'/%3E%3C/svg%3E");
}

.service-icon-car-route::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 7.5h4'/%3E%3Cpath d='M10.5 7.5h2.5'/%3E%3Cpath d='M15.5 7.5h.5'/%3E%3Cpath d='M5.2 16.3 6.5 12a2 2 0 0 1 1.9-1.4h6.2a2 2 0 0 1 1.8 1.2'/%3E%3Cpath d='M4.5 16h10.5v2.8H4.5z'/%3E%3Ccircle cx='7.4' cy='18.8' r='1.1'/%3E%3Ccircle cx='12.1' cy='18.8' r='1.1'/%3E%3Cpath d='M18.4 19.6s2.8-2.2 2.8-4.2a2.8 2.8 0 1 0-5.6 0c0 2 2.8 4.2 2.8 4.2Z'/%3E%3Ccircle cx='18.4' cy='15.4' r='0.9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 7.5h4'/%3E%3Cpath d='M10.5 7.5h2.5'/%3E%3Cpath d='M15.5 7.5h.5'/%3E%3Cpath d='M5.2 16.3 6.5 12a2 2 0 0 1 1.9-1.4h6.2a2 2 0 0 1 1.8 1.2'/%3E%3Cpath d='M4.5 16h10.5v2.8H4.5z'/%3E%3Ccircle cx='7.4' cy='18.8' r='1.1'/%3E%3Ccircle cx='12.1' cy='18.8' r='1.1'/%3E%3Cpath d='M18.4 19.6s2.8-2.2 2.8-4.2a2.8 2.8 0 1 0-5.6 0c0 2 2.8 4.2 2.8 4.2Z'/%3E%3Ccircle cx='18.4' cy='15.4' r='0.9'/%3E%3C/svg%3E");
}

.service-icon-clipboard-check::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='5' width='12' height='15' rx='2'/%3E%3Cpath d='M9 5.2V4.5h6v.7'/%3E%3Cpath d='m9.2 10.5 1.4 1.5 2.2-2.8'/%3E%3Cpath d='M13.8 10.8H15.8'/%3E%3Cpath d='m9.2 15 1.4 1.5 2.2-2.8'/%3E%3Cpath d='M13.8 15.3H15.8'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='5' width='12' height='15' rx='2'/%3E%3Cpath d='M9 5.2V4.5h6v.7'/%3E%3Cpath d='m9.2 10.5 1.4 1.5 2.2-2.8'/%3E%3Cpath d='M13.8 10.8H15.8'/%3E%3Cpath d='m9.2 15 1.4 1.5 2.2-2.8'/%3E%3Cpath d='M13.8 15.3H15.8'/%3E%3C/svg%3E");
}

.service-icon-pin-signal::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 20.5s4.7-4.2 4.7-8a4.7 4.7 0 1 0-9.4 0c0 3.8 4.7 8 4.7 8Z'/%3E%3Ccircle cx='10.5' cy='12.4' r='1.7'/%3E%3Cpath d='M15.7 7.9a5.6 5.6 0 0 1 2.8 4.9'/%3E%3Cpath d='M18.1 5.8a8.2 8.2 0 0 1 4 7.1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 20.5s4.7-4.2 4.7-8a4.7 4.7 0 1 0-9.4 0c0 3.8 4.7 8 4.7 8Z'/%3E%3Ccircle cx='10.5' cy='12.4' r='1.7'/%3E%3Cpath d='M15.7 7.9a5.6 5.6 0 0 1 2.8 4.9'/%3E%3Cpath d='M18.1 5.8a8.2 8.2 0 0 1 4 7.1'/%3E%3C/svg%3E");
}

.service-icon-browser-stack::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='5' width='11' height='9' rx='1.6'/%3E%3Cpath d='M7 8h11'/%3E%3Crect x='4' y='10' width='11' height='9' rx='1.6'/%3E%3Cpath d='M4 13h11'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='5' width='11' height='9' rx='1.6'/%3E%3Cpath d='M7 8h11'/%3E%3Crect x='4' y='10' width='11' height='9' rx='1.6'/%3E%3Cpath d='M4 13h11'/%3E%3C/svg%3E");
}

.service-icon-binoculars::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1' fill='black' stroke='none'/%3E%3Cline x1='12' y1='12' x2='19' y2='6.5'/%3E%3Ccircle cx='16.5' cy='8' r='1.4' fill='black' stroke='none'/%3E%3Ccircle cx='8' cy='7.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1' fill='black' stroke='none'/%3E%3Cline x1='12' y1='12' x2='19' y2='6.5'/%3E%3Ccircle cx='16.5' cy='8' r='1.4' fill='black' stroke='none'/%3E%3Ccircle cx='8' cy='7.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.service-icon-coins::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='7' rx='5.5' ry='2.5'/%3E%3Cpath d='M6.5 7v5c0 1.4 2.46 2.5 5.5 2.5s5.5-1.1 5.5-2.5V7'/%3E%3Cpath d='M6.5 12v5c0 1.4 2.46 2.5 5.5 2.5s5.5-1.1 5.5-2.5v-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='7' rx='5.5' ry='2.5'/%3E%3Cpath d='M6.5 7v5c0 1.4 2.46 2.5 5.5 2.5s5.5-1.1 5.5-2.5V7'/%3E%3Cpath d='M6.5 12v5c0 1.4 2.46 2.5 5.5 2.5s5.5-1.1 5.5-2.5v-5'/%3E%3C/svg%3E");
}

.service-icon-gauge::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16a7 7 0 1 1 14 0'/%3E%3Cpath d='M12 12l3.5-2'/%3E%3Ccircle cx='12' cy='12' r='1.2' fill='black' stroke='none'/%3E%3Cpath d='M7.8 14.8h0M16.2 14.8h0M12 9h0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16a7 7 0 1 1 14 0'/%3E%3Cpath d='M12 12l3.5-2'/%3E%3Ccircle cx='12' cy='12' r='1.2' fill='black' stroke='none'/%3E%3Cpath d='M7.8 14.8h0M16.2 14.8h0M12 9h0'/%3E%3C/svg%3E");
}

.service-icon-eye::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 12S6 6.5 12 6.5 21.5 12 21.5 12 18 17.5 12 17.5 2.5 12 2.5 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 12S6 6.5 12 6.5 21.5 12 21.5 12 18 17.5 12 17.5 2.5 12 2.5 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E");
}

.service-icon-browser::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M4 9h16'/%3E%3Ccircle cx='7' cy='7' r='0.7' fill='black' stroke='none'/%3E%3Ccircle cx='10' cy='7' r='0.7' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M4 9h16'/%3E%3Ccircle cx='7' cy='7' r='0.7' fill='black' stroke='none'/%3E%3Ccircle cx='10' cy='7' r='0.7' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.service-icon-layout::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M10 5v14'/%3E%3Cpath d='M10 10h10'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M10 5v14'/%3E%3Cpath d='M10 10h10'/%3E%3C/svg%3E");
}

.service-icon-radar::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7.5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1.5'/%3E%3Cpath d='M12 12l5-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7.5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1.5'/%3E%3Cpath d='M12 12l5-5'/%3E%3C/svg%3E");
}

.service-icon-flex::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 14.5c1.3-2.5 3.1-3.9 5.2-4.1 1.1-.1 2 .6 2.3 1.7l.4 1.5h2.2a2.9 2.9 0 0 1 0 5.8H12c-2.1 0-4.3-.8-6-2.4'/%3E%3Cpath d='M11.2 10.4V8.7A2.7 2.7 0 0 1 14 6h1.2'/%3E%3Cpath d='M6 14.5H4.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 14.5c1.3-2.5 3.1-3.9 5.2-4.1 1.1-.1 2 .6 2.3 1.7l.4 1.5h2.2a2.9 2.9 0 0 1 0 5.8H12c-2.1 0-4.3-.8-6-2.4'/%3E%3Cpath d='M11.2 10.4V8.7A2.7 2.7 0 0 1 14 6h1.2'/%3E%3Cpath d='M6 14.5H4.5'/%3E%3C/svg%3E");
}

.service-icon-sliders::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6h14M5 18h14M5 12h14'/%3E%3Ccircle cx='9' cy='6' r='1.7' fill='white' stroke='black'/%3E%3Ccircle cx='15' cy='12' r='1.7' fill='white' stroke='black'/%3E%3Ccircle cx='11' cy='18' r='1.7' fill='white' stroke='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6h14M5 18h14M5 12h14'/%3E%3Ccircle cx='9' cy='6' r='1.7' fill='white' stroke='black'/%3E%3Ccircle cx='15' cy='12' r='1.7' fill='white' stroke='black'/%3E%3Ccircle cx='11' cy='18' r='1.7' fill='white' stroke='black'/%3E%3C/svg%3E");
}

.service-icon-layers::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 5 7 4-7 4-7-4 7-4Z'/%3E%3Cpath d='m5 13 7 4 7-4'/%3E%3Cpath d='m5 17 7 4 7-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 5 7 4-7 4-7-4 7-4Z'/%3E%3Cpath d='m5 13 7 4 7-4'/%3E%3Cpath d='m5 17 7 4 7-4'/%3E%3C/svg%3E");
}

.channel-section {
  background:
    linear-gradient(180deg, rgba(248, 249, 251, 0.72), rgba(255, 255, 255, 0.94));
  border-top: 1px solid var(--section-divider);
  border-bottom: 1px solid var(--section-divider);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--content-column)));
  gap: 48px;
  justify-content: space-between;
  align-items: start;
}

.channel-copy {
  display: grid;
  align-content: start;
  width: 100%;
  max-width: var(--content-column);
}

.channel-copy h2 {
  width: 100%;
  max-width: var(--content-column);
  margin-top: 18px;
}

.channel-benefits {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.channel-benefit {
  position: relative;
  display: block;
  padding: 18px 24px 20px 22px;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.channel-benefit:first-child {
  border-top: none;
}

.channel-benefit::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.82);
}

.channel-benefit > div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.channel-benefit h3 {
  margin-bottom: 0;
}

.channel-emphasis {
  margin-top: 32px;
  color: var(--text-primary);
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.6;
}

.channel-copy .button {
  margin-top: 24px;
}

.channel-visual {
  min-width: 0;
}

.channel-stage {
  position: relative;
  min-height: 380px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 239, 0.92));
  border: 1px solid rgba(38, 61, 85, 0.1);
  border-radius: 8px;
}

.channel-input,
.channel-output {
  position: absolute;
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 61, 85, 0.1);
  border-radius: 8px;
}

.channel-input {
  left: 24px;
  width: 210px;
}

.paid-traffic {
  top: 34px;
}

.organic-traffic {
  bottom: 34px;
}

.channel-input p,
.channel-output-label {
  color: var(--text-primary);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 56px;
}

.channel-bars span {
  display: block;
  flex: 1;
  border-radius: 999px;
  background: rgba(38, 61, 85, 0.14);
}

.channel-bars span:nth-child(1) {
  height: 26px;
}

.channel-bars span:nth-child(2) {
  height: 38px;
}

.channel-bars span:nth-child(3) {
  height: 48px;
}

.organic-bars span {
  background: linear-gradient(180deg, rgba(224, 154, 53, 0.2), rgba(var(--accent-rgb), 0.38));
}

.organic-bars span:nth-child(1) {
  height: 18px;
}

.organic-bars span:nth-child(2) {
  height: 28px;
}

.organic-bars span:nth-child(3) {
  height: 40px;
}

.organic-bars span:nth-child(4) {
  height: 54px;
}

.channel-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.channel-path {
  position: absolute;
  left: 234px;
  width: 96px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paid-path {
  top: 118px;
  background: linear-gradient(90deg, rgba(38, 61, 85, 0.2), rgba(38, 61, 85, 0.58));
}

.organic-path {
  bottom: 112px;
  background: linear-gradient(90deg, rgba(224, 154, 53, 0.2), rgba(var(--accent-rgb), 0.7));
  transition-delay: 140ms;
}

.channel-visual.visible .channel-path {
  transform: scaleX(1);
}

.channel-output {
  right: 24px;
  top: 50%;
  width: 220px;
  transform: translateY(-50%);
}

.channel-output-items {
  display: grid;
  gap: 10px;
}

.channel-output-items span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(38, 61, 85, 0.08);
  border-radius: 8px;
  background: rgba(247, 244, 239, 0.9);
  color: var(--text-primary);
  font-weight: 500;
}

.visual-panel,
.search-browser,
.pricing-card,
.contact-form,
.fit-card,
.proof-card,
.step-card,
.info-card,
.deliverable-card,
.faq-item,
.legal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visual-panel,
.search-browser {
  padding: 22px;
}

.visual-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(38, 61, 85, 0.18);
}

.search-bar {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.84rem;
}

.search-card,
.metric-card,
.chart-card,
.search-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.search-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px;
}

.search-card.featured {
  border-color: rgba(var(--accent-rgb), 0.3);
  border-left: 3px solid rgba(var(--accent-rgb), 0.82);
}

.search-label,
.metric-label,
.chart-head,
.result-tag,
.proof-icon,
.step-number,
.price span {
  font-family: var(--mono);
}

.search-label,
.metric-label {
  color: var(--text-secondary);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.metric-card,
.chart-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.chart-card {
  margin-top: 12px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.chart-lines {
  position: relative;
  height: 170px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(38, 61, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 61, 85, 0.06) 1px, transparent 1px),
    #fbfbfa;
  background-size: 100% 24%, 18% 100%, auto;
}

.line {
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
}

.line::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.line-one::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150C52 148 79 138 120 132C165 125 188 100 229 98C275 95 302 124 340 118C393 109 423 68 470 56C521 42 558 24 600 18' fill='none' stroke='%23263D55' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.line-two::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 162C54 160 96 144 136 140C177 135 219 142 258 128C304 112 336 88 383 80C426 74 457 84 500 58C540 34 572 38 600 28' fill='none' stroke='%23D52215' stroke-width='3' stroke-linecap='round' stroke-dasharray='7 8'/%3E%3C/svg%3E");
}

.card-grid,
.proof-grid,
.steps-grid,
.fit-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 590px));
  gap: 18px;
  justify-content: center;
}

.info-card,
.deliverable-card,
.proof-card,
.fit-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.info-card:hover,
.deliverable-card:hover,
.proof-card:hover,
.fit-card:hover,
.step-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
}

.search-browser {
  display: grid;
  gap: 12px;
}

.map-pack-mock {
  width: 100%;
}

.map-pack-card {
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 250, 246, 0.96));
}

.map-pack-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.map-pack-mode {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(38, 61, 85, 0.08);
  border-radius: 999px;
  background: rgba(248, 246, 242, 0.92);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-pack-map {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  border: 1px solid rgba(38, 61, 85, 0.12);
  border-radius: 8px;
  background: #eef2f4;
}

.map-pack-map::before,
.map-pack-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-pack-map::before {
  display: none;
}

.map-pack-map::after {
  inset: 1px;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  z-index: 10;
}

.map-pack-map img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.map-water,
.map-road,
.map-road-secondary,
.map-route,
.map-park,
.map-label,
.map-shield,
.map-marker,
.map-maps-chip {
  position: absolute;
}

.map-water {
  right: -8px;
  top: 14px;
  width: 200px;
  height: 158px;
  border-radius: 52% 48% 55% 45% / 42% 38% 62% 58%;
  background:
    radial-gradient(circle at 35% 28%, rgba(190, 228, 255, 0.55), transparent 35%),
    linear-gradient(160deg, #aad4f5 0%, #82bde8 60%, #6aaede 100%);
  box-shadow: inset 0 0 0 1px rgba(130, 185, 235, 0.4), inset 0 2px 8px rgba(100, 160, 220, 0.2);
  z-index: 2;
}

.map-road,
.map-road-secondary,
.map-route {
  border-radius: 999px;
  transform-origin: left center;
  z-index: 3;
}

.map-road {
  height: 10px;
  background: #ffffff;
  box-shadow: 0 0 0 1.5px rgba(175, 168, 158, 0.55);
}

/* Highways get amber/golden Google Maps styling */
.road-two,
.road-four {
  height: 13px;
  background: linear-gradient(to bottom, #f7d060, #f2c140);
  box-shadow: 0 0 0 1.5px rgba(190, 148, 28, 0.65);
}

.map-road-secondary {
  height: 6px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 0 0 1px rgba(185, 178, 168, 0.4);
}

.road-one {
  left: -4px;
  top: 74px;
  width: 220px;
  transform: rotate(8deg);
}

.road-two {
  left: 108px;
  top: 30px;
  width: 248px;
  transform: rotate(52deg);
}

.road-three {
  left: 178px;
  top: 110px;
  width: 242px;
  transform: rotate(-7deg);
}

.road-four {
  left: 22px;
  top: 154px;
  width: 188px;
  transform: rotate(-18deg);
}

.road-five {
  left: 242px;
  top: 160px;
  width: 160px;
  transform: rotate(14deg);
}

.road-six {
  left: 88px;
  top: 112px;
  width: 180px;
  transform: rotate(-38deg);
}

.road-seven {
  left: 200px;
  top: 60px;
  width: 138px;
  transform: rotate(26deg);
}

.road-eight {
  left: -8px;
  top: 122px;
  width: 118px;
  transform: rotate(-2deg);
}

.road-nine {
  left: 118px;
  top: 22px;
  width: 108px;
  transform: rotate(-12deg);
}

.road-ten {
  left: 244px;
  top: 140px;
  width: 130px;
  transform: rotate(-20deg);
}

.road-eleven {
  left: 166px;
  top: 176px;
  width: 112px;
  transform: rotate(6deg);
}

.map-route {
  height: 7px;
  background: #1a73e8;
  box-shadow: 0 0 0 2.5px rgba(255, 255, 255, 0.7), 0 0 0 4px rgba(26, 115, 232, 0.2);
  z-index: 5;
}

.route-east {
  left: 206px;
  top: 88px;
  width: 148px;
  transform: rotate(9deg);
}

.route-south {
  left: 118px;
  top: 148px;
  width: 128px;
  transform: rotate(52deg);
}

.map-park {
  border-radius: 6px;
  background: rgba(186, 221, 174, 0.75);
  box-shadow: inset 0 0 0 1px rgba(130, 185, 120, 0.35);
  z-index: 2;
}

.park-one {
  left: 26px;
  top: 18px;
  width: 96px;
  height: 54px;
}

.park-two {
  left: 250px;
  bottom: 16px;
  width: 84px;
  height: 42px;
}

.park-three {
  left: 298px;
  top: 30px;
  width: 52px;
  height: 34px;
}

.map-label {
  color: rgba(40, 52, 72, 0.78);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 3px rgba(240, 235, 226, 0.9),
    0 0 6px rgba(240, 235, 226, 0.8),
    0 0 10px rgba(240, 235, 226, 0.6);
  z-index: 6;
  white-space: nowrap;
}

.label-one {
  left: 28px;
  top: 84px;
}

.label-two {
  left: 166px;
  top: 48px;
}

.label-three {
  right: 34px;
  bottom: 28px;
}

.label-four {
  right: 156px;
  bottom: 16px;
}

.label-five {
  left: 108px;
  top: 12px;
}

.map-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 5px 3px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 68%, 50% 100%, 0% 68%);
  background: #1a55cc;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  z-index: 6;
}

.shield-one {
  left: 212px;
  top: 74px;
}

.shield-two {
  left: 116px;
  top: 150px;
}

.map-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2.5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #d52215;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(213, 34, 21, 0.45), 0 1px 3px rgba(0,0,0,0.25);
  z-index: 7;
}
.map-marker::after {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #d52215;
  filter: drop-shadow(0 2px 3px rgba(213, 34, 21, 0.3));
}

.marker-one {
  left: 158px;
  top: 72px;
}

.marker-two {
  left: 240px;
  top: 122px;
}

.marker-three {
  right: 92px;
  top: 82px;
}

.map-maps-chip {
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 115, 232, 0.22);
  color: #1a73e8;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
  z-index: 8;
}

.map-pack-list {
  display: grid;
}

.map-pack-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
}

.map-pack-result:first-child {
  border-top: none;
}

.map-pack-result-featured {
  color: var(--text-primary);
}

.map-pack-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
}

.map-pack-copy {
  display: grid;
  gap: 3px;
}

.map-pack-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.map-pack-meta {
  color: var(--text-primary);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-pack-note {
  font-size: 0.92rem;
  line-height: 1.45;
}

.map-pack-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.map-pack-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(38, 61, 85, 0.1);
  border-radius: 999px;
  background: rgba(248, 246, 242, 0.92);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-pack-result-featured .map-pack-actions span:first-child,
.map-pack-result-featured .map-pack-actions span:last-child {
  border-color: rgba(var(--accent-rgb), 0.18);
}

.proof-icon {
  color: var(--text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.disclaimer {
  margin-top: 22px;
  font-size: 1.15em;
  text-align: center;
}

.step-card {
  min-height: 100%;
  padding: 72px 24px 24px;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 24px;
  color: rgba(38, 61, 85, 0.22);
  font-size: 2.8rem;
  line-height: 1;
}

.pricing-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.pricing-card {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: 36px;
  background: var(--surface-strong);
}

.pricing-wrap h2 {
  max-width: 20ch;
}

.pricing-highlight {
  color: rgba(var(--accent-rgb), 0.9);
}

.pricing-intro {
  max-width: 46rem;
  margin: 18px auto 0;
  text-align: center;
}

.pricing-panel {
  position: relative;
  padding: 0;
  gap: 0;
  overflow: hidden;
  text-align: left;
}

.pricing-panel-top {
  display: none;
}

.pricing-panel-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.pricing-panel-rate,
.pricing-panel-includes {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 34px 40px;
}

.pricing-panel-includes {
  border-left: 1px solid rgba(38, 61, 85, 0.08);
}

.pricing-panel-label {
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 6vw, 4.3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price span {
  font-family: inherit;
}

.price > span:last-child {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.price-currency {
  color: inherit;
}

.pricing-callout {
  max-width: 31rem;
  padding: 12px 14px 12px 16px;
  border-left: 3px solid rgba(var(--accent-rgb), 0.8);
  background: rgba(var(--accent-rgb), 0.04);
}

.pricing-callout p {
  color: rgba(120, 48, 39, 0.96);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-callout strong {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfbfa;
  color: var(--text-primary);
}

.pricing-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-pill-list li {
  padding: 8px 12px;
  border: 1px solid rgba(38, 61, 85, 0.08);
  border-radius: 6px;
  background: rgba(244, 240, 233, 0.88);
  color: rgba(38, 61, 85, 0.68);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
}

.pricing-feature-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding: 14px 0 14px 38px;
  background-image: linear-gradient(rgba(38, 61, 85, 0.08), rgba(38, 61, 85, 0.08));
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 71.5% 1px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.pricing-feature-list li:first-child {
  background-image: none;
}

.pricing-feature-list li::before,
.pricing-feature-list li::after {
  pointer-events: none;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(76, 135, 87, 0.24);
  border-radius: 50%;
  background: rgba(236, 245, 236, 0.96);
  transform: translateY(-50%);
}

.pricing-feature-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid rgba(47, 107, 63, 0.95);
  border-bottom: 2px solid rgba(47, 107, 63, 0.95);
  transform: translateY(-58%) rotate(45deg);
  transform-origin: center;
}

.pricing-panel-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px 40px;
  border-top: 1px solid rgba(38, 61, 85, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.pricing-cta {
  min-width: 174px;
}

.pricing-footer-note {
  max-width: 36rem;
  color: var(--text-secondary);
}

.pricing-subnote {
  margin-top: 20px;
  color: rgba(38, 61, 85, 0.42);
  font-family: var(--mono);
  font-size: 0.84rem;
}

.pricing-subnote a {
  color: inherit;
  text-decoration-color: rgba(38, 61, 85, 0.3);
}

.value-line {
  max-width: 32rem;
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--text-primary);
}

.faq-item p {
  padding: 0 22px 22px;
}

.final-cta {
  background: linear-gradient(180deg, rgba(248, 249, 251, 0.72), rgba(255, 255, 255, 0.94));
  border-top: 1px solid var(--section-divider);
  border-bottom: 1px solid var(--section-divider);
  padding-bottom: 120px;
}

.contact-panel {
  grid-template-columns: repeat(2, minmax(0, 540px));
  justify-content: center;
  gap: 72px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-checklist {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 38px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-checklist li::before,
.contact-checklist li::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-checklist li::before {
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(76, 135, 87, 0.24);
  border-radius: 50%;
  background: rgba(236, 245, 236, 0.96);
  transform: translateY(-50%);
}

.contact-checklist li::after {
  left: 7px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid rgba(47, 107, 63, 0.95);
  border-bottom: 2px solid rgba(47, 107, 63, 0.95);
  transform: translateY(-58%) rotate(45deg);
  transform-origin: center;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--text-primary);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.field-group input::placeholder {
  color: #9098a2;
}

.field-group input:focus {
  border-color: rgba(var(--accent-soft-rgb), 0.45);
  background: #fcfcfb;
}

.form-note {
  grid-column: span 2;
  font-size: 1.15em;
}

.emphasis-copy {
  color: var(--text-primary);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  padding: 20px 0 38px;
  border-top: none;
}

.site-footer::before,
.site-footer::after {
  display: none;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-brand img {
  width: 106px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.service-tile.reveal {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--tile-delay, 0ms),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--tile-delay, 0ms),
              background 0.2s ease;
}

.legal-main {
  min-height: 100vh;
}

.legal-page {
  max-width: 840px;
  padding-top: 140px;
}

.legal-card {
  padding: 34px;
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 14px;
}

.legal-card h2 {
  max-width: none;
  margin: 28px 0 10px;
  font-size: 1.4rem;
}

.legal-card p + p {
  margin-top: 12px;
}

@media (max-width: 1120px) {
  .four-up,
  .proof-grid,
  .steps-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-tile:nth-child(3n) {
    border-right: 1px solid rgba(38, 61, 85, 0.1);
  }

  .service-tile:nth-child(2n) {
    border-right: none;
  }

  .service-tile:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(38, 61, 85, 0.1);
  }

  .service-tile:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.menu-active .nav-wrap {
    position: relative;
  }

  .site-header.menu-active .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-header.menu-active .nav-links a {
    padding: 12px 14px;
  }

  .site-header.menu-active .header-actions {
    display: grid;
    position: absolute;
    top: calc(100% + 178px);
    left: 12px;
    right: 12px;
    gap: 10px;
  }

  .site-header.menu-active .header-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
  }

  .hero-grid,
  .why-grid,
  .channel-grid,
  .split-grid,
  .contact-panel,
  .faq-layout,
  .fit-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    display: grid;
  }

  .map-pack-result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .map-pack-actions {
    grid-column: 2;
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 60px;
    padding: 0 14px 0 18px;
  }

  .container {
    width: min(100vw - 28px, 100%);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.875rem;
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .hero-copy h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text-emphasis {
    font-size: 0.92rem;
    white-space: normal;
  }

  .bullet-list {
    width: fit-content;
    max-width: min(100%, 28rem);
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
  }

  .bullet-list li {
    width: fit-content;
    max-width: 100%;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  .hero-visual {
    margin-top: 14px;
  }

  .hero-actions .button {
    width: auto;
    min-width: min(100%, 18rem);
  }

  .hero-learn-more {
    display: none;
  }

  .why-heading,
  .why-heading h2,
  .section-heading,
  .section-heading h2,
  .pricing-wrap,
  .pricing-wrap h2,
  .contact-copy,
  .contact-copy h2 {
    width: 100%;
    max-width: 100%;
  }

  .why-copy,
  .channel-copy {
    width: 100%;
    max-width: 100%;
  }

  .section-heading,
  .section-heading.centered,
  .pricing-wrap,
  .contact-copy {
    justify-items: start;
    text-align: left;
  }

  .why-heading h2,
  .section-heading h2,
  .pricing-wrap h2,
  .contact-copy h2 {
    font-size: 2.3rem;
    line-height: 1;
    margin-left: 0;
    margin-right: 0;
  }

  .channel-copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: 2.3rem;
    line-height: 1;
  }

  .ideal-intro {
    max-width: 32rem;
    font-size: 1rem;
  }

  .why-grid {
    gap: 40px;
  }

  .why-visual {
    justify-content: center;
  }

  .work-log-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .work-log-copy {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .work-log-meta {
    width: 50%;
    min-width: 0;
    justify-self: start;
  }

  .work-log-item:nth-child(n + 6) {
    display: none;
  }

  .hero-visual {
    justify-content: center;
  }

  .graph-card {
    margin-left: auto;
    margin-right: auto;
  }

  .map-pack-card {
    padding: 16px;
  }

  .map-pack-header {
    grid-template-columns: 1fr;
  }

  .map-pack-mode {
    justify-self: start;
  }

  .map-pack-map {
    min-height: 178px;
  }

  .map-maps-chip {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .map-pack-result {
    gap: 12px;
    padding: 14px 0;
  }

  .map-pack-copy h3 {
    font-size: 0.96rem;
  }

  .map-pack-note {
    font-size: 0.88rem;
  }

  .map-pack-actions {
    grid-auto-flow: row;
    gap: 6px;
  }

  .map-pack-actions span {
    min-width: 84px;
  }

  .map-pack-actions {
    display: none;
  }

  .pricing-panel-main,
  .pricing-panel-footer {
    grid-template-columns: 1fr;
  }

  .pricing-panel-includes {
    border-left: none;
    border-top: 1px solid rgba(38, 61, 85, 0.08);
  }

  .pricing-panel-rate,
  .pricing-panel-includes,
  .pricing-panel-footer {
    padding: 24px 20px;
  }

  .pricing-panel-footer {
    gap: 14px;
  }

  .pricing-footer-note,
  .pricing-intro,
  .pricing-subnote {
    max-width: 100%;
  }

  .four-up,
  .proof-grid,
  .steps-grid,
  .deliverables-grid,
  .contact-form,
  .service-matrix {
    grid-template-columns: 1fr;
  }

  .field-group:last-of-type,
  .form-note {
    grid-column: span 1;
  }

  .hero-actions .button,
  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: min(100%, 18rem);
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .graph-layout {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .channel-stage {
    min-height: 420px;
  }

  .channel-input,
  .channel-output {
    position: static;
    width: auto;
    transform: none;
  }

  .channel-stage {
    display: grid;
    gap: 18px;
  }

  .channel-flow {
    position: relative;
    inset: auto;
    min-height: 72px;
  }

  .channel-path {
    left: 0;
    right: 0;
    width: 100%;
  }

  .paid-path {
    top: 16px;
  }

  .organic-path {
    bottom: 16px;
  }

  .graph-axis,
  .graph-plot {
    height: 260px;
  }

  .graph-title {
    max-width: none;
  }

  .service-tile,
  .service-tile:nth-child(2n),
  .service-tile:nth-child(3n),
  .service-tile:nth-last-child(-n + 3) {
    border-right: none;
    border-bottom: 1px solid rgba(38, 61, 85, 0.1);
  }

  .service-tile:last-child {
    border-bottom: none;
  }

  .info-card,
  .deliverable-card,
  .proof-card,
  .fit-card,
  .step-card,
  .pricing-card,
  .contact-panel,
  .contact-form,
  .visual-panel,
  .search-browser,
  .graph-card,
  .legal-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fit-panel {
    padding-left: 0;
    padding-right: 0;
  }

  .fit-panel-header {
    padding: 18px 20px 16px;
  }

  .fit-detail-list li {
    padding: 16px 20px 18px 36px;
  }

  .fit-detail-list li::before {
    left: 20px;
    top: 23px;
  }
}
