:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --ink: #15192b;
  --muted: #666c80;
  --line: #e5e7f0;
  --navy: #0b1020;
  --navy-soft: #12192d;
  --purple: #7465f6;
  --purple-bright: #9b90ff;
  --mint: #91ecc6;
  --shadow: 0 28px 80px rgba(18, 23, 46, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-160%);
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  background: rgba(247, 248, 252, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: rgba(218, 221, 232, .9); box-shadow: 0 8px 30px rgba(12, 17, 36, .04); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.7px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); color: #fff; }
.brand-mark svg { width: 23px; height: 23px; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.main-nav { display: flex; align-items: center; gap: 33px; font-size: 14px; font-weight: 600; color: #4f5567; }
.main-nav > a:not(.nav-cta) { transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { color: #fff; background: var(--navy); padding: 12px 18px; border-radius: 12px; box-shadow: 0 8px 20px rgba(11,16,32,.15); transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,16,32,.22); }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); transition: .25s ease; }

.section-shell { position: relative; overflow: hidden; }
.hero { padding: 158px 0 92px; min-height: 820px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 68px; align-items: center; position: relative; z-index: 2; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .64; pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; top: -170px; right: 5%; background: radial-gradient(circle, rgba(131,115,255,.25), rgba(131,115,255,0) 70%); }
.hero-glow-two { width: 430px; height: 430px; bottom: -130px; left: -130px; background: radial-gradient(circle, rgba(126,231,191,.20), rgba(126,231,191,0) 70%); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1.6px; font-size: 12px; font-weight: 700; color: #5e6478; }
.eyebrow > span { width: 24px; height: 2px; background: var(--purple); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 { margin-bottom: 28px; font-size: clamp(52px, 5.6vw, 78px); line-height: .99; letter-spacing: -4.5px; }
h1 em { color: var(--purple); font-style: normal; }
.hero-lead { max-width: 560px; font-size: 19px; line-height: 1.65; color: var(--muted); }
.hero-actions { margin-top: 34px; display: flex; gap: 13px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button-primary { background: var(--navy); color: #fff; box-shadow: 0 13px 28px rgba(11,16,32,.2); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(11,16,32,.25); }
.button-ghost { border: 1px solid #d9dce8; background: rgba(255,255,255,.7); }
.button-ghost:hover { background: #fff; transform: translateY(-2px); }
.trust-row { margin-top: 28px; display: flex; gap: 21px; flex-wrap: wrap; font-size: 13px; color: #656b7e; }
.trust-row i { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; border-radius: 50%; background: #e2f9f0; color: #19755a; font-style: normal; font-size: 11px; font-weight: 700; }

.hero-visual { position: relative; min-height: 560px; }
.onboarding-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,244,255,.92));
  border: 1px solid rgba(219,222,234,.95);
  border-radius: 34px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.onboarding-map::before {
  content: "";
  position: absolute;
  inset: 10% -8% -12% 8%;
  z-index: -2;
  background: linear-gradient(135deg, rgba(116,101,246,.22), rgba(145,236,198,.16));
  filter: blur(48px);
  border-radius: 42px;
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: linear-gradient(rgba(74,79,103,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(74,79,103,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 12%, transparent 72%);
}
.map-orbit { position: absolute; left: 50%; top: 46%; border: 1px dashed rgba(116,101,246,.25); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 350px; height: 350px; }
.orbit-two { width: 480px; height: 480px; border-color: rgba(49,164,126,.18); }
.map-core {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 260px;
  padding: 28px 24px;
  text-align: center;
  transform: translate(-50%,-50%);
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(11,16,32,.28);
}
.core-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 18px; background: linear-gradient(145deg, var(--purple), #8f83ff); }
.core-icon svg { width: 34px; height: 34px; }
.core-icon path { fill: none; stroke: #fff; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.map-core small { display: block; margin-bottom: 8px; color: #aab1c7; font-size: 11px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; }
.map-core strong { display: block; font-family: "Manrope", sans-serif; font-size: 21px; letter-spacing: -.7px; }
.map-core p { margin: 9px auto 0; max-width: 190px; color: #aeb5c9; font-size: 12px; line-height: 1.55; }
.signal-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 168px;
  padding: 14px 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(224,226,236,.95);
  border-radius: 17px;
  box-shadow: 0 16px 38px rgba(24,29,55,.10);
}
.signal-card small { display: block; margin-bottom: 2px; color: #8a8fa1; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.signal-card strong { display: block; color: #34394c; font-size: 13px; }
.signal-dot { width: 13px; height: 13px; flex: 0 0 13px; border: 3px solid #dedaff; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 5px rgba(116,101,246,.08); }
.signal-sales { left: 4%; top: 12%; }
.signal-demand { right: 4%; top: 15%; }
.signal-competition { left: 3%; top: 62%; }
.signal-pricing { right: 3%; top: 59%; }
.signal-demand .signal-dot, .signal-pricing .signal-dot { background: #36af85; border-color: #cdf5e6; box-shadow: 0 0 0 5px rgba(54,175,133,.08); }
.map-steps {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(86%, 450px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(224,226,236,.95);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(24,29,55,.08);
}
.map-steps div { display: flex; align-items: center; gap: 8px; color: #4b5164; font-size: 12px; }
.map-steps span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #f0eeff; color: #6759da; font-size: 10px; font-weight: 800; }
.map-steps i { width: 38px; height: 1px; background: #daddea; }
.launch-note { max-width: 560px; margin: 20px 0 0; padding-left: 13px; border-left: 2px solid #cbc5ff; color: #7a8092; font-size: 12px; line-height: 1.55; }

.signal-strip { background: var(--navy); color: #fff; }
.signal-grid { min-height: 78px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.signal-grid p { margin: 0 18px 0 0; color: #8991a9; font-size: 13px; }
.signal-grid span { font-family: "Manrope", sans-serif; font-weight: 700; }
.signal-grid i { width: 4px; height: 4px; border-radius: 50%; background: var(--purple-bright); }

.section-heading { max-width: 610px; }
.section-heading.centered { text-align: center; margin: 0 auto 54px; }
.section-label { display: inline-block; margin-bottom: 16px; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.section-label.light { color: var(--mint); }
h2 { margin-bottom: 20px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.08; letter-spacing: -3px; }
.section-heading p, .process-copy > p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.feature-card { position: relative; min-height: 305px; padding: 34px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(23,28,56,.08); }
.feature-card h3 { margin: 26px 0 12px; font-size: 23px; letter-spacing: -1px; }
.feature-card p { max-width: 500px; color: var(--muted); line-height: 1.65; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; background: #f0eeff; color: var(--purple); border-radius: 15px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon path, .feature-icon circle { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-large { grid-row: span 2; min-height: 628px; background: linear-gradient(160deg, #fff 55%, #f1f0ff); }
.feature-large::after { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; bottom: -160px; border-radius: 50%; border: 60px solid rgba(116,101,246,.07); }
.mini-bars { height: 245px; margin-top: 55px; padding: 26px 25px 0; display: flex; align-items: flex-end; gap: 13px; background: rgba(255,255,255,.7); border: 1px solid rgba(225,225,239,.9); border-radius: 18px; }
.mini-bars span { flex: 1; min-width: 16px; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, #9f94ff, #7162ed); box-shadow: 0 8px 16px rgba(116,101,246,.2); }
.feature-wide { grid-column: 1 / -1; min-height: 190px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.feature-wide h3 { margin-top: 0; }
.feature-wide p { margin-bottom: 0; }
.privacy-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.privacy-badges span { padding: 10px 12px; border-radius: 10px; background: #f5f5fa; color: #656b7e; font-size: 12px; font-weight: 700; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.process-copy { position: sticky; top: 120px; align-self: start; }
.text-link { display: inline-flex; gap: 10px; margin-top: 15px; font-weight: 800; color: var(--purple); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.steps-list { list-style: none; padding: 0; margin: 0; }
.steps-list li { display: grid; grid-template-columns: 70px 1fr; gap: 26px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.steps-list li:first-child { padding-top: 0; }
.step-number { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #dedfec; border-radius: 15px; color: var(--purple); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 800; }
.steps-list h3 { margin-bottom: 9px; font-size: 23px; }
.steps-list p { margin: 0; color: var(--muted); line-height: 1.6; }

.principles-section { padding-top: 90px; padding-bottom: 90px; background: #fff; }
.principles-card { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 72px; color: #fff; background: var(--navy); border-radius: 30px; overflow: hidden; position: relative; }
.principles-card::after { content: ""; position: absolute; width: 500px; height: 500px; right: -270px; top: -260px; border-radius: 50%; border: 90px solid rgba(139,124,255,.12); }
.principles-copy { position: relative; z-index: 1; }
.principles-copy h2 { font-size: 45px; }
.principles-copy p { color: #aab1c4; line-height: 1.7; }
.principle-list { position: relative; z-index: 1; }
.principle-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.principle-list > div:first-child { padding-top: 0; }
.principle-list > div:last-child { border-bottom: 0; }
.principle-list span { color: var(--mint); font-size: 12px; font-weight: 800; }
.principle-list p { margin: 0; color: #aeb4c6; line-height: 1.55; }
.principle-list strong { display: block; color: #fff; margin-bottom: 4px; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 90px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; background: none; border: 0; cursor: pointer; color: var(--ink); text-align: left; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 18px; }
.accordion-item i { position: relative; width: 20px; height: 20px; }
.accordion-item i::before, .accordion-item i::after { content: ""; position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.accordion-item i::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion-panel p { margin-bottom: 24px; max-width: 690px; color: var(--muted); line-height: 1.7; }

.cta-section { padding-top: 20px; }
.cta-card { display: grid; grid-template-columns: 1fr .92fr; gap: 70px; align-items: center; padding: 65px; color: #fff; background: linear-gradient(135deg, #151b34, #0b1020); border-radius: 30px; box-shadow: 0 30px 80px rgba(12,17,36,.2); }
.cta-copy h2 { font-size: 46px; }
.cta-copy p { margin-bottom: 0; color: #aeb5c9; font-size: 17px; }
.access-form { padding: 26px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
.form-row { display: flex; gap: 9px; }
.form-row input { min-width: 0; flex: 1; height: 52px; padding: 0 16px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; outline: 0; }
.form-row input::placeholder { color: #8890a7; }
.form-row input:focus { border-color: var(--purple-bright); box-shadow: 0 0 0 3px rgba(155,144,255,.16); }
.form-row button { height: 52px; padding: 0 20px; border: 0; border-radius: 12px; cursor: pointer; color: var(--navy); background: var(--mint); font-weight: 800; transition: transform .2s ease, filter .2s ease; }
.form-row button:hover { transform: translateY(-1px); filter: brightness(1.04); }
.consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; color: #9ea5b9; font-size: 11px; line-height: 1.5; }
.consent input { margin-top: 2px; accent-color: var(--purple-bright); }
.consent a { text-decoration: underline; color: #c3c8d6; }
.form-message { min-height: 18px; margin: 12px 0 0; color: var(--mint); font-size: 12px; }
.form-message.error { color: #ffafaf; }

.site-footer { padding: 78px 0 28px; color: #fff; background: #070b16; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-bottom: 55px; }
.brand-footer { color: #fff; }
.brand-footer .brand-mark { background: #fff; color: var(--navy); }
.footer-brand p { max-width: 350px; margin-top: 18px; color: #8991a7; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 5px; font-size: 13px; }
.footer-links a { color: #8991a7; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.legal-notice { padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.09); color: #6f778e; font-size: 11px; line-height: 1.6; }
.legal-notice p:first-child { max-width: 700px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: #fff; }
.legal-hero { padding: 145px 0 55px; background: #f7f8fc; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 14px; font-size: 55px; letter-spacing: -3px; }
.legal-hero p { color: var(--muted); }
.legal-content { width: min(calc(100% - 40px), 820px); margin: 0 auto; padding: 70px 0 110px; }
.legal-content h2 { margin-top: 42px; margin-bottom: 14px; font-size: 27px; letter-spacing: -1px; }
.legal-content h3 { margin-top: 28px; font-size: 19px; }
.legal-content p, .legal-content li { color: #555c70; line-height: 1.75; }
.legal-content a { color: var(--purple); text-decoration: underline; }
.legal-content .notice-box { margin: 30px 0; padding: 18px 20px; background: #f3f1ff; border-left: 4px solid var(--purple); border-radius: 8px; color: #4d5265; }

@media (max-width: 980px) {
  .hero-grid, .process-grid, .principles-card, .faq-grid, .cta-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 700px; }
  .feature-large { grid-row: auto; min-height: 500px; }
  .process-grid, .faq-grid { gap: 55px; }
  .process-copy { position: static; }
  .principles-card { gap: 50px; }
  .cta-card { gap: 35px; }
  .signal-grid { flex-wrap: wrap; padding: 20px 0; gap: 15px; }
  .signal-grid p { width: 100%; text-align: center; margin-right: 0; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .site-header { height: 68px; }
  .menu-button { display: block; z-index: 2; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; padding: 110px 30px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; font-size: 20px; background: #f7f8fc; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { width: 100%; text-align: center; }
  .hero { padding: 126px 0 70px; }
  .hero-grid { gap: 50px; }
  h1 { font-size: clamp(47px, 15vw, 68px); letter-spacing: -3.6px; }
  h2 { font-size: 39px; letter-spacing: -2px; }
  .hero-lead { font-size: 17px; }
  .onboarding-map { min-height: 520px; border-radius: 24px; }
  .metric-card:nth-child(3) { display: none; }
  .chart { height: 120px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-large { min-height: auto; }
  .feature-large { padding-bottom: 25px; }
  .mini-bars { height: 200px; margin-top: 35px; }
  .feature-wide { grid-column: auto; display: block; }
  .feature-wide .feature-icon { margin-bottom: 24px; }
  .privacy-badges { justify-content: flex-start; margin-top: 20px; }
  .principles-card, .cta-card { padding: 38px 25px; border-radius: 24px; }
  .principles-copy h2, .cta-copy h2 { font-size: 37px; }
  .steps-list li { grid-template-columns: 52px 1fr; gap: 17px; }
  .step-number { width: 45px; height: 45px; }
  .form-row { flex-direction: column; }
  .legal-notice, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .legal-notice { gap: 5px; }
  .footer-links { margin-top: 15px; }
  .legal-hero h1 { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .onboarding-map { min-height: 540px; }
  .map-core { top: 42%; width: min(78%, 260px); padding: 24px 18px; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 410px; height: 410px; }
  .signal-card { width: 42%; min-width: 0; padding: 11px 10px; gap: 8px; }
  .signal-card small { font-size: 8px; }
  .signal-card strong { font-size: 11px; }
  .signal-sales { left: 5%; top: 6%; }
  .signal-demand { right: 5%; top: 6%; }
  .signal-competition { left: 5%; top: 66%; }
  .signal-pricing { right: 5%; top: 66%; }
  .map-steps { bottom: 16px; width: 92%; padding: 12px 10px; }
  .map-steps div { gap: 5px; font-size: 10px; }
  .map-steps span { width: 21px; height: 21px; }
  .map-steps i { width: 15px; }
}
