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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 132, 255, 0.4) transparent; }
  html::-webkit-scrollbar {
    width: 6px; }
  html::-webkit-scrollbar-track {
    background: transparent; }
  html::-webkit-scrollbar-thumb {
    background: rgba(10, 132, 255, 0.35);
    border-radius: 9999px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, calc(0.95rem + 0.25vw), 1.125rem);
  line-height: 1.6;
  color: #475569;
  background-color: #F6F9FC;
  overflow-x: hidden;
  min-height: 100vh; }

img, svg {
  max-width: 100%;
  height: auto;
  display: block; }

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none; }

ul, ol {
  list-style: none; }

::selection {
  background: rgba(10, 132, 255, 0.15);
  color: #1A202C; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem); }

.section {
  padding-block: 6rem; }
  @media (min-width: 768px) {
    .section {
      padding-block: 8rem; } }

.gradient-text {
  background: linear-gradient(135deg, #0A84FF, #00A3D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.section__header {
  text-align: center;
  margin-bottom: 4rem; }
  @media (min-width: 768px) {
    .section__header {
      margin-bottom: 6rem; } }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A84FF;
  margin-bottom: 1.5rem; }
  .section__label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0A84FF;
    animation: pulse-dot 2s ease-in-out infinite; }

.section__title {
  font-size: clamp(2rem, calc(1.5rem  + 2.5vw), 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1A202C;
  margin-bottom: 1.5rem; }
  .section__title .gradient-text {
    background: linear-gradient(135deg, #0A84FF, #00A3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.section__subtitle {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  color: #64748B;
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0); }

[data-reveal-delay="1"] {
  transition-delay: 0.1s; }

[data-reveal-delay="2"] {
  transition-delay: 0.2s; }

[data-reveal-delay="3"] {
  transition-delay: 0.3s; }

[data-reveal-delay="4"] {
  transition-delay: 0.4s; }

[data-reveal-delay="5"] {
  transition-delay: 0.5s; }

[data-reveal-delay="6"] {
  transition-delay: 0.6s; }

[data-reveal-delay="7"] {
  transition-delay: 0.7s; }

[data-reveal-delay="8"] {
  transition-delay: 0.8s; }

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1); }
  50% {
    opacity: 0.4;
    transform: scale(0.7); } }

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

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top; }
  50% {
    transform: scaleY(1);
    transform-origin: top; }
  51% {
    transform-origin: bottom; }
  100% {
    transform: scaleY(0);
    transform-origin: bottom; } }

@keyframes rotate-slow {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@keyframes shimmer {
  0% {
    background-position: -200% 0; }
  100% {
    background-position: 200% 0; } }

@keyframes border-glow {
  0%, 100% {
    border-color: rgba(10, 132, 255, 0.08); }
  50% {
    border-color: rgba(10, 132, 255, 0.25); } }

.stagger-enter > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease; }

.stagger-enter.revealed > * {
  opacity: 1;
  transform: translateY(0); }
  .stagger-enter.revealed > *:nth-child(1) {
    transition-delay: 0s; }
  .stagger-enter.revealed > *:nth-child(2) {
    transition-delay: 0.08s; }
  .stagger-enter.revealed > *:nth-child(3) {
    transition-delay: 0.16s; }
  .stagger-enter.revealed > *:nth-child(4) {
    transition-delay: 0.24s; }
  .stagger-enter.revealed > *:nth-child(5) {
    transition-delay: 0.32s; }
  .stagger-enter.revealed > *:nth-child(6) {
    transition-delay: 0.4s; }
  .stagger-enter.revealed > *:nth-child(7) {
    transition-delay: 0.48s; }
  .stagger-enter.revealed > *:nth-child(8) {
    transition-delay: 0.56s; }
  .stagger-enter.revealed > *:nth-child(9) {
    transition-delay: 0.64s; }
  .stagger-enter.revealed > *:nth-child(10) {
    transition-delay: 0.72s; }
  .stagger-enter.revealed > *:nth-child(11) {
    transition-delay: 0.8s; }
  .stagger-enter.revealed > *:nth-child(12) {
    transition-delay: 0.88s; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(170deg, #EBF4FF 0%, #F6F9FC 40%, #FFFFFF 100%); }
  .hero::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(10, 132, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0; }

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 8rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media (min-width: 768px) {
    .hero__content {
      padding-block: 0; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: rgba(10, 132, 255, 0.08);
  border: 1px solid rgba(10, 132, 255, 0.12);
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  font-weight: 500;
  color: #0A84FF;
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease both; }

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s ease-in-out infinite; }

.hero__title {
  font-size: clamp(3rem, calc(2rem    + 5vw), 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1A202C;
  max-width: 900px;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s 0.15s ease both; }
  .hero__title .gradient-text {
    background: linear-gradient(135deg, #0A84FF, #00A3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.hero__subtitle {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  color: #64748B;
  line-height: 1.7;
  max-width: 620px;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s 0.3s ease both; }

.hero__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  animation: fade-in-up 0.8s 0.45s ease both; }
  @media (min-width: 480px) {
    .hero__cta {
      flex-direction: row; } }

.hero__stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  animation: fade-in-up 0.8s 0.6s ease both; }
  @media (min-width: 480px) {
    .hero__stats {
      flex-direction: row;
      gap: 4rem; } }

.hero__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  position: relative; }
  .hero__stat + .hero__stat {
    padding-top: 1.5rem; }
    @media (min-width: 480px) {
      .hero__stat + .hero__stat {
        padding-top: 0;
        padding-left: 4rem; }
        .hero__stat + .hero__stat::before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 1px;
          height: 40px;
          background: linear-gradient(to bottom, transparent, rgba(10, 132, 255, 0.4), transparent); } }

.hero__stat-value {
  font-size: clamp(1.5rem, calc(1.2rem  + 1.5vw), 2.25rem);
  font-weight: 700;
  color: #1A202C;
  letter-spacing: -0.02em; }

.hero__stat-label {
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  letter-spacing: 0.08em;
  animation: fade-in 1s 1.2s ease both; }
  @media (min-width: 768px) {
    .hero__scroll {
      bottom: 3rem; } }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(10, 132, 255, 0.4);
  animation: scroll-line 2s ease-in-out infinite; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.5rem 0;
  transition: background 250ms ease, padding 250ms ease, box-shadow 250ms ease; }
  .nav.nav--scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08); }

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.nav__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.25rem, calc(1.1rem  + 0.75vw), 1.5rem);
  font-weight: 700;
  color: #1A202C;
  letter-spacing: -0.03em;
  text-decoration: none; }
  .nav__logo svg {
    width: 32px;
    height: 32px; }
  .nav__logo span {
    background: linear-gradient(135deg, #0A84FF, #00A3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.nav__links {
  display: none; }
  @media (min-width: 1024px) {
    .nav__links {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      gap: 2rem; } }

.nav__link {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 500;
  color: #64748B;
  transition: color 250ms ease;
  position: relative; }
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0A84FF;
    border-radius: 1px;
    transition: width 250ms ease; }
  .nav__link:hover, .nav__link.active {
    color: #1A202C; }
    .nav__link:hover::after, .nav__link.active::after {
      width: 100%; }

.nav__cta {
  display: none; }
  @media (min-width: 1024px) {
    .nav__cta {
      display: inline-flex; } }

.nav__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #1A202C; }
  @media (min-width: 1024px) {
    .nav__toggle {
      display: none; } }

.nav__toggle-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch; }
  .nav__toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1A202C;
    border-radius: 2px;
    transition: transform 250ms ease, opacity 250ms ease;
    transform-origin: center; }

.nav--open .nav__toggle-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg); }

.nav--open .nav__toggle-icon span:nth-child(2) {
  opacity: 0; }

.nav--open .nav__toggle-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
  padding: 6rem 2rem 4rem;
  overflow-y: auto; }
  .nav__mobile.nav__mobile--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  @media (min-width: 1024px) {
    .nav__mobile {
      display: none !important; } }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #1A202C;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 301; }
  .nav__mobile-close svg {
    width: 24px;
    height: 24px; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem; }

.nav__mobile-link {
  font-size: clamp(1.5rem, calc(1.2rem  + 1.5vw), 2.25rem);
  font-weight: 600;
  color: #1A202C;
  transition: color 250ms ease;
  position: relative;
  padding: 0.5rem 0; }
  .nav__mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0A84FF;
    border-radius: 1px;
    transition: width 250ms ease; }
  .nav__mobile-link:hover {
    color: #0A84FF; }
    .nav__mobile-link:hover::after {
      width: 100%; }

.nav__mobile-cta {
  margin-top: 1rem; }

.nav__mobile-info {
  margin-top: auto;
  padding-top: 3rem;
  text-align: center;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #64748B;
  line-height: 1.6; }
  .nav__mobile-info a {
    color: #0A84FF;
    transition: color 250ms ease; }
    .nav__mobile-info a:hover {
      color: #0066CC; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease; }
  .btn:hover {
    transform: translateY(-2px); }
  .btn:active {
    transform: translateY(0); }

.btn--primary {
  background: #0A84FF;
  color: #1A202C;
  box-shadow: 0 4px 15px rgba(10, 132, 255, 0.35); }
  .btn--primary:hover {
    background: #2993ff;
    box-shadow: 0 6px 25px rgba(10, 132, 255, 0.45); }

.btn--outline {
  background: transparent;
  color: #1A202C;
  border: 1px solid rgba(0, 0, 0, 0.15); }
  .btn--outline:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.3); }

.btn--large {
  padding: 1rem 2.5rem;
  font-size: clamp(1rem, calc(0.95rem + 0.25vw), 1.125rem); }

.btn--ghost {
  background: transparent;
  color: #0A84FF;
  padding: 0.5rem 1rem; }
  .btn--ghost:hover {
    background: rgba(10, 132, 255, 0.08); }

.card {
  padding: 2rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease; }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 132, 255, 0.25); }

.card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(10, 132, 255, 0.1);
  color: #0A84FF;
  flex-shrink: 0;
  margin-bottom: 1.5rem; }

.card__title {
  font-size: clamp(1.25rem, calc(1.1rem  + 0.75vw), 1.5rem);
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 1rem; }

.card__text {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B;
  line-height: 1.7; }

.card__tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  font-weight: 500;
  color: #0A84FF;
  background: rgba(10, 132, 255, 0.1); }

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #0A84FF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease, background 250ms ease, box-shadow 250ms ease; }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .back-to-top:hover {
    background: #0A84FF;
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(10, 132, 255, 0.15);
    transform: translateY(-2px); }
  .back-to-top:active {
    transform: translateY(0); }
  .back-to-top svg {
    width: 20px;
    height: 20px; }
  @media (min-width: 768px) {
    .back-to-top {
      bottom: 3rem;
      right: 3rem; } }

.stat {
  text-align: center; }

.stat__value {
  font-size: clamp(2.5rem, calc(1.8rem  + 3.5vw), 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1A202C;
  background: linear-gradient(135deg, #0A84FF, #00A3D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem; }

.stat__label {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B; }

.testimonial {
  padding: 3rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  position: relative; }
  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 132, 255, 0.25); }
  .testimonial::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    line-height: 1;
    background: linear-gradient(135deg, #0A84FF, #00A3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    pointer-events: none; }

.testimonial__text {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  color: #475569;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem; }

.testimonial__author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem; }

.testimonial__name {
  font-weight: 600;
  color: #1A202C; }

.testimonial__role {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B; }

.step {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative; }

.step__number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 700;
  color: #0A84FF;
  position: relative;
  z-index: 1; }

.step__content {
  padding-bottom: 3rem; }

.step__title {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 0.5rem; }

.step__text {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B;
  line-height: 1.7; }

.steps__list {
  position: relative; }
  .steps__list::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 23px;
    width: 2px;
    bottom: 48px;
    background: linear-gradient(to bottom, rgba(10, 132, 255, 0.3), rgba(0, 163, 217, 0.1)); }

.input-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 440px;
  border-radius: 9999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1); }

.input-group__field {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: #1A202C;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  outline: none; }
  .input-group__field::placeholder {
    color: #64748B; }

.input-group__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  border-radius: 0;
  background: #0A84FF;
  color: #1A202C;
  padding-inline: 2rem; }
  .input-group__btn:hover {
    transform: translateY(-2px); }
  .input-group__btn:active {
    transform: translateY(0); }
  .input-group__btn:hover {
    background: #2993ff;
    transform: none; }

.partners {
  padding-block: 6rem;
  padding-block: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  @media (min-width: 768px) {
    .partners {
      padding-block: 8rem; } }

.partners__label {
  text-align: center;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem; }

.partners__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.6;
  transition: opacity 250ms ease; }
  .partners__grid:hover {
    opacity: 0.85; }

.partners__item {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.02em;
  white-space: nowrap; }

.about__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem; }
  @media (min-width: 768px) {
    .about__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem; } }

.about__card {
  padding: 2rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  text-align: center; }
  .about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 132, 255, 0.25); }
  @media (min-width: 768px) {
    .about__card {
      text-align: left; } }

.about__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(10, 132, 255, 0.1);
  color: #0A84FF;
  flex-shrink: 0;
  margin: 0 auto 1.5rem; }
  @media (min-width: 768px) {
    .about__card-icon {
      margin: 0 0 1.5rem; } }

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem; }
  @media (min-width: 768px) {
    .solutions__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem; } }

.solutions__card {
  padding: 3rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden; }
  .solutions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 132, 255, 0.25); }
  .solutions__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A84FF, #00A3D9);
    opacity: 0;
    transition: opacity 250ms ease; }
  .solutions__card:hover::before {
    opacity: 1; }

.technology {
  position: relative; }
  .technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.02) 0%, transparent 50%);
    pointer-events: none; }

.technology__inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  position: relative; }
  @media (min-width: 1024px) {
    .technology__inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem;
      align-items: center; } }

@media (min-width: 1024px) {
  .technology__content {
    order: 1; } }

@media (min-width: 1024px) {
  .technology__visual {
    order: 2; } }

.tech-diagram {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  padding: 3rem; }

.tech-diagram__node {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  width: 100%;
  max-width: 340px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  animation: border-glow 3s ease-in-out infinite; }
  .tech-diagram__node:nth-child(1) {
    animation-delay: 0s; }
  .tech-diagram__node:nth-child(2) {
    animation-delay: 0.5s; }
  .tech-diagram__node:nth-child(3) {
    animation-delay: 1s; }
  .tech-diagram__node:nth-child(4) {
    animation-delay: 1.5s; }
  .tech-diagram__node:hover {
    transform: translateX(8px);
    box-shadow: 0 0 30px rgba(10, 132, 255, 0.15); }

.tech-diagram__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(10, 132, 255, 0.1);
  color: #0A84FF;
  flex-shrink: 0;
  font-size: 1.1rem; }

.tech-diagram__label {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 600;
  color: #1A202C; }

.tech-diagram__sub {
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #64748B;
  margin-top: 2px; }

.tech-diagram__connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(10, 132, 255, 0.3), rgba(0, 163, 217, 0.15)); }

.metrics {
  position: relative; }
  .metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 132, 255, 0.03) 50%, transparent 100%);
    pointer-events: none; }

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem; }
  @media (min-width: 480px) {
    .metrics__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem; } }
  @media (min-width: 768px) {
    .metrics__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem; } }

.metrics__item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); }
  @media (min-width: 480px) {
    .metrics__item {
      padding: 2rem; } }

.testimonials {
  position: relative; }

.cta-section {
  text-align: center;
  position: relative; }

.cta-section__inner {
  padding: 4rem;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.04) 0%, rgba(0, 163, 217, 0.02) 100%); }
  .cta-section__inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 132, 255, 0.25); }
  .cta-section__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.5), rgba(0, 163, 217, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; }
  @media (min-width: 768px) {
    .cta-section__inner {
      padding: 6rem; } }

.cta-section__title {
  font-size: clamp(2rem, calc(1.5rem  + 2.5vw), 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1A202C;
  margin-bottom: 1.5rem; }

.cta-section__text {
  font-size: clamp(1.125rem, calc(1rem    + 0.6vw), 1.25rem);
  color: #64748B;
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3rem; }

.cta-section__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem; }
  @media (min-width: 480px) {
    .cta-section__actions {
      flex-direction: row; } }

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 6rem;
  padding-bottom: 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 4rem; }
  @media (min-width: 480px) {
    .footer__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem; } }
  @media (min-width: 1024px) {
    .footer__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem; } }

@media (min-width: 480px) {
  .footer__brand {
    grid-column: 1 / -1; } }

@media (min-width: 1024px) {
  .footer__brand {
    grid-column: auto; } }

.footer__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.25rem, calc(1.1rem  + 0.75vw), 1.5rem);
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 1rem; }
  .footer__logo span {
    background: linear-gradient(135deg, #0A84FF, #00A3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.footer__tagline {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B;
  line-height: 1.7;
  max-width: 280px; }

.footer__heading {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.footer__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem; }

.footer__link {
  font-size: clamp(0.875rem, calc(0.8rem  + 0.35vw), 1rem);
  color: #64748B;
  transition: color 250ms ease; }
  .footer__link:hover {
    color: #0A84FF; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #64748B; }
  @media (min-width: 768px) {
    .footer__bottom {
      flex-direction: row;
      justify-content: space-between; } }

.footer__disclaimer {
  font-size: clamp(0.75rem, calc(0.7rem  + 0.25vw), 0.875rem);
  color: #94A3B8;
  max-width: 520px;
  line-height: 1.6;
  font-style: italic;
  margin-top: 1rem; }
  @media (min-width: 768px) {
    .footer__disclaimer {
      margin-top: 0;
      text-align: right; } }

.footer__socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem; }

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #64748B;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 250ms ease, background 250ms ease, transform 250ms ease; }
  .footer__social:hover {
    color: #0A84FF;
    background: rgba(10, 132, 255, 0.1);
    transform: translateY(-2px); }
  .footer__social svg {
    width: 16px;
    height: 16px; }
