@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --brand: #00b5da;
  --brand-bright: #22d5f3;
  --brand-dark: #007f9b;
  --brand-ink: #004f61;
  --ink: #07191f;
  --ink-soft: #42575e;
  --paper: #f8fbfc;
  --white: #ffffff;
  --line: rgba(7, 25, 31, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 30px 70px rgba(1, 51, 62, 0.14);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3.5px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(7, 25, 31, 0.08);
  background: rgba(248, 251, 252, 0.9);
  box-shadow: 0 10px 30px rgba(3, 44, 53, 0.06);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  position: relative;
  padding: 12px 18px;
  border-radius: 99px;
  color: #183238;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 18px;
  bottom: 7px;
  left: 18px;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.main-nav .nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 142px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 16%, rgba(0, 181, 218, 0.2), transparent 30%),
    linear-gradient(135deg, #f9fdfe 0%, #edfafd 56%, #f8fbfc 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(0, 127, 155, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 127, 155, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  top: 14%;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 62px solid rgba(0, 181, 218, 0.09);
  animation: orbit 12s ease-in-out infinite alternate;
}

.orb-two {
  bottom: 8%;
  left: -68px;
  width: 150px;
  height: 150px;
  background: rgba(34, 213, 243, 0.08);
  animation: float 8s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 610px;
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--brand);
}

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 7.1vw, 7rem);
}

h1 em,
h2 em {
  color: var(--brand);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 0;
  border-radius: 99px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.button-primary {
  background: var(--brand);
  box-shadow: 0 15px 34px rgba(0, 181, 218, 0.28);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--brand-bright);
  box-shadow: 0 18px 38px rgba(0, 181, 218, 0.35);
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 18px 35px rgba(7, 25, 31, 0.25);
  transform: translateY(-3px);
}

.text-link {
  border-bottom: 1px solid rgba(7, 25, 31, 0.25);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0 0;
  padding: 0;
  color: #365159;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 181, 218, 0.16);
  color: var(--brand-dark);
  font-size: 0.67rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  padding: 8px;
  border: 4px solid #102a31;
  border-radius: 36px;
  background: #0e272e;
  box-shadow: 0 48px 78px rgba(0, 65, 80, 0.27), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transform: rotate(1deg);
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-shell::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -36px;
  width: 84%;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 68, 82, 0.16);
  content: "";
  filter: blur(16px);
  transform: rotate(-3deg);
}

.phone-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
  background: #e7f7fa;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 11px;
  width: 6px;
  height: 54px;
  border-radius: 20px;
  background: #0b2229;
  transform: translateY(-50%);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 45px rgba(0, 72, 88, 0.16);
  backdrop-filter: blur(14px);
}

.float-card small,
.float-card strong {
  display: block;
  line-height: 1.25;
}

.float-card small {
  color: #6c7c80;
  font-size: 0.65rem;
}

.float-card strong {
  font-size: 0.84rem;
}

.card-location {
  top: 16%;
  left: -5%;
  animation: float 4.8s ease-in-out infinite;
}

.card-payment {
  right: -6%;
  bottom: 19%;
  animation: float 4.8s 1.1s ease-in-out infinite;
}

.float-icon,
.success-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50% 50% 50% 10%;
  background: var(--brand);
  color: var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.15rem;
}

.success-mark {
  border-radius: 50%;
  background: #dff9ef;
  color: #008d62;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.route-line {
  position: absolute;
  top: 16%;
  left: 10%;
  width: 80%;
  height: 68%;
  border: 2px dashed rgba(0, 127, 155, 0.25);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.route-line i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(0, 181, 218, 0.15);
}

.route-line i:nth-child(1) { top: 0; left: 43%; }
.route-line i:nth-child(2) { top: 49%; right: -5px; }
.route-line i:nth-child(3) { bottom: 0; left: 32%; }

.tap-hint {
  position: absolute;
  z-index: 6;
  right: 14%;
  top: 26%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 181, 218, 0.25);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tap-hint span {
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: var(--brand);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 24px;
  height: 37px;
  border: 1px solid rgba(7, 25, 31, 0.24);
  border-radius: 20px;
}

.scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--brand-dark);
  content: "";
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

.section {
  padding: 120px 0;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.split-heading > p,
.centered > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.how {
  position: relative;
  background: var(--white);
}

.how::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 92px;
  background: var(--brand);
  content: "";
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

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

.step-item {
  border-bottom: 1px solid var(--line);
}

.step-item:first-child {
  border-top: 1px solid var(--line);
}

.step-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 44px 1fr 26px;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
}

.step-number {
  color: #91a2a6;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.08rem;
  transition: color 0.3s ease;
}

.step-item strong,
.step-item small {
  display: block;
}

.step-item strong {
  font-size: 0.92rem;
}

.step-item small {
  margin-top: 2px;
  color: #718287;
  font-size: 0.72rem;
  line-height: 1.35;
}

.step-item i {
  color: var(--brand-dark);
  font-style: normal;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-item.is-active button,
.step-item button:hover {
  padding-inline: 13px;
  background: #effbfd;
}

.step-item.is-active .step-number {
  color: var(--brand-dark);
}

.step-item.is-active i {
  opacity: 1;
  transform: translateX(0);
}

.app-stage {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 650px;
  padding: 28px 30px 24px;
  align-items: center;
  justify-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 74% 21%, rgba(255, 255, 255, 0.55), transparent 25%),
    linear-gradient(145deg, #00b5da, #7ee9f5);
  overflow: hidden;
}

.app-stage::before,
.app-stage::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.app-stage::before {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
}

.app-stage::after {
  bottom: -140px;
  left: -80px;
  width: 340px;
  height: 340px;
}

.stage-label {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  justify-self: start;
  padding: 9px 14px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.77rem;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.stage-label b {
  min-width: 0;
  overflow-wrap: anywhere;
}

.stage-label span {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
}

.screen-stack {
  position: relative;
  z-index: 2;
  width: min(270px, 64%);
  aspect-ratio: 1290 / 2796;
  align-self: center;
}

.app-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 9px;
  border: 4px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 0 35px 70px rgba(0, 71, 86, 0.35);
  opacity: 0;
  transform: translateX(45px) rotate(5deg) scale(0.94);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-screen.is-active {
  opacity: 1;
  transform: translateX(0) rotate(-0.6deg) scale(1);
}

.app-screen img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: contain;
  object-position: top;
  background: #f8fbfc;
}

.stage-dots {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 5px;
  justify-self: end;
}

.stage-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(7, 25, 31, 0.28);
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.stage-dots span.is-active {
  width: 23px;
  border-radius: 5px;
  background: var(--ink);
}

.comparison {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.comparison::before {
  position: absolute;
  top: -190px;
  left: -100px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(0, 181, 218, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(0, 181, 218, 0.03), 0 0 0 110px rgba(0, 181, 218, 0.025);
  content: "";
}

.centered {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.light .section-kicker {
  color: var(--brand-bright);
}

.light > p {
  max-width: 550px;
  margin: 22px auto 0;
  color: #a7b8bc;
}

.comparison-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.11fr 1.11fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.2);
}

.comparison-head {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 13px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.criterion-head {
  color: #809397;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.self-head {
  background: var(--brand);
  color: var(--ink);
}

.operator-head {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.system-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
}

.system-icon.muted {
  background: rgba(255, 255, 255, 0.09);
  color: #a2b2b6;
}

.comparison-head small,
.comparison-head strong {
  display: block;
}

.comparison-head small {
  margin-bottom: 3px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.68;
  text-transform: uppercase;
}

.comparison-head strong {
  line-height: 1.3;
}

.compare-row {
  display: contents;
}

.criterion,
.compare-cell {
  display: flex;
  min-height: 105px;
  align-items: center;
  gap: 13px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-row:last-child > * {
  border-bottom: 0;
}

.criterion span {
  color: var(--brand);
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.84rem;
}

.criterion strong {
  font-size: 0.84rem;
  line-height: 1.35;
}

.compare-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-cell.positive {
  background: rgba(0, 181, 218, 0.08);
}

.compare-cell i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.positive i {
  background: var(--brand);
  color: var(--ink);
}

.neutral i {
  background: rgba(255, 255, 255, 0.08);
  color: #95a6aa;
}

.compare-cell p {
  margin: 0;
  color: #c2ced1;
  font-size: 0.82rem;
  line-height: 1.55;
}

.positive p {
  color: #e2f8fc;
}

.benefits {
  background: #f3f8f9;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(7, 25, 31, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 181, 218, 0.4);
  box-shadow: 0 24px 50px rgba(2, 69, 83, 0.09);
  transform: translateY(-6px);
}

.benefit-card.featured {
  background: var(--brand);
}

.benefit-index {
  color: #87979b;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.8rem;
}

.featured .benefit-index {
  color: var(--brand-ink);
}

.benefit-card h3 {
  margin: 75px 0 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: #63767b;
  font-size: 0.84rem;
  line-height: 1.65;
}

.featured p {
  color: var(--brand-ink);
}

.card-arrow {
  position: absolute;
  right: 25px;
  bottom: 23px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.signal-bars {
  position: absolute;
  top: 25px;
  right: 27px;
  display: flex;
  height: 45px;
  align-items: flex-end;
  gap: 5px;
}

.signal-bars i {
  width: 7px;
  border-radius: 5px;
  background: rgba(7, 25, 31, 0.82);
  animation: signal 1.8s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) { height: 25%; }
.signal-bars i:nth-child(2) { height: 45%; animation-delay: 0.2s; }
.signal-bars i:nth-child(3) { height: 70%; animation-delay: 0.4s; }
.signal-bars i:nth-child(4) { height: 100%; animation-delay: 0.6s; }

.mini-icon {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #e9f9fc;
}

.trace {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.trace i {
  width: 7px;
  height: 7px;
  border: 2px solid var(--brand-dark);
  border-radius: 50%;
}

.trace i + i::before {
  position: absolute;
  width: 5px;
  height: 2px;
  margin: 1px 0 0 -7px;
  background: var(--brand-dark);
  content: "";
}

.shield {
  display: grid;
  place-items: center;
  border-radius: 50% 50% 45% 45%;
  color: var(--brand-dark);
  font-weight: 800;
}

.speed {
  display: grid;
  place-items: center;
}

.speed::before {
  position: absolute;
  width: 26px;
  height: 13px;
  border: 3px solid var(--brand-dark);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
  content: "";
}

.speed i {
  width: 3px;
  height: 15px;
  margin-top: 10px;
  background: var(--brand-dark);
  transform: rotate(38deg);
  transform-origin: top;
}

.benefit-card.wide {
  display: grid;
  min-height: 230px;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 35px;
}

.benefit-card.wide h3 {
  margin-top: 55px;
}

.data-viz {
  display: flex;
  height: 120px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 10px 0 20px;
  border-bottom: 1px solid var(--line);
}

.data-viz span {
  width: 25px;
  height: var(--value);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--brand-bright), var(--brand));
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.benefit-card:hover .data-viz span {
  transform: scaleY(1.08);
}

.debt-section {
  padding: 45px 0 120px;
  background: #f3f8f9;
}

.debt-card {
  position: relative;
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 70px 8%;
  border-radius: var(--radius-lg);
  background: var(--brand);
  overflow: hidden;
}

.debt-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 25%, black);
}

.debt-copy {
  position: relative;
  z-index: 2;
}

.debt-copy .section-kicker {
  color: var(--brand-ink);
}

.debt-copy h2 {
  margin-top: 15px;
  color: var(--ink);
  font-size: clamp(3.6rem, 5.5vw, 5.7rem);
}

.debt-copy h2 em {
  color: var(--white);
}

.debt-copy p {
  max-width: 460px;
  margin: 22px 0 28px;
  color: var(--brand-ink);
}

.debt-copy > small {
  display: block;
  margin-top: 13px;
  color: var(--brand-ink);
  font-size: 0.69rem;
}

.debt-ticket {
  position: relative;
  z-index: 2;
  width: min(360px, 90%);
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 38px 65px rgba(0, 85, 102, 0.24);
  transform: rotate(3deg);
  transition: transform 0.4s ease;
}

.debt-card:hover .debt-ticket {
  transform: rotate(0) translateY(-5px);
}

.ticket-top,
.ticket-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-top {
  padding-bottom: 17px;
  border-bottom: 1px dashed #c6d2d5;
  color: #7b8c90;
  font-size: 0.7rem;
}

.ticket-top b {
  color: var(--brand-dark);
  letter-spacing: 0.06em;
}

.ticket-amount {
  padding: 30px 0;
  text-align: center;
}

.ticket-amount small,
.ticket-amount strong {
  display: block;
}

.ticket-amount small {
  color: #7b8c90;
  font-size: 0.7rem;
}

.ticket-amount strong {
  margin-top: 3px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1;
}

.ticket-line {
  padding: 12px 0;
  border-top: 1px solid #e5ebec;
  color: #62767b;
  font-size: 0.75rem;
}

.ticket-line b {
  color: var(--ink);
}

.ticket-line .pending {
  padding: 4px 8px;
  border-radius: 99px;
  background: #fff2dc;
  color: #b56b00;
  font-size: 0.62rem;
}

.ticket-button {
  display: flex;
  margin-top: 17px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #eafafd;
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 800;
}

.contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(3.8rem, 5.5vw, 5.8rem);
}

.contact-copy > p {
  max-width: 430px;
  margin: 25px 0 34px;
  color: var(--ink-soft);
}

.email-link {
  display: flex;
  align-items: center;
  gap: 13px;
}

.email-link > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e9f9fc;
  color: var(--brand-dark);
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.email-link:hover > span {
  background: var(--brand);
  color: var(--ink);
  transform: rotate(-8deg);
}

.email-link small,
.email-link strong {
  display: block;
}

.email-link small {
  color: #839397;
  font-size: 0.66rem;
}

.email-link strong {
  font-size: 0.84rem;
}

.contact-form {
  padding: 42px;
  border: 1px solid rgba(7, 25, 31, 0.08);
  border-radius: 30px;
  background: #f6fafb;
  box-shadow: 0 25px 65px rgba(2, 59, 71, 0.08);
}

.form-row {
  position: relative;
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: #334e55;
  font-size: 0.75rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8e3e5;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-row input {
  height: 55px;
  padding: 0 16px;
}

.form-row textarea {
  min-height: 145px;
  padding: 15px 16px 28px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 181, 218, 0.12);
}

.char-count {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #9aabad;
  font-size: 0.64rem;
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: 13px 0 0;
  color: #8a9a9e;
  font-size: 0.66rem;
  text-align: center;
}

.site-footer {
  padding: 35px 0 25px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 55px;
}

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

.footer-top > p {
  margin: 0;
  color: #a7b9bd;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: #dce7e9;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #829599;
  font-size: 0.68rem;
}

.footer-bottom a {
  color: #c6d6d9;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  display: flex;
  max-width: 360px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.toast > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
}

.toast p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-11px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes orbit {
  from { transform: translate(0, 0) rotate(0); }
  to { transform: translate(-25px, 30px) rotate(35deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 181, 218, 0.16); transform: scale(0.92); }
  50% { box-shadow: 0 0 0 16px rgba(0, 181, 218, 0); transform: scale(1); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, -2px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes signal {
  from { opacity: 0.45; transform: scaleY(0.7); }
  to { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }

  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 680px; text-align: center; justify-self: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 610px; }
  .card-location { left: 10%; }
  .card-payment { right: 8%; }
  .scroll-cue { display: none; }

  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 620px; }
  .steps-layout { grid-template-columns: 1fr; gap: 48px; }
  .steps-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .step-item, .step-item:first-child { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
  .app-stage { min-height: 620px; }

  .comparison-board { grid-template-columns: 0.7fr 1.15fr 1.15fr; }
  .comparison-head, .criterion, .compare-cell { padding: 17px; }

  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card.wide { grid-column: span 2; }

  .debt-card { grid-template-columns: 1fr 0.8fr; padding: 60px 6%; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 600px); }
  html { scroll-padding-top: 78px; }

  .nav-wrap { min-height: 72px; }
  .brand img { width: 112px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 90px 30px 40px;
    background: rgba(248, 251, 252, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-family: "Anton", Impact, sans-serif; font-size: 2.1rem; font-weight: 400; text-transform: uppercase; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { margin: 10px 0; padding: 15px 20px; border: 0; border-radius: 14px; text-align: center; }

  .hero { min-height: auto; padding: 115px 0 80px; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.7rem); }
  .hero-lead { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; max-width: 330px; }
  .hero-proof { gap: 10px 16px; }
  .hero-visual { min-height: 560px; }
  .phone-shell { width: min(620px, 100%); }
  .card-location { top: 22%; left: -2%; }
  .card-payment { right: -2%; bottom: 22%; }
  .route-line { left: 0; width: 100%; }
  .tap-hint { display: none; }

  .section { padding: 88px 0; }
  .section-heading h2 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
  .split-heading { margin-bottom: 45px; }
  .steps-list { grid-template-columns: 1fr; }
  .step-item button { padding: 20px 12px; }
  .app-stage { min-height: 570px; border-radius: 28px; }
  .screen-stack { width: 255px; }

  .comparison { padding-inline: 0; }
  .comparison-board { display: block; border: 0; background: transparent; overflow: visible; }
  .comparison-head.criterion-head { display: none; }
  .comparison-head { border: 0; border-radius: 15px 15px 0 0; }
  .operator-head { margin-top: 28px; background: rgba(255,255,255,0.06); }
  .compare-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .criterion { grid-column: span 2; min-height: auto; padding: 19px 5px 8px; border: 0; }
  .compare-cell { min-height: 132px; padding: 17px; border-bottom: 0; }
  .compare-cell.positive { border-left: 3px solid var(--brand); }
  .compare-cell p { font-size: 0.76rem; }

  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 280px; }
  .benefit-card.wide { grid-column: auto; grid-template-columns: 1fr; min-height: 360px; }

  .debt-section { padding-bottom: 88px; }
  .debt-card { grid-template-columns: 1fr; gap: 55px; padding: 55px 25px; border-radius: 28px; text-align: center; }
  .debt-copy p { margin-inline: auto; }
  .debt-copy h2 { font-size: clamp(3.4rem, 15vw, 4.8rem); }
  .debt-ticket { margin: 0 auto; text-align: left; transform: rotate(1deg); }

  .contact-copy { text-align: center; }
  .contact-copy > p { margin-inline: auto; }
  .email-link { justify-content: center; text-align: left; }
  .contact-form { padding: 25px 20px; }

  .footer-top { grid-template-columns: 1fr; justify-items: center; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 430px) {
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .float-card { padding: 10px 11px; }
  .float-card small { font-size: 0.58rem; }
  .float-card strong { font-size: 0.73rem; }
  .float-icon, .success-mark { width: 31px; height: 31px; }
  .phone-shell { width: 100%; border-radius: 24px; }
  .phone-shell video { border-radius: 16px; }
  .hero-visual { min-height: 510px; }
  .app-stage { min-height: 520px; }
  .screen-stack { width: 225px; }
  .compare-cell { padding: 13px 10px; }
  .compare-cell i { display: none; }
  .toast { right: 14px; bottom: 14px; left: 14px; }
}

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