/* ============================================================
   Hestia Home — Redesign (S1-S11 sections)

   Design tokens (inherited from style.css):
     --gold:      #d7b36a
     --dark-blue: #0A1F44
     --black:     #111
     --white:     #ffffff
     font:        Manrope

   Reuses base .container, .header, .footer, .quiz-popup-overlay,
   .cookie-notice from style.css.
   ============================================================ */

:root {
  --r-bg-light: #faf8f4;       /* warm off-white */
  --r-bg-dark: #0A1F44;         /* dark blue */
  --r-bg-darker: #07172e;       /* darker for hero */
  --r-text: #1a1a1a;
  --r-text-muted: #5f6c7b;
  --r-border: #e8e3d8;
  --r-card-bg: #ffffff;
  --r-card-shadow: 0 2px 16px rgba(10, 31, 68, 0.06);
  --r-card-shadow-hover: 0 8px 32px rgba(10, 31, 68, 0.12);
}

/* ============================================================
   COMMON
   ============================================================ */
.r-h1, .r-h2 { font-family: 'Manrope', sans-serif; font-weight: 800; }

.r-h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--r-text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.r-h2 .accent { color: var(--gold); }

.r-section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.r-section-head.light .r-h2,
.r-section-head.light .r-section-sub { color: #fff; }
.r-section-head.light .r-section-sub.light { color: rgba(255,255,255,0.75); }

.r-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(215, 179, 106, 0.35);
  border-radius: 20px;
  background: rgba(215, 179, 106, 0.06);
}

.r-section-tag.accent-tag {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.r-section-sub {
  font-size: 17px;
  color: var(--r-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.r-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.r-btn-primary {
  background: var(--gold);
  color: var(--r-bg-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(215, 179, 106, 0.32);
}
.r-btn-primary:hover {
  background: #e3c280;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 179, 106, 0.45);
}

.r-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.r-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.r-btn-ghost-dark {
  background: transparent;
  color: var(--r-bg-dark);
  border-color: var(--r-bg-dark);
}
.r-btn-ghost-dark:hover {
  background: var(--r-bg-dark);
  color: #fff;
}

.r-btn-large { font-size: 17px; padding: 18px 32px; }
.r-btn-xl { font-size: 19px; padding: 22px 40px; }

.r-btn-link {
  font-size: 17px;
  font-weight: 700;
  color: var(--r-bg-dark);
  text-decoration: none;
  padding: 10px 16px;
  border-bottom: 2px solid var(--gold);
  transition: all 0.2s;
}
.r-btn-link:hover { color: var(--gold); }

/* ============================================================
   S1: HERO
   ============================================================ */
.r-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.r-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.r-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 23, 46, 0.88) 0%, rgba(10, 31, 68, 0.78) 100%),
    radial-gradient(circle at 70% 30%, rgba(215, 179, 106, 0.18) 0%, transparent 50%);
}

.r-hero-inner {
  position: relative;
  z-index: 1;
}

.r-hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.r-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 7px 18px;
  border: 1px solid rgba(215, 179, 106, 0.5);
  border-radius: 20px;
  background: rgba(215, 179, 106, 0.08);
}

.r-h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #fff;
}

.r-h1 .accent { color: var(--gold); display: inline; }

.r-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 38px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.r-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.r-hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
}

.r-hero-features li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.r-hero-features .r-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.r-hero-features strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.r-hero-features small {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.r-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.r-microproof {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

@media (max-width: 768px) {
  .r-hero { padding: 80px 0 40px; min-height: auto; }
  .r-hero-features { grid-template-columns: repeat(2, 1fr); }
  .r-hero-cta .r-btn { width: 100%; }
  .r-microproof { gap: 14px; font-size: 12px; }
}

/* ============================================================
   S2: PROBLEM
   ============================================================ */
.r-problem {
  background: var(--r-bg-light);
  padding: 90px 0 80px;
}

.r-strike {
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  opacity: 0.7;
}

.r-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.r-problem-card {
  background: var(--r-card-bg);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--r-card-shadow);
  transition: all 0.25s;
  border: 1px solid var(--r-border);
}

.r-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--r-card-shadow-hover);
}

.r-problem-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
}

.r-problem-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.r-problem-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--r-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.r-problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--r-text-muted);
  margin: 0;
}

.r-problem-card strong {
  color: var(--r-text);
  font-weight: 700;
}

.r-problem-final {
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
  color: var(--r-text);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(215, 179, 106, 0.08);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .r-problem-grid { grid-template-columns: 1fr; }
  .r-problem-final { font-size: 16px; padding: 18px; }
}

/* ============================================================
   S3: SOLUTION (4 STEPS)
   ============================================================ */
.r-solution {
  background: #fff;
  padding: 90px 0;
}

.r-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.r-step {
  display: flex;
  gap: 28px;
  padding: 28px 32px;
  background: var(--r-bg-light);
  border-radius: 18px;
  border-left: 4px solid var(--gold);
  align-items: flex-start;
}

.r-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--r-bg-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}

.r-step-content { flex: 1; }

.r-step-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.r-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--r-text);
  margin: 4px 0 10px;
}

.r-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--r-text-muted);
  margin: 0;
}

.r-step-content strong {
  color: var(--r-text);
  font-weight: 700;
}

.r-solution-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .r-step { flex-direction: column; padding: 22px; gap: 14px; }
  .r-step-num { width: 48px; height: 48px; font-size: 20px; }
}

/* ============================================================
   S4: CALCULATOR PREVIEW
   ============================================================ */
.r-calc-preview {
  background: var(--r-bg-light);
  padding: 90px 0;
}

.r-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.r-calc-text .r-section-tag { margin-bottom: 14px; }
.r-calc-text .r-h2 { text-align: left; }

.r-lead-small {
  font-size: 17px;
  color: var(--r-text-muted);
  line-height: 1.5;
  margin: 12px 0 26px;
}

.r-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.r-checklist li {
  font-size: 15px;
  color: var(--r-text);
  padding: 8px 0;
  line-height: 1.5;
}

/* Mockup */
.r-calc-mockup {
  perspective: 1200px;
}

.r-mockup-window {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(10, 31, 68, 0.18);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s;
}

.r-mockup-window:hover {
  transform: rotateY(0) rotateX(0);
}

.r-mockup-bar {
  background: #f3f0e9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--r-border);
}

.r-mockup-bar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c4c0b6;
}
.r-mockup-bar > span:nth-child(1) { background: #ff5f56; }
.r-mockup-bar > span:nth-child(2) { background: #ffbd2e; }
.r-mockup-bar > span:nth-child(3) { background: #27c93f; }

.r-mockup-url {
  margin-left: auto;
  font-size: 12px;
  color: #8b8576;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: monospace;
  width: auto !important;
  height: auto !important;
}

.r-mockup-body {
  padding: 28px;
}

.r-mockup-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0ede5;
}

.r-mockup-label {
  font-size: 13px;
  color: var(--r-text-muted);
  font-weight: 500;
}

.r-mockup-val {
  font-size: 16px;
  color: var(--r-text);
  font-weight: 700;
}

.r-mockup-result {
  background: linear-gradient(135deg, var(--gold) 0%, #e3c280 100%);
  color: var(--r-bg-dark);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 20px;
  text-align: center;
}

.r-mockup-result small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.r-mockup-result strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.r-mockup-monthly {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.8;
}

@media (max-width: 868px) {
  .r-calc-grid { grid-template-columns: 1fr; gap: 40px; }
  .r-mockup-window { transform: none; }
}

/* ============================================================
   S5: COMPARISON TABLE
   ============================================================ */
.r-compare {
  background: #fff;
  padding: 90px 0;
}

.r-vs {
  color: #99a2b3;
  font-weight: 600;
}

.r-compare-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--r-card-shadow);
}

.r-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.r-compare-table th,
.r-compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--r-border);
}

.r-compare-table th {
  background: var(--r-bg-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--r-text);
}

.r-compare-table .r-col-good {
  background: rgba(215, 179, 106, 0.12);
  color: var(--r-bg-dark);
}

.r-compare-table .r-col-bad {
  color: #b85050;
}

.r-compare-table .r-col-neutral {
  color: #6c7a89;
}

.r-compare-table tbody tr:hover {
  background: rgba(215, 179, 106, 0.04);
}

.r-compare-table td:first-child {
  background: var(--r-bg-light);
  color: var(--r-text);
  width: 22%;
  font-weight: 600;
}

.r-compare-table td.r-col-good,
.r-compare-table td:nth-child(3) {
  background: rgba(215, 179, 106, 0.08);
  font-weight: 600;
  color: var(--r-bg-dark);
}

@media (max-width: 768px) {
  .r-compare-table { font-size: 13px; }
  .r-compare-table th, .r-compare-table td { padding: 12px 10px; }
}

/* ============================================================
   S6: FOUNDER (OLA)
   ============================================================ */
.r-founder {
  background: var(--r-bg-light);
  padding: 100px 0;
}

.r-founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.r-founder-photo {
  position: relative;
}

.r-founder-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 31, 68, 0.18);
}

.r-founder-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 68, 0.5) 100%);
  z-index: 1;
}

.r-founder-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.r-founder-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 12px;
  z-index: 2;
}

.r-badge-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--r-bg-dark);
}

.r-badge-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.r-founder-text .r-h2 { text-align: left; margin-bottom: 22px; }

.r-founder-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--r-text);
  margin-bottom: 16px;
}

.r-founder-text strong {
  font-weight: 700;
  color: var(--r-bg-dark);
}

.r-team-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.r-team-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--r-text);
}

.r-quote {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  margin: 24px 0;
  border-radius: 4px;
}

.r-quote p {
  font-size: 17px;
  font-style: italic;
  color: var(--r-bg-dark);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 868px) {
  .r-founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .r-founder-frame img { height: 380px; }
}

/* ============================================================
   S7: STATS
   ============================================================ */
.r-stats {
  background: var(--r-bg-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.r-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 179, 106, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(215, 179, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.r-stats > .container { position: relative; z-index: 1; }

.r-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.r-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.25s;
}

.r-stat:hover {
  background: rgba(215, 179, 106, 0.08);
  border-color: rgba(215, 179, 106, 0.3);
  transform: translateY(-2px);
}

.r-stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.r-stat-num small {
  font-size: 0.5em;
  color: rgba(215, 179, 106, 0.7);
  font-weight: 600;
}

.r-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .r-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================================
   S8: REVIEWS / TESTIMONIALS
   ============================================================ */
.r-reviews {
  background: #fff;
  padding: 100px 0;
}

.r-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.r-review-card {
  background: var(--r-bg-light);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--r-border);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.r-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--r-card-shadow-hover);
}

.r-review-card.highlight {
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
  border-color: var(--gold);
}

.r-review-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.r-review-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--r-text);
  margin: 0 0 24px;
  flex: 1;
}

.r-review-text strong {
  font-weight: 700;
  color: var(--r-bg-dark);
  background: rgba(215, 179, 106, 0.18);
  padding: 0 4px;
  border-radius: 3px;
}

.r-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--r-border);
}

.r-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--r-bg-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.r-review-author strong {
  display: block;
  font-size: 15px;
  color: var(--r-text);
}

.r-review-author small {
  font-size: 12.5px;
  color: var(--r-text-muted);
}

@media (max-width: 968px) {
  .r-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   S9: FAQ (reuses .faq-list from style.css, restyled)
   ============================================================ */
.r-faq {
  background: var(--r-bg-light);
  padding: 90px 0;
}

.r-faq-narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.r-faq .faq-list {
  background: transparent;
  padding: 0;
}

.r-faq .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--r-border);
  overflow: hidden;
  box-shadow: var(--r-card-shadow);
}

.r-faq .faq-question {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--r-bg-dark);
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  transition: background 0.2s;
}

.r-faq .faq-question:hover { background: var(--r-bg-light); }

.r-faq .faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.25s;
  font-weight: 300;
}

.r-faq .faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.r-faq .faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--r-text-muted);
  line-height: 1.65;
  transition: all 0.3s;
}

.r-faq .faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

/* ============================================================
   S10: FINAL CTA
   ============================================================ */
.r-final-cta {
  background: var(--r-bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.r-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(215, 179, 106, 0.18) 0%, transparent 60%);
}

.r-final-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}

.r-final-h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.r-final-h2 .accent { color: var(--gold); }

.r-final-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.5;
}

.r-final-or {
  text-align: center;
  margin: 32px 0 16px;
  position: relative;
}

.r-final-or::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.r-final-or span {
  position: relative;
  background: var(--r-bg-dark);
  padding: 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.r-final-alt {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.r-final-alt-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.r-final-alt-actions .r-btn-link {
  color: var(--gold);
  border-color: var(--gold);
}

.r-final-alt-actions .r-btn-link:hover {
  color: #fff;
  border-color: #fff;
}
