/* ============================================================
   Mind Fox — Resource Onboarding Page CSS
   ============================================================ */

/* Shared utilities (same as ourteam-redesign) */
.mf-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mf-reveal.is-visible { opacity: 1; transform: translateY(0); }
.mf-reveal-delay-1 { transition-delay: 0.12s; }
.mf-reveal-delay-2 { transition-delay: 0.24s; }

.mf-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.mf-text--orange { color: var(--orange); }
.mf-section--alt { background: var(--bg-secondary); }

.ot-section--has-bg {
  position: relative;
  overflow: hidden;
}
.ot-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1);
}
.ot-section--has-bg > .container {
  position: relative;
  z-index: 1;
}

/* ── HERO ───────────────────────────────────────────────── */
.ro-hero {
  position: relative;
  padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
  overflow: hidden;
  background: var(--bg-primary);
}

.ro-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(255, 123, 28, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 123, 28, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ro-hero__content {
  position: relative;
  max-width: 760px;
}

.ro-hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ro-hero__content p {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 28px;
}

.ro-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── VALUE PROPOSITION ─────────────────────────────────── */
.ro-value {
  padding: var(--section-padding) 0;
}

.ro-value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ro-value__card {
  background: var(--bg-card, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.ro-value__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 123, 28, 0.35);
  background: rgba(255, 123, 28, 0.03);
}

.ro-value__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 123, 28, 0.10);
  border: 1px solid rgba(255, 123, 28, 0.22);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ro-value__icon svg { width: 28px; height: 28px; }

.ro-value__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.ro-value__card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── PROCESS / HOW IT WORKS ────────────────────────────── */
.ro-process {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.ro-process__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.ro-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.ro-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
  align-items: start;
}

.ro-process__step:hover {
  border-color: rgba(255, 123, 28, 0.3);
  background: rgba(255, 123, 28, 0.03);
}

.ro-process__num {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-light, #ffa75c));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  min-width: 44px;
  line-height: 1;
}

.ro-process__step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.ro-process__step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Benefits panel */
.ro-benefits {
  background: linear-gradient(135deg, rgba(255, 123, 28, 0.06), rgba(255, 123, 28, 0.02));
  border: 1px solid rgba(255, 123, 28, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}

.ro-benefits h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.ro-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ro-benefits__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.ro-benefits__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ── DIFFERENTIATORS ───────────────────────────────────── */
.ro-diff {
  padding: var(--section-padding) 0;
}

.ro-diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.ro-diff__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ro-diff__item:hover {
  border-color: rgba(255, 123, 28, 0.3);
  background: rgba(255, 123, 28, 0.04);
}

.ro-diff__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 123, 28, 0.12);
  border: 1px solid rgba(255, 123, 28, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── CTA ───────────────────────────────────────────────── */
.ro-cta {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.ro-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 123, 28, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.ro-cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ro-cta__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ro-cta__inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ro-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 992px) {
  .ro-value__grid { grid-template-columns: 1fr; }
  .ro-process__inner { grid-template-columns: 1fr; gap: 40px; }
  .ro-benefits { position: static; }
  .ro-diff__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ro-hero__actions { flex-direction: column; align-items: stretch; }
  .ro-hero__actions .mf-btn { text-align: center; }

  .ro-value__card { padding: 28px 22px; }
  .ro-process__step { padding: 18px 18px; gap: 16px; }
  .ro-process__num { font-size: 1.2rem; min-width: 36px; }
  .ro-benefits { padding: 26px 22px; }

  .ro-cta__actions { flex-direction: column; align-items: stretch; }
  .ro-cta__actions .mf-btn { text-align: center; }
}
