:root {
  --ink: #071322;
  --ink-soft: #12243a;
  --paper: #f4f0e8;
  --warm-white: #fffefa;
  --line: rgba(11, 22, 39, 0.14);
  --muted: #657083;
  --cyan: #00cfe8;
  --magenta: #ff3e93;
  --yellow: #ffd331;
  --green: #34d399;
  --shadow: 0 30px 80px rgba(7, 19, 34, 0.14);
  --spectrum: linear-gradient(
    90deg,
    var(--cyan) 0 33.333%,
    var(--magenta) 33.333% 66.666%,
    var(--yellow) 66.666%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(24, 204, 226, 0.55);
  outline-offset: 3px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.section--paper {
  background:
    radial-gradient(circle at 4% 12%, rgba(0, 207, 232, 0.08), transparent 23%),
    radial-gradient(circle at 97% 82%, rgba(255, 62, 147, 0.06), transparent 24%),
    var(--paper);
}

.section--navy {
  background: var(--ink);
  color: white;
}

.service-strip {
  background: #07101d;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.service-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.service-strip a {
  color: white;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
  vertical-align: 1px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(11, 22, 39, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--spectrum);
  content: "";
  opacity: 0.72;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand__mark {
  display: flex;
  width: 28px;
  height: 31px;
  align-items: end;
  gap: 3px;
}

.brand__mark i {
  display: block;
  width: 7px;
  border-radius: 999px 999px 3px 3px;
}

.brand__mark i:nth-child(1) {
  height: 20px;
  background: var(--cyan);
}

.brand__mark i:nth-child(2) {
  height: 28px;
  background: var(--magenta);
}

.brand__mark i:nth-child(3) {
  height: 15px;
  background: var(--yellow);
}

.brand__text {
  display: flex;
  align-items: baseline;
  letter-spacing: -0.045em;
  font-size: 1.15rem;
}

.brand__text strong {
  font-weight: 850;
}

.brand__text span {
  color: #425169;
  font-weight: 600;
}

.brand small {
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: #778195;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #334158;
  font-size: 0.82rem;
  font-weight: 650;
}

.desktop-nav a,
.text-link {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: #067f91;
}

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

.text-link {
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  color: #149aaf;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 760;
  letter-spacing: -0.015em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button--compact {
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
}

.button--primary {
  background: linear-gradient(135deg, #00d7ee, #00bdd9);
  color: #03131a;
  box-shadow: 0 14px 36px rgba(0, 207, 232, 0.2);
}

.button--primary:hover {
  background: linear-gradient(135deg, #24e2f4, #00c4de);
  box-shadow: 0 18px 42px rgba(0, 207, 232, 0.3);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.phone-pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.phone-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(52, 211, 153, 0.55);
  border-radius: inherit;
  content: "";
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero__image,
.hero__image img,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero__wash {
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 25, 0.99) 0%,
      rgba(5, 14, 25, 0.97) 32%,
      rgba(5, 14, 25, 0.66) 52%,
      rgba(5, 14, 25, 0.08) 78%
    ),
    linear-gradient(0deg, rgba(5, 14, 25, 0.52), transparent 42%);
}

.hero__spectrum {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 70px);
  bottom: 46px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.hero__spectrum i {
  display: block;
  width: 7px;
  border-radius: 99px;
  box-shadow: 0 0 24px currentColor;
}

.hero__spectrum i:nth-child(1) {
  height: 44px;
  background: var(--cyan);
  color: var(--cyan);
}

.hero__spectrum i:nth-child(2) {
  height: 64px;
  background: var(--magenta);
  color: var(--magenta);
}

.hero__spectrum i:nth-child(3) {
  height: 32px;
  background: var(--yellow);
  color: var(--yellow);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  padding: 58px 0 102px;
}

.hero__copy {
  width: min(700px, 61%);
}

.eyebrow {
  margin: 0 0 20px;
  color: #178da0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cyan);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.45rem, 5.5vw, 5.75rem);
  font-weight: 810;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 small {
  display: block;
  margin-bottom: 17px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #81edf7 36%, #fff 74%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__proof span:first-child {
  padding-left: 0;
}

.hero__proof span:last-child {
  border-right: 0;
}

.hero__proof b {
  color: var(--cyan);
  font-size: 0.64rem;
}

.finder-section {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.finder {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(11, 22, 39, 0.1);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.finder::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--spectrum);
  content: "";
}

.finder__heading {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}

.finder__step {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  background: rgba(24, 204, 226, 0.12);
  color: #087487;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.finder__heading h2 {
  margin: -5px 0 6px;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.finder__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.finder__form {
  display: grid;
  grid-template-columns: 0.82fr 1.45fr 1fr auto;
  gap: 10px;
}

.finder__form label {
  position: relative;
  display: block;
}

.finder__form label > span {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 14px;
  color: #7a8495;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  pointer-events: none;
  text-transform: uppercase;
}

.finder__form input,
.finder__form select {
  width: 100%;
  height: 62px;
  padding: 22px 38px 6px 14px;
  border: 1px solid rgba(11, 22, 39, 0.14);
  border-radius: 3px;
  background: #f8f6f1;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 650;
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.finder__form input {
  padding-right: 14px;
}

.finder__form input::placeholder {
  color: #9ba2ae;
  font-weight: 500;
}

.finder__form input:focus,
.finder__form select:focus {
  border-color: var(--cyan);
  background: white;
}

.button--finder {
  min-width: 184px;
  height: 62px;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
}

.finder__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding: 20px;
  background: #eaf9f7;
  border-left: 3px solid #20b79b;
}

.finder__result > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.finder__result-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #20b79b;
  color: white;
  font-weight: 900;
}

.finder__result p {
  margin: 0;
  color: #4e5c68;
  font-size: 0.84rem;
  line-height: 1.55;
}

.finder__result strong {
  display: block;
  color: var(--ink);
}

.finder__result-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.finder__result-actions .button {
  min-height: 42px;
  font-size: 0.76rem;
}

.finder__result-actions > a:last-child {
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intent-switch {
  padding: 36px 0 0;
}

.intent-switch__inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intent-switch__label,
.intent-switch__item {
  display: grid;
  min-height: 94px;
  align-content: center;
  gap: 6px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.intent-switch__item:last-child {
  border-right: 0;
}

.intent-switch__label span,
.intent-switch__item span {
  color: #87909e;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-switch__label strong,
.intent-switch__item strong {
  font-size: 0.75rem;
  line-height: 1.4;
}

.intent-switch__label strong {
  color: #435067;
}

.intent-switch__item {
  transition:
    background 180ms ease,
    color 180ms ease;
}

.intent-switch__item:hover,
.intent-switch__item.is-current {
  background: #e8faf8;
}

.intent-switch__item.is-current strong {
  color: #067588;
}

.cmy-showcase {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.cmy-showcase::before {
  position: absolute;
  top: 48px;
  left: -100px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(0, 207, 232, 0.08);
  content: "";
}

.cmy-showcase__head {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.cmy-showcase__head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 830;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.cmy-showcase__head > p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.75;
}

.cmy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.cmy-card {
  --card-color: var(--cyan);
  position: relative;
  overflow: hidden;
  background: #e8faff;
  border: 1px solid rgba(7, 19, 34, 0.08);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.cmy-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(7, 19, 34, 0.16);
}

.cmy-card--magenta {
  --card-color: var(--magenta);
  background: #fff0f7;
}

.cmy-card--yellow {
  --card-color: var(--yellow);
  background: #fff8d9;
}

.cmy-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--card-color);
  content: "";
}

.cmy-card__visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.cmy-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 19, 34, 0.12));
  content: "";
}

.cmy-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.cmy-card:hover .cmy-card__visual img {
  transform: scale(1.045);
}

.cmy-card__visual > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: -20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 7.5rem;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(7, 19, 34, 0.18);
}

.cmy-card__copy {
  min-height: 162px;
  padding: 26px 28px 30px;
}

.cmy-card__copy p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.66;
}

.cmy-card__copy h3 {
  margin: 0 0 9px;
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.cmy-card__copy small {
  color: #5e6878;
  font-size: 0.79rem;
  line-height: 1.55;
}

.cmy-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #6b7584;
  font-size: 0.78rem;
}

.cmy-showcase__footer a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 820;
}

.cmy-showcase__footer a > span {
  color: var(--magenta);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.cmy-showcase__footer a:hover > span {
  transform: translateX(4px);
}

.section-intro {
  max-width: 760px;
}

.section-intro h2,
.choice__intro h2,
.local h2,
.directions h2,
.business h2,
.guide h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-intro > p:last-child,
.choice__intro > p,
.directions__copy > p,
.business__copy > p,
.guide__intro > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-intro--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.section-intro--split > p {
  margin: 0 0 5px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #f9f7f2, #f1eee6);
  border: 1px solid rgba(11, 22, 39, 0.08);
  border-top: 4px solid var(--magenta);
}

.path-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(11, 22, 39, 0.1);
  border-radius: 999px;
  content: "";
  transition: transform 300ms ease;
}

.path-card:hover::after {
  transform: scale(1.22);
}

.path-card--urgent {
  background:
    radial-gradient(circle at 100% 100%, rgba(0, 207, 232, 0.2), transparent 42%),
    #e9fbfc;
  border-top-color: var(--cyan);
}

.path-card--urgent::after {
  border-color: rgba(24, 204, 226, 0.3);
}

.path-card--dark {
  background:
    radial-gradient(circle at 100% 110%, rgba(255, 211, 49, 0.14), transparent 46%),
    var(--ink);
  border-top-color: var(--yellow);
  color: white;
}

.path-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.path-card__number {
  color: #6e7786;
  font-size: 0.7rem;
  font-weight: 800;
}

.path-card__tag {
  padding: 6px 9px;
  background: rgba(11, 22, 39, 0.06);
  color: #586475;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-card--dark .path-card__number {
  color: var(--cyan);
}

.path-card--dark .path-card__tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.path-card h3 {
  max-width: 310px;
  margin: 66px 0 12px;
  font-size: 1.48rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.path-card p {
  margin: 0;
  color: #6d7684;
  font-size: 0.88rem;
  line-height: 1.65;
}

.path-card--dark p {
  color: rgba(255, 255, 255, 0.6);
}

.path-card > a {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #075f6d;
  font-size: 0.78rem;
  font-weight: 800;
}

.path-card--dark > a {
  color: var(--cyan);
}

.path-card > a span {
  transition: transform 180ms ease;
}

.path-card > a:hover span {
  transform: translateX(4px);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.brand-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  background: var(--warm-white);
  border-top: 4px solid var(--ink);
}

.brand-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    var(--card-accent, rgba(11, 22, 39, 0.12)),
    transparent 68%
  );
  content: "";
}

.brand-card--cyan {
  --card-accent: rgba(24, 204, 226, 0.34);
  border-top-color: var(--cyan);
}

.brand-card--magenta {
  --card-accent: rgba(240, 75, 135, 0.28);
  border-top-color: var(--magenta);
}

.brand-card--yellow {
  --card-accent: rgba(244, 197, 66, 0.35);
  border-top-color: var(--yellow);
}

.brand-card--ink {
  --card-accent: rgba(11, 22, 39, 0.2);
}

.brand-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-card h3 {
  margin: 0;
  font-size: 2.7rem;
  letter-spacing: -0.075em;
}

.brand-card__head > span {
  color: #87909f;
  font-size: 1.2rem;
}

.brand-card__codes {
  max-width: 360px;
  margin: 45px 0 8px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.6;
}

.brand-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.brand-card a {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  color: #526075;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand-ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
  color: #404d61;
  font-size: 0.74rem;
}

.brand-ticker > span {
  color: #7d8592;
}

.brand-ticker b {
  font-weight: 760;
}

.brand-ticker i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #b1b5bc;
}

.choice__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 90px;
}

.choice__intro {
  position: sticky;
  top: 120px;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: #08798b;
  font-size: 0.8rem;
  font-weight: 800;
}

.text-arrow span {
  transition: transform 180ms ease;
}

.text-arrow:hover span {
  transform: translateX(4px);
}

.comparison {
  display: grid;
  gap: 14px;
}

.comparison-card {
  position: relative;
  min-height: 315px;
  padding: 38px;
  overflow: hidden;
  background: #f1efe9;
  border: 1px solid rgba(11, 22, 39, 0.08);
}

.comparison-card--accent {
  background: #dff8f7;
}

.comparison-card__label {
  margin: 0 0 34px;
  color: #748093;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  color: #5d6878;
  font-size: 0.88rem;
  line-height: 1.55;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 20px;
}

.comparison-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 2px;
  background: #109aae;
  content: "";
}

.comparison-card__finish {
  position: absolute;
  right: -4px;
  bottom: -10px;
  color: rgba(11, 22, 39, 0.055);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.local {
  overflow: hidden;
}

.local__head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.local__head h2 {
  max-width: 720px;
}

.local__address {
  padding: 24px 0 2px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.local__address span {
  display: block;
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local__address strong {
  display: block;
  margin-top: 7px;
  font-size: 1.25rem;
}

.local__address p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.local__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  margin-top: 74px;
}

.route-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101e33;
  background-size: 42px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-map__ring {
  position: absolute;
  border: 1px solid rgba(24, 204, 226, 0.18);
  border-radius: 999px;
}

.route-map__ring--one {
  inset: 17%;
}

.route-map__ring--two {
  inset: 34%;
  border-color: rgba(240, 75, 135, 0.22);
}

.route-map__road {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.13);
  transform-origin: left center;
}

.route-map__road--one {
  top: 20%;
  left: -10%;
  width: 130%;
  transform: rotate(31deg);
}

.route-map__road--two {
  top: 65%;
  left: -12%;
  width: 132%;
  transform: rotate(-23deg);
}

.route-map__road--three {
  top: -10%;
  left: 48%;
  width: 115%;
  transform: rotate(86deg);
}

.map-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label--jezyce {
  top: 18%;
  left: 18%;
}

.map-label--center {
  top: 30%;
  right: 20%;
}

.map-label--grunwald {
  top: 56%;
  left: 12%;
}

.map-label--wilda {
  right: 20%;
  bottom: 23%;
}

.map-label--rataje {
  right: 8%;
  bottom: 42%;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 45%;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border: 1px solid rgba(24, 204, 226, 0.4);
  border-radius: 999px;
  background: rgba(24, 204, 226, 0.13);
  box-shadow:
    0 0 0 18px rgba(24, 204, 226, 0.05),
    0 0 60px rgba(24, 204, 226, 0.18);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-pin span {
  align-self: end;
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 900;
}

.map-pin small {
  align-self: start;
  margin-top: 2px;
  color: white;
  font-size: 0.55rem;
}

.route-map__legend {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
}

.route-map__legend span {
  width: 16px;
  height: 1px;
  background: var(--cyan);
}

.area-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.area-row {
  display: grid;
  min-height: 102px;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.area-row__index {
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
}

.area-row h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.area-row p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.45;
}

.area-row__route {
  max-width: 145px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 700;
  text-align: right;
}

.nearby {
  display: flex;
  align-items: start;
  gap: 28px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.nearby > span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

.nearby ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nearby li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 650;
}

.directions__layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 100px;
}

.directions__steps {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.directions__steps > div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.directions__steps > div:last-child {
  border-bottom: 1px solid var(--line);
}

.directions__steps span {
  color: #1598aa;
  font-size: 0.68rem;
  font-weight: 800;
}

.directions__steps p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: #7a8493;
  font-size: 0.78rem;
}

.directions__steps strong {
  color: var(--ink);
}

.visit-card {
  position: relative;
  padding: 44px;
  overflow: hidden;
  background: var(--paper);
  border-top: 5px solid var(--magenta);
  box-shadow: 0 24px 65px rgba(11, 22, 39, 0.08);
}

.visit-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(240, 75, 135, 0.18);
  border-radius: 999px;
  content: "";
}

.visit-card__kicker {
  color: #a23b64;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-card h3 {
  margin: 42px 0 6px;
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.visit-card > p:not(.visit-card__kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.visit-card dl {
  display: grid;
  gap: 0;
  margin: 36px 0;
}

.visit-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.visit-card dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.visit-card dt {
  color: #8a93a0;
}

.visit-card dd {
  margin: 0;
  font-weight: 720;
  text-align: right;
}

.visit-card__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.visit-card__actions .button {
  min-height: 46px;
  font-size: 0.78rem;
}

.visit-card__actions > a:last-child {
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.business__card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.business__copy {
  padding: 64px;
}

.business__copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.business__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.business__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.business__benefits article {
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business__benefits article:nth-child(2n) {
  border-right: 0;
}

.business__benefits article:nth-child(n + 3) {
  border-bottom: 0;
}

.business__benefits span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
}

.business__benefits h3 {
  margin: 76px 0 8px;
  font-size: 1.12rem;
}

.business__benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.55;
}

.guide__layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: 90px;
}

.guide__intro {
  position: sticky;
  top: 120px;
}

.guide__help {
  display: grid;
  gap: 5px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide__help span {
  color: #8a92a0;
  font-size: 0.68rem;
}

.guide__help a {
  color: #077f91;
  font-size: 0.86rem;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary > span {
  color: #1598aa;
  font-size: 0.65rem;
}

.faq-list summary i {
  position: relative;
  width: 14px;
  height: 14px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 6px;
  left: 1px;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  max-width: 690px;
  margin: -8px 30px 28px 54px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #07101d;
  color: white;
  text-align: center;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5.4vw, 5.65rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.final-cta__ink {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.16;
}

.final-cta__ink--cyan {
  top: -220px;
  left: -130px;
  background: var(--cyan);
}

.final-cta__ink--magenta {
  right: -160px;
  bottom: -240px;
  background: var(--magenta);
}

footer {
  background: #030914;
  color: white;
}

.footer__top {
  display: grid;
  min-height: 180px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 55px;
}

.brand--footer .brand__text span {
  color: rgba(255, 255, 255, 0.58);
}

.footer__top > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer__top nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 650;
}

.footer__bottom {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.62rem;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .hero__copy {
    width: 64%;
  }

  .finder__form {
    grid-template-columns: 1fr 1.4fr 1fr;
  }

  .button--finder {
    grid-column: 1 / -1;
  }

  .choice__layout,
  .guide__layout {
    gap: 55px;
  }

  .local__content {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
  }

  .directions__layout {
    gap: 55px;
  }

  .business__copy {
    padding: 50px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 86px 0;
  }

  .service-strip__address {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .desktop-only,
  .header-actions .button .phone-pulse {
    display: none;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 88px;
  }

  .hero__image img {
    object-position: 65% bottom;
  }

  .hero__wash {
    background:
      linear-gradient(
        180deg,
        rgba(7, 16, 29, 0.99) 0%,
        rgba(7, 16, 29, 0.91) 44%,
        rgba(7, 16, 29, 0.28) 76%,
        rgba(7, 16, 29, 0.55) 100%
      );
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(3.4rem, 12.2vw, 5rem);
  }

  .hero__lead {
    max-width: 580px;
  }

  .finder-section {
    margin-top: -45px;
  }

  .finder {
    padding: 24px;
  }

  .finder__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .finder__model {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

  .intent-switch__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .intent-switch__label {
    grid-column: 1 / -1;
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cmy-showcase__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cmy-showcase__head > p {
    max-width: 620px;
  }

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

  .cmy-card {
    display: grid;
    grid-template-columns: minmax(230px, 0.9fr) 1.1fr;
  }

  .cmy-card__copy {
    display: flex;
    min-height: 0;
    justify-content: center;
    flex-direction: column;
    padding: 34px;
  }

  .section-intro--split,
  .choice__layout,
  .local__head,
  .local__content,
  .directions__layout,
  .business__card,
  .guide__layout {
    grid-template-columns: 1fr;
  }

  .section-intro--split {
    gap: 22px;
  }

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

  .path-card {
    min-height: 285px;
  }

  .path-card h3 {
    margin-top: 48px;
  }

  .choice__intro,
  .guide__intro {
    position: static;
  }

  .comparison {
    margin-top: 10px;
  }

  .local__head {
    gap: 30px;
  }

  .local__address {
    padding: 0;
    border-left: 0;
  }

  .local__content {
    gap: 34px;
  }

  .route-map {
    min-height: 440px;
  }

  .business__benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .business__benefits article {
    min-height: 205px;
  }

  .business__benefits h3 {
    margin-top: 50px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 0;
  }

  .footer__top nav {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(100% - 26px, 500px);
  }

  .section {
    padding: 72px 0;
  }

  .service-strip {
    display: none;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .brand small {
    display: none;
  }

  .brand__text {
    font-size: 1rem;
  }

  .brand__mark {
    width: 23px;
    height: 27px;
  }

  .brand__mark i {
    width: 6px;
  }

  .brand__mark i:nth-child(1) {
    height: 17px;
  }

  .brand__mark i:nth-child(2) {
    height: 24px;
  }

  .brand__mark i:nth-child(3) {
    height: 13px;
  }

  .header-actions .button {
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__inner {
    padding-top: 66px;
  }

  .hero__image img {
    object-position: 68% bottom;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.3vw, 4.3rem);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 34px;
  }

  .hero__proof span {
    padding: 0;
    border: 0;
    font-size: 0.62rem;
  }

  .finder-section {
    margin-top: -35px;
  }

  .finder {
    padding: 20px;
  }

  .finder__heading h2 {
    font-size: 1.4rem;
  }

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

  .finder__model,
  .button--finder {
    grid-column: 1;
    grid-row: auto;
  }

  .finder__result-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .intent-switch {
    padding-top: 24px;
  }

  .intent-switch__inner {
    grid-template-columns: 1fr;
  }

  .intent-switch__label,
  .intent-switch__item {
    grid-column: 1;
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intent-switch__item:last-child {
    border-bottom: 0;
  }

  .cmy-showcase {
    padding-top: 76px;
  }

  .cmy-showcase__head h2 {
    font-size: 3.1rem;
  }

  .cmy-card {
    display: block;
  }

  .cmy-card__copy {
    min-height: 150px;
    padding: 24px;
  }

  .cmy-showcase__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .finder__result-actions .button {
    width: 100%;
  }

  .section-intro h2,
  .choice__intro h2,
  .local h2,
  .directions h2,
  .business h2,
  .guide h2 {
    font-size: 2.35rem;
  }

  .path-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 250px;
  }

  .brand-card h3 {
    font-size: 2.3rem;
  }

  .brand-card a {
    right: auto;
    left: 30px;
  }

  .brand-ticker {
    gap: 11px;
  }

  .comparison-card {
    min-height: 330px;
    padding: 30px;
  }

  .route-map {
    min-height: 370px;
  }

  .area-row {
    grid-template-columns: 30px 1fr;
    padding: 20px 0;
  }

  .area-row__route {
    grid-column: 2;
    max-width: none;
    text-align: left;
  }

  .nearby {
    flex-direction: column;
    gap: 16px;
  }

  .directions__steps p {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 13px 0;
  }

  .visit-card {
    padding: 30px;
  }

  .visit-card__actions,
  .business__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-card__actions .button,
  .business__actions .button {
    width: 100%;
  }

  .business__copy {
    padding: 38px 28px;
  }

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

  .business__benefits article,
  .business__benefits article:nth-child(2n),
  .business__benefits article:nth-child(n + 3) {
    min-height: 185px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .business__benefits article:last-child {
    border-bottom: 0;
  }

  .business__benefits h3 {
    margin-top: 38px;
  }

  .faq-list summary {
    min-height: 100px;
    grid-template-columns: 28px 1fr 16px;
    font-size: 0.9rem;
  }

  .faq-list details > p {
    margin-left: 40px;
    font-size: 0.82rem;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: 2.8rem;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__top nav {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 18px 0;
  }

  .mobile-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 62px;
    grid-template-columns: 1fr 1fr;
    background: var(--warm-white);
    border-top: 1px solid rgba(11, 22, 39, 0.12);
    box-shadow: 0 -12px 30px rgba(11, 22, 39, 0.09);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-bar a:last-child {
    background: var(--ink);
    color: white;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
