:root {
  --ink: #182235;
  --text: #596679;
  --muted: #8792a3;
  --blue: #5a7fe8;
  --blue-2: #a9c0ff;
  --blue-soft: #f4f7ff;
  --green: #53b59a;
  --yellow: #edd27a;
  --coral: #e99591;
  --surface: #ffffff;
  --soft: #f7f9fd;
  --line: #e7ecf4;
  --dark: #172239;
  --mesh: linear-gradient(135deg, rgba(90, 127, 232, .1), rgba(83, 181, 154, .06) 48%, rgba(233, 149, 145, .08));
  --shadow: 0 32px 86px rgba(31, 43, 66, .08);
  --shadow-hover: 0 36px 96px rgba(31, 43, 66, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 34%, #ffffff 76%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.js-loading:not(.page-ready) .hero-copy,
body.js-loading:not(.page-ready) .phone-scene {
  opacity: 0;
}

body.js-loading:not(.page-ready) .hero-copy {
  transform: translateX(-42px);
}

body.js-loading:not(.page-ready) .phone-scene {
  transform: translateX(42px);
}

img {
  max-width: 100%;
}

a,
button {
  transition: background-color .24s ease, color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease, opacity .24s ease;
}

.container {
  max-width: 1180px;
}

.navbar {
  z-index: 20;
  padding: 22px 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-container {
  display: flex;
  align-items: center;
  flex-wrap: inherit;
  justify-content: space-between;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 88px);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(231, 236, 244, .78);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 16px 48px rgba(40, 54, 82, .08);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 118px;
  height: 42px;
  flex: 0 0 118px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 118px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  transition: opacity .24s ease, transform .24s ease;
}

.brand-logo-light {
  opacity: 1;
  filter: drop-shadow(0 12px 28px rgba(4, 9, 18, .28));
}

.brand-logo-dark {
  opacity: 0;
  transform: translateY(2px) scale(.96);
}

.navbar.scrolled .navbar-brand {
  color: var(--ink);
}

.navbar.scrolled .brand-logo-light {
  opacity: 0;
  transform: translateY(-2px) scale(.96);
}

.navbar.scrolled .brand-logo-dark {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-link {
  padding: 8px 13px !important;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active,
.navbar .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #263451, #5a7fe8);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(90, 127, 232, .18);
  text-decoration: none;
  font-weight: 700;
}

.nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #24314d, #53b59a);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 124px 0 74px;
  background:
    linear-gradient(90deg, rgba(8, 13, 26, .86) 0%, rgba(19, 34, 64, .76) 42%, rgba(25, 54, 72, .45) 70%, rgba(10, 16, 28, .36) 100%),
    linear-gradient(180deg, rgba(8, 13, 26, .28), rgba(8, 13, 26, .72)),
    url("../images/stock-hero-city-night.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background:
    linear-gradient(110deg, rgba(90, 127, 232, .18), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(83, 181, 154, .2), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(233, 149, 145, .12), transparent 26%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 88px);
}

.hero-row {
  min-height: calc(100vh - 198px);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .label {
  color: #bcd1ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.06;
  font-weight: 700;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 20px 56px rgba(0, 0, 0, .28);
}

.hero-copy,
.phone-scene {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

body.page-ready .hero-copy {
  opacity: 1;
  transform: translateX(0);
}

body.page-ready .phone-scene {
  opacity: 1;
  transform: translateX(0);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.9vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 700;
}

.hero-copy p,
.section-copy,
.section-head p,
.workflow-layout p,
.trust-copy p,
.about-panel p,
.contact-panel p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy p {
  max-width: 720px;
  font-size: 19px;
  color: rgba(255, 255, 255, .78);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  padding: 13px 17px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(31, 43, 66, .12);
}

.store-link i {
  font-size: 30px;
}

.store-link span {
  display: grid;
  font-size: 18px;
  line-height: 1.06;
  font-weight: 700;
}

.store-link small {
  font-size: 11px;
  font-weight: 700;
  opacity: .68;
}

.store-dark {
  color: #fff;
  background: linear-gradient(135deg, #172239, #2a3a5b 56%, #5a7fe8);
}

.store-light {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(18px);
}

.store-link:hover {
  transform: translateY(-3px);
}

.store-dark:hover {
  color: #fff;
  background: linear-gradient(135deg, #263451, #53b59a);
}

.store-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 22px 56px rgba(15, 23, 42, .18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.hero-points i {
  color: #bcd1ff;
}

.phone-scene {
  position: relative;
  min-height: 560px;
  padding-right: clamp(0px, 3vw, 38px);
}

.phone-main {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  margin-left: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.22);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-head div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-head img {
  width: 34px;
  height: 34px;
}

.phone-head i {
  color: var(--blue);
}

.angel-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 247, 255, .92), rgba(255, 255, 255, .72)),
    linear-gradient(45deg, rgba(83, 181, 154, .08), rgba(233, 149, 145, .07));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.angel-card div {
  padding: 18px 18px 0;
}

.angel-card small {
  color: var(--muted);
  font-weight: 700;
}

.angel-card h2 {
  max-width: 250px;
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.08;
}

.angel-card img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  margin-top: 8px;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.session-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.session-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.session-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.map-preview {
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-preview img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.safe-button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  color: #fff;
  background: linear-gradient(135deg, #53b59a, #5a7fe8);
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(83, 181, 154, .18);
}

.status-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(232, 237, 245, .88);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(37, 51, 76, .1);
  backdrop-filter: blur(22px) saturate(1.18);
  font-weight: 700;
  animation: badgeFloat 5.5s ease-in-out infinite;
}

.status-card i {
  color: var(--blue);
}

.status-one {
  left: 6px;
  top: 98px;
}

.status-two {
  right: 2px;
  bottom: 96px;
  animation-delay: .8s;
}

.trust-strip {
  padding: 76px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: end;
  min-height: 330px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 20, 37, .86), rgba(29, 49, 84, .72) 48%, rgba(34, 92, 93, .42)),
    url("../images/stock-commute-phone.jpg") center / cover no-repeat;
  border: 1px solid rgba(231, 236, 244, .86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-panel .label {
  color: #bcd1ff;
}

.trust-panel h2 {
  max-width: 570px;
  margin: 0;
  color: #fff;
}

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

.trust-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.trust-strip strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.animate-ready {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity .86s ease, transform .86s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--delay, 0ms);
}

.animate-ready[data-animate="slide-left"] {
  transform: translateX(84px);
}

.animate-ready[data-animate="slide-right"] {
  transform: translateX(-84px);
}

.animate-ready[data-animate="zoom"] {
  transform: scale(.94);
}

.animate-ready.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

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

  .animate-ready,
  body.js-loading:not(.page-ready) .hero-copy,
  body.js-loading:not(.page-ready) .phone-scene {
    opacity: 1;
    transform: none;
  }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-card,
.product-grid article,
.workflow-steps article,
.trust-grid div,
.plan-card,
.faq-item,
.audience-grid article,
.emergency-steps article {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(231, 236, 244, .9);
  border-radius: 8px;
  backdrop-filter: blur(20px) saturate(1.16);
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(31, 43, 66, .06);
}

.service-card:hover,
.product-grid article:hover,
.audience-grid article:hover,
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card .service-photo {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: 190px;
  margin: -22px -22px 18px;
  object-fit: cover;
  filter: saturate(.96) contrast(.98);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
  background: linear-gradient(180deg, rgba(12, 20, 37, .04), rgba(12, 20, 37, .52));
  pointer-events: none;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(31, 43, 66, .18);
}

.service-card p,
.product-grid p,
.workflow-steps p,
.plan-card p,
.faq-item p {
  color: var(--text);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.explain-section {
  background: #fff;
}

.explain-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.explain-copy p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.explain-cards,
.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.explain-cards article,
.contact-detail-grid article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .68)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.explain-cards i,
.contact-detail-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #86a6ef);
  border-radius: 8px;
}

.explain-cards strong,
.contact-detail-grid strong {
  font-size: 17px;
  font-weight: 700;
}

.explain-cards span,
.contact-detail-grid span {
  color: var(--text);
  line-height: 1.6;
}

.product-section,
.contacts-section,
.audience-section,
.pricing-section,
.faq-section {
  background:
    linear-gradient(135deg, rgba(90, 127, 232, .04), rgba(83, 181, 154, .035) 48%, rgba(233, 149, 145, .035)),
    var(--soft);
}

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

.photo-story {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
  margin-bottom: 26px;
}

.photo-story article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 43, 66, .11);
}

.photo-story article:first-child {
  min-height: 420px;
}

.photo-story img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.photo-story article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(10, 16, 29, .74)),
    linear-gradient(135deg, rgba(90, 127, 232, .22), rgba(83, 181, 154, .1));
}

.photo-story article:hover img {
  transform: scale(1.05);
}

.photo-story div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.photo-story span {
  display: block;
  margin-bottom: 8px;
  color: #cbd9ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.photo-story strong {
  display: block;
  max-width: 420px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.audience-grid article {
  min-height: 220px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(37, 51, 76, .055);
}

.audience-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(244, 247, 255, .95), rgba(232, 249, 244, .9));
  border-radius: 8px;
}

.audience-grid p {
  color: var(--text);
  line-height: 1.66;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.mini-list i {
  color: var(--green);
}

.product-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin-top: 28px;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(31, 43, 66, .1);
}

.product-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(.94) contrast(.98);
}

.product-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(10, 16, 29, .78));
}

.product-photo-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

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

.product-grid article {
  min-height: 178px;
  padding: 22px;
  box-shadow: 0 20px 58px rgba(40, 54, 82, .055);
}

.product-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.scenario-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.scenario-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(90, 127, 232, .18);
}

.scenario-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity .28s ease, transform .28s ease;
}

.scenario-panel.is-changing {
  opacity: .28;
  transform: translateX(46px);
}

.scenario-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scenario-panel h3 {
  max-width: 640px;
  font-size: clamp(27px, 3.5vw, 42px);
}

.scenario-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.scenario-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-panel li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.scenario-panel li i {
  margin-top: 4px;
  color: var(--green);
}

.scenario-panel img {
  display: block;
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  padding: 0;
  background: linear-gradient(135deg, rgba(244, 247, 255, .9), rgba(235, 249, 245, .8));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 43, 66, .09);
}

.viel-section {
  background:
    linear-gradient(135deg, rgba(237, 210, 122, .12), rgba(90, 127, 232, .05) 44%, transparent),
    #fff;
}

.viel-panel {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 36px;
  align-items: center;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.viel-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.viel-panel img {
  display: block;
  width: min(250px, 100%);
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, rgba(244, 247, 255, .9), rgba(235, 249, 245, .84));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.viel-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.viel-actions span {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.viel-actions i {
  margin-top: 4px;
  color: var(--green);
}

.workflow-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(90, 127, 232, .2), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(83, 181, 154, .16), transparent 34%),
    linear-gradient(135deg, #172239, #1d2b46 54%, #152133);
}

.emergency-section {
  background: #fff;
}

.emergency-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(244, 247, 255, .78), rgba(255, 255, 255, .92)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.emergency-panel p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
}

.emergency-steps {
  display: grid;
  gap: 14px;
}

.emergency-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .76);
}

.emergency-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  font-weight: 700;
}

.emergency-steps strong {
  font-size: 17px;
  font-weight: 700;
}

.emergency-steps p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.workflow-section .label {
  color: #b9d8ff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.workflow-layout p {
  color: rgba(255, 255, 255, .72);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-steps article {
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.workflow-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 700;
}

.workflow-steps p {
  color: rgba(255, 255, 255, .68);
}

.trust-section {
  background: #fff;
}

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

.trust-grid div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.trust-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(244, 247, 255, .95), rgba(232, 249, 244, .9));
  border-radius: 8px;
}

.trust-grid strong {
  font-size: 17px;
  font-weight: 700;
}

.trust-grid span {
  color: var(--text);
  line-height: 1.6;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: -18px auto 34px;
  padding: 5px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.billing-toggle button {
  min-width: 112px;
  min-height: 40px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
}

.billing-toggle button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.plan-card {
  position: relative;
  height: 100%;
  padding: 30px;
  box-shadow: 0 20px 56px rgba(31, 43, 66, .07);
}

.plan-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 30px 78px rgba(90, 127, 232, .13);
}

.plan-card em {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.plan-tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  margin-top: 20px;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.period {
  display: block;
  margin: 6px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  min-height: 194px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.45;
}

.plan-card li i {
  margin-top: 3px;
  color: var(--green);
}

.plan-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #263451, #5a7fe8);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.plan-card.featured a,
.plan-card a:hover {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.about-section {
  background: #fff;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 44px;
  align-items: center;
}

.about-panel img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(244, 247, 255, .8), rgba(255, 255, 255, .86)),
    var(--mesh);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
}

.faq-item button i {
  color: var(--blue);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button i {
  transform: rotate(45deg);
}

.contact-section {
  padding: 28px 0 104px;
  background:
    linear-gradient(180deg, var(--soft), #fff 72%);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 181, 154, .22), transparent 28%),
    linear-gradient(90deg, rgba(20, 31, 53, .92), rgba(50, 80, 150, .72) 56%, rgba(83, 181, 154, .52)),
    url("../images/stock-hero-city-night.jpg") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 18px;
}

.contact-panel .label,
.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-copy h2 {
  color: #fff;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.contact-actions i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10, 16, 29, .14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label,
.newsletter-form {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  font: inherit;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(90, 127, 232, .12);
}

.contact-form button,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 0;
  border-radius: 8px;
  font-weight: 700;
}

.contact-form button:disabled,
.newsletter-form button:disabled {
  cursor: wait;
  opacity: .78;
}

.form-note,
.newsletter-note {
  min-height: 0;
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.form-note,
.newsletter-note {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.45;
}

.form-note i,
.newsletter-note i {
  margin-top: 2px;
  font-size: 16px;
}

.form-note.is-loading,
.form-note.is-success,
.form-note.is-error,
.newsletter-note.is-loading,
.newsletter-note.is-success,
.newsletter-note.is-error {
  display: flex;
}

.form-note.is-loading,
.newsletter-note.is-loading {
  color: #4666ba;
  background: rgba(90, 127, 232, .1);
  border: 1px solid rgba(90, 127, 232, .18);
}

.form-note.is-success,
.newsletter-note.is-success {
  color: #236d5a;
  background: linear-gradient(135deg, rgba(83, 181, 154, .16), rgba(90, 127, 232, .08));
  border: 1px solid rgba(83, 181, 154, .24);
  box-shadow: 0 16px 38px rgba(83, 181, 154, .12);
}

.form-note.is-error,
.newsletter-note.is-error {
  color: #9b3d3a;
  background: rgba(233, 149, 145, .16);
  border: 1px solid rgba(233, 149, 145, .28);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 30px;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(180deg, rgba(16, 25, 43, .94), rgba(12, 18, 31, .98)),
    url("../images/stock-commute-phone.jpg") center / cover no-repeat;
}

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

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(4px);
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 34px;
  align-items: end;
  margin-bottom: 46px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.footer-newsletter .label {
  color: #bcd1ff;
}

.footer-newsletter h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
}

.newsletter-form {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.newsletter-form input {
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .18);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.newsletter-form button {
  padding: 0 18px;
}

.newsletter-note {
  grid-column: 1 / -1;
}

.newsletter-note:not(.is-loading):not(.is-success):not(.is-error) {
  color: rgba(255, 255, 255, .68);
}

.footer-brand {
  width: fit-content;
  color: #fff;
}

.footer-logo {
  display: block;
  width: 142px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .2));
}

.footer-about p {
  max-width: 390px;
  margin: 18px 0;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .17);
  transform: translateY(-2px);
}

.footer-store {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-store a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.privacy-badge {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 390px;
  margin-top: 22px;
  padding: 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .14);
}

.privacy-badge img {
  width: 132px;
  height: 48px;
  object-fit: contain;
  padding: 7px;
  background: #fff;
  border-radius: 8px;
}

.privacy-badge strong,
.privacy-badge span {
  display: block;
}

.privacy-badge strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.privacy-badge span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
}

.footer-column a:hover,
.footer-store a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .nav-container {
    padding: 0 22px;
  }

  .navbar-collapse {
    padding-top: 16px;
    background: rgba(11, 18, 32, .9);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    margin-top: 14px;
    padding: 14px;
    backdrop-filter: blur(20px);
  }

  .navbar.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, .94);
    border-color: var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    background-position: 58% center;
  }

  .hero-container {
    padding: 0 22px;
  }

  .hero-row {
    min-height: auto;
  }

  .phone-scene {
    min-height: auto;
    padding-right: 0;
    padding-bottom: 70px;
  }

  .phone-main {
    margin: 0 auto;
  }

  .status-one {
    left: 20px;
    top: auto;
    bottom: 12px;
  }

  .status-two {
    right: 20px;
    bottom: 12px;
  }

  .scenario-panel,
  .explain-layout,
  .workflow-layout,
  .about-panel,
  .viel-panel,
  .contact-panel,
  .form-grid,
  .trust-panel,
  .footer-newsletter,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 360px;
  }

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

  .privacy-badge {
    max-width: 100%;
  }

  .product-grid,
  .workflow-steps,
  .explain-cards,
  .contact-detail-grid,
  .audience-grid,
  .photo-story,
  .emergency-panel,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-story article,
  .photo-story article:first-child {
    min-height: 310px;
  }

  .emergency-steps article {
    grid-template-columns: 1fr;
  }

  .emergency-steps span {
    grid-row: auto;
  }

  .plan-card ul {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 110px 0 68px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy p,
  .section-copy,
  .section-head p,
  .workflow-layout p,
  .trust-copy p,
  .about-panel p,
  .contact-panel p {
    font-size: 16px;
  }

  .store-link {
    width: 100%;
    justify-content: center;
  }

  .privacy-badge {
    grid-template-columns: 1fr;
  }

  .privacy-badge img {
    width: 150px;
  }

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

  .status-card {
    position: static;
    margin-top: 10px;
  }

  .phone-scene {
    padding-bottom: 0;
  }

  .trust-stats div {
    padding: 14px;
  }

  .trust-strip {
    padding: 58px 0;
  }

  .trust-panel {
    min-height: 430px;
    padding: 24px;
    align-items: end;
    background-position: 58% center;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .photo-story article,
  .photo-story article:first-child {
    min-height: 290px;
  }

  .photo-story strong {
    font-size: 19px;
  }

  .scenario-panel {
    padding: 22px;
  }

  .viel-panel {
    padding: 24px;
  }

  .scenario-tabs {
    justify-content: stretch;
  }

  .scenario-tabs button {
    width: 100%;
    justify-content: center;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-card em {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-copy,
  .contact-form,
  .footer-newsletter {
    padding: 20px;
  }

  .footer-newsletter {
    margin-bottom: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
