/* ============================================
   RevOps Page — Page-Specific Styles
   Extends styles.css + signal-engine.css (loaded as base)
   ============================================ */

/* ---- Hero CTAs ---- */
.ro-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.ro-btn-secondary {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.ro-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* ---- Section Headers (shared pattern) ---- */
.ro-section-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.ro-section-header .subheading {
  margin-bottom: 12px;
}

.ro-section-header h2 {
  margin-bottom: 16px;
}

.ro-section-intro {
  font-family: "SF UI Display", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Stats Bar ---- */
.ro-stats-section {
  padding-top: 0;
  padding-bottom: 0;
}

.ro-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 80px 0;
}

.ro-stat-item {
  text-align: center;
}

.ro-stat-value {
  font-family: "SF UI Display", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  margin-bottom: 12px;
}

.ro-stat-item p {
  font-family: "SF UI Display", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  max-width: 220px;
  margin: 0 auto;
}

/* ---- Business Outcomes ---- */
.ro-outcomes-section {
  padding-top: 120px;
}

.ro-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ro-outcome-card {
  padding: 32px 24px;
  border: 1px solid #1E1E1E;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.4) 0%, rgba(9, 9, 9, 0.4) 100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ro-outcome-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.6) 0%, rgba(9, 9, 9, 0.6) 100%);
}

.ro-outcome-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.ro-outcome-icon svg {
  display: block;
}

.ro-outcome-card h3 {
  font-family: "SF UI Display", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  margin: 0;
}

.ro-outcome-card > p {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ro-outcome-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.ro-outcome-metrics span {
  font-family: "SF UI Display", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ---- How It Works ---- */
.ro-how-section {
  padding-top: 0;
}

.ro-how-section > .container {
  padding-top: 120px;
}

.ro-how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ro-how-card {
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid #1E1E1E;
  border-radius: 12px;
}

.ro-how-card:hover {
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.4) 0%, rgba(9, 9, 9, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.ro-how-number {
  font-family: "SF UI Display", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.ro-how-card h3 {
  font-family: "SF UI Display", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  margin: 0 0 12px 0;
}

.ro-how-card p {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ---- Pricing ---- */
.ro-pricing-section {
  padding-top: 120px;
}

.ro-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.ro-pricing-card {
  padding: 40px 32px;
  border: 1px solid #1E1E1E;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.4) 0%, rgba(9, 9, 9, 0.4) 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ro-pricing-featured {
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
}

.ro-pricing-badge {
  font-family: "SF UI Display", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  background: #fff;
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
  width: fit-content;
}

.ro-pricing-card h3 {
  font-family: "SF UI Display", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.ro-pricing-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ro-pricing-label {
  font-family: "SF UI Display", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.ro-pricing-amount {
  font-family: "SF UI Display", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 120%;
}

.ro-pricing-amount span {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.ro-pricing-recurring {
  font-family: "SF UI Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.ro-pricing-features li {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
}

.ro-pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.ro-pricing-terms {
  font-family: "SF UI Display", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 150%;
  margin: 0;
}

.ro-pricing-card-desc {
  font-family: "SF UI Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.ro-pricing-card-detail {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  margin: 0;
}

/* ---- Journey Timeline ---- */
.ro-journey-section {
  padding-top: 0;
}

.ro-journey-section > .container {
  padding-top: 120px;
}

.ro-journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ro-journey-phase {
  display: flex;
  gap: 32px;
}

.ro-journey-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.ro-journey-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SF UI Display", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.ro-journey-line {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  min-height: 40px;
}

.ro-journey-content {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ro-journey-period {
  font-family: "SF UI Display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.ro-journey-content h3 {
  font-family: "SF UI Display", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.ro-journey-content > p {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 700px;
}

.ro-journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.ro-journey-tags span {
  font-family: "SF UI Display", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ---- RevOps Platform Grid ---- */
.ro-platform-section {
  padding-top: 120px;
}

.ro-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ro-platform-card {
  padding: 32px 24px;
  border: 1px solid #1E1E1E;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.4) 0%, rgba(9, 9, 9, 0.4) 100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ro-platform-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.6) 0%, rgba(9, 9, 9, 0.6) 100%);
}

.ro-platform-label {
  font-family: "SF UI Display", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.ro-platform-card h3 {
  font-family: "SF UI Display", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.ro-platform-card p {
  font-family: "SF UI Display", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ---- CTA extras ---- */
.ro-cta-desc {
  font-family: "SF UI Display", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
  max-width: 560px;
}

.ro-cta-note {
  font-family: "SF UI Display", sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
}

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 1024px) {
  .ro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 60px 0;
  }

  .ro-outcomes-grid,
  .ro-how-grid,
  .ro-pricing-grid {
    gap: 16px;
  }

  .ro-platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ro-outcomes-section,
  .ro-how-section,
  .ro-pricing-section,
  .ro-journey-section,
  .ro-platform-section {
    padding-top: 80px;
  }

  .ro-section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .ro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 48px 0;
  }

  .ro-stat-value {
    font-size: 40px;
  }

  .ro-outcomes-grid,
  .ro-how-grid,
  .ro-pricing-grid {
    grid-template-columns: 1fr;
  }

  .ro-platform-grid {
    grid-template-columns: 1fr;
  }

  .ro-outcomes-section,
  .ro-how-section,
  .ro-pricing-section,
  .ro-journey-section,
  .ro-platform-section {
    padding-top: 60px;
  }

  .ro-section-header {
    margin-bottom: 32px;
  }

  .ro-pricing-card {
    padding: 28px 20px;
  }

  .ro-pricing-amount {
    font-size: 28px;
  }

  .ro-journey-phase {
    gap: 20px;
  }

  .ro-journey-marker {
    width: 36px;
  }

  .ro-journey-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .ro-journey-content {
    padding-bottom: 40px;
  }

  .ro-hero-ctas {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ro-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .ro-stat-value {
    font-size: 32px;
  }

  .ro-outcome-card,
  .ro-how-card,
  .ro-platform-card {
    padding: 24px 16px;
  }
}
