:root {
  --section-space: clamp(5rem, 4rem + 2vw, 8rem);

  --space-xs: 0.5rem;

  --content-gap-xs: 1rem;
  --content-gap: 1.5rem;
  --content-gap-3x: 3rem;
  --content-gap-4x: 3rem;
  --content-gap-6x: 6rem;

  --br-xs: 0.5rem;

  -bg-color-card: #0b1020;
}

/* Typography */
body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: var(--text-m);
  background-color: var(--bg-body);
  color: var(--text-body);
}

h1 {
  font-size: var(--text-4xl);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-title);
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-title);
}
h3 {
  font-size: var(--text-2xl);
  color: var(--text-title);
}
li {
  font-size: var(--text-xs);
}
.expertise__nowrap {
  white-space: nowrap;
}
@media (max-width: 30rem) {
  .expertise__nowrap {
    white-space: normal;
  }
}

/* General Spacing */

section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* hero section*/

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 3.75rem;
  padding-inline: 2rem;

  border-radius: 1rem;

  font-size: 1rem;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

/* Primary Button */
.button--primary {
  background-color: #3b82f6;
  border: 1px solid #3b82f6;
  color: #ffffff;
}

.button--primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Secondary Button */
.button--secondary {
  background-color: transparent;
  border: 1px solid #2563eb;
  color: #3b82f6;
}

.button--secondary:hover {
  background-color: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}
.hero__media {
  display: none;
}

/* Services */

.services__header {
  margin-bottom: var(--content-gap-6x);
  text-align: center;
}

.service-card {
  --card-spacing: 1.5em;
  --card-border: 1px solid #1f2937;
  --card-border-radius: 0.625em;
  border: var(--card-border);
  border-radius: var(--card-border-radius);
  padding: var(--card-spacing);
}

.service-card__icon {
  color: #00d4ff;
}

.service-card__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.service-card__list {
  padding: 0;
  padding-left: 1.25rem;
}
.service-card__list li::marker {
  color: #2563eb;
}

/* How We Work*/

.process__title {
  margin-bottom: 64px;
  text-align: center;
}

.process__steps {
  counter-reset: step;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 4rem;

  margin: 0;
  padding: 0;
}

.process__step {
  counter-increment: step;

  text-align: center;
  position: relative;
}

.process__step::before {
  content: counter(step);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 4rem;
  height: 4rem;

  margin-inline: auto;
  margin-bottom: 1.5rem;

  border-radius: 50%;

  background-color: #3b82f6;
  color: #000;

  font-size: 1.5rem;
  font-weight: 700;
}

/* Expertise */
.expertise__title {
  text-align: center;
  grid-column: 1/-1;
}
.expertise__list {
  padding: 0;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-xs);
}

.expertise__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise__item {
  position: relative;
  padding-left: 2rem;
}

.expertise__item::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0.1rem;

  color: #00d4ff;
  font-size: 1.25rem;
  font-weight: 700;
}

/*Insights*/
.insights__header {
  margin-bottom: var(--content-gap-4x);
  text-align: center;
}
