style.css :root {
  --bg: #071521;
  --bg-soft: #102338;
  --text: #eaf0f8;
  --muted: rgba(234, 240, 248, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.04);
  --accent: #4f7cff;
  --accent2: #7c3aed;
  --accent3: #3dd9c8;
  --light: #f5f7fb;
  --surface: #ffffff;
  --surface-strong: #eef3ff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Gilroy, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  transition: all 0.2s ease;
}

/* Layout */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
/* .section--light {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4ff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
} */

/* Header */
.top {
  background: rgb(10, 26, 41);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0 20px 0;
  /* position: sticky; */
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  position: relative;
}
.brand__name {
  color: white;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
}
.brand__meta {
  margin-top: 6px;
  color: rgba(234, 240, 248, 0.78);
  font-size: 12px;
  opacity: 0.85;
}
.links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.links a {
  color: rgba(234, 240, 248, 0.78);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.links a:hover {
  color: #fff;
}
.nav-cta {
  color: rgba(234, 240, 248, 0.78);
  /* color: #081621 !important; */
  /* background: rgba(255, 255, 255, 0.92);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12); */
}
.nav-cta:hover {
  transform: translateY(-1px);
}

/* Hero */
.hero {
  background:
    radial-gradient(
      800px 480px at 12% 0%,
      rgba(79, 124, 255, 0.34),
      transparent 52%
    ),
    radial-gradient(
      800px 420px at 82% 18%,
      rgba(124, 58, 237, 0.2),
      transparent 48%
    ),
    linear-gradient(180deg, #071521 0%, #0c1d2e 48%, #0a1625 100%);
  padding: 72px 0 72px;
}
.hero__grid {
  display: grid;
  /* grid-template-columns: 1.2fr 0.8fr; */
  gap: 36px;
  align-items: center;
}
.hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 700;
  /* max-width: 970px; */
}
.accent {
  display: block;
  color: #f6f9ff;
  /* text-shadow: 0 0 18px rgba(79, 124, 255, 0.35); */
}
.hero__lead {
  margin-top: 18px;
  color: rgba(234, 240, 248, 0.78);
  max-width: 52ch;
  line-height: 1.7;
  font-size: 1.05rem;
}
.hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: #2046db;
  color: #fff;
  /* box-shadow: 0 18px 34px rgba(79, 124, 255, 0.26); */
}
.btn-primary:hover {
  box-shadow: 0 22px 38px rgba(79, 124, 255, 0.32);
}
.btn-block {
  width: 100%;
}
.phone {
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px solid white;
  padding: 16px;
  border-radius: 15px;
}
.phone a {
  color: #fff;
  text-decoration: none;
}
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__panel {
  width: min(440px, 100%);
  background: rgba(11, 23, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero__panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -15%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 124, 255, 0.25),
    transparent 68%
  );
}
.panel__header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.panel__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.panel__dot--purple {
  background: #8b5cf6;
}
.panel__dot--blue {
  background: #4f7cff;
}
.panel__dot--green {
  background: #34d399;
}
.panel__body {
  position: relative;
  z-index: 1;
}
.metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
}
.metric--primary {
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.18),
    rgba(124, 58, 237, 0.12)
  );
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.metric--small {
  min-height: 82px;
}
.metric__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(234, 240, 248, 0.7);
}
.metric strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  letter-spacing: -0.06em;
}
.chart {
  height: 140px;
  margin-top: 18px;
  padding: 18px 12px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.chart span {
  display: block;
  width: 100%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(
    180deg,
    rgba(77, 141, 255, 0.9) 0%,
    rgba(124, 58, 237, 0.8) 100%
  );
  box-shadow: 0 12px 18px rgba(79, 124, 255, 0.18);
}

/* Intro section */
.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: flex-start;
}
.section__title {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}
.section__title h2 {
  margin: 0 auto 18px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  color: #0f172a;
  max-width: 720px;
}
.section__title .muted {
  margin: 0 auto;
  max-width: 720px;
}
.muted {
  color: rgba(15, 23, 42, 0.72);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px 36px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.mini {
  position: relative;
  display: grid;
  /* grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.3fr); */
  gap: 26px;
  align-items: flex-start;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.mini__title {
  margin: 0;
  padding: 0 0 8px 0;
  font-size: clamp(0.95rem, 1.3vw, 2rem);
  line-height: 1.38;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #0f172a;
}
.mini p {
  margin: 0;
  line-height: 1.75;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: rgba(15, 23, 42, 0.72);
}
.mini__num {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.12),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(79, 124, 255, 0.14);
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.marketing {
  background: linear-gradient(180deg, #f4f7ff 0%, #f8f9fc 100%);
}
/* Services section */
.services {
  background: linear-gradient(180deg, #f4f7ff 0%, #f8f9fc 100%);
}
.section__title--compact {
  margin-bottom: 32px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f7cff;
  font-weight: 800;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.service-card:nth-child(5) {
  grid-column: 2;
}
.service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(79, 124, 255, 0.08);
}
.service-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.14),
    rgba(124, 58, 237, 0.12)
  );
  color: #294dff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.service-card p {
  margin: 0;
  line-height: 1.7;
}

/* Section titles */
.section__h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  color: white;
}

.section-processes {
  margin: 0 0 20px;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  color: white !important;
}
/* Process section */
.process {
  background:
    radial-gradient(
      900px 420px at 15% 0%,
      rgba(79, 124, 255, 0.18),
      transparent 54%
    ),
    linear-gradient(180deg, #091827 0%, #0f1e2d 100%);
  color: #eaf2ff;
}
.process__inner {
  max-width: 1200px;
}
.process__intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.7;
  font-size: 1.02rem;
  color: rgba(234, 242, 255, 0.78);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.step {
  background: rgba(14, 24, 37, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #5b8cff;
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 20px 40px rgba(4, 7, 15, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(61, 115, 255, 0.15);
}
.step--wide {
  grid-column: 1 / -1;
}
.step__num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b8cff 0%, #5b8cff 100%);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(91, 140, 255, 0.25);
}
.step__content {
  flex: 1;
}
.step__content h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #f0f6ff;
}
.step__content p {
  margin: 0;
  line-height: 1.7;
  color: rgba(234, 242, 255, 0.72);
}

/* Small team */
.smallteam {
  display: grid;
  /* grid-template-columns: 1.1fr 0.9fr; */
  gap: 28px;
  align-items: center;
}
.smallteam__right {
  min-height: 340px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(
      700px 320px at 25% 20%,
      rgba(79, 124, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      520px 250px at 72% 62%,
      rgba(109, 40, 255, 0.14),
      transparent 58%
    ),
    linear-gradient(180deg, #ffffff 0%, #ebf1ff 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.smallteam__right::before,
.smallteam__right::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: auto auto 18% 18%;
  width: 180px;
  height: 180px;
  background: rgba(79, 124, 255, 0.12);
}
.smallteam__right::after {
  inset: 14% 12% auto auto;
  width: 120px;
  height: 120px;
  background: rgba(124, 58, 237, 0.12);
}
.smallteam__left {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.section-how__h2 {
  margin: 0 0 26px;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: #0f172a;
}
.twoCols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.pill {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  padding: 22px 0;
  box-shadow: none;
  min-height: auto;
  transform: none;
}
.pill:nth-child(1),
.pill:nth-child(2),
.pill:nth-child(3),
.pill:nth-child(4) {
  transform: none;
}
.pill__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.12),
    rgba(37, 99, 235, 0.04)
  );
  border: 1px solid rgba(79, 124, 255, 0.12);
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.pill h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #0f172a;
  font-weight: 700;
}
.pill p {
  margin: 0;
  color: rgba(15, 23, 42, 0.76);
  line-height: 1.7;
  font-size: clamp(1rem, 1.25vw, 1rem);
}

.footer--dark {
  background: linear-gradient(180deg, #071b2b 0%, #091d2e 100%);
  color: #f3f7ff;
  padding: 80px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -18px 40px rgba(4, 11, 20, 0.18);
}
.footer__statement {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__statement h2 {
  margin: 0 0 18px;
  color: #f3f7ff;
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.footer__statement p {
  max-width: 960px;
  margin: 0;
  color: rgba(241, 245, 255, 0.84);
  font-size: clamp(15px, 1.1vw, 25px);
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.footer__statement strong {
  color: #f8fbff;
  font-weight: 700;
}

/* Footer / Contact card */
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.footer__h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.8vw, 38px);
  color: #f3f7ff;
  letter-spacing: -0.05em;
  line-height: 1.08;
}
.address {
  margin-top: 18px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(241, 245, 255, 0.8);
}
.formCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 38px rgba(4, 11, 20, 0.16);
}
.formCard__title {
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  font-size: 1.08rem;
  color: #f3f7ff;
}
.field {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.field:last-of-type {
  border-bottom: none;
}
.label {
  color: rgba(241, 245, 255, 0.66);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.value {
  color: #f3f7ff;
  font-size: 0.92rem;
  text-align: right;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(241, 245, 255, 0.7);
  font-size: 14px;
  margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero__grid,
  .section__grid,
  .smallteam,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__visual {
    justify-content: flex-start;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100vw - 28px));
  }

  .top {
    padding-top: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .twoCols,
  .services__grid,
  .steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .mini {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone {
    width: 100%;
  }

  .section {
    padding: 74px 0;
  }

  .services__grid,
  .steps,
  .twoCols {
    grid-template-columns: 1fr;
  }

  .mini,
  .step,
  .pill,
  .formCard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .field {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }

  .footer__statement h2,
  .footer__h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}
