:root {
  --bg: #f7fafe;
  --blue: #0695ea;
  --red: #ea0b07;
  --red-deep: #e00805;
  --grad: linear-gradient(90deg, #0695ea 0%, #ea0b07 100%);
  --ink: #000000;
  --gray: #777777;
  --light-gray: #b8b8b8;
  --eyebrow: #006cac;
  --chip-bg: #e9f1dc;
  --chip-ink: #3f6b2c;
  --wait-green: #265b19;
  --alert-ink: #a91818;
  --alert-bg: #fdf5f5;
  --card-r: 24px;
  --amber: #d98a1f;
  --tick-red: #e24b4a;
  --tick-green: #0e9e70;
  --container: 1650px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.digital {
  font-family: 'DSEG7 Classic', 'Roboto Mono', monospace;
  font-weight: 700
}

/* ============ HEADER ============ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 52px;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px
}

.logo {
  display: block;
  line-height: 1;
  flex: 0 0 auto
}

.logo-art {
  position: relative;
  display: block;
  width: 110px
}

.logo-art img {
  width: 100%;
  height: auto;
  display: block
}

/* animated LCD overlaid on the logo's digital display (Figma: masked column 00:00 ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ 00:30, 1 tick/second) */
.logo .lcd {
  position: absolute;
  left: 33.4%;
  top: 9.4%;
  width: 33.8%;
  height: 11.8%;
  background: #fbfbfb;
  border-radius: 4px;
  color: var(--red);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
}

.lcd-list {
  display: block;
  animation: lcdScroll 31s steps(31, end) infinite;
  font-size: 9px;
  letter-spacing: 1px;
  text-align: center
}

.lcd-list span {
  display: block;
  height: 13px;
  line-height: 13px
}

@keyframes lcdScroll {
  to {
    transform: translateY(-403px)
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto
}

.main-nav a.nav-link {
  font-size: 20px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s
}

.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--grad);
  transition: width .25s
}

.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after {
  width: 100%
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  padding: 16px 58px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(234, 11, 7, .28)
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 942px;
  padding-top: 232px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #f7fafe 0%, #f7fafe 42%, rgba(247, 250, 254, .55) 62%, rgba(247, 250, 254, .05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 30%),
    url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=1920&q=70') center right / cover no-repeat,
    linear-gradient(115deg, #eef4fb 0%, #dfe7f0 60%, #c9d2db 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -1;
  pointer-events: none
}

.hero-glow.blue {
  width: 647px;
  height: 647px;
  background: var(--blue);
  opacity: .35;
  top: -328px;
  left: -330px
}

.hero-glow.red {
  width: 647px;
  height: 647px;
  background: var(--red-deep);
  opacity: .25;
  top: 621px;
  right: -324px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  /* gap: 60px; */
  align-items: start
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(6, 60, 110, .08);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tick-green);
  flex: 0 0 auto;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 158, 112, .5)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(14, 158, 112, 0)
  }
}

.hero h1 {
  font-size: clamp(44px, 4.6vw, 80px);
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -.5px;
  margin-top: 34px;
  max-width: 800px;
}

.hero h1 .grad-word {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero .lede {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 776px;
  margin-top: 22px
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  padding: 9px 9px 9px 26px;
  font-size: 18px;
  font-weight: 500;
  transition: transform .2s, box-shadow .2s;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3)
}

.btn-download .label {
  margin-right: 14px
}

.btn-download .store-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-download .store-circle svg {
  width: 19px;
  height: 19px;
  fill: var(--ink)
}

.btn-download.inverse {
  background: #fff;
  color: var(--ink)
}

.btn-download.inverse .store-circle {
  background: var(--ink)
}

.btn-download.inverse .store-circle svg {
  fill: #fff
}

.hero-cta .cta-note {
  font-size: 20px;
  font-weight: 300
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: 52px
}

.hero-stats .stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 20px;
  padding-right: 24px
}

.hero-stats .stat b {
  font-weight: 500
}

.hero-stats .stat span {
  font-weight: 300
}

.hero-stats .vline {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, .35);
  margin-right: 24px
}
.phone-screen img {
    width: 85%;
    /* min-height: 512px; */
    object-fit: cover;
}
/* ============ PHONE MOCKUP (shared) ============ */
.phone {
  position: relative;
  width: 337px;
  margin: 0 141px 0px auto;
  /* background: #fff; */
  border-radius: 34px;
  height: 620px;
  /* box-shadow: 0 30px 80px rgba(10, 40, 80, .25); */
  font-size: 12px;
  overflow: visible;
  height: 540px;
}

.phone .side-btn {
  /* position: absolute; */
  /* background: #111; */
  /* border-radius: 4px; */
  /* width: 4px; */
}

.phone .sb-1 {
  /* left: -4px; */
  /* top: 72px; */
  /* height: 21px; */
}

.phone .sb-2 {
  /* left: -4px; */
  /* top: 109px; */
  /* height: 39px; */
}

.phone .sb-3 {
  /* left: -4px; */
  /* top: 161px; */
  /* height: 39px; */
}

.phone .sb-r {
  /* right: -4px; */
  /* top: 188px; */
  /* height: 65px; */
  /* left: auto; */
}

.phone.light-btn .side-btn {
  background: #ddd
}

.phone-screen {
  position: relative;
  width: 100%;
  /* height: 100%; */
  /* border-radius: 34px; */
  overflow: hidden;
  /* background: #fff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  padding: 0 22px;
  flex: 0 0 auto;
  position: relative;
  z-index: 6;
  background: transparent;
}

.statusbar .time {
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, 'Roboto', sans-serif;
  color: #111
}

.statusbar .sicons {
  display: flex;
  align-items: center;
  gap: 5px
}

.statusbar .sicons svg {
  display: block
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 91px;
  height: 27px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 7;
}

/* --- hero phone app UI --- */
.app-alert {
  background: var(--alert-bg);
  color: var(--alert-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 15px;
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 4px;
  position: relative;
  z-index: 5
}

.app-head .title {
  font-size: 17px;
  font-weight: 500
}

.app-head .avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #f9f9f9 url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=80&q=60') center/cover;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}

.app-head .avatar .bell {
  position: absolute;
  right: -8px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.app-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  padding: 4px 15px 10px;
  position: relative;
  z-index: 5
}

.app-map {
  position: relative;
  height: 196px;
  flex: 0 0 auto;
  margin-top: -136px;
  padding-top: 136px;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .55) 26%, rgba(255, 255, 255, 0) 45%),
    #e8ecef;
}

.map-canvas {
  position: absolute;
  inset: 0;
  z-index: 0
}

.h-pin {
  position: absolute;
  width: 18px;
  height: 22px;
  z-index: 2;
}

.h-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  clip-path: path('M9 0C4 0 0 4 0 9c0 6.5 9 13 9 13s9-6.5 9-13c0-5-4-9-9-9z');
}

.h-pin::after {
  content: "H";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.h-pin .ring {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(6, 149, 234, .45);
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

.map-btn {
  position: absolute;
  right: 15px;
  bottom: 14px;
  background: #fff;
  border-radius: 100px;
  font-size: 10px;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
  z-index: 3;
}

.app-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 0;
  flex: 0 0 auto
}

.pill {
  border-radius: 100px;
  font-size: 10px;
  padding: 6px 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pill.solid {
  background: var(--blue);
  color: #fff;
  font-weight: 600
}

.pill.ghost {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .1)
}

.clinic-card {
  background: #f9f9f9;
  border-radius: 13px;
  margin: 13px 15px 0;
  padding: 11px 14px;
  flex: 0 0 auto;
}

.clinic-card .row1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}

.clinic-card .cname {
  font-size: 13px;
  font-weight: 500
}

.clinic-card .cmeta {
  font-size: 10px;
  margin-top: 3px
}

.clinic-card .status {
  background: var(--chip-bg);
  color: var(--chip-ink);
  font-size: 9px;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 9px;
  white-space: nowrap
}

.clinic-card .row2 {
  margin-top: 13px
}

.clinic-card .wait {
  font-size: 13px;
  font-weight: 600;
  color: var(--wait-green)
}

.clinic-card .wait small {
  font-size: 9px;
  font-weight: 400;
  color: var(--ink);
  margin-left: 4px
}

.clinic-card .updated {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px
}

.app-tabbar {
  margin-top: auto;
  background: #fff;
  border-radius: 17px 17px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 12px 20px 6px;
  flex: 0 0 auto;
  position: relative;
}

.app-tabbar .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--light-gray)
}

.app-tabbar .tab.on {
  color: var(--ink);
  font-weight: 500
}

.app-tabbar .homebar {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: #111
}

/* ============ TICKER ============ */
.ticker {
  background: #fff;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04)
}

.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tick 10s linear infinite;
  padding-left: 0;
  will-change: transform
}

.ticker:hover .ticker-track {
  animation-play-state: paused
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  flex: 0 0 auto
}

.tick-item .tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto
}

.tdot.amber {
  background: var(--amber)
}

.tdot.tred {
  background: var(--tick-red)
}

.tdot.tgreen {
  background: var(--tick-green)
}

/* ============ SECTIONS shared ============ */
.section {
  padding-top: 120px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--eyebrow);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--grad);
  flex: 0 0 auto
}

.section-title {
  font-size: clamp(32px, 2.9vw, 50px);
  font-weight: 300;
  line-height: 1.18;
  margin-top: 18px
}

.section-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 1108px
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
  margin-top: 66px
}

.feature-card {
  background: #fff;
  border-radius: var(--card-r);
  padding: 37px 44px 44px;
  min-height: 260px;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid #00000029;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(6, 60, 110, .10)
}

.feature-card .icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000029;
}

.feature-card .icon-tile svg {
  width: 28px;
  height: 28px
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px
}

.feature-card p {
  font-size: 18px;
  line-height: 1.18;
  margin-top: 12px
}

/* ============ GRADIENT BANNER ============ */
.banner-wrap {
  margin-top: 100px
}

.banner {
  position: relative;
  border-radius: var(--card-r);
  overflow: hidden;
  background: var(--grad);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.banner::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  bottom: -10px;
  width: 52%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .62) 60%, rgba(255, 255, 255, .62) 100%),    url(../images/different.png) right/cover;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 96px;
  max-width: 900px
}

.banner-content h2 {
  font-size: clamp(32px, 2.9vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  max-width: 803px
}

.banner-content p {
  font-size: 18px;
  line-height: 1.65;
  margin-top: 30px;
  max-width: 722px
}

/* ============ HOW IT WORKS ============ */
.steps-wrap {
  position: relative;
  margin-top: 80px;
  padding-bottom: 120px
}

.timeline {
  position: relative;
  max-width: 560px;
  margin-left: calc(50% - 9px);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  bottom: 9px;
  width: 2px;
  /* background-color: #00000029; */
  border-left: 2px dashed #00000029;
}

.step {
  position: relative;
  padding-left: 89px;
  padding-bottom: 160px
}

.step:last-child {
  padding-bottom: 0
}

.step .node {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* background: var(--grad); */
  box-shadow: 0 0 0 6px var(--bg);
  background: linear-gradient(66.37deg, #0695EA -73.15%, #EA0B07 121.87%);
}

.step .step-tag {
  font-size: 20px;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 60px
}

.step p {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 10px;
  max-width: 460px
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  position: relative;
  /* background: linear-gradient(180deg, #fff, #fdfdff); */
  padding: 120px 0 130px;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .85) 72%, #ffffff 100%), linear-gradient(0deg, rgb(255 255 255 / 25%), rgb(255 255 255 / 2%)), url(../images/test-bg.png) left / contain;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  opacity: .55;
  background-repeat: no-repeat;
}

.testimonials .container {
  position: relative;
  z-index: 1
}

.testi-head {
  margin-left: 34%;
}

.testi-track-wrap {
  overflow: hidden;
  margin-top: 60px;
  margin-left: 34%
}

.testi-track {
  display: flex;
  gap: 33px;
  transition: transform .5s cubic-bezier(.22, .8, .3, 1)
}

.testi-card {
  flex: 0 0 calc(50% - 17px);
  background: #fff;
  border-radius: var(--card-r);
  padding: 43px 44px 44px;
  min-height: 300px;
  box-shadow: 0 14px 40px rgba(6, 60, 110, .08);
  display: flex;
  flex-direction: column;
}

.testi-card blockquote {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400
}

.testi-card .person {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 36px
}

.testi-card .pavatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  background: linear-gradient(66.37deg, #0695EA -73.15%, #EA0B07 121.87%);
}

.testi-card .pname {
  font-size: 20px
}

.testi-card .prole {
  font-size: 16px;
  color: var(--gray);
  margin-top: 2px
}

.testi-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 44px
}

.testi-nav button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, opacity .2s;
}

.testi-nav button:hover {
  /* transform: scale(1.06); */
}

.testi-nav .prev {
  background: #000;
  opacity: 1;
}

.testi-nav .next {
  background: linear-gradient(66.37deg, #0695EA -73.15%, #EA0B07 121.87%);
}

.testi-nav svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.testi-nav button:disabled {
  opacity: 1;
  cursor: default;
  transform: none
}

/* ============ CTA (black) ============ */
.cta-wrap {
  padding-top: 0
}

.cta {
  position: relative;
  border-radius: var(--card-r);
  background: #000;
  overflow: hidden;
  min-height: 540px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px 96px;
  padding-bottom: unset;
  padding-top: unset;
}

.cta .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none
}

.cta .glow.b {
  width: 533px;
  height: 533px;
  background: var(--blue);
  opacity: .55;
  left: -267px;
  top: -267px
}

.cta .glow.r {
  width: 621px;
  height: 621px;
  background: var(--red-deep);
  opacity: .55;
  right: -140px;
  top: 157px
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 722px
}

.cta-content h2 {
  font-size: clamp(32px, 2.9vw, 50px);
  font-weight: 300;
  line-height: 1.2
}

.cta-content p {
  font-size: 18px;
  line-height: 1.65;
  margin-top: 22px
}

.cta-content .hero-cta {
  margin-top: 48px
}

.cta .phone {
  z-index: 1
}

/* waiting-details phone */
.wd-topimg {
  position: relative;
  /* height: 212px; */
  flex: 0 0 auto;
  margin-top: 0px;
  padding-top: 37px;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .25) 40%, rgba(255, 255, 255, 0)), #e8ecef; */
}

.wd-topimg .backrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  z-index: 3
}

.wd-topimg .backrow .bname {
  font-size: 12px;
  font-weight: 500
}

.wd-topimg .bkmark {
  position: absolute;
  right: 15px;
  top: 45px;
  width: 28px;
  height: 28px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}

.wd-card {
  background: #f9f9f9;
  border-radius: 13px;
  margin: 17px 15px 0;
  padding: 12px 14px;
  flex: 0 0 auto
}

.wd-card .wait {
  font-size: 13px;
  font-weight: 600;
  color: var(--wait-green)
}

.wd-card .wait small {
  font-size: 9px;
  font-weight: 400;
  color: var(--ink);
  margin-left: 4px
}

.wd-card .updated {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 14px;
  height: 40px
}

.bars .bcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  height: 100%
}

.bars .bar {
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg, #dddddd, #9a9a9a)
}

.bars .bar.hot {
  background: linear-gradient(135deg, var(--blue), var(--red))
}

.bars .blabel {
  font-size: 7px;
  font-weight: 500
}

.wd-card .busy {
  font-size: 10px;
  font-weight: 500;
  margin-top: 8px
}

.wd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 15px 0
}

.wd-chips .chip {
  background: var(--chip-bg);
  color: var(--chip-ink);
  font-size: 9px;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 9px
}

.wd-row {
  background: #fff;
  border-radius: 13px;
  margin: 9px 15px 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
  flex: 0 0 auto;
}

.wd-row .k {
  font-weight: 500
}

.wd-row .v {
  margin-left: auto
}

.wd-row .v.link {
  color: var(--blue);
  font-weight: 500
}

.wd-check {
  margin: 14px 15px 12px;
  background: #000;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 11px;
  flex: 0 0 auto;
}

.phone .homebar-b {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: #111;
  z-index: 5
}

/* ============ SAFETY ALERT ============ */
.safety-wrap {
  padding-top: 40px
}

.safety-bar {
  background: rgba(234, 11, 7, .08);
  border-radius: var(--card-r);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 45px;
}

.safety-bar .aicon {
  flex: 0 0 auto;
  margin-top: 4px
}

.safety-bar p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--alert-ink)
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  margin-top: 80px;
  overflow: hidden
}

.footer-top-line,
.footer-bottom-line {
  height: 1px;
  border-top: 1px dashed #0000004d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.f-brand p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 388px
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px
}

.store-badge {
  display: inline-flex;
  align-items: center;
  /* gap: 12px; */
  /* background: #000; */
  color: #fff;
  border-radius: 9px;
  /* padding: 9px 20px; */
  /* min-width: 162px; */
  /* transition: transform .2s; */
}

.store-badge:hover {
  transform: translateY(-2px)
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto
}

.store-badge .lines small {
  display: block;
  font-size: 10px;
  letter-spacing: .3px;
  opacity: .85
}

.store-badge .lines b {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15
}

.f-col h4 {
  font-size: 24px;
  font-weight: 500
}

.f-col ul {
  list-style: none;
  margin-top: 26px
}

.f-col ul li {
  margin-bottom: 16px
}

.f-col ul a {
  font-size: 18px;
  position: relative;
  transition: color .2s
}

.f-col ul a:hover {
  color: var(--eyebrow)
}

.f-contact li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px
}

.f-social .socials {
  display: flex;
  gap: 16px;
  margin-top: 26px
}

.f-social .socials a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-social .socials a:hover {
  transform: translateY(-3px)
}

.f-social .socials svg {
  width: 29px;
  height: 29px;
  fill: var(--ink)
}

.footer-copy {
  text-align: center;
  font-size: 18px;
  padding: 32px 0 40px;
  position: relative;
  z-index: 1
}

.footer-doodle {
  position: absolute;
  left: -65px;
  bottom: 0px;
  width: 577px;
  height: auto;
  /* opacity: .55; */
  pointer-events: none;
  z-index: 0;
  height: 477px;
  object-fit: contain;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============ RESPONSIVE ============ */
@media(max-width:1500px) {
  .hero h1 {
    max-width: 640px
  }

  .banner-content {
    padding: 70px 60px
  }
}

@media(max-width:1200px) {
  .main-nav a.nav-link {
    font-size: 17px
  }

  .main-nav {
    gap: 22px
  }

  .btn-gradient {
    padding: 14px 36px;
    font-size: 16px
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-head,
  .testi-track-wrap {
    margin-left: 0
  }

  .testimonials::before {
    width: 100%;
    opacity: .14;
    -webkit-mask-image: none;
    mask-image: none
  }

  .cta {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 70px 40px;
    text-align: left
  }

  .timeline {
    margin-left: 0;
    max-width: 640px
  }
}

@media(max-width:992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: start
  }

  .hero .phone {
    justify-self: center
  }

  .hero {
    padding-top: 190px;
    min-height: 0
  }

  .site-header {
    padding-top: 24px
  }

  .nav-toggle {
    display: block
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(247, 250, 254, .98);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateY(-100%);
    transition: transform .35s ease;
    z-index: 55;
    margin: 0;
  }

  .main-nav.open {
    transform: none
  }

  .main-nav a.nav-link {
    font-size: 24px
  }

  .banner::after {
    width: 100%;
    opacity: .3;
    -webkit-mask-image: none;
    mask-image: none
  }

  .banner-content {
    max-width: 100%
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:680px) {
  .section {
    padding-top: 80px
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .feature-card {
    padding: 28px;
    min-height: 0
  }

  .hero h1 {
    font-size: 40px
  }

  .hero-stats .stat {
    font-size: 16px;
    padding-right: 14px
  }

  .hero-stats .vline {
    margin-right: 14px
  }

  .banner-content {
    padding: 48px 28px
  }

  .banner-content p {
    margin-top: 20px
  }

  .step {
    padding-left: 52px;
    padding-bottom: 80px
  }

  .step h3 {
    margin-top: 26px
  }

  .testi-card {
    flex: 0 0 100%
  }

  .cta {
    padding: 54px 24px
  }

  .safety-bar {
    padding: 22px 20px;
    gap: 14px
  }

  .safety-bar p {
    font-size: 15px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 40px
  }

  .footer-doodle {
    width: 360px;
    left: -90px;
    bottom: -40px;
    opacity: .5
  }

  .footer-copy {
    font-size: 15px
  }

  .hero-cta {
    gap: 14px
  }
}

.btn-download .store-circle img {
    width: 19px;
    height: 20px;
    object-fit: contain;
}
.ft-log {
    display: flex;
    gap: 20px;
}
.f-social .socials a i {
    font-size: 18px;
    color: #fff;
}
.store-badge img {
    width: 162px;
}
.feature-card .icon-tile img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.cta-wrap .phone-screen img {
    width: 100%;
}