:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #4b5563;
  --content-max: 1220px;
  --primary: #20b9ff;
  --primary-dark: #0f7fcc;
  --border: #e5e7eb;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 6px;
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(22px, 6vw, 70px);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__image {
  display: block;
  width: auto;
  height: 48px;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 30%, #94e5ff, #0094ff 60%, #004fbf);
  box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.5);
}

.logo__text {
  line-height: 1.1;
  font-size: 14px;
}

.logo__text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav__link {
  padding: 8px 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s,
    color 0.2s, border-color 0.2s;
  min-width: 118px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: #1aaef1;
  border-color: #1aaef1;
}

.btn--dark {
  background: #0b0b0b;
  color: #fff;
  border-color: #0b0b0b;
  box-shadow: none;
}

.btn--dark:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: #1aaef1;
  color: #1aaef1;
  background: #fff;
}

.btn--ghost:hover {
  border-color: #0f9cde;
  color: #0f9cde;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f4f4f6;
  min-height: auto;
  padding: clamp(48px, 7vw, 78px) clamp(20px, 5vw, 90px) 34px;
}

.hero__intro {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  color: #60656d;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.pill::before,
.pill::after {
  content: "";
  display: inline-block;
  width: 1.5px;
  height: 12px;
  background: #1aaef1;
  border-radius: 999px;
  transform: translateY(1px);
}

.pill__icon,
.pill__pulse {
  display: none;
}

.hero__title {
  margin: 0;
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(42px, 4.7vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 600;
  color: #101114;
}

.hero__title--break {
  display: block;
}

.hero__subtitle {
  max-width: 580px;
  margin: 14px auto 26px;
  color: #808287;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.hero__actions {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 34px;
}

.hero__actions .btn {
  position: relative;
  min-width: 108px;
  min-height: 38px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 18px;
}

.hero__actions .btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #19abf0;
}

.hero__actions .btn--dark::after {
  background: rgba(16, 17, 20, 0.35);
}

.hero__blobs {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
}

.hero__intro,
.hero__title,
.hero__subtitle,
.hero__actions,
.trust {
  position: relative;
  z-index: 1;
}

.blob-image {
  display: block;
  width: 500px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.blob-image--left {
  transform: translate(-26px, -2px);
}

.blob-image--right {
  transform: translate(24px, 0);
}

.trust {
  margin-top: 26px;
  color: #767a82;
  font-size: 16px;
  font-weight: 400;
}

.trust p {
  margin: 0;
}

.trust__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 18px auto 0;
  color: rgba(122, 127, 136, 0.24);
  text-transform: lowercase;
  letter-spacing: 0;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 28px);
}

.placeholder {
  padding: 80px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

.section {
  padding: 70px clamp(18px, 6vw, 80px) 60px;
  text-align: center;
}

.impact {
  background: #f7f8fb;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #7c8fa7;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section__eyebrow .bar {
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.section__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
}

.section__title--break {
  display: block;
}

.impact__grid {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: var(--content-max);
}

.impact__card {
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.impact__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.impact__label {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #5c6472;
}

.impact__copy {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #7c8593;
}

.projects {
  background: #f4f4f6;
  text-align: left;
}

.projects .section__eyebrow,
.projects__header,
.projects__grid {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.projects__header {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.projects .section__title {
  margin-bottom: 8px;
  font-size: clamp(30px, 2.9vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 520px;
}

.section__lede {
  margin: 0;
  max-width: 420px;
  color: #7c8593;
  font-size: 13px;
  line-height: 1.6;
}

.projects__cta {
  position: relative;
  min-width: 124px;
  height: 34px;
  padding: 6px 14px;
  border-width: 1px;
  font-size: 12px;
  font-weight: 500;
  color: #667489;
  border-color: #8ed0ff;
}

.projects__cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #55bdf8;
}

.projects .section__eyebrow {
  margin-bottom: 14px;
}

.projects .section__eyebrow .bar {
  width: 1.5px;
  height: 12px;
  background: #37b8ff;
}

.projects .section__eyebrow .bar:nth-of-type(1) {
  margin-right: 2px;
}

.projects .section__eyebrow .bar:nth-of-type(2) {
  margin-left: 2px;
}

.projects .section__eyebrow {
  color: #5d6270;
  font-size: 12px;
  font-weight: 500;
}

.projects .section__lede {
  max-width: 420px;
  color: #7f848e;
  font-size: 14px;
  line-height: 1.55;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #ececef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.project-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 588 / 382.83;
  background: #e7e8ea;
  border-bottom: 1px solid #ececef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.project-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.project-card__meta .dot {
  width: 1.5px;
  height: 10px;
  background: #40bfff;
  border-radius: 999px;
}

.project-card__body {
  height: auto;
  padding: 12px 12px 11px;
}

.project-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.project-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.project-card__tags {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #dde2e8;
  border-radius: 999px;
  background: #f2f3f5;
  color: #707784;
  font-size: 9px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .projects__header {
    flex-direction: column;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 588px;
  }

  .project-card {
    width: 100%;
    height: auto;
  }

  .project-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 382.83;
  }

  .project-card__body {
    height: auto;
  }

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

  .project-card__tags {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.process {
  background: #f3f3f5;
  text-align: left;
}

.process__intro,
.process__steps {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.process__steps {
  width: 100%;
}

.process__intro {
  text-align: left;
}

.process .section__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #5b626f;
  font-size: 12px;
  font-weight: 500;
}

.process .section__eyebrow .bar {
  width: 1.5px;
  height: 12px;
  background: #33b9ff;
}

.process .section__title {
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

.process__lede {
  margin-top: 8px;
  max-width: 500px;
  color: #7c838f;
  font-size: 13px;
  line-height: 1.45;
  margin-left: 0;
  margin-right: 0;
}

.process__steps {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.process__card {
  background: #032b53;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 90px 184px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 300px;
  padding: 28px 34px 30px 18px;
  color: #ecf5ff;
}

.process__card--alt {
  background: #07446a;
}

.process__meta {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  color: #e8f0fb;
  font-weight: 500;
  font-size: 39px;
  letter-spacing: -0.02em;
}

.process__tick {
  width: 1.5px;
  height: 12px;
  background: #3ad1ff;
  border-radius: 999px;
  display: inline-block;
}

.process__num {
  line-height: 1;
}

.process__icon {
  position: relative;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
}

.process__card > .cta__icon {
  width: 176px;
  height: 176px;
}

.process__icon--pin::before {
  content: "";
  width: 172px;
  height: 172px;
  background: radial-gradient(circle at 50% 40%, #e6f4ff 5%, #7cd4ff 42%, #1c8edf 70%),
    linear-gradient(180deg, #b9c4d1 0%, #7f8b99 60%, #506073 100%);
  border-radius: 50%;
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  clip-path: path("M60 10C36 10 20 26 20 48c0 26 24 54 36 68 12-14 36-42 36-68 0-22-16-38-32-38Z"
    );
}

.process__icon--pin::after {
  content: "";
  position: absolute;
  inset: 35px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #c9ecff 12%, #46b7ff 55%, #0278c7 90%);
}

.process__icon--vector::before {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  background: radial-gradient(circle at 50% 65%, #0b85c2 15%, #0c3451 90%);
  border-radius: 16px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.process__icon--vector::after {
  content: "";
  position: absolute;
  width: 158px;
  height: 148px;
  background:
    radial-gradient(circle at 50% 70%, #57c6ff 10%, #2a8ac3 35%, transparent 60%),
    radial-gradient(circle at 32% 28%, #c9e9ff 5%, #4eb8ff 18%, #0b4d8a 36%),
    radial-gradient(circle at 68% 28%, #c9e9ff 5%, #4eb8ff 18%, #0b4d8a 36%),
    radial-gradient(circle at 50% 50%, #b1e4ff 12%, #1d7dbb 26%, #0f2c43 52%);
  border-radius: 18px;
}

.process__body h3 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.02;
  font-weight: 500;
  color: #f1f6ff;
}

.process__body p {
  margin: 0;
  max-width: 400px;
  font-size: 13px;
  line-height: 1.45;
  color: #d5e2f2;
}

@media (max-width: 768px) {
  .process .section__title {
    max-width: 100%;
    font-size: 34px;
  }

  .process__card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "meta icon"
      ". body";
    min-height: auto;
    padding: 20px;
    gap: 14px;
  }

  .process__meta {
    grid-area: meta;
    font-size: 30px;
  }

  .process__icon,
  .process__card > .cta__icon {
    grid-area: icon;
    width: 110px;
    height: 110px;
  }

  .process__body {
    grid-area: body;
  }

  .process__body h3 {
    font-size: 24px;
  }
}

.process__icon--code::before {
  content: "";
  position: absolute;
  width: 128px;
  height: 108px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #5dbbf5 0%, #0f7cc2 70%),
    linear-gradient(180deg, #d8e0eb 0%, #8f9aab 100%);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
}

.process__icon--code::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 86px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 25%, #e8f3ff 8%, transparent 18%),
    linear-gradient(180deg, #f9fbff 0%, #cad5e5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  transform: translate(-2px, -2px);
}

.process__icon--deliver::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 110px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fdfefe 0%, #bcc6d3 90%),
    linear-gradient(180deg, #94a2b5 0%, #627489 70%, #364557 100%);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
  clip-path: polygon(0 18%, 100% 18%, 100% 100%, 0 100%);
}

.process__icon--deliver::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 90px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #d4deed 100%),
    linear-gradient(180deg, #7f91a3 0%, #4f5e72 70%, #324255 100%);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translate(-4px, -6px);
}

.cta {
  background: #f4f4f6;
}

.cta__card {
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: 120px 170px minmax(280px, 420px);
  justify-content: start;
  gap: 42px;
  align-items: center;
  box-shadow: none;
}

.process > .cta__card {
  max-width: var(--content-max);
  margin-top: 18px;
}

.process > .cta__card.process__card {
  min-height: auto;
}

.cta__meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #242833;
  font-weight: 500;
  font-size: 43px;
  letter-spacing: -0.02em;
  justify-self: start;
}

.cta__tick {
  width: 1.5px;
  height: 12px;
  background: #35b8ff;
  border-radius: 999px;
  display: inline-block;
}

.cta__icon {
  width: 176px;
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta__content h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cta__content p {
  margin: 0 0 16px;
  max-width: 420px;
  font-size: 13px;
  color: #8b919c;
  line-height: 1.45;
}

.cta__content .btn {
  position: relative;
  min-width: 108px;
  min-height: 38px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 18px;
}

.cta__content .btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.35);
}

@media (max-width: 768px) {
  .cta__card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 22px 18px;
  }

  .cta__meta {
    font-size: 30px;
  }

  .cta__icon {
    width: 124px;
    height: 124px;
  }

  .cta__content h3 {
    font-size: 28px;
  }
}

.testimonials {
  background: #f4f4f6;
  text-align: center;
}

.testimonials .section__eyebrow,
.testimonials .section__title,
.testimonials .testimonials__lede,
.testimonials__grid,
.testimonials__footer {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section__eyebrow {
  margin-bottom: 10px;
  color: #5d626f;
  font-size: 12px;
  font-weight: 500;
}

.testimonials .section__eyebrow .bar {
  width: 1.5px;
  height: 12px;
  background: #34b9ff;
}

.testimonials .section__title {
  max-width: 760px;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.testimonials__lede {
  margin-top: 10px;
  max-width: 560px;
  color: #8a909a;
  font-size: 13px;
  line-height: 1.45;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.testimonial-card {
  background: #f5f5f6;
  border: 1px solid #eceff4;
  border-radius: 10px;
  padding: 22px 22px 18px;
  text-align: left;
  box-shadow: none;
  display: grid;
  gap: 16px;
  min-height: 250px;
}

.testimonial-card--rating {
  grid-row: span 2;
  padding: 24px 24px 20px;
  gap: 18px;
  min-height: 512px;
}

.rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
}

.rating__icon {
  color: #3bb8ff;
  font-size: 22px;
}

.rating__score {
  font-size: 46px;
  line-height: 1;
  color: var(--text);
}

.rating__total {
  color: #8a909a;
  font-size: 27px;
}

.testimonial-card__headline {
  margin-top: 12px;
  max-width: 430px;
  font-size: clamp(38px, 2.7vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
}

.rating__summary {
  align-self: end;
  margin-top: auto;
  border: 1px dashed #d8dde5;
  border-radius: 7px;
  background: #fff;
  padding: 10px 10px 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  align-items: center;
}

.rating__faces {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 30px;
  grid-row: 1 / span 2;
}

.face {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b5c6ff, #5ba8ff);
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px #e6eaf0;
  margin-left: -5px;
}

.face:first-child {
  margin-left: 0;
}

.face--2 {
  background: linear-gradient(135deg, #ffd09e, #ff8f70);
}

.face--3 {
  background: linear-gradient(135deg, #9effd4, #4ad4a9);
}

.face--4 {
  background: linear-gradient(135deg, #ffc7f2, #ff7bd1);
}

.face--5 {
  background: linear-gradient(135deg, #b5bdf7, #757de8);
}

.face--more {
  width: auto;
  min-width: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eceff4;
  color: #5f6775;
  font-size: 9px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}

.rating__stars {
  margin-top: 0;
  color: #3bb8ff;
  font-size: 13px;
  letter-spacing: 1px;
  justify-self: end;
  line-height: 1;
}

.rating__count {
  margin-top: 0;
  color: #7f8693;
  font-size: 12px;
  justify-self: end;
  line-height: 1.1;
}

.testimonial-card__btn {
  width: 100%;
  justify-content: center;
  min-height: 38px;
  font-size: 13px;
  margin-top: 8px;
}

.testimonial-card__btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.35);
}

.testimonial-card__quote {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: #111827;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.testimonial-card__author::before {
  content: "";
  width: 1.5px;
  height: 11px;
  border-radius: 999px;
  background: #37baff;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0fa3ff, #6ce1ff);
  flex: 0 0 auto;
}

.avatar--1 {
  background: linear-gradient(135deg, #1f9dff, #6be2ff);
}

.avatar--2 {
  background: linear-gradient(135deg, #c69a7d, #f3dbc7);
}

.avatar--3 {
  background: linear-gradient(135deg, #80624b, #d1b39a);
}

.avatar--4 {
  background: linear-gradient(135deg, #7a8da2, #c9d8ea);
}

.testimonial-card__author strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.1;
}

.testimonial-card__author small {
  display: block;
  font-size: 9px;
  color: #9aa1ac;
  margin-top: 2px;
  line-height: 1.2;
}

.testimonials__footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.testimonials__note {
  max-width: 420px;
  color: #8a909a;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.testimonials__footer .btn {
  position: relative;
  min-width: 140px;
  min-height: 40px;
  font-size: 12px;
  font-weight: 500;
  color: #667489;
  border-color: #90d1ff;
  padding-inline: 18px;
}

.testimonials__footer .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #55bdf8;
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card--rating {
    grid-row: auto;
  }

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

  .testimonial-card__headline {
    font-size: 28px;
  }

  .rating__score {
    font-size: 36px;
  }

  .rating__total {
    font-size: 20px;
  }

  .testimonial-card__quote {
    font-size: 16px;
  }

  .testimonial-card__author strong {
    font-size: 14px;
  }

  .testimonial-card__author small {
    font-size: 11px;
  }
}

.faq {
  background: #f3f3f5;
  text-align: left;
}

.faq__layout {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.faq .faq__intro .section__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #5e6570;
  font-size: 12px;
  font-weight: 500;
}

.faq .section__eyebrow .bar {
  width: 1.5px;
  height: 12px;
  background: #34b9ff;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(460px, 1.2fr);
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

.faq .section__title {
  max-width: 460px;
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.faq__intro {
  display: flex;
  flex-direction: column;
  min-height: 585px;
}

.faq__lede {
  margin-top: 14px;
  max-width: 420px;
  color: #7c838f;
  font-size: 13px;
  line-height: 1.5;
}

.faq__card {
  margin-top: auto;
  background: #f7f7f8;
  border: 1px solid #eceef2;
  border-radius: 10px;
  padding: 22px 24px 24px;
  box-shadow: none;
}

.faq__card-title {
  font-weight: 500;
  font-size: clamp(26px, 2.9vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--text);
}

.faq__card p {
  margin: 0 0 20px;
  max-width: 360px;
  color: #8b919c;
  font-size: 14px;
  line-height: 1.55;
}

.faq__card .btn {
  position: relative;
  min-width: 102px;
  min-height: 36px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  padding: 9px 17px;
}

.faq__card .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.35);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #f7f7f8;
  border: 1px solid #eceef2;
  border-radius: 10px;
  padding: 16px 18px 16px;
  box-shadow: none;
}

.faq__item header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.35;
  text-transform: capitalize;
}

.faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 0;
  font-weight: 500;
  color: #37b9ff;
  font-size: 23px;
  line-height: 1;
  transform: translateY(-1px);
}

.faq__item p {
  margin: 8px 0 0;
  color: #969da8;
  font-size: 12px;
  line-height: 1.5;
  text-transform: capitalize;
}

.faq__item:first-child .faq__toggle {
  font-size: 22px;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq__intro {
    min-height: auto;
  }

  .faq .section__title {
    font-size: 34px;
    max-width: 100%;
  }

  .faq__card-title {
    font-size: 28px;
  }
}

.footer {
  background: #022b54;
  color: #d5e4f8;
  padding: 54px clamp(22px, 6vw, 88px) 18px;
  font-size: 12px;
}

.footer__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.9fr) repeat(3, minmax(130px, 1fr));
  gap: 42px;
  align-items: start;
}

.footer__brand p {
  margin: 14px 0 0;
  max-width: 380px;
  color: #d2def0;
  line-height: 1.45;
  font-size: 12px;
}

.footer__col h4 {
  margin: 0 0 14px;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #f3f7ff;
}

.footer__col a {
  display: block;
  margin-bottom: 11px;
  color: #d7e4f7;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
}

.footer__col a:hover {
  color: #fff;
}

.footer__contact h4 {
  margin-top: 0;
}

.footer__contact a {
  color: #2bc0ff;
}

.footer__contact a:hover {
  color: #6fd6ff;
}

.footer__bottom {
  max-width: var(--content-max);
  margin: 34px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(206, 224, 244, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #d2deee;
  font-size: 12px;
}

.footer__copy {
  color: #d2deee;
}

.footer__legal {
  display: inline-flex;
  gap: 22px;
}

.footer .logo__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
  position: relative;
}

.footer .logo__mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #022b54;
  right: -1px;
  top: 6px;
}

.footer .logo__text strong {
  color: #f5f8ff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer .logo__text small {
  color: #d7e4f7;
  font-size: 16px;
  margin-top: 2px;
}

.footer .logo {
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 6px 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .topbar .btn--primary {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    width: min(360px, 90vw);
  }

  .hero__actions .btn {
    min-height: 46px;
    font-size: 16px;
  }

  .hero__blobs {
    display: none;
  }

  .pill {
    font-size: 18px;
  }

  .hero__subtitle {
    font-size: 17px;
    max-width: 580px;
  }

  .trust {
    margin-top: 22px;
    font-size: 16px;
  }

  .trust__logos {
    gap: 16px;
    font-size: 20px;
  }

  .nav.nav--open {
    display: flex;
  }
}

@media (max-width: 1200px) {
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .process__card {
    grid-template-columns: 74px 138px 1fr;
    gap: 14px;
    min-height: 240px;
    padding: 22px 22px 24px 16px;
  }

  .process__meta {
    font-size: 32px;
  }

  .process__card > .cta__icon {
    width: 138px;
    height: 138px;
  }

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

  .testimonial-card--rating {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq__intro {
    min-height: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .footer .logo__text strong {
    font-size: 34px;
  }

  .footer__col h4 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 56px;
    padding-bottom: 52px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust__logos {
    justify-content: center;
    gap: 12px;
    font-size: 16px;
  }

  .process__steps {
    gap: 12px;
  }

  .process__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "icon"
      "body";
    justify-items: start;
    padding: 18px;
  }

  .process__meta {
    font-size: 26px;
  }

  .process__card > .cta__icon {
    width: 102px;
    height: 102px;
  }

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

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

  .footer {
    padding-top: 44px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer .logo__text strong {
    font-size: 28px;
  }

  .footer .logo__text small {
    font-size: 14px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__legal {
    gap: 14px;
    flex-wrap: wrap;
  }
}