/* ── Features Section ── */
.features {
  padding: 8rem 0;
  background-color: #F8FAFC;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,61,76,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  position: relative;
  border-bottom: 1px solid #E5E7EB;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #0F3D4C;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon container — box style for outline SVG */
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 61, 76, 0.07);
  border-radius: 10px;
  padding: 0.5rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #0F3D4C;
  fill: none;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  color: #0B2E3A;
  font-weight: 600;
}

.feature-card p {
  color: #475569;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

/* Ops Benefits */
.ops-benefits {
  margin-bottom: 3rem;
}

.ops-benefits h3 {
  margin: 0 0 1.25rem;
  font-size: 1.6rem;
  text-align: center;
  color: #0B2E3A;
  font-weight: 700;
}

.ops-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ops-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.ops-benefit-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-left: 3px solid rgba(15, 61, 76, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* Icon container for ops cards */
.ops-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 61, 76, 0.07);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 0.4rem;
}

.ops-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #0F3D4C;
  fill: none;
}

.ops-benefit-card h4 {
  margin: 0 0 0.6rem;
  color: #0B2E3A;
  font-size: 1rem;
  font-weight: 600;
}

.ops-benefit-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ops-benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .ops-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

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

  .ops-benefits h3 {
    font-size: 1.35rem;
  }
}
