/* =============================================
   REVIEWFLOW — Marketing site styles
   Light-mode-ish product page, distinct from the dark Sinux marketing chrome
   ============================================= */

.rf-page {
  background: #f7f8fb;
  color: #0f172a;
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
}
.rf-page * { box-sizing: border-box; }

.rf-container {
  width: min(100% - var(--side), 1300px);
  margin-inline: auto;
}

.rf-section {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
}
.rf-section-dark {
  background: linear-gradient(180deg, #f1f3f8, #ffffff);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* ==== Typography ==== */
.rf-h1 {
  font-family: "Michroma", "Orbitron", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6.5vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: #0f172a;
  margin: 20px 0 22px;
  text-wrap: balance;
}
.rf-h1-accent {
  color: #01A0A6;
  font-style: italic;
  font-family: "Poppins", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.rf-h2 {
  font-family: "Michroma", "Orbitron", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: #0f172a;
  margin: 0;
  text-wrap: balance;
}
.rf-h2 em {
  font-style: italic;
  font-family: "Poppins", serif;
  font-weight: 500;
  color: #01A0A6;
}
.rf-eyebrow {
  font-family: "Michroma", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #01A0A6;
  margin-bottom: 16px;
}
.rf-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #475569;
  line-height: 1.65;
  max-width: 56ch;
}
.rf-section-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.rf-section-lede {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #475569;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 56ch;
}

/* ==== Pill / chip ==== */
.rf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.rf-pill-soft {
  background: rgba(1, 160, 166, 0.08);
  color: #00676E;
  border: 1px solid rgba(1, 160, 166, 0.2);
}
.rf-dot-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: livepulse 2s ease-in-out infinite;
}

/* ==== Header ==== */
.rf-header {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.rf-header.scrolled {
  background: rgba(247, 248, 251, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: #e2e8f0;
}
.rf-nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 calc(var(--side) / 2);
  gap: 24px;
}
.rf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
}
.rf-brand-text {
  font-family: "Michroma", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.rf-by-sinux {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.04em;
  border-left: 1px solid #cbd5e1;
  padding-left: 10px;
  margin-left: 4px;
}
.rf-nav-links {
  display: flex;
  gap: clamp(14px, 1.5vw, 26px);
  margin-left: auto;
}
.rf-nav-links a {
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.rf-nav-links a:hover { color: #0f172a; }
.rf-nav-right { display: flex; gap: 12px; }

@media (max-width: 820px) {
  .rf-nav-links { display: none; }
  .rf-by-sinux { display: none; }
}

/* ==== Buttons ==== */
.rf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.rf-btn:hover { transform: translateY(-1px); }
.rf-btn-lg { padding: 16px 28px; font-size: 14px; }
.rf-btn-block { width: 100%; justify-content: center; }
.rf-btn-primary {
  background: #01A0A6;
  color: white;
  box-shadow: 0 6px 24px -8px rgba(1,160,166,0.5);
}
.rf-btn-primary:hover { background: #00878d; box-shadow: 0 10px 30px -8px rgba(1,160,166,0.6); }
.rf-btn-outline {
  background: white;
  color: #01A0A6;
  border-color: #01A0A6;
}
.rf-btn-outline:hover { background: rgba(1,160,166,0.06); }
.rf-btn-ghost {
  background: rgba(0,0,0,0.04);
  color: #0f172a;
  border-color: transparent;
}
.rf-btn-ghost:hover { background: rgba(0,0,0,0.07); }
.rf-btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.rf-btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

/* ==== Hero ==== */
.rf-hero {
  position: relative;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.rf-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.rf-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}
.rf-orb-1 {
  top: -10%; left: -8%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22), transparent 70%);
  animation: orbdrift 14s ease-in-out infinite;
}
.rf-orb-2 {
  bottom: -20%; right: -10%;
  width: 45vw; height: 45vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(1, 160, 166, 0.18), transparent 70%);
  animation: orbdrift 16s ease-in-out infinite;
  animation-delay: -4s;
}
.rf-dotgrid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.rf-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .rf-hero-grid { grid-template-columns: 1fr; }
}
.rf-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.rf-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.rf-stat-num {
  font-family: "Michroma", sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #0f172a;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.rf-star-suffix { color: #fbbc04; font-size: 0.85em; margin-left: 2px; }
.rf-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 6px;
}

/* ==== Flow visual ==== */
.rf-flow-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 720px) {
  .rf-flow-card { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
  .rf-flow-arrow { transform: rotate(90deg); }
}
.rf-phone {
  width: 220px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  padding: 6px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.rf-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #0f172a;
  border-radius: 12px;
  z-index: 2;
}
.rf-phone-screen {
  background: white;
  border-radius: 24px;
  padding: 28px 16px 18px;
  min-height: 340px;
  position: relative;
}
.rf-phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.rf-phone-business {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
}
.rf-phone-stars {
  display: flex;
  justify-content: space-between;
  padding: 24px 4px;
}
.rf-phone-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(251, 191, 36, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.rf-flow-arrow { margin: 0 8px; }

.rf-outcomes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rf-outcome {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  box-shadow: 0 10px 30px -16px rgba(15,23,42,0.15);
}
.rf-outcome-public { border-left: 3px solid #34A853; }
.rf-outcome-private { border-left: 3px solid #94a3b8; }
.rf-google-pill, .rf-private-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  padding: 4px 10px;
  background: #f8fafc;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}
.rf-outcome-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.rf-outcome-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  margin-top: 6px;
}
.rf-outcome-text-private {
  font-style: italic;
  color: #64748b;
}

/* ==== Logos strip ==== */
.rf-logos-strip {
  background: white;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}
.rf-logos-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rf-logos-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}
.rf-logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  flex: 1;
}
.rf-logo-pill {
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}

/* ==== Cards / grids ==== */
.rf-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 32px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}
.rf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(1, 160, 166, 0.15);
  border-color: rgba(1, 160, 166, 0.4);
}
.rf-card-num {
  font-family: "Michroma", sans-serif;
  font-size: 12px;
  color: #01A0A6;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  opacity: 0.7;
}
.rf-card-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.rf-card-body {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.rf-grid-2, .rf-grid-3, .rf-grid-4 {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.rf-grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.rf-grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.rf-grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.rf-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .rf-two-col { grid-template-columns: 1fr; }
}

/* Bullet list */
.rf-bullet-list { list-style: none; padding: 0; margin: 0; }
.rf-bullet-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}
.rf-bullet-list svg { flex-shrink: 0; margin-top: 3px; }

/* Dashboard preview */
.rf-dashboard-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.rf-dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.rf-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.rf-dash-url {
  margin-left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #94a3b8;
}
.rf-dash-body { padding: 20px; }
.rf-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.rf-dash-metric { text-align: right; }
.rf-dash-list {
  display: flex; flex-direction: column;
  margin-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.rf-dash-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
}
.rf-dash-row:last-child { border-bottom: none; }
.rf-dash-row-meta {}
.rf-dash-route {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.rf-dash-route-google {
  background: rgba(52, 168, 83, 0.1);
  color: #15803d;
}
.rf-dash-route-private {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}
@media (max-width: 520px) {
  .rf-dash-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ==== Steps (How it works) ==== */
.rf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.rf-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  align-items: flex-start;
}
.rf-step-num {
  font-family: "Michroma", sans-serif;
  font-size: 14px;
  color: white;
  background: #01A0A6;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em;
  z-index: 2;
  position: relative;
}
.rf-step-body { padding-top: 6px; }
.rf-step-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}
.rf-step-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
.rf-step-line {
  position: absolute;
  left: 24px; top: 76px; bottom: -28px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(1,160,166,0.3), rgba(1,160,166,0.05));
  z-index: 1;
}

/* ==== Feature cards ==== */
.rf-feature-card { display: flex; flex-direction: column; }
.rf-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(1, 160, 166, 0.1);
  color: #01A0A6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ==== Categories ==== */
.rf-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 12px;
}
.rf-cat-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color .2s, transform .2s;
}
.rf-cat-tile:hover {
  border-color: rgba(1, 160, 166, 0.5);
  transform: translateY(-1px);
}
.rf-cat-icon { font-size: 22px; }
.rf-cat-text { font-size: 14px; font-weight: 500; color: #0f172a; }

/* ==== Benefits ==== */
.rf-benefits-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.rf-benefit-card {
  background: linear-gradient(180deg, white, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  height: 100%;
}
.rf-benefit-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}
.rf-benefit-stat-num {
  font-family: "Michroma", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #01A0A6;
  letter-spacing: 0.01em;
}
.rf-benefit-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.rf-benefit-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ==== Use cases ==== */
.rf-usecase-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  height: 100%;
  transition: border-color .2s, transform .2s;
}
.rf-usecase-card:hover {
  border-color: rgba(1, 160, 166, 0.5);
  transform: translateY(-1px);
}
.rf-usecase-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}
.rf-usecase-desc {
  color: #475569;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ==== Pricing ==== */
.rf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  max-width: 920px;
  margin: 0 auto;
}
.rf-pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  display: flex;
  flex-direction: column;
}
.rf-pricing-card-featured {
  border: 2px solid #01A0A6;
  background: linear-gradient(180deg, white, rgba(1, 160, 166, 0.04));
  box-shadow: 0 30px 60px -20px rgba(1, 160, 166, 0.25);
}
.rf-pricing-ribbon {
  position: absolute;
  top: -14px; right: 24px;
  background: #01A0A6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.rf-pricing-badge {
  font-family: "Michroma", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #01A0A6;
  margin-bottom: 12px;
}
.rf-pricing-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.rf-pricing-sub {
  color: #64748b;
  font-size: 13px;
  margin: 0 0 24px;
}
.rf-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.rf-pricing-amount-sub {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 24px;
}
.rf-pricing-amount-sub strong { color: #0f172a; font-weight: 600; }
.rf-pricing-currency {
  font-family: "Michroma", sans-serif;
  font-size: 14px;
  color: #64748b;
  letter-spacing: 0.04em;
}
.rf-pricing-num {
  font-family: "Michroma", sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  color: #0f172a;
  letter-spacing: -0.005em;
  line-height: 1;
}
.rf-pricing-period {
  font-size: 13px;
  color: #94a3b8;
  margin-left: 4px;
}
.rf-pricing-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}
.rf-pricing-feat li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.rf-pricing-feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 16px;
  background: rgba(1,160,166,0.12);
  border-radius: 50%;
}
.rf-pricing-feat li::after {
  content: "";
  position: absolute;
  left: 4px; top: 17px;
  width: 8px; height: 4px;
  border-left: 2px solid #01A0A6;
  border-bottom: 2px solid #01A0A6;
  transform: rotate(-45deg);
}
.rf-pricing-note {
  text-align: center;
  margin-top: 32px;
  color: #64748b;
  font-size: 14px;
}
.rf-pricing-note a {
  color: #01A0A6;
  text-decoration: none;
  border-bottom: 1px solid rgba(1,160,166,0.4);
}
.rf-pricing-note a:hover { border-color: #01A0A6; }

/* ==== FAQ ==== */
.rf-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .rf-faq-grid { grid-template-columns: 1fr; }
}
.rf-faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.rf-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  color: #0f172a;
}
.rf-faq-plus {
  width: 28px; height: 28px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #01A0A6;
  transition: transform .25s, border-color .25s;
  flex-shrink: 0;
}
.rf-faq-item.open .rf-faq-plus {
  transform: rotate(45deg);
  border-color: #01A0A6;
}
.rf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.2,1);
}
.rf-faq-item.open .rf-faq-a {
  max-height: 400px;
}
.rf-faq-a-inner {
  padding-bottom: 22px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  max-width: 70ch;
}

/* ==== Final CTA ==== */
.rf-cta-section { padding-block: clamp(60px, 8vw, 100px); }
.rf-cta-card {
  background: linear-gradient(135deg, #00676E 0%, #01A0A6 60%, #06b6d4 100%);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.rf-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.rf-cta-card > * { position: relative; z-index: 1; }

/* ==== Footer ==== */
.rf-footer {
  background: #0a0d14;
  color: #cbd5e1;
  padding: clamp(56px, 7vw, 80px) 0 32px;
  margin-top: 0;
}
.rf-footer .footer-h {
  color: #94a3b8;
  font-family: "Michroma", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rf-footer .footer-links { display: flex; flex-direction: column; gap: 10px; }
.rf-footer .footer-links a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.rf-footer .footer-links a:hover { color: white; }
.rf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 768px) {
  .rf-footer-grid { grid-template-columns: 1fr 1fr; }
}
.rf-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
  font-size: 12px;
}
.rf-footer .rf-brand-text { color: white; }
