/* ═══════════════════════════════════════
   SERVICE PAGE — OVERVIEW (section2)
═══════════════════════════════════════ */

.ov-section {
  position: relative;
  background: var(--bg-primary);
  z-index: 2;
}
.ov-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 56px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

.ov-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ov-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px 8px 11px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary-60);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.ov-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hero-green); }
.ov-copy h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.ov-copy h2 .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ov-copy p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-primary-60);
  margin-bottom: 24px;
}

.ov-points {
  list-style: none;
  display: grid;
  gap: 14px;
}
.ov-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.ov-points li .tick {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-gradient);
  margin-top: 1px;
}

.ov-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 4.2;
  box-shadow: 0 40px 90px -40px rgba(15, 37, 67, 0.45);
}
.ov-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ov-image:hover img { transform: scale(1.1); }

/* ── RTL ── */
body.rtl .ov-copy { text-align: right; }
body.rtl .ov-eyebrow { flex-direction: row-reverse; }

/* ── Responsive ── */
@media (max-width: 880px) {
  .ov-grid { grid-template-columns: 1fr; gap: 36px; }
  .ov-image { aspect-ratio: 16 / 11; order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
