*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: "Barlow", sans-serif;
  background: #0E1828;
  color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: "Barlow", sans-serif;
}

::-moz-selection {
  background: rgba(74, 124, 247, 0.35);
  color: #FFFFFF;
}

::selection {
  background: rgba(74, 124, 247, 0.35);
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #07101c;
}

::-webkit-scrollbar-thumb {
  background: rgba(74, 124, 247, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4A7CF7;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text--red {
  color: #D92B2B;
}

.text--blue {
  color: #4A7CF7;
}

.text--gray {
  color: #8a9ab5;
}

.text--white {
  color: #FFFFFF;
}

.text--gradient {
  background: linear-gradient(135deg, #4A7CF7 0%, #D92B2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform box-shadow background 0.25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after {
  left: 140%;
}
.btn .material-icons-round {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}
.btn--primary {
  background: linear-gradient(135deg, #D92B2B 0%, #a81f1f 100%);
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(217, 43, 43, 0.3);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(217, 43, 43, 0.55);
}
.btn--primary:active {
  transform: translateY(-1px);
}
.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn--blue {
  background: linear-gradient(135deg, #4A7CF7 0%, #2d5ed4 100%);
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(74, 124, 247, 0.3);
}
.btn--blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(74, 124, 247, 0.5);
}
.btn--sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
}
.btn--xl {
  padding: 16px 44px;
  font-size: 1.05rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0;
  background: rgba(7, 16, 28, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7, 16, 28, 0.95);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.navbar.scrolled .navbar__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.2s ease;
}
.navbar__logo-img:hover {
  opacity: 0.85;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__links a {
  position: relative;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: color background 0.2s ease;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: #D92B2B;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.navbar__links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}
.navbar__links a:hover::after {
  width: 60%;
}
.navbar__links a.active {
  color: #FFFFFF;
  font-weight: 600;
}
.navbar__links a.active::after {
  width: 60%;
  background: #D92B2B;
}
.navbar__cta {
  font-size: 0.85rem !important;
  padding: 9px 22px !important;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform opacity 0.3s ease;
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  background: rgba(7, 16, 28, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-direction: column;
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  max-height: 520px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background color 0.2s ease;
}
.mobile-menu a .material-icons-round {
  font-size: 18px;
  color: #4A7CF7;
  flex-shrink: 0;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
}
.mobile-menu a.btn--primary {
  margin: 16px 24px;
  border-radius: 50px;
  justify-content: center;
  border-bottom: none;
}

.section {
  padding: 64px 0;
}
.section--alt {
  background: #111f30;
  position: relative;
}
.section--alt::before, .section--alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}
.section--alt::before {
  top: 0;
  background: linear-gradient(to bottom, #0E1828 0%, transparent 100%);
}
.section--alt::after {
  bottom: 0;
  background: linear-gradient(to top, #0E1828 0%, transparent 100%);
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4A7CF7;
  margin-bottom: 14px;
}
.section__label .material-icons-round {
  font-size: 14px;
}
.section__label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #4A7CF7;
  border-radius: 1px;
  flex-shrink: 0;
}
.section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 45%, rgba(74, 124, 247, 0.14) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 15% 75%, rgba(217, 43, 43, 0.1) 0%, transparent 55%), radial-gradient(ellipse 60% 40% at 50% 100%, rgba(22, 34, 53, 0.8) 0%, transparent 70%), #0E1828;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image: radial-gradient(circle, rgba(74, 124, 247, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__bg::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(74, 124, 247, 0.07) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero__content {
  width: 48%;
  flex-shrink: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 124, 247, 0.12);
  border: 1px solid rgba(74, 124, 247, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #4A7CF7;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(74, 124, 247, 0.1);
  transition: box-shadow 0.3s ease;
}
.hero__badge:hover {
  box-shadow: 0 0 30px rgba(74, 124, 247, 0.25);
}
.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 2px;
}
.hero__title span {
  display: block;
}
.hero__sub {
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__visual {
  position: relative;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4A7CF7;
  box-shadow: 0 0 8px #4A7CF7;
  animation: pulse 2s ease-in-out infinite;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}
.trust-item .material-icons-round {
  font-size: 14px;
  color: #4A7CF7;
}
.trust-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.sticker-card {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  width: 380px;
  display: flex;
  transform: rotate(2.5deg);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 80px rgba(74, 124, 247, 0.1);
  transition: transform box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticker-card:hover {
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 100px rgba(74, 124, 247, 0.18);
}
.sticker-card__left {
  flex: 1;
  padding: 28px 22px;
  background: #FFFFFF;
  background-image: linear-gradient(160deg, #fafbff 0%, #fff 100%);
}
.sticker-card__right {
  width: 165px;
  background: #0E1828;
  background-image: linear-gradient(180deg, #0d1e35 0%, #0a1726 100%);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.sticker-card__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #4A7CF7 0%, #2d5ed4 100%);
}

.sticker-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #D92B2B;
  text-shadow: 0 2px 8px rgba(217, 43, 43, 0.2);
}
.sticker-title__sub {
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.vehicle-id {
  display: inline-block;
  margin-top: 12px;
  border: 2px solid #4A7CF7;
  border-radius: 8px;
  padding: 5px 14px;
  background: rgba(74, 124, 247, 0.04);
  box-shadow: 0 0 12px rgba(74, 124, 247, 0.1) inset;
}
.vehicle-id__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: #8a9ab5;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.vehicle-id__num {
  display: block;
  font-size: 1.15rem;
  color: #4A7CF7;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
}

.brand-pill {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(217, 43, 43, 0.25);
}
.brand-pill__circle {
  background: linear-gradient(135deg, #4A7CF7 0%, #2d5ed4 100%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 2px 0 10px rgba(74, 124, 247, 0.3);
}
.brand-pill__circle .material-icons-round {
  font-size: 22px;
}
.brand-pill__text {
  background: linear-gradient(135deg, #D92B2B 0%, #a81f1f 100%);
  padding: 10px 18px 10px 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  margin-left: -8px;
  border-radius: 0 50px 50px 0;
}

.helpline {
  margin-top: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  color: #111;
  letter-spacing: 0.5px;
}
.helpline small {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: #8a9ab5;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.qr-box {
  background: #FFFFFF;
  padding: 10px;
  border-radius: 14px;
  border: 3px solid #4A7CF7;
  box-shadow: 0 0 20px rgba(74, 124, 247, 0.2);
}

.scan-label {
  font-weight: 800;
  color: #4A7CF7;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.scan-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.55;
  padding: 0 4px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4A7CF7 20%, #D92B2B 50%, #4A7CF7 80%, transparent 100%);
  z-index: 0;
  opacity: 0.6;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dashed currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step__num--blue {
  background: linear-gradient(135deg, #4A7CF7 0%, #2d5ed4 100%);
  color: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(74, 124, 247, 0.18), 0 8px 24px rgba(74, 124, 247, 0.35);
}
.step__num--blue::after {
  border-color: #4A7CF7;
}
.step__num--red {
  background: linear-gradient(135deg, #D92B2B 0%, #a81f1f 100%);
  color: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(217, 43, 43, 0.15), 0 8px 24px rgba(217, 43, 43, 0.3);
}
.step__num--red::after {
  border-color: #D92B2B;
}
.step:hover .step__num::after {
  opacity: 0.6;
}
.step__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.step__icon.material-icons-round {
  font-size: 2rem;
  color: #4A7CF7;
}
.step:nth-child(even) .step__icon.material-icons-round {
  color: #D92B2B;
}
.step h3 {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.step p {
  font-size: 1rem;
  color: #8a9ab5;
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform border-color box-shadow 0.3s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #4A7CF7 0%, #D92B2B 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 247, 0.06) 0%, transparent 70%);
  transition: opacity transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 124, 247, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(74, 124, 247, 0.08);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover::after {
  transform: scale(1.5);
  opacity: 1.5;
}
.feature-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.feature-card__icon .material-icons-round {
  font-size: 2.6rem;
}
.feature-card__icon--blue {
  background: rgba(74, 124, 247, 0.14);
  box-shadow: 0 0 20px rgba(74, 124, 247, 0.12);
}
.feature-card__icon--blue .material-icons-round {
  color: #4A7CF7;
}
.feature-card__icon--red {
  background: rgba(217, 43, 43, 0.12);
  box-shadow: 0 0 20px rgba(217, 43, 43, 0.1);
}
.feature-card__icon--red .material-icons-round {
  color: #D92B2B;
}
.feature-card h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.feature-card p {
  color: #8a9ab5;
  font-size: 1rem;
  line-height: 1.75;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.who-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 30px 14px;
  text-align: center;
  transition: background transform box-shadow border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.who-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #4A7CF7 0%, #2d5ed4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.who-card:hover {
  background: rgba(74, 124, 247, 0.1);
  border-color: rgba(74, 124, 247, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 24px rgba(74, 124, 247, 0.1);
}
.who-card:hover::after {
  transform: scaleX(1);
}
.who-card:hover .who-card__icon {
  color: #7aa8ff;
  transform: scale(1.15);
}
.who-card__icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color transform 0.3s ease;
}
.who-card__icon.material-icons-round {
  font-size: 2.6rem;
}
.who-card p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.who-card:hover p {
  color: #FFFFFF;
}

.stats-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #D92B2B 0%, rgb(168.5824, 30.2176, 30.2176) 60%, rgb(133.984, 24.016, 24.016) 100%);
}
.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.stats-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  animation: shimmer 8s linear infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  opacity: 0.7;
}
.stat__icon.material-icons-round {
  font-size: 1.7rem;
}
.stat__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.cta-section {
  text-align: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(74, 124, 247, 0.09) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(217, 43, 43, 0.06) 0%, transparent 55%), #0E1828;
}
.cta-section__bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(74, 124, 247, 0.06);
  animation: ringPulse 6s ease-in-out infinite;
}
.cta-section__bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(74, 124, 247, 0.4);
  animation: ringPulse 6s ease-in-out infinite 3s;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.cta-section__sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}
.cta-section__contact .material-icons-round {
  font-size: 15px;
  color: #4A7CF7;
}
.cta-section__contact a {
  color: #4A7CF7;
  font-weight: 600;
  transition: color 0.2s ease;
}
.cta-section__contact a:hover {
  color: #7aa8ff;
}

.footer {
  background: #07101c;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4A7CF7, #D92B2B, transparent);
  opacity: 0.4;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
  position: relative;
}
.footer__brand .footer__logo {
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.footer__desc {
  font-size: 0.82rem;
  color: #8a9ab5;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 8px;
}
.footer__links-group h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4A7CF7;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(74, 124, 247, 0.2);
}
.footer__links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-group a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: #8a9ab5;
  transition: color transform 0.2s ease;
}
.footer__links-group a .material-icons-round {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.2);
}
.footer__links-group a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}
.footer__links-group a:hover .material-icons-round {
  color: #4A7CF7;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer__legal-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__legal-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}
.footer__legal-links a:hover {
  color: #FFFFFF;
}
.footer__legal-links span {
  color: rgba(255, 255, 255, 0.15);
}

.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 30%, rgba(74, 124, 247, 0.16) 0%, transparent 65%), #0E1828;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74, 124, 247, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero--red .page-hero__bg {
  background: radial-gradient(ellipse 55% 70% at 50% 30%, rgba(217, 43, 43, 0.16) 0%, transparent 65%), #0E1828;
}
.page-hero--red .page-hero__bg::after {
  background-image: radial-gradient(circle, rgba(217, 43, 43, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__icon {
  width: 76px;
  height: 76px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(74, 124, 247, 0.12);
  border: 1px solid rgba(74, 124, 247, 0.25);
  box-shadow: 0 0 40px rgba(74, 124, 247, 0.12);
}
.page-hero__icon .material-icons-round {
  font-size: 36px;
  color: #4A7CF7;
}
.page-hero--red .page-hero__icon {
  background: rgba(217, 43, 43, 0.12);
  border-color: rgba(217, 43, 43, 0.25);
  box-shadow: 0 0 40px rgba(217, 43, 43, 0.12);
}
.page-hero--red .page-hero__icon .material-icons-round {
  color: #D92B2B;
}
.page-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 14px;
}
.page-hero__sub {
  color: #8a9ab5;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.legal-page {
  padding: 64px 0 100px;
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}
.legal-toc h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4A7CF7;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 124, 247, 0.2);
}
.legal-toc h4 .material-icons-round {
  font-size: 14px;
}
.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc a {
  display: block;
  padding: 7px 10px;
  font-size: 0.8rem;
  color: #8a9ab5;
  border-radius: 8px;
  transition: background color transform 0.2s ease;
}
.legal-toc a:hover {
  background: rgba(74, 124, 247, 0.1);
  color: #FFFFFF;
  transform: translateX(3px);
}

.legal-content {
  min-width: 0;
}

.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(74, 124, 247, 0.08);
  border: 1px solid rgba(74, 124, 247, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 64px;
  box-shadow: 0 0 30px rgba(74, 124, 247, 0.06) inset;
}
.legal-notice--red {
  background: rgba(217, 43, 43, 0.08);
  border-color: rgba(217, 43, 43, 0.2);
  box-shadow: 0 0 30px rgba(217, 43, 43, 0.05) inset;
}
.legal-notice--red .material-icons-round {
  color: #D92B2B;
}
.legal-notice .material-icons-round {
  color: #4A7CF7;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-notice p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.legal-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.legal-section h2 .material-icons-round {
  color: #4A7CF7;
  font-size: 22px;
}
.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 10px;
}
.legal-section p {
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p strong {
  color: #FFFFFF;
}
.legal-section a {
  color: #4A7CF7;
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #8a9ab5;
  line-height: 1.65;
}
.legal-list li strong {
  color: #FFFFFF;
}
.legal-list .material-icons-round {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}
.legal-list .material-icons-round.check_circle {
  color: #22c55e;
}
.legal-list .material-icons-round.cancel {
  color: #D92B2B;
}
.legal-list .material-icons-round.chevron_right {
  color: #4A7CF7;
}
.legal-list .material-icons-round.verified {
  color: #22c55e;
}

.legal-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(74, 124, 247, 0.07);
  border-left: 3px solid #4A7CF7;
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight--red {
  background: rgba(217, 43, 43, 0.07);
  border-left-color: #D92B2B;
}
.legal-highlight--red .material-icons-round {
  color: #D92B2B;
}
.legal-highlight .material-icons-round {
  color: #4A7CF7;
  font-size: 20px;
  flex-shrink: 0;
}
.legal-highlight p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px;
  transition: border-color box-shadow 0.2s ease;
}
.contact-card__item:hover {
  border-color: rgba(74, 124, 247, 0.2);
  box-shadow: 0 4px 20px rgba(74, 124, 247, 0.06);
}
.contact-card__item .material-icons-round {
  color: #4A7CF7;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-card__item strong {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-card__item p, .contact-card__item a {
  font-size: 0.88rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-card__item a:hover {
  color: #4A7CF7;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(5deg);
  }
  66% {
    transform: translateY(20px) rotate(-3deg);
  }
}
@keyframes shimmer {
  from {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  to {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.2;
  }
}
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fadeIn] {
  transform: none;
}
[data-animate=fadeIn].animated {
  transform: none;
}

@media (max-width: 1100px) {
  .hero__visual {
    display: none;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .legal-page__layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__sub {
    margin: 24px auto 0;
  }
  .section {
    padding: 2rem 0;
  }
  .stats-banner {
    padding: 64px 0;
  }
  .cta-section {
    padding: 80px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 1rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 0;
  }
}
@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .section__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}/*# sourceMappingURL=style.css.map */