.profile {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #03131e;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 184, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 184, 236, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.profile .profile-grid {
  position: relative;
  grid-template-columns: 0.72fr 1.15fr 1fr;
  gap: clamp(45px, 5vw, 82px);
  min-height: 520px;
  align-items: center;
}

.profile .profile-stat {
  min-height: 420px;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(133, 176, 196, 0.45);
  border-radius: 6px;
}

.profile .profile-stat strong {
  color: #fff;
  font-size: clamp(100px, 10vw, 155px);
  font-weight: 400;
  letter-spacing: -0.08em;
}

.profile .profile-stat strong em {
  color: var(--blue);
  font-size: 0.48em;
  font-style: normal;
  letter-spacing: 0;
}

.profile .profile-stat span {
  max-width: 230px;
  color: #e0e7ea;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.profile .profile-summary > p {
  margin-bottom: 44px;
  color: #c0ccd2;
  font-size: 18px;
  line-height: 1.85;
}

.profile .trust-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.profile .trust-lines span {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(133, 176, 196, 0.42);
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.profile .trust-lines span::before {
  content: "";
  width: 54px;
  height: 54px;
  display: block;
  align-self: flex-start;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.profile .trust-lines span:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2339b8ec' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 27v-4a14 14 0 0 1 28 0v4'/%3E%3Cpath d='M14 27h36v6H14zM24 26V15m16 11V15M20 33c1 9 5 14 12 14s11-5 12-14M26 47v5m12-5v5'/%3E%3Cpath d='M17 58v-3c0-4 4-7 9-7h12c5 0 9 3 9 7v3'/%3E%3C/svg%3E");
}

.profile .trust-lines span:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2339b8ec' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 56h48M12 56V29l14-8v10l14-9v9l12-7v32M43 12h7l2 12'/%3E%3Cpath d='M18 38h5v6h-5zm12 0h5v6h-5zm12 0h5v6h-5zM18 50h5v6h-5zm12 0h5v6h-5zm12 0h5v6h-5z'/%3E%3C/svg%3E");
}

.profile .trust-lines span:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2339b8ec' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17h31v29H7zM38 27h10l9 10v9H38zM48 27v10h9M19 51a5 5 0 1 1-10 0 5 5 0 0 1 10 0zm34 0a5 5 0 1 1-10 0 5 5 0 0 1 10 0zM19 51h24M7 51h2'/%3E%3C/svg%3E");
}

.profile .profile-cta {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(3, 28, 44, 0.98), rgba(3, 33, 53, 0.7)),
    url("images/experience-building.jpg") 66% center / cover no-repeat;
  border: 1px solid rgba(57, 184, 236, 0.72);
  border-radius: 7px;
}

.profile .profile-cta .eyebrow {
  color: var(--blue2);
}

.profile .profile-cta h3 {
  max-width: 400px;
  color: #fff;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.2;
}

.profile .profile-cta .button {
  align-self: flex-start;
  min-height: 62px;
  margin-top: 22px;
  padding-inline: 28px;
  border-color: var(--blue2);
}

html[dir="rtl"] .profile .profile-stat {
  border: 1px solid rgba(133, 176, 196, 0.45);
  padding: 42px;
}

@media (max-width: 1120px) {
  .profile .profile-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .profile .profile-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .profile .profile-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile .profile-stat,
  .profile .profile-cta {
    min-height: 390px;
    grid-column: auto;
  }

  .profile .profile-summary > p {
    font-size: 16px;
  }

  .profile .trust-lines {
    grid-template-columns: 1fr;
  }

  .profile .trust-lines span {
    min-height: 100px;
  }

  .profile .profile-cta {
    padding: 36px;
  }
}
