:root {
  --bg: #f6f8fc;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-2: rgba(255, 255, 255, 0.86);
  --stroke: rgba(15, 23, 42, 0.1);

  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.62);

  --primary: #1e88ff;
  --primary-2: #2c58ff;

  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  --radius: 18px;
  --radius-lg: 24px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

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

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

/* Background */
/* Background (light, blurred) */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: var(--bg);
}

.bg__orb {
  position: absolute;
  filter: blur(70px);
  opacity: 0.55;
  border-radius: 999px;
}
.bg__orb--1 {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(30, 136, 255, 0.35), transparent 62%);
}
.bg__orb--2 {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(44, 88, 255, 0.25), transparent 62%);
}
.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 10%, black 12%, transparent 68%);
  opacity: 0.28;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 252, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 290px;
}

.brand__logo {
  height: 44px;
  width: 290px;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: all 0.2s ease;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav__cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}
.nav__toggleLine {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 4px auto;
  border-radius: 99px;
}

/* Hero */
.hero {
  padding: 72px 0 42px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 4px rgba(33, 160, 255, 0.15);
}

.hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.1px;
}
.grad {
  background: linear-gradient(135deg, #6de1ff, var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn--primary {
  border-color: rgba(33, 160, 255, 0.5);
  background: linear-gradient(135deg, rgba(33, 160, 255, 0.95), rgba(44, 88, 255, 0.95));
  box-shadow: 0 14px 35px rgba(33, 160, 255, 0.2);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}
.stat__num {
  font-weight: 800;
  letter-spacing: -0.5px;
}
.stat__label {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
}

/* Glass card */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.card {
  padding: 18px;
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1e40af;
  background: linear-gradient(180deg, rgba(30, 136, 255, 0.12), rgba(30, 136, 255, 0.06));
  border: 1px solid rgba(30, 136, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(30, 136, 255, 0.12);
}

.card__title {
  margin: 10px 0 6px;
  letter-spacing: -0.5px;
}
.card__text {
  margin: 0 0 14px;
  color: var(--muted);
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mini {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.mini__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mini__title {
  font-weight: 800;
  font-size: 13px;
}
.mini__text {
  color: var(--muted);
  font-size: 12.5px;
}

.card__actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  padding: 8px 0;
}
.link:hover {
  color: white;
}

/* Sections */
.section {
  padding: 58px 0;
}
.section--alt {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.section__head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.8px;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service,
.step,
.mini,
.stat {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
}
.service:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
}

.service {
  border-radius: var(--radius);
  padding: 16px;
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.service:hover {
  transform: translateY(-3px);
}
.service__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 160, 255, 0.12);
  border: 1px solid rgba(33, 160, 255, 0.25);
  margin-bottom: 10px;
}
.service h3 {
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}
.service p {
  margin: 0 0 10px;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}
.list li {
  margin: 6px 0;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.step {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.step__body h3 {
  margin: 0 0 4px;
}
.step__body p {
  margin: 0;
  color: var(--muted);
}

/* Feature grid */
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature {
  padding: 18px;
  border-radius: var(--radius-lg);
}
.feature h3 {
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}
.feature p {
  margin: 0;
  color: var(--muted);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.benefit {
  padding: 18px;
  border-radius: var(--radius-lg);
}
.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 160, 255, 0.12);
  border: 1px solid rgba(33, 160, 255, 0.25);
  margin-bottom: 10px;
  font-size: 20px;
}
.benefit h3 {
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}
.benefit p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}
.contact__info,
.contact__form {
  padding: 18px;
  border-radius: var(--radius-lg);
}
.infoRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.infoRow__k {
  color: var(--muted);
}
.infoRow__v a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.contact__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.field {
  margin-top: 12px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.92);
  padding: 12px 12px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
input:focus,
textarea:focus {
  border-color: rgba(30, 136, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 136, 255, 0.12);
  background: white;
}

.error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: rgba(255, 120, 120, 0.95);
  font-size: 12.5px;
}
.formActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.small {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 12px;
}

/* Footer */
.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  height: 44px;
  width: 200px;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.18));
}

.footer__right {
  display: flex;
  gap: 12px;
}
.footer__link {
  color: var(--muted);
  font-weight: 700;
}
.footer__link:hover {
  color: var(--text);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer__social,
.socialRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.socialLink,
.socialBtn {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.socialLink:hover,
.socialBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 52px;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .miniGrid {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: block;
  }
  .nav__menu {
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 11, 22, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__link {
    width: 100%;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}
