:root {
  --ink: #071319;
  --ink2: #0d2027;
  --paper: #f4f8f5;
  --card: #ffffff;
  --mint: #86ffbf;
  --aqua: #44e0d0;
  --orange: #ff8a3d;
  --muted: #678087;
  --line: rgba(7, 19, 25, .12);
  --shadow: 0 24px 60px rgba(6, 25, 29, .12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden
}

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

button,
input,
select,
textarea {
  font: inherit
}

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

main>section {
  content-visibility: auto;
  contain-intrinsic-size: 800px
}

.heading-stacked {
  display: block;
  margin-bottom: 20px
}

.heading-stacked-basic {
  display: block
}

.text-spaced {
  margin-top: 16px
}

.accent-eyebrow {
  color: var(--mint)
}

.section-tight-top {
  padding-top: 20px
}

.explore-link-wrap {
  margin-top: 24px
}

.centered,
.centered-heading {
  text-align: center
}

.centered-heading {
  display: block
}

.centered-h2 {
  margin: auto
}

.footer-about {
  max-width: 360px
}

.modal-copy {
  color: var(--muted)
}

.modal-action {
  margin-top: 16px
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap
}

.coverage-results {
  margin-top: 20px;
  display: grid;
  gap: 10px
}

.compact-service {
  min-height: auto;
  padding: 18px
}

.no-margin {
  margin-bottom: 0
}

.accessory-symbol {
  font-size: 90px
}

.mobile-art {
  min-height: 390px;
  background: radial-gradient(circle at 50% 40%, #ffd2af, #ff8a3d 35%, #33150d 72%)
}

.phone-layer-image {
  height: 360px;
  width: auto
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(134, 255, 191, .13)
}

.topbar {
  background: #061015;
  color: #d4e3e5;
  font-size: 12px;
  padding: 9px 0
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.topbar b {
  color: var(--mint)
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(244, 248, 245, .86);
  backdrop-filter: blur(18px);
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: .25s
}

.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .05)
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: -.05em;
  font-size: 22px
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--ink);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08)
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: var(--mint);
  transform: rotate(-26deg)
}

.brand-mark:before {
  width: 20px;
  height: 7px;
  left: 9px;
  top: 10px
}

.brand-mark:after {
  width: 20px;
  height: 7px;
  left: 9px;
  top: 21px;
  background: var(--orange)
}

.navlinks {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 760
}

.navlinks a {
  opacity: .72;
  transition: .2s
}

.navlinks a:hover,
.navlinks a.active {
  opacity: 1
}

.nav-actions {
  display: flex;
  gap: 10px
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .38) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
  z-index: 0
}

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

.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(7, 19, 25, .16)
}

.btn-mint {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(63, 223, 158, .20)
}

.btn-light {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink)
}

.menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font-size: 20px
}

.hero {
  position: relative;
  background: var(--ink);
  color: white;
  min-height: 690px;
  overflow: hidden;
  border-radius: 0 0 44px 44px
}

.hero:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  right: -110px;
  top: -190px;
  background: radial-gradient(circle, rgba(68, 224, 208, .2), rgba(68, 224, 208, 0) 66%);
  animation: ambient-drift 11s ease-in-out infinite alternate
}

.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: -280px;
  bottom: -290px;
  background: radial-gradient(circle, rgba(255, 138, 61, .18), transparent 68%);
  animation: ambient-drift 14s ease-in-out -4s infinite alternate-reverse
}

.pill .dot {
  animation: signal-pulse 2.4s ease-out infinite
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  min-height: 610px;
  padding: 70px 0 60px
}

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

.hero h1 {
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: .92;
  letter-spacing: -.07em;
  margin: 20px 0 22px;
  max-width: 760px
}

.hero h1 span {
  color: var(--mint)
}

.hero p {
  color: #b9cbcf;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

.hero .btn-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: white
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: #d5e0e2;
  font-size: 13px
}

.avatars {
  display: flex
}

.avatars span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0f3e6, #f4c9ae);
  border: 2px solid var(--ink);
  margin-left: -8px
}

.avatars span:first-child {
  margin-left: 0
}

.stars {
  color: #ffd56a;
  letter-spacing: 2px
}

.hero-visual {
  position: relative;
  height: 520px;
  z-index: 2
}

.phone-stage {
  position: absolute;
  right: 10px;
  top: 12px;
  width: min(430px, 92%);
  height: 480px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border-radius: 38px;
  transform: rotate(2deg);
  backdrop-filter: blur(4px);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25)
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(115deg, transparent 42%, rgba(134, 255, 191, .12) 50%, transparent 58%);
  transform: translateX(-55%) rotate(8deg);
  animation: stage-sheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2
}

.phone-stage img {
  position: absolute;
  width: 84%;
  right: 1%;
  bottom: -30px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35));
  animation: float 5s ease-in-out infinite
}

.float-card {
  position: absolute;
  background: white;
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  z-index: 4;
  animation: float 4.5s ease-in-out infinite
}

.float-card b {
  display: block;
  font-size: 20px
}

.float-card small {
  color: var(--muted)
}

.float-card.one {
  left: -18px;
  top: 83px
}

.float-card.two {
  right: -12px;
  bottom: 60px;
  animation-delay: -1.6s
}

.float-card.three {
  left: 10px;
  bottom: 25px;
  animation-delay: -.7s;
  background: var(--mint)
}

@keyframes float {
  50% {
    transform: translateY(-11px) rotate(-1deg)
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(-28px, 34px, 0) scale(1.08)
  }
}

@keyframes stage-sheen {
  0%, 28% {
    transform: translateX(-55%) rotate(8deg)
  }

  62%, 100% {
    transform: translateX(55%) rotate(8deg)
  }
}

@keyframes signal-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(134, 255, 191, .35)
  }

  70%, 100% {
    box-shadow: 0 0 0 9px rgba(134, 255, 191, 0)
  }
}

.statbar {
  position: relative;
  margin-top: -34px;
  z-index: 4
}

.stats {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 18px
}

.stat {
  padding: 0 24px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border: 0
}

.stat strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em
}

.stat span {
  font-size: 13px;
  color: var(--muted)
}

.section {
  padding: 110px 0
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2e776f
}

.heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 10px 0 40px
}

.heading h2,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 0;
  max-width: 760px
}

.heading p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 25px;
  min-height: 245px;
  position: relative;
  overflow: hidden;
  transition: .3s
}

.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -95px;
  top: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 255, 191, .28), transparent 68%);
  transition: transform .45s ease
}

.service-card .service-icon {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: #e5fff3;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 35px
}

.service-card:nth-child(2n) .service-icon {
  background: #e7f8ff
}

.service-card:nth-child(3n) .service-icon {
  background: #fff0e7
}

.service-card h3 {
  font-size: 20px;
  margin: 0 0 8px
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6
}

.service-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: .2s
}

.service-card:hover .arrow {
  background: var(--ink);
  color: white;
  transform: rotate(-35deg)
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.photo-stack {
  position: relative;
  min-height: 520px
}

.photo-main {
  width: 78%;
  height: 500px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow)
}

.photo-small {
  position: absolute;
  width: 46%;
  height: 270px;
  object-fit: cover;
  right: 0;
  bottom: -30px;
  border: 9px solid var(--paper);
  border-radius: 30px
}

.badge-card {
  position: absolute;
  right: 8px;
  top: 30px;
  background: var(--mint);
  border-radius: 20px;
  padding: 18px;
  width: 170px;
  box-shadow: var(--shadow)
}

.badge-card b {
  font-size: 34px;
  display: block;
  letter-spacing: -.05em
}

.checklist {
  display: grid;
  gap: 15px;
  margin: 28px 0
}

.check {
  display: flex;
  gap: 13px;
  align-items: flex-start
}

.check i {
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #dffff0;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto
}

.check p {
  margin: 2px 0 0;
  color: var(--muted);
  line-height: 1.6
}

.check b {
  display: block;
  color: var(--ink);
  margin-bottom: 2px
}

.dark-section {
  background: var(--ink);
  color: white;
  border-radius: 42px;
  padding: 85px 0;
  overflow: hidden;
  position: relative
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 224, 208, .13), transparent 68%);
  pointer-events: none
}

.dark-section .heading p {
  color: #a8bdc1
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.step {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px;
  padding: 25px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease
}

.step::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.step-num {
  font-size: 12px;
  color: var(--mint);
  font-weight: 900;
  letter-spacing: .12em
}

.step h3 {
  font-size: 22px;
  margin: 35px 0 10px
}

.step p {
  color: #aac0c4;
  font-size: 14px;
  line-height: 1.6
}

.device-tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 25px
}

.chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease
}

.chip.active {
  background: var(--ink);
  color: white
}

.device-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  background: white;
  border-radius: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(6, 25, 29, .04);
  transition: transform .35s ease, box-shadow .35s ease
}

.device-copy {
  padding: 18px
}

.device-copy h3 {
  font-size: 34px;
  letter-spacing: -.04em;
  margin: 5px 0 12px
}

.device-copy p {
  color: var(--muted);
  line-height: 1.7
}

.device-models {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0
}

.device-models span {
  background: #f2f6f4;
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 750
}

.device-art {
  min-height: 320px;
  border-radius: 23px;
  background: radial-gradient(circle at 45% 40%, #b6ffda, #70cdbf 38%, #0e3135 72%);
  display: grid;
  place-items: center;
  overflow: hidden
}

.device-art img {
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .25))
}

.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px
}

.brand-tile {
  height: 88px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  place-items: center;
  filter: grayscale(1);
  opacity: .75;
  transition: .2s
}

.brand-tile:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px)
}

.brand-tile img {
  max-height: 40px;
  max-width: 110px
}

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

.review {
  background: white;
  border: 1px solid var(--line);
  padding: 25px;
  border-radius: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.review .stars {
  font-size: 13px
}

.review p {
  line-height: 1.65;
  color: #40575d
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bfffe0, #ffcaa7);
  display: grid;
  place-items: center;
  font-weight: 900
}

.review-footer small {
  display: block;
  color: var(--muted)
}

.faq {
  max-width: 840px;
  margin: auto
}

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

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 850;
  font-size: 17px
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .35s ease, padding .35s
}

.faq-item.open .faq-a {
  max-height: 180px;
  padding-bottom: 22px
}

.faq-q span:last-child {
  transition: .25s
}

.faq-item.open .faq-q span:last-child {
  transform: rotate(45deg)
}

.cta {
  background: linear-gradient(130deg, var(--mint), #b9ffdf);
  border-radius: 34px;
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative
}

.cta::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -95px;
  top: -170px;
  border: 45px solid rgba(255, 255, 255, .23);
  animation: cta-orbit 9s ease-in-out infinite alternate;
  pointer-events: none
}

.cta>* {
  position: relative;
  z-index: 1
}

@keyframes cta-orbit {
  to {
    transform: translate3d(-35px, 36px, 0) rotate(18deg)
  }
}

.cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.05em;
  line-height: 1;
  margin: 0 0 10px;
  max-width: 650px
}

.cta p {
  margin: 0;
  color: #284840
}

.cta .btn-dark {
  white-space: nowrap
}

.footer {
  margin-top: 100px;
  background: #061015;
  color: white;
  padding: 75px 0 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px
}

.footer p,
.footer a {
  color: #9bb0b4;
  font-size: 14px;
  line-height: 1.7
}

.footer h4 {
  margin-top: 0
}

.footer-links {
  display: grid;
  gap: 8px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #789095;
  font-size: 12px;
  gap: 20px
}

.page-hero {
  background: var(--ink);
  color: white;
  padding: 85px 0 90px;
  border-radius: 0 0 42px 42px;
  position: relative;
  overflow: hidden
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.page-hero::before {
  width: 520px;
  height: 520px;
  right: -170px;
  top: -300px;
  background: radial-gradient(circle, rgba(68, 224, 208, .22), transparent 67%);
  animation: ambient-drift 12s ease-in-out infinite alternate
}

.page-hero::after {
  width: 300px;
  height: 300px;
  left: -170px;
  bottom: -210px;
  background: radial-gradient(circle, rgba(255, 138, 61, .18), transparent 68%)
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero p {
  color: #aec2c5;
  max-width: 620px;
  line-height: 1.7;
  font-size: 18px
}

.page-hero .hero-actions {
  margin-top: 25px
}

.page-hero .pill {
  margin-bottom: 18px
}

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

.accessory-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.accessory-art {
  height: 240px;
  background: linear-gradient(140deg, #eafff4, #ecf8f8);
  display: grid;
  place-items: center
}

.accessory-art img {
  height: 190px;
  object-fit: contain;
  transition: .35s
}

.accessory-card:hover img {
  transform: scale(1.06) rotate(-2deg)
}

.accessory-card .pad {
  padding: 22px
}

.accessory-card h3 {
  margin: 0 0 8px
}

.accessory-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.franchise-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.big-stat {
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 24px
}

.big-stat strong {
  display: block;
  font-size: 35px;
  letter-spacing: -.05em
}

.big-stat span {
  color: var(--muted);
  font-size: 13px
}

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

.benefit {
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 23px
}

.benefit b {
  display: block;
  margin: 18px 0 8px
}

.benefit p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.application {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 850;
  color: #50666b
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  background: #f9fbfa;
  outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #58bca9;
  box-shadow: 0 0 0 4px rgba(88, 188, 169, .12)
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 17, .58);
  backdrop-filter: blur(9px);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal.open {
  display: flex
}

.modal.open .modal-card {
  animation: modal-enter .32s cubic-bezier(.2, .8, .2, 1) both
}

.modal-card {
  background: white;
  border-radius: 28px;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .28)
}

.modal-head {
  padding: 24px 26px 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.modal-head h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em
}

.close {
  border: 1px solid var(--line);
  background: white;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px
}

.modal-body {
  padding: 10px 26px 26px
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0
}

.choice {
  border: 1px solid var(--line);
  background: white;
  padding: 16px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left
}

.choice.active {
  border-color: #43b89f;
  box-shadow: 0 0 0 3px rgba(67, 184, 159, .12);
  background: #f4fffa
}

.choice b {
  display: block
}

.choice small {
  color: var(--muted)
}

.estimate {
  background: var(--ink);
  color: white;
  border-radius: 18px;
  padding: 20px;
  margin-top: 15px;
  display: none
}

.estimate.show {
  display: block;
  animation: estimate-enter .28s ease both
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97)
  }
}

@keyframes estimate-enter {
  from {
    opacity: 0;
    transform: translateY(8px)
  }
}

.estimate strong {
  color: var(--mint);
  font-size: 30px;
  display: block
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ink);
  color: white;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 100;
  transform: translateY(110px);
  opacity: 0;
  transition: .3s
}

.toast.show {
  transform: none;
  opacity: 1
}

.reveal {
  opacity: 1;
  transform: none
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition: opacity .72s cubic-bezier(.2, .75, .2, 1), transform .72s cubic-bezier(.2, .75, .2, 1)
}

.motion-ready .reveal.visible {
  opacity: 1;
  transform: none
}

.services .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.reviews .reveal:nth-child(2),
.accessory-grid .reveal:nth-child(2) {
  transition-delay: .07s
}

.services .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.reviews .reveal:nth-child(3),
.accessory-grid .reveal:nth-child(3) {
  transition-delay: .14s
}

.services .reveal:nth-child(4),
.steps .reveal:nth-child(4),
.accessory-grid .reveal:nth-child(4) {
  transition-delay: .21s
}

.services .reveal:nth-child(5),
.accessory-grid .reveal:nth-child(5) {
  transition-delay: .28s
}

.services .reveal:nth-child(6),
.accessory-grid .reveal:nth-child(6) {
  transition-delay: .35s
}

@media(hover:hover) {
  .btn:hover::after {
    transform: translateX(130%)
  }

  .service-card:hover::before {
    transform: scale(1.5)
  }

  .service-card:hover .service-icon {
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 12px 25px rgba(7, 19, 25, .09)
  }

  .step:hover {
    transform: translateY(-7px);
    border-color: rgba(134, 255, 191, .32);
    background: rgba(255, 255, 255, .09)
  }

  .step:hover::after {
    transform: scaleX(1)
  }

  .chip:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 19, 25, .08)
  }

  .device-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(6, 25, 29, .1)
  }

  .review:hover,
  .accessory-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: var(--shadow)
  }
}

@media(max-width:960px) {
  .navlinks {
    display: none
  }

  .nav-actions .btn-light {
    display: none
  }

  .menu-btn {
    display: block
  }

  .navlinks.mobile-open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow)
  }

  .hero-grid,
  .split,
  .device-panel,
  .application {
    grid-template-columns: 1fr
  }

  .hero-grid {
    padding-top: 55px
  }

  .hero-visual {
    height: 460px
  }

  .services {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .brands {
    grid-template-columns: repeat(4, 1fr)
  }

  .reviews {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .accessory-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .franchise-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 26px, var(--max))
  }

  .topbar .container span:last-child {
    display: none
  }

  .nav {
    height: 70px
  }

  .nav-actions>.btn {
    display: none
  }

  .hero {
    border-radius: 0 0 28px 28px
  }

  .hero h1 {
    font-size: 48px
  }

  .hero-grid {
    gap: 10px
  }

  .hero-visual {
    height: 390px
  }

  .phone-stage {
    height: 360px
  }

  .phone-stage img {
    width: 90%;
    bottom: -45px
  }

  .float-card.one {
    left: 0;
    top: 50px
  }

  .float-card.two {
    right: 0;
    bottom: 35px
  }

  .float-card.three {
    display: none
  }

  .statbar {
    margin-top: -20px
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .stat {
    border: 0;
    padding: 0 12px
  }

  .section {
    padding: 78px 0
  }

  .heading {
    display: block
  }

  .heading p {
    margin-top: 16px
  }

  .services,
  .steps,
  .accessory-grid,
  .benefits {
    grid-template-columns: 1fr
  }

  .brands {
    grid-template-columns: repeat(3, 1fr)
  }

  .photo-stack {
    min-height: 420px
  }

  .photo-main {
    height: 390px
  }

  .photo-small {
    height: 210px
  }

  .dark-section {
    border-radius: 28px;
    padding: 65px 0
  }

  .cta {
    padding: 34px;
    display: block
  }

  .cta .btn {
    margin-top: 25px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: block
  }

  .choice-grid {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .page-hero {
    padding: 65px 0
  }

  .franchise-stats {
    grid-template-columns: 1fr 1fr
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important
  }
}

/* SmartFixMD campaign booking page */
.brand-md {
  color: var(--orange);
  margin-left: -11px
}

.brand-mark {
  border-radius: 50%;
  background: white url("assets/smartfixmd-brand.png?v=20260903-2") center/cover no-repeat;
  box-shadow: 0 5px 14px rgba(7, 19, 25, .2);
  overflow: hidden
}

.brand-mark::before,
.brand-mark::after {
  display: none
}

.booking-page {
  background: #eef4f1
}

.booking-nav {
  position: relative
}

.booking-back {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, transform .2s ease
}

.booking-back:hover {
  color: var(--ink);
  transform: translateX(-3px)
}

.btn-call {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(7, 19, 25, .16)
}

.booking-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 72px 0 82px;
  border-radius: 0 0 38px 38px
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background: linear-gradient(90deg, rgba(7, 19, 25, .84), rgba(7, 19, 25, .68)), url("assets/repair-detail.png") center/cover;
  opacity: .32
}

.booking-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -240px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 224, 208, .19), transparent 68%);
  pointer-events: none
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 64px;
  align-items: start
}

.booking-intro {
  padding-top: 18px
}

.booking-intro h1 {
  max-width: 580px;
  margin: 20px 0;
  font-size: 66px;
  line-height: .96;
  letter-spacing: -.055em
}

.booking-intro>p {
  max-width: 590px;
  color: #b8c9cc;
  font-size: 17px;
  line-height: 1.7
}

.verified-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0
}

.verified-points span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: #d7e4e5;
  font-size: 12px;
  font-weight: 800
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px
}

.contact-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease
}

.contact-option:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(134, 255, 191, .4)
}

.contact-primary {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint)
}

.contact-primary:hover {
  background: #a1ffce;
  border-color: #a1ffce
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  font-size: 19px;
  font-weight: 950
}

.contact-primary .contact-icon {
  color: white;
  background: var(--ink)
}

.contact-facebook {
  color: white;
  background: #1877f2
}

.contact-option span:nth-child(2) {
  min-width: 0
}

.contact-option small,
.contact-option strong,
.contact-option em {
  display: block;
  overflow-wrap: anywhere
}

.contact-option small {
  margin-bottom: 2px;
  color: #aabdc1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase
}

.contact-primary small,
.contact-primary em {
  color: #31554c
}

.contact-option strong {
  font-size: 16px
}

.contact-option em {
  margin-top: 2px;
  color: #8fa6aa;
  font-size: 11px;
  font-style: normal
}

.contact-option>b {
  font-size: 12px;
  white-space: nowrap
}

.booking-form-panel {
  padding: 30px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .26)
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px
}

.form-step {
  color: #2e776f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em
}

.form-heading h2 {
  margin: 5px 0 0;
  font-size: 34px;
  letter-spacing: -.04em
}

.offer-flag {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 7px;
  background: #fff0e7;
  color: #a1440d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase
}

.booking-form-panel>p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 20px
}

.booking-fields textarea {
  resize: vertical;
  min-height: 96px
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 17px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #278d75;
  flex: 0 0 auto
}

.booking-submit {
  width: 100%;
  min-height: 50px
}

.booking-submit.is-sending {
  pointer-events: none;
  opacity: .72
}

.form-delivery {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center
}

.form-delivery a {
  color: #1f7464;
  font-weight: 800
}

.booking-services {
  padding: 100px 0
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.booking-service {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.booking-service:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow)
}

.booking-service>span {
  color: #2e776f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em
}

.booking-service h3 {
  margin: 42px 0 8px;
  font-size: 20px
}

.booking-service p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6
}

.booking-cta {
  border-radius: 8px
}

.booking-footer {
  margin-top: 90px
}

@media(max-width:1040px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .booking-hero::before {
    inset: 0;
    opacity: .18
  }

  .booking-intro {
    max-width: 720px
  }

  .contact-list {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-option {
    grid-template-columns: 42px minmax(0, 1fr)
  }

  .contact-option>b {
    display: none
  }

  .booking-service-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:700px) {
  .booking-nav .container {
    gap: 12px
  }

  .booking-back {
    display: none
  }

  .booking-nav .nav-actions {
    display: block
  }

  .booking-nav .btn-call {
    display: inline-flex;
    padding: 11px 13px;
    font-size: 12px
  }

  .booking-hero {
    padding: 52px 0 62px;
    border-radius: 0 0 24px 24px
  }

  .booking-intro h1 {
    font-size: 44px;
    letter-spacing: -.04em
  }

  .contact-list {
    grid-template-columns: 1fr
  }

  .contact-option {
    grid-template-columns: 44px minmax(0, 1fr) auto
  }

  .contact-option>b {
    display: block
  }

  .booking-form-panel {
    padding: 22px 16px
  }

  .form-heading {
    display: block
  }

  .offer-flag {
    display: inline-block;
    margin-top: 12px
  }

  .booking-fields {
    grid-template-columns: 1fr
  }

  .booking-fields .field.full {
    grid-column: auto
  }

  .booking-service-grid {
    grid-template-columns: 1fr
  }

  .booking-services {
    padding: 75px 0
  }
}

@media(max-width:420px) {
  .booking-page .brand {
    font-size: 16px;
    gap: 8px
  }

  .booking-page .brand-md {
    margin-left: -8px
  }

  .booking-page .brand-mark {
    width: 31px;
    height: 31px
  }

  .booking-nav .btn-call {
    max-width: 165px;
    line-height: 1.2;
    text-align: center
  }

  .booking-intro h1 {
    font-size: 38px
  }

  .contact-option {
    grid-template-columns: 42px minmax(0, 1fr)
  }

  .contact-option>b {
    display: none
  }

  .form-heading h2 {
    font-size: 29px
  }
}

/* Multi-page experience and responsive polish */
body.modal-open {
  overflow: hidden
}

.page-transition {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(100deg, var(--ink) 0 82%, var(--mint) 82% 91%, var(--orange) 91%);
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0);
  will-change: transform;
  contain: strict;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.page-leaving .page-transition {
  -webkit-animation: page-curtain-in .28s cubic-bezier(.55, 0, .3, 1) both;
  animation: page-curtain-in .28s cubic-bezier(.55, 0, .3, 1) both
}

.page-leaving {
  cursor: progress
}

@keyframes page-curtain-in {
  from { transform: translate3d(-101%, 0, 0) }
  to { transform: translate3d(0, 0, 0) }
}

@-webkit-keyframes page-curtain-in {
  from { -webkit-transform: translate3d(-101%, 0, 0) }
  to { -webkit-transform: translate3d(0, 0, 0) }
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px
}

.navlinks a {
  position: relative;
  padding: 10px 0
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease
}

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

.brand-mark {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease
}

.brand:hover .brand-mark {
  transform: rotate(-7deg) scale(1.04);
  box-shadow: 0 9px 22px rgba(7, 19, 25, .2)
}

.page-hero-split {
  padding: 58px 0 72px
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 68px;
  align-items: center
}

.inner-hero-media {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, .28)
}

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(4, 15, 18, .45));
  pointer-events: none
}

.inner-hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s ease
}

.inner-hero-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.08)
}

.media-tag {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  animation: float 5s ease-in-out infinite
}

.media-tag b {
  font-size: 20px
}

.media-tag small {
  color: #31554c
}

.rating-tag b {
  color: #735300;
  letter-spacing: 2px
}

.product-hero-media {
  background: linear-gradient(145deg, #15393b, #0b1e24 68%);
  display: block
}

.product-hero-media>img {
  position: absolute;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .38))
}

.product-hero-media .product-phone {
  height: 350px;
  left: 25%;
  top: 38px;
  transform: rotate(-8deg)
}

.product-hero-media .product-watch {
  height: 220px;
  right: 17%;
  top: 105px;
  transform: rotate(9deg)
}

.product-hero-media:hover .product-phone {
  transform: rotate(-5deg) translateY(-8px)
}

.product-hero-media:hover .product-watch {
  transform: rotate(5deg) translateY(7px)
}

.section-soft {
  background: #eaf2ef;
  border-top: 1px solid rgba(7, 19, 25, .06);
  border-bottom: 1px solid rgba(7, 19, 25, .06)
}

.process-section {
  border-radius: 0;
  margin-top: 0
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.experience-strip>div {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.experience-strip>div:last-child {
  border: 0
}

.experience-strip strong,
.experience-strip span {
  display: block
}

.experience-strip strong {
  color: var(--mint);
  font-size: 20px;
  margin-bottom: 5px
}

.experience-strip span {
  color: #a9bec2;
  font-size: 14px
}

.faq-hero {
  text-align: center
}

.faq-hero h1,
.faq-hero p {
  margin-left: auto;
  margin-right: auto
}

.faq-hero .hero-actions {
  justify-content: center
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 80px;
  align-items: start
}

.faq-aside {
  position: sticky;
  top: 120px
}

.faq-aside h2 {
  font-size: 38px;
  line-height: 1.05;
  margin: 10px 0 14px
}

.faq-aside p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px
}

.faq-layout .faq {
  max-width: none;
  margin: 0
}

button.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left
}

.faq-item {
  transition: background .25s ease, padding .25s ease
}

.faq-item:hover {
  background: rgba(255, 255, 255, .55)
}

.reviews-featured .review:nth-child(2) {
  transform: translateY(22px)
}

.reviews-featured .review:nth-child(2):hover {
  transform: translateY(15px)
}

.footer-links a {
  transition: color .2s ease, transform .2s ease
}

.footer-links a:hover {
  color: var(--mint);
  transform: translateX(4px)
}

@media(max-width:1100px) {
  .nav .container {
    gap: 18px
  }

  .navlinks {
    gap: 17px
  }

  .nav-actions .btn-light {
    display: none
  }

  .inner-hero-grid {
    gap: 40px
  }
}

@media(max-width:960px) {
  .navlinks.mobile-open {
    top: 68px;
    left: 20px;
    right: 20px;
    gap: 3px;
    border-radius: 16px;
    max-height: calc(100vh - 92px);
    overflow-y: auto
  }

  .navlinks.mobile-open a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line)
  }

  .navlinks.mobile-open a:last-child {
    border: 0
  }

  .navlinks.mobile-open a::after {
    display: none
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .page-hero h1 {
    font-size: 52px
  }

  .inner-hero-media {
    min-height: 350px
  }

  .inner-hero-media img {
    height: 350px
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .faq-aside {
    position: static;
    max-width: 600px
  }
}

@media(max-width:620px) {
  .topbar {
    padding: 7px 0;
    text-align: center
  }

  .topbar .container {
    justify-content: center
  }

  .topbar b {
    font-size: 11px
  }

  .brand {
    font-size: 19px
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px
  }

  .brand-mark::before,
  .brand-mark::after {
    left: 7px
  }

  .menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 11px
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: .98;
    letter-spacing: -.04em
  }

  .page-hero,
  .page-hero-split {
    padding: 52px 0 58px
  }

  .page-hero p,
  .hero p {
    font-size: 16px;
    line-height: 1.6
  }

  .pill {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.4
  }

  .inner-hero-media,
  .inner-hero-media img {
    height: 290px;
    min-height: 290px
  }

  .product-hero-media .product-phone {
    height: 245px;
    left: 23%;
    top: 22px
  }

  .product-hero-media .product-watch {
    height: 155px;
    right: 14%;
    top: 70px
  }

  .inner-hero-media {
    border-radius: 20px
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero-actions .btn {
    width: 100%
  }

  .service-card {
    min-height: 215px
  }

  .device-panel {
    padding: 16px;
    border-radius: 22px
  }

  .device-copy {
    padding: 8px
  }

  .device-copy h3 {
    font-size: 28px
  }

  .experience-strip {
    grid-template-columns: 1fr;
    border-radius: 18px
  }

  .experience-strip>div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 22px
  }

  .reviews-featured .review:nth-child(2),
  .reviews-featured .review:nth-child(2):hover {
    transform: none
  }

  .faq-q {
    font-size: 15px;
    align-items: flex-start
  }

  .modal {
    padding: 10px;
    align-items: flex-end
  }

  .modal-card {
    max-height: 94vh;
    border-radius: 20px 20px 10px 10px
  }

  .cta {
    border-radius: 22px
  }

  .cta h2 {
    font-size: 36px;
    letter-spacing: -.04em
  }
}

@media(max-width:380px) {
  .container {
    width: calc(100% - 20px)
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px
  }

  .float-card {
    padding: 11px 12px
  }

  .float-card b {
    font-size: 17px
  }

  .stats {
    gap: 14px;
    padding: 20px 8px
  }

  .stat strong {
    font-size: 24px
  }
}

@media(prefers-reduced-motion:reduce) {
  .page-transition {
    display: none !important
  }

  .page-leaving>header,
  .page-leaving>main,
  .page-leaving>.statbar,
  .page-leaving>footer {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important
  }
}

/* Focused campaign booking page */
.lead-booking-page {
  min-width: 0;
  overflow-x: hidden;
  background: #f5f7f6;
  color: #07151a
}

.lead-header {
  position: relative;
  z-index: 20;
  height: 76px;
  background: #fff;
  border-bottom: 1px solid #dce3e1
}

.lead-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px
}

.lead-header-note {
  justify-self: center;
  color: #526064;
  font-size: 14px;
  font-weight: 700
}

.lead-header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  background: #0b7a3d;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease
}

.lead-header-call:hover {
  background: #086633;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 122, 61, .2)
}

.lead-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #06141a;
  color: #fff
}

.lead-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 8px;
  background: #f0a23b
}

.lead-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px
}

.lead-hero-copy {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  -webkit-animation: lead-copy-in .55s ease-out both;
  animation: lead-copy-in .55s ease-out both
}

.lead-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #f3b251;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase
}

.lead-kicker span {
  width: 24px;
  height: 3px;
  background: #f3b251
}

.lead-hero h1 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: 0
}

.lead-hero h1 em {
  color: #79f2b7;
  font-style: normal
}

.lead-hero-copy>p {
  max-width: 600px;
  margin: 26px 0 28px;
  color: #c9d5d7;
  font-size: 18px;
  line-height: 1.65
}

.lead-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.lead-highlights span {
  padding: 9px 12px;
  border: 1px solid #385057;
  border-radius: 5px;
  color: #f2f6f5;
  font-size: 12px;
  font-weight: 800
}

.lead-device {
  position: relative;
  align-self: end;
  min-width: 0;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.lead-device img {
  width: min(100%, 470px);
  height: auto;
  max-height: 490px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .42));
  -webkit-animation: lead-device-in .7s .08s cubic-bezier(.2, .75, .25, 1) both;
  animation: lead-device-in .7s .08s cubic-bezier(.2, .75, .25, 1) both
}

.lead-offer {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 86px;
  width: 132px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #fff;
  color: #07151a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
  -webkit-animation: lead-offer-in .45s .55s ease-out both;
  animation: lead-offer-in .45s .55s ease-out both
}

.lead-offer small,
.lead-offer strong {
  display: block
}

.lead-offer small {
  margin-bottom: 3px;
  color: #657276;
  font-size: 11px
}

.lead-offer strong {
  color: #0b7a3d;
  font-size: 22px
}

@keyframes lead-copy-in {
  from { opacity: 0; transform: translate3d(-24px, 0, 0) }
  to { opacity: 1; transform: translate3d(0, 0, 0) }
}

@keyframes lead-device-in {
  from { opacity: 0; transform: translate3d(30px, 30px, 0) scale(.96) }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1) }
}

@keyframes lead-offer-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0) }
  to { opacity: 1; transform: translate3d(0, 0, 0) }
}

@-webkit-keyframes lead-copy-in {
  from { opacity: 0; -webkit-transform: translate3d(-24px, 0, 0) }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0) }
}

@-webkit-keyframes lead-device-in {
  from { opacity: 0; -webkit-transform: translate3d(30px, 30px, 0) scale(.96) }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0) scale(1) }
}

@-webkit-keyframes lead-offer-in {
  from { opacity: 0; -webkit-transform: translate3d(0, 12px, 0) }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0) }
}

.lead-connect {
  padding: 58px 0 52px;
  background: #fff
}

.lead-section-heading {
  margin-bottom: 28px;
  text-align: center
}

.lead-section-heading>span,
.lead-step {
  color: #be7218;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase
}

.lead-section-heading h2 {
  margin: 5px 0 7px;
  font-size: 34px;
  letter-spacing: 0
}

.lead-section-heading p {
  margin: 0;
  color: #657276
}

.lead-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.lead-action {
  min-width: 0;
  min-height: 108px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 7px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(5, 31, 24, .12);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease
}

.lead-action:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(5, 31, 24, .2);
  filter: brightness(1.04)
}

.lead-action-call {
  background: #218847
}

.lead-action-message {
  background: #1768b5
}

.lead-action-query {
  background: #112d3a
}

.lead-action-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  font-size: 25px;
  font-style: normal;
  font-weight: 900
}

.lead-facebook {
  font-family: Arial, sans-serif;
  font-size: 30px
}

.lead-action small,
.lead-action strong,
.lead-action em {
  display: block;
  min-width: 0;
  font-style: normal
}

.lead-action small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700
}

.lead-action strong {
  font-size: 18px
}

.lead-action em {
  margin-top: 3px;
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  overflow-wrap: anywhere
}

.lead-action>b {
  font-size: 22px
}

.lead-trust {
  border-top: 1px solid #dde5e2;
  border-bottom: 1px solid #dde5e2;
  background: #f5f7f6
}

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

.lead-trust-grid>div {
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid #dde5e2;
  text-align: center
}

.lead-trust-grid>div:first-child {
  border-left: 1px solid #dde5e2
}

.lead-trust-grid strong,
.lead-trust-grid span {
  display: block
}

.lead-trust-grid strong {
  margin-bottom: 3px;
  font-size: 15px
}

.lead-trust-grid span {
  color: #667477;
  font-size: 12px
}

.lead-form-section {
  padding: 84px 0;
  background: #eef2f1;
  scroll-margin-top: 24px
}

.lead-form-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: 68px
}

.lead-form-copy {
  position: sticky;
  top: 30px;
  padding-top: 14px
}

.lead-form-copy h2 {
  margin: 10px 0 16px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0
}

.lead-form-copy>p {
  margin: 0;
  color: #58676a;
  font-size: 16px;
  line-height: 1.65
}

.lead-form-contact {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid #cad5d2;
  border-bottom: 1px solid #cad5d2
}

.lead-form-contact small,
.lead-form-contact a,
.lead-form-contact span {
  display: block
}

.lead-form-contact small,
.lead-form-contact span {
  color: #657276;
  font-size: 12px
}

.lead-form-contact a {
  margin: 5px 0;
  color: #0b7a3d;
  font-size: 23px;
  font-weight: 900
}

.lead-form-panel {
  padding: 30px;
  border: 1px solid #d8e1df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(21, 46, 40, .09)
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px
}

.lead-fields .full {
  grid-column: 1 / -1
}

.lead-fields textarea {
  min-height: 112px;
  resize: vertical
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: #5f6c6f;
  font-size: 12px;
  line-height: 1.45
}

.lead-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: #0b7a3d
}

.lead-submit {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  background: #0b7a3d;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease
}

.lead-submit:hover {
  background: #086633;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 122, 61, .22)
}

.lead-submit.is-sending {
  opacity: .72;
  pointer-events: none
}

.lead-delivery {
  margin: 12px 0 0;
  color: #6a7679;
  font-size: 11px;
  line-height: 1.5;
  text-align: center
}

.lead-delivery a {
  color: #1768b5;
  font-weight: 800
}

.lead-footer {
  padding: 24px 0;
  background: #06141a;
  color: #c8d3d5;
  font-size: 13px
}

.lead-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.lead-footer a {
  color: #79f2b7;
  font-weight: 800
}

.lead-mobile-bar {
  display: none
}

@media(max-width:900px) {
  .lead-header-note {
    display: none
  }

  .lead-header-inner {
    grid-template-columns: 1fr auto
  }

  .lead-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    gap: 16px
  }

  .lead-hero h1 {
    font-size: 51px
  }

  .lead-device {
    height: 450px
  }

  .lead-action-grid {
    grid-template-columns: 1fr
  }

  .lead-action {
    min-height: 94px
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .lead-form-copy {
    position: static;
    max-width: 650px
  }
}

@media(max-width:640px) {
  .lead-booking-page {
    padding-bottom: 68px
  }

  .lead-header {
    height: 68px
  }

  .lead-header .brand {
    font-size: 19px
  }

  .lead-header .brand-mark {
    width: 39px;
    height: 39px
  }

  .lead-header-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px
  }

  .lead-hero,
  .lead-hero-grid {
    min-height: auto
  }

  .lead-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }

  .lead-hero-copy {
    padding: 54px 0 20px
  }

  .lead-kicker {
    margin-bottom: 16px;
    font-size: 11px
  }

  .lead-hero h1 {
    max-width: 360px;
    font-size: 42px;
    line-height: 1.02
  }

  .lead-hero-copy>p {
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.55
  }

  .lead-highlights {
    gap: 7px
  }

  .lead-highlights span {
    padding: 7px 9px;
    font-size: 10px
  }

  .lead-device {
    align-self: stretch;
    height: 330px
  }

  .lead-device img {
    width: 330px;
    max-height: 330px
  }

  .lead-offer {
    top: 36px;
    right: 0;
    width: 112px;
    padding: 11px 13px
  }

  .lead-offer strong {
    font-size: 18px
  }

  .lead-hero::after {
    width: 62%;
    height: 6px
  }

  .lead-connect {
    padding: 44px 0 40px
  }

  .lead-section-heading {
    margin-bottom: 22px;
    text-align: left
  }

  .lead-section-heading h2 {
    font-size: 30px
  }

  .lead-section-heading p {
    font-size: 14px
  }

  .lead-action-grid {
    gap: 11px
  }

  .lead-action {
    min-height: 88px;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px
  }

  .lead-action-icon {
    width: 46px;
    height: 46px;
    font-size: 22px
  }

  .lead-action strong {
    font-size: 16px
  }

  .lead-action:hover {
    transform: none
  }

  .lead-trust-grid {
    grid-template-columns: 1fr 1fr
  }

  .lead-trust-grid>div,
  .lead-trust-grid>div:first-child {
    padding: 19px 8px;
    border: 0;
    border-right: 1px solid #dde5e2;
    border-bottom: 1px solid #dde5e2
  }

  .lead-trust-grid>div:nth-child(even) {
    border-right: 0
  }

  .lead-form-section {
    padding: 58px 0
  }

  .lead-form-copy {
    padding: 0
  }

  .lead-form-copy h2 {
    font-size: 36px
  }

  .lead-form-panel {
    padding: 20px 16px
  }

  .lead-fields {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .lead-fields .full {
    grid-column: auto
  }

  .lead-footer {
    padding: 22px 0
  }

  .lead-footer .container {
    flex-direction: column;
    gap: 7px
  }

  .lead-mobile-bar {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #d6dfdd;
    box-shadow: 0 -10px 30px rgba(6, 20, 26, .12)
  }

  .lead-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0b7a3d;
    border-radius: 5px;
    color: #0b7a3d;
    font-size: 13px;
    font-weight: 900
  }

  .lead-mobile-bar a:last-child {
    background: #0b7a3d;
    color: #fff
  }
}
