/* Homepage â€“ Our Solution (Figma match) */
.os-section {
  padding: 72px 20px 80px !important;
  background-color: #f6f7f9;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.os-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.os-header {
  text-align: center;
  margin: 0 0 40px;
}

.os-section .os-title {
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 54px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
    padding: 0;
    text-transform: capitalize;
}

.os-section .os-subtitle {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4F4C4C;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0;
  max-width: 763px;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.os-card {
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 24px 24px 22px;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.os-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
}

.os-card-soon .os-card-head {
  padding-right: 108px;
}

.os-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.os-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.os-icon-blue {
  background: #e8f1fc;
  color: #2f80ed;
}

.os-icon-purple {
  background: #eee6f8;
  color: #8b6cc9;
}

.os-icon-green {
  background: #e6f5ee;
  color: #2fa36b;
}

.os-icon-pink {
  background: #fde8ee;
  color: #e05670;
}

.os-icon-slate {
  background: #e7f0f8;
  color: #4f8fbd;
}

.os-icon-violet {
  background: #eee6f8;
  color: #8b6cc9;
}

.os-section .os-card-title {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin: 2px 0 0;
  padding: 0;
}

.os-section .os-card-cat {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9aa0a6;
  line-height: 1.35;
  margin: 2px 0 0;
  padding: 0;
}

.os-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #eaf4fc;
  color: #2b6cb0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.os-list {
  list-style: none !important;
  margin: 0 0 20px;
  padding: 0 !important;
  flex: 1 1 auto;
}

.os-list li {
  position: relative;
  list-style: none !important;
  margin: 0 0 9px !important;
  padding: 0 0 0 16px !important;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.45;
  width: 100%;
}

.os-list li:last-child {
  margin-bottom: 0 !important;
}

.os-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5f6368;
}

.os-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #096FE0 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.os-link:hover span{
    transform: translateX(4px);
}

.os-link span {
    font-size: 19px;
    font-weight: 400;
    transition: all 0.8s;
}

.os-link:hover,
.os-link:focus {
  color: #096FE0 !important;
  text-decoration: none !important;
}

#welcome-taxi {
  scroll-margin-top: 100px;
}

@media (max-width: 991px) {
  .os-section {
    padding: 56px 16px 64px;
  }

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

  .os-section .os-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .os-section {
    padding: 40px 16px 48px;
  }

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

  .os-section .os-title {
    font-size: 28px;
  }

  .os-section .os-subtitle {
    font-size: 15px;
  }

  .os-card-soon .os-card-head {
    padding-right: 0;
    padding-top: 22px;
  }
}