/* ============================================================
   WHAT WE DO — 3-column feature cards
   ============================================================ */

.what-we-do {
  background: #fff;
  padding: 96px 0 104px;
}

.what-we-do .head-wrapper {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.what-we-do .head-wrapper .tag {
  background-color: #E6F4F1;
  border: 1px solid #BFE0DA;
}

.what-we-do .head-wrapper .tag h4 {
  color: var(--color-primary);
  margin: 0;
}

.what-we-do .head-wrapper h2 {
  color: var(--color-primary);
  margin-top: 12px;
}

.what-we-do .span4 {
  text-align: center;
  padding: 24px 20px;
}

.what-we-do .img-wrapper {
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.what-we-do .img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.what-we-do .span4 h3 {
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 12px;
}

.what-we-do .span4 p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .what-we-do { padding: 64px 0 72px; }
  .what-we-do .span4 { margin-bottom: 32px; }
}

/* ============================================================
   VALUES SECTION — 6-card grid
   ============================================================ */

.values-section {
  padding: 88px 24px;
}

.values-section .container {
  max-width: 1180px;
}

.values-section .head-wrapper {
  text-align: left;
  max-width: 760px;
  margin: 0 0 40px;
}

.values-section .head-wrapper h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-primary);
  margin: 0;
}

.values-section p.desc {
  text-align: left;
  max-width: 760px;
  margin: 14px 0 40px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

.values-grid .card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.values-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(177,227,88,0.2) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.22s ease;
}

.values-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(2,69,78,0.08);
  border-color: rgba(2,69,78,0.18);
}

.values-grid .card:hover::before {
  transform: scaleY(1);
}

.values-grid .card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(28,124,138,0.10);
  border: 1px solid rgba(28,124,138,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.values-grid .card .icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.values-grid .card h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.values-grid .card p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Dark variant */
.value-section-dark {
  background: radial-gradient(34.98% 55.08% at 50% 50%, #1C363A 0%, #0C2124 100%);
  padding: 94px 0 131px;
}

.value-section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.value-section-dark .card h3 { color: #fff; }
.value-section-dark .card p { color: rgba(255,255,255,0.7); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .values-section { padding: 60px 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
}
