/* ═══════════════════════════════════════════════════════════════
   RIVEL Verticals — Shared styles for BusinessOS landings
   /clinicas · /estudios · /consultorio
   Each page overrides --rvv-accent for vertical-specific color theming.
   Default: emerald (BusinessOS color).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --rvv-bg: #000;
  --rvv-surface-1: rgba(255, 255, 255, 0.04);
  --rvv-surface-2: rgba(255, 255, 255, 0.06);
  --rvv-border: rgba(255, 255, 255, 0.08);
  --rvv-border-hover: rgba(255, 255, 255, 0.18);
  --rvv-text: #fff;
  --rvv-text-2: rgba(255, 255, 255, 0.8);
  --rvv-text-3: rgba(255, 255, 255, 0.55);
  --rvv-text-4: rgba(255, 255, 255, 0.35);
  --rvv-accent: #10b981;         /* BusinessOS emerald */
  --rvv-accent-glow: rgba(16, 185, 129, 0.22);
  --rvv-accent-soft: rgba(16, 185, 129, 0.12);
}

/* ─── SECTION WRAPPER ─── */
.rv-vertical-section {
  position: relative;
  background: var(--rvv-bg);
  color: var(--rvv-text);
  font-family: Geist, 'Space Grotesk', 'Manrope', sans-serif;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
}
.rv-vertical-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 95vw);
  height: 900px;
  background: radial-gradient(circle at 50% 45%, var(--rvv-accent-glow) 0%, var(--rvv-accent-soft) 32%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.rv-vertical-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.rv-vertical-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 2.5rem 0 4rem;
}
.rv-vertical-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rv-vertical-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100vw;
  background: var(--rvv-accent-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--rvv-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}
.rv-vertical-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rvv-accent);
  box-shadow: 0 0 12px var(--rvv-accent);
}
.rv-vertical-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--rvv-text);
  margin: 0;
}
.rv-vertical-subtitle {
  font-size: 1.125rem;
  color: var(--rvv-text-3);
  line-height: 1.6;
  margin: 0;
  max-width: 38rem;
}
.rv-vertical-hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.rv-vertical-hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rvv-border);
  flex-wrap: wrap;
}
.rv-vertical-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.rv-vertical-hero-meta-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rvv-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.rv-vertical-hero-meta-label {
  font-size: 0.75rem;
  color: var(--rvv-text-3);
}

/* Hero visual (screenshot with emerald ambient glow) */
.rv-vertical-hero-media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 1.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rvv-accent-soft), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--rvv-border);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 60px -10px var(--rvv-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.rv-vertical-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-vertical-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════ */
.rv-social-proof {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  padding: 4rem 0;
  border-top: 1px solid var(--rvv-border);
}
.rv-social-proof-stat {
  padding: 2rem 1.875rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, var(--rvv-accent-soft) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rv-social-proof-number {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--rvv-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rv-social-proof-label {
  font-size: 0.875rem;
  color: var(--rvv-text-2);
  font-weight: 500;
}
.rv-social-proof-desc {
  font-size: 0.8rem;
  color: var(--rvv-text-3);
  line-height: 1.5;
  margin-top: auto;
}

.rv-testimonial-card {
  padding: 2rem 1.875rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--rvv-border);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.rv-testimonial-quote {
  font-size: 0.95rem;
  color: var(--rvv-text);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.rv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.rv-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rvv-accent), rgba(16, 185, 129, 0.4));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.rv-testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rv-testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rvv-text);
}
.rv-testimonial-author-role {
  font-size: 0.75rem;
  color: var(--rvv-text-3);
}

/* ═══════════════════════════════════════════
   REPLACE STACK
   ═══════════════════════════════════════════ */
.rv-stack-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rvv-border);
}
.rv-stack-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rv-stack-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--rvv-text);
  margin: 0;
  max-width: 24ch;
}
.rv-stack-subtitle {
  font-size: 1rem;
  color: var(--rvv-text-3);
  line-height: 1.6;
  margin: 0;
  max-width: 42rem;
}

.rv-stack-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* "Old stack" column (faded, negative) */
.rv-stack-old {
  padding: 2rem 1.875rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--rvv-border);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}
.rv-stack-old-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rvv-text-4);
  margin-bottom: 0.375rem;
}
.rv-stack-old-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  color: var(--rvv-text-3);
  font-size: 0.875rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.35);
  text-decoration-thickness: 1.5px;
}
.rv-stack-old-item-name {
  font-weight: 500;
}
.rv-stack-old-item-price {
  font-variant-numeric: tabular-nums;
  color: var(--rvv-text-4);
  font-size: 0.8rem;
}
.rv-stack-old-total {
  margin-top: 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--rvv-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rvv-text-2);
}
.rv-stack-old-total-value {
  font-variant-numeric: tabular-nums;
  color: #ff9999;
}

/* Arrow in the middle */
.rv-stack-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rvv-accent), rgba(16, 185, 129, 0.4));
  color: #0a0a0a;
  box-shadow: 0 0 24px var(--rvv-accent-glow);
  flex-shrink: 0;
}
.rv-stack-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* "New stack" (RIVEL) column */
.rv-stack-new {
  padding: 2rem 1.875rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, var(--rvv-accent-soft) 0%, rgba(16, 185, 129, 0.03) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
  box-shadow: 0 20px 60px -20px var(--rvv-accent-glow);
}
.rv-stack-new-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rvv-accent);
  margin-bottom: 0.375rem;
}
.rv-stack-new-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 0.75rem;
  color: var(--rvv-text);
  font-size: 0.875rem;
}
.rv-stack-new-item-check {
  color: var(--rvv-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.rv-stack-new-total {
  margin-top: 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rvv-text);
}
.rv-stack-savings {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  margin-left: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--rvv-accent);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100vw;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   FEATURES PILLARS (vertical-specific)
   ═══════════════════════════════════════════ */
.rv-v-features-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rvv-border);
}
.rv-v-features-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rv-v-features-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--rvv-text);
  margin: 0;
  max-width: 26ch;
}
.rv-v-features-subtitle {
  font-size: 1rem;
  color: var(--rvv-text-3);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0;
}
.rv-v-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.rv-v-feature-card {
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--rvv-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.rv-v-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.25);
}
.rv-v-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rvv-accent);
  margin-bottom: 0.25rem;
}
.rv-v-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}
.rv-v-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--rvv-text);
  margin: 0;
  line-height: 1.25;
}
.rv-v-feature-desc {
  font-size: 0.95rem;
  color: var(--rvv-text-3);
  line-height: 1.6;
  margin: 0;
}
.rv-v-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rv-v-feature-bullets li {
  font-size: 0.875rem;
  color: var(--rvv-text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.rv-v-feature-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--rvv-accent);
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   VERTICAL PRICING (compact BusinessOS tiers)
   ═══════════════════════════════════════════ */
.rv-v-pricing-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rvv-border);
}
.rv-v-pricing-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rv-v-pricing-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--rvv-text);
  margin: 0;
}
.rv-v-pricing-subtitle {
  font-size: 1rem;
  color: var(--rvv-text-3);
  max-width: 38rem;
}
.rv-v-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.rv-v-price-card {
  position: relative;
  padding: 2rem 1.75rem 1.875rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--rvv-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.rv-v-price-card:hover {
  transform: translateY(-4px);
  border-color: var(--rvv-border-hover);
}
.rv-v-price-card.is-featured {
  border-color: var(--rvv-accent);
  box-shadow:
    0 20px 60px -20px var(--rvv-accent-glow),
    inset 0 1px 0 rgba(16, 185, 129, 0.2);
  background: linear-gradient(180deg, var(--rvv-accent-soft) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.rv-v-price-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  background: var(--rvv-accent);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100vw;
}
.rv-v-price-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rvv-text-3);
}
.rv-v-price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.rv-v-price-amount-value {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--rvv-text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.rv-v-price-amount-period {
  font-size: 0.85rem;
  color: var(--rvv-text-4);
}
.rv-v-price-desc {
  font-size: 0.875rem;
  color: var(--rvv-text-3);
  line-height: 1.5;
  margin: 0;
}
.rv-v-price-features {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--rvv-text-2);
}
.rv-v-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.rv-v-price-features li::before {
  content: '✓';
  color: var(--rvv-accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}
.rv-v-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 100vw;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
  margin-top: auto;
}
.rv-v-price-cta-primary {
  background: var(--rvv-accent);
  color: #0a0a0a;
  box-shadow: 0 8px 24px -8px var(--rvv-accent-glow);
}
.rv-v-price-cta-primary:hover {
  background: #14cf94;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -6px rgba(16, 185, 129, 0.5);
}
.rv-v-price-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--rvv-text);
  border-color: rgba(255, 255, 255, 0.14);
}
.rv-v-price-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.rv-v-price-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ═══════════════════════════════════════════
   FAQ SECTION (simple, non-JS version)
   ═══════════════════════════════════════════ */
.rv-v-faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rvv-border);
}
.rv-v-faq-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.rv-v-faq-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--rvv-text);
  margin: 0;
}
.rv-v-faq-subtitle {
  font-size: 1rem;
  color: var(--rvv-text-3);
}
.rv-v-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}
.rv-v-faq-item {
  padding: 1.5rem 1.75rem;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--rvv-border);
  transition: border-color 0.25s;
}
.rv-v-faq-item:hover {
  border-color: var(--rvv-border-hover);
}
.rv-v-faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rvv-text);
  margin: 0 0 0.625rem;
  letter-spacing: -0.01em;
}
.rv-v-faq-a {
  font-size: 0.925rem;
  color: var(--rvv-text-3);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.rv-v-cta-final {
  position: relative;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.25rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, var(--rvv-accent-soft) 50%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(16, 185, 129, 0.15),
    0 20px 60px -20px var(--rvv-accent-glow);
}
.rv-v-cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--rvv-accent-glow), transparent 60%);
  pointer-events: none;
}
.rv-v-cta-final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.rv-v-cta-final-title {
  font-size: clamp(1.5rem, 2.75vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--rvv-text);
  margin: 0;
  line-height: 1.15;
}
.rv-v-cta-final-desc {
  font-size: 0.95rem;
  color: var(--rvv-text-3);
  line-height: 1.55;
  margin: 0;
  max-width: 32rem;
}
.rv-v-cta-final-btns {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media screen and (max-width: 1023px) {
  .rv-vertical-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  .rv-social-proof {
    grid-template-columns: 1fr;
  }
  .rv-stack-compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .rv-stack-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .rv-v-features-grid {
    grid-template-columns: 1fr;
  }
  .rv-v-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .rv-v-cta-final {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem;
  }
  .rv-v-cta-final-btns .rv-cta {
    flex: 1;
    justify-content: center;
    min-width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .rv-vertical-section {
    padding: 4rem 1rem 3.5rem;
  }
  .rv-vertical-section::before {
    top: -150px;
    width: 600px;
    height: 600px;
  }
  .rv-stack-section,
  .rv-v-features-section,
  .rv-v-pricing-section,
  .rv-v-faq-section {
    padding: 3.5rem 0;
  }
  .rv-v-cta-final {
    padding: 1.75rem;
    border-radius: 1.5rem;
  }
}
