:root {
  --ink: #10243e;
  --muted: #5d6c7f;
  --blue: #0b5ea8;
  --blue-deep: #073b70;
  --cyan: #23a6d5;
  --green: #15a06d;
  --amber: #f2b84b;
  --pink: #f05f8d;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --line: #dce7f2;
  --shadow: 0 28px 80px rgba(16, 36, 62, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--soft);
  font-family: "Inter", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 231, 242, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.contact-card a:hover {
  color: var(--blue);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(11, 94, 168, 0.22);
}

.secondary-button {
  color: var(--blue);
  background: #e8f4ff;
  border: 1px solid #cfe5f8;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 16%, rgba(35, 166, 213, 0.18), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(21, 160, 109, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(231, 246, 255, 0.86)),
    url("../images/logo_trans.png") right 8% center / min(42vw, 520px) no-repeat;
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.18), rgba(240, 95, 141, 0.12));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-copy,
.section-copy,
.price-note,
article p,
.benefit-list span,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.quick-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(16, 36, 62, 0.08);
}

.quick-stats div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 21px;
}

.quick-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(16, 36, 62, 0.16);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  animation: float-card 4.8s ease-in-out infinite;
}

.floating-badge span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(21, 160, 109, 0.15);
}

.badge-location {
  left: 0;
  top: 8%;
}

.badge-biometric {
  right: -10px;
  bottom: 17%;
  animation-delay: 1.2s;
}

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

  50% {
    transform: translateY(-12px);
  }
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  padding: 18px;
  border: 10px solid #16283e;
  border-radius: 36px;
  background: linear-gradient(145deg, #f8fcff, #dceeff);
  box-shadow:
    34px 38px 74px rgba(16, 36, 62, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  transform: rotateY(-12deg) rotateX(7deg) rotateZ(1deg);
  transform-style: preserve-3d;
}

.phone-frame::before {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(35, 166, 213, 0.24), rgba(21, 160, 109, 0.18));
  content: "";
  filter: blur(8px);
  transform: translateZ(-40px);
}

.phone-top {
  width: 86px;
  height: 7px;
  margin: 4px auto 18px;
  border-radius: 999px;
  background: #16283e;
}

.app-card {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 36, 62, 0.12);
}

.app-card-main {
  padding: 22px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.app-card h2 {
  margin-bottom: 4px;
  font-size: 28px;
}

.verification-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.verify-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #dceaf6;
  border-radius: 14px;
  background: #f7fbff;
}

.verify-row.active {
  border-color: rgba(21, 160, 109, 0.35);
  background: #effbf6;
}

.verify-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.verify-row.active .verify-icon {
  background: var(--green);
}

.verify-row strong,
.verify-row small {
  display: block;
}

.verify-row small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.app-card button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font: inherit;
  font-weight: 800;
}

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

.mini-grid div {
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.mini-grid strong {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
}

.banner-slider {
  padding: 0 clamp(18px, 5vw, 72px) clamp(36px, 6vw, 64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 54%);
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 18px;
}

.slide {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 24px 55px rgba(16, 36, 62, 0.18);
}

.slide::after {
  position: absolute;
  right: -44px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  content: "";
}

.slide span {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
}

.slide h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.slide p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.slide-gps {
  background: linear-gradient(145deg, #0b5ea8, #23a6d5);
}

.slide-selfie {
  background: linear-gradient(145deg, #913c91, #f05f8d);
}

.slide-bio {
  background: linear-gradient(145deg, #0f6f5c, #15a06d);
}

.slide-report {
  background: linear-gradient(145deg, #263755, #f2b84b);
}

.section {
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.band {
  background: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(16, 36, 62, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

article:hover {
  box-shadow: 0 24px 54px rgba(16, 36, 62, 0.14);
  transform: translateY(-5px);
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.split,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  padding: 22px;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 36, 62, 0.08);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 7px;
  font-size: 18px;
}

.pricing-section {
  background: #0f2844;
}

.pricing-section .eyebrow,
.pricing-section h2 {
  color: #ffffff;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #173a62, #0b5ea8 60%, #159f90);
  box-shadow: var(--shadow);
}

.plan-name {
  margin-bottom: 8px;
  font-weight: 800;
}

.price {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 18px;
  font-weight: 700;
}

.price-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: #d7ff7a;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(19px, 3vw, 28px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  font-size: 14px;
}

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

  .hero,
  .split,
  .contact-section,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 20% 16%, rgba(35, 166, 213, 0.16), transparent 30%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(231, 246, 255, 0.9)),
      url("../images/logo_trans.png") right 24px top 60px / 300px no-repeat;
  }

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

  .slider-track {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .slide {
    min-width: min(82vw, 420px);
    scroll-snap-align: start;
  }

  .pricing-card .primary-button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .brand span {
    max-width: 132px;
    white-space: normal;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    gap: 34px;
    padding-top: 38px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions a {
    width: 100%;
  }

  .quick-stats,
  .feature-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    display: grid;
    justify-items: center;
  }

  .floating-badge {
    position: relative;
    inset: auto;
    margin: 0 4px 12px;
    animation: none;
  }

  .badge-location {
    justify-self: start;
  }

  .badge-biometric {
    justify-self: end;
  }

  .phone-frame {
    max-width: 320px;
    transform: rotateY(-5deg) rotateX(3deg);
  }

  .banner-slider {
    padding-right: 0;
  }

  .slider-track {
    padding-right: 18px;
  }

  .slide {
    min-width: min(86vw, 360px);
    min-height: 230px;
    padding: 24px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  article {
    min-height: auto;
  }

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