/* =============================================
   ROOT DESIGN TOKENS
============================================= */
:root {
  --ink:       #141a0f;
  --earth:     #1e2a18;
  --moss:      #2c3d22;
  --pine:      #3a5230;
  --sage:      #607a52;
  --signal:    #e8a224;
  --signal-lt: #f0bc55;
  --chalk:     #f4f0e8;
  --bone:      #e8e2d4;
  --smoke:     #9da899;
  --white:     #ffffff;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --max-w: 1280px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--chalk);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TOPBAR
============================================= */
.rre-topbar {
  background: var(--ink);
  color: var(--smoke);
  text-align: center;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  font-weight: 500;
}
.rre-topbar span { color: var(--signal); }

/* =============================================
   NAVIGATION
============================================= */
.rre-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--earth);
  border-bottom: 2px solid var(--pine);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}
.rre-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.rre-logo-mark {
  width: 36px; height: 36px;
  background: var(--signal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.rre-logo-text {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.rre-logo-text small {
  display: block;
  font-size: 0.62rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.18em;
}
.rre-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.rre-nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.2s;
}
.rre-nav-links a:hover { color: var(--signal); }
.rre-nav-cta {
  background: var(--signal) !important;
  color: var(--ink) !important;
  padding: 9px 20px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.rre-nav-cta:hover { background: var(--signal-lt) !important; }

/* Hamburger */
.rre-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.rre-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--chalk);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--signal-lt); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--chalk);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

.btn-dark {
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--earth); }

.btn-outline-dark {
  background: transparent;
  color: rgba(20,26,15,0.7);
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(20,26,15,0.25);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--ink); color: var(--ink); }

/* =============================================
   HERO
============================================= */
.rre-hero {
  position: relative;
  background: var(--ink);
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.rre-hero-bg {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cg fill='none' stroke='%23e8a224' stroke-width='1'%3E%3Cellipse cx='400' cy='300' rx='380' ry='260'/%3E%3Cellipse cx='400' cy='300' rx='330' ry='220'/%3E%3Cellipse cx='400' cy='300' rx='280' ry='180'/%3E%3Cellipse cx='400' cy='300' rx='230' ry='140'/%3E%3Cellipse cx='400' cy='300' rx='180' ry='100'/%3E%3Cellipse cx='400' cy='300' rx='130' ry='66'/%3E%3Cellipse cx='400' cy='300' rx='80' ry='38'/%3E%3Cellipse cx='400' cy='300' rx='40' ry='18'/%3E%3Cline x1='20' y1='0' x2='780' y2='600'/%3E%3Cline x1='0' y1='80' x2='800' y2='500'/%3E%3Cline x1='0' y1='200' x2='800' y2='400'/%3E%3Cline x1='780' y1='0' x2='20' y2='600'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.rre-hero-content {
  position: relative;
  padding: 80px 48px 80px 80px;
  z-index: 2;
  animation: rrefadeUp 0.7s ease both;
}
@keyframes rrefadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
.rre-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
  background: rgba(232,162,36,0.12);
  border: 1px solid rgba(232,162,36,0.3);
  padding: 5px 12px;
  border-radius: 2px;
}
.rre-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  animation: rrepulse 2s infinite;
}
@keyframes rrepulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.4; transform: scale(1.4); }
}
.rre-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.rre-hero h1 em {
  font-style: normal;
  color: var(--signal);
  display: block;
}
.rre-hero-sub {
  font-size: 1.05rem;
  color: var(--smoke);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.rre-hero-checks {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 32px;
}
.rre-hero-check {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--bone);
}
.rre-hero-check-icon {
  width: 20px; height: 20px;
  background: rgba(232,162,36,0.2);
  border: 1px solid var(--signal);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--signal); flex-shrink: 0;
}
.rre-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.rre-hero-note {
  margin-top: 14px;
  font-size: 0.78rem; color: #5a6a52;
  font-family: var(--font-cond); letter-spacing: 0.06em;
}

/* Score card */
.rre-hero-visual {
  position: relative;
  padding: 60px 80px 60px 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  z-index: 2;
  animation: rrefadeUp 0.7s 0.2s ease both;
}
.rre-score-card {
  background: var(--earth);
  border: 1px solid var(--moss);
  border-radius: 10px;
  width: 100%; max-width: 360px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.rre-score-card-header {
  background: var(--moss);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.rre-score-card-title {
  font-family: var(--font-cond);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage);
}
.rre-score-card-title strong {
  display: block; font-size: 0.85rem;
  color: var(--chalk); letter-spacing: 0.08em; margin-top: 1px;
}
.rre-status-badge {
  background: rgba(232,162,36,0.15);
  border: 1px solid rgba(232,162,36,0.4);
  color: var(--signal);
  font-family: var(--font-cond);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px; border-radius: 3px;
  text-transform: uppercase;
}
.rre-dial-area {
  padding: 28px 20px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.rre-dial {
  position: relative; width: 160px; height: 90px; margin-bottom: 12px;
}
.rre-dial svg { width: 100%; height: auto; }
.rre-dial-score {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  text-align: center;
}
.rre-dial-score-num {
  font-family: var(--font-head);
  font-size: 2.6rem; color: var(--signal);
  line-height: 1; letter-spacing: 0.02em;
}
.rre-dial-score-label {
  font-family: var(--font-cond);
  font-size: 0.68rem; color: var(--smoke);
  letter-spacing: 0.12em; font-weight: 600;
}
.rre-score-issues {
  width: 100%; display: flex; flex-direction: column;
  gap: 8px; padding: 0 20px 20px;
}
.rre-issue-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm); padding: 9px 14px;
}
.rre-issue-left {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.82rem; font-weight: 500;
  color: var(--bone); letter-spacing: 0.04em;
}
.rre-issue-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.rre-issue-dot.red    { background: #c94b4b; }
.rre-issue-dot.amber  { background: var(--signal); }
.rre-issue-dot.yellow { background: #d4c940; }
.rre-issue-sev {
  font-family: var(--font-cond);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.rre-issue-sev.high   { color: #c94b4b; }
.rre-issue-sev.medium { color: var(--signal); }
.rre-issue-sev.low    { color: #d4c940; }
.rre-score-card-footer {
  background: rgba(232,162,36,0.1);
  border-top: 1px solid rgba(232,162,36,0.2);
  padding: 12px 20px;
  font-family: var(--font-cond);
  font-size: 0.78rem; color: var(--signal);
  font-weight: 600; letter-spacing: 0.06em; text-align: center;
}
.rre-hero-sample-note {
  font-family: var(--font-cond);
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: #4a5a3a; text-transform: uppercase; font-weight: 600;
}

/* =============================================
   TRUST BAR
============================================= */
.rre-trust-bar {
  background: var(--moss);
  border-top: 1px solid var(--pine);
  border-bottom: 1px solid var(--pine);
  padding: 18px 80px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.rre-trust-item {
  display: flex; align-items: center; gap: 10px;
}
.rre-trust-icon { font-size: 1.2rem; opacity: 0.9; }
.rre-trust-text {
  font-family: var(--font-cond);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone);
}
.rre-trust-divider {
  width: 1px; height: 24px; background: var(--pine);
}

/* =============================================
   SECTION BASE
============================================= */
.rre-section { padding: 96px 80px; }
.rre-section-label {
  font-family: var(--font-cond);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--signal); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.rre-section-label::before {
  content: '';
  width: 28px; height: 2px; background: var(--signal);
}
.rre-section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: 16px;
}
.rre-section-h2.light { color: var(--chalk); }
.rre-section-intro {
  font-size: 1.05rem; color: #4a5240;
  max-width: 600px; line-height: 1.7; margin-bottom: 56px;
}
.rre-section-intro.light { color: var(--smoke); }

/* =============================================
   PROBLEMS
============================================= */
.rre-problems { background: var(--chalk); }
.rre-problems-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--bone);
  border: 1px solid var(--bone);
  border-radius: var(--r-md); overflow: hidden;
}
.rre-problem-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.2s;
}
.rre-problem-card:hover { background: #f9f6ef; }
.rre-problem-number {
  font-family: var(--font-head); font-size: 3.2rem;
  color: var(--bone); line-height: 1; margin-bottom: 12px;
}
.rre-problem-icon {
  width: 42px; height: 42px;
  background: rgba(232,162,36,0.1);
  border: 1px solid rgba(232,162,36,0.3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 18px;
}
.rre-problem-card h3 {
  font-family: var(--font-cond); font-size: 1.05rem;
  font-weight: 700; letter-spacing: 0.04em; color: var(--earth);
  margin-bottom: 10px; text-transform: uppercase;
}
.rre-problem-card p { font-size: 0.9rem; color: #5a6052; line-height: 1.65; }

/* =============================================
   HOW IT WORKS
============================================= */
.rre-how { background: var(--ink); position: relative; overflow: hidden; }
.rre-how-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}
.rre-how-inner { position: relative; z-index: 2; }
.rre-how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.rre-how-steps::after {
  content: '';
  position: absolute; top: 28px;
  left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--pine), var(--signal), var(--pine));
  z-index: 0;
}
.rre-step { position: relative; z-index: 1; }
.rre-step-num {
  width: 56px; height: 56px;
  background: var(--earth); border: 2px solid var(--pine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem;
  color: var(--signal); margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s; position: relative; z-index: 2;
}
.rre-step:hover .rre-step-num {
  border-color: var(--signal); background: rgba(232,162,36,0.12);
}
.rre-step h3 {
  font-family: var(--font-cond); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--chalk); margin-bottom: 10px;
}
.rre-step p { font-size: 0.88rem; color: var(--smoke); line-height: 1.65; }
.rre-how-btns { margin-top: 48px; display: flex; gap: 14px; }

/* =============================================
   PRICING
============================================= */
.rre-pricing { background: var(--chalk); }
.rre-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 860px;
}
.rre-pricing-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: 10px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.rre-pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.rre-pricing-card.featured {
  border-color: var(--signal); border-width: 2px;
  box-shadow: 0 8px 30px rgba(232,162,36,0.15);
}
.rre-pricing-tag {
  background: var(--signal); color: var(--ink);
  font-family: var(--font-cond); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; text-align: center; padding: 6px;
}
.rre-pricing-body { padding: 36px 32px; }
.rre-pricing-name {
  font-family: var(--font-cond); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 8px;
}
.rre-pricing-price {
  font-family: var(--font-head); font-size: 3.4rem;
  color: var(--earth); line-height: 1; margin-bottom: 6px;
}
.rre-pricing-price small {
  font-family: var(--font-cond); font-size: 1rem;
  font-weight: 500; color: var(--sage); vertical-align: super;
}
.rre-pricing-note { font-size: 0.82rem; color: var(--sage); margin-bottom: 28px; }
.rre-pricing-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.rre-pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: #4a5240; line-height: 1.5;
}
.rre-pricing-features li::before {
  content: '✓'; color: var(--signal); font-weight: 700;
  font-size: 0.8rem; margin-top: 2px; flex-shrink: 0;
}
.btn-primary-block {
  display: block; width: 100%; text-align: center;
  background: var(--signal); color: var(--ink);
  font-family: var(--font-cond); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--r-sm);
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary-block:hover { background: var(--signal-lt); }

/* =============================================
   INDUSTRIES
============================================= */
.rre-industries { background: var(--earth); }
.rre-industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-bottom: 48px;
}
.rre-industry-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm); padding: 18px 12px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.rre-industry-pill:hover {
  background: rgba(232,162,36,0.1);
  border-color: rgba(232,162,36,0.3);
}
.rre-industry-emoji { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.rre-industry-name {
  font-family: var(--font-cond); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone);
}
.rre-qualify-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; max-width: 860px;
}
.rre-qualify-block h3 {
  font-family: var(--font-cond); font-size: 1rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--chalk); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--pine);
}
.rre-qualify-list { display: flex; flex-direction: column; gap: 10px; }
.rre-qualify-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--smoke); line-height: 1.5;
}
.rre-qualify-list li .check { color: #6ab55a; }
.rre-qualify-list li .cross { color: #c94b4b; }

/* =============================================
   TESTIMONIALS
============================================= */
.rre-testimonials { background: var(--chalk); }
.rre-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.rre-testimonial-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-md); padding: 32px 28px;
  position: relative; transition: box-shadow 0.2s;
}
.rre-testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.rre-quote-mark {
  font-family: Georgia, serif; font-size: 4rem;
  color: var(--bone); line-height: 1;
  position: absolute; top: 16px; right: 24px;
}
.rre-stars { color: var(--signal); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.rre-testimonial-text { font-size: 0.92rem; color: #4a5240; line-height: 1.7; margin-bottom: 24px; }
.rre-testimonial-author { display: flex; align-items: center; gap: 12px; }
.rre-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--white); flex-shrink: 0;
}
.rre-testimonial-name {
  font-family: var(--font-cond); font-size: 0.88rem;
  font-weight: 700; letter-spacing: 0.06em;
  color: var(--earth); text-transform: uppercase;
}
.rre-testimonial-role { font-size: 0.78rem; color: var(--sage); }

/* =============================================
   FAQ
============================================= */
.rre-faq { background: var(--earth); }
.rre-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--moss);
  border: 1px solid var(--moss);
  border-radius: var(--r-md); overflow: hidden; max-width: 860px;
}
.rre-faq-item {
  background: var(--earth); padding: 28px 30px;
  cursor: pointer; transition: background 0.2s;
}
.rre-faq-item:hover { background: rgba(255,255,255,0.03); }
.rre-faq-q {
  font-family: var(--font-cond); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.04em;
  color: var(--chalk); margin-bottom: 8px;
}
.rre-faq-a { font-size: 0.87rem; color: var(--smoke); line-height: 1.65; }

/* =============================================
   CTA BANNER
============================================= */
.rre-cta-banner {
  background: var(--signal); padding: 80px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
}
.rre-cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--ink); line-height: 1.0; margin-bottom: 12px;
}
.rre-cta-banner p { font-size: 0.95rem; color: rgba(20,26,15,0.7); max-width: 560px; }
.rre-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* =============================================
   FOOTER
============================================= */
.rre-footer {
  background: var(--ink); padding: 60px 80px 32px;
  border-top: 2px solid var(--moss);
}
.rre-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--moss); margin-bottom: 28px;
}
.rre-footer-desc {
  font-size: 0.88rem; color: var(--smoke);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.rre-footer-col-title {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
}
.rre-footer-links { display: flex; flex-direction: column; gap: 8px; }
.rre-footer-links a { font-size: 0.88rem; color: var(--smoke); transition: color 0.2s; }
.rre-footer-links a:hover { color: var(--signal); }
.rre-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-cond); font-size: 0.72rem;
  color: #4a5240; letter-spacing: 0.06em;
}
.rre-footer-tagline { color: var(--pine); }

/* =============================================
   INNER PAGES
============================================= */
.rre-page-hero {
  background: var(--ink); padding: 80px;
  border-bottom: 2px solid var(--moss);
}
.rre-page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--white); line-height: 0.95; margin-bottom: 16px;
}
.rre-page-hero p { font-size: 1.05rem; color: var(--smoke); max-width: 560px; }
.rre-page-content {
  padding: 80px; max-width: 860px; margin: 0 auto;
  font-size: 1rem; line-height: 1.75; color: #3a4230;
}
.rre-page-content h2 {
  font-family: var(--font-head); font-size: 2.2rem;
  color: var(--earth); margin: 48px 0 16px; letter-spacing: 0.01em;
}
.rre-page-content h3 {
  font-family: var(--font-cond); font-size: 1.1rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--earth); margin: 28px 0 10px;
}
.rre-page-content p { margin-bottom: 18px; }
.rre-page-content ul {
  margin: 0 0 18px 20px; list-style: disc;
}

/* =============================================
   404
============================================= */
.rre-404 {
  background: var(--ink); min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px;
}
.rre-404 h1 {
  font-family: var(--font-head); font-size: 8rem;
  color: var(--signal); line-height: 1; margin-bottom: 16px;
}
.rre-404 p { font-size: 1.1rem; color: var(--smoke); margin-bottom: 32px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .rre-problems-grid { grid-template-columns: repeat(2, 1fr); }
  .rre-how-steps { grid-template-columns: repeat(2, 1fr); }
  .rre-how-steps::after { display: none; }
  .rre-industries-grid { grid-template-columns: repeat(3, 1fr); }
  .rre-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .rre-nav { padding: 0 24px; }
  .rre-nav-links { display: none; }
  .rre-nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--earth); padding: 24px;
    border-bottom: 2px solid var(--pine); gap: 16px; z-index: 99;
  }
  .rre-nav-toggle { display: block; }

  .rre-hero { grid-template-columns: 1fr; min-height: auto; }
  .rre-hero-visual { display: none; }
  .rre-hero-content { padding: 60px 24px; }

  .rre-trust-bar { padding: 18px 24px; gap: 20px; }
  .rre-trust-divider { display: none; }

  .rre-section { padding: 60px 24px; }
  .rre-problems-grid { grid-template-columns: 1fr; }
  .rre-pricing-grid { grid-template-columns: 1fr; }
  .rre-testimonials-grid { grid-template-columns: 1fr; }
  .rre-faq-grid { grid-template-columns: 1fr; }
  .rre-qualify-grid { grid-template-columns: 1fr; gap: 32px; }
  .rre-industries-grid { grid-template-columns: repeat(2, 1fr); }

  .rre-cta-banner { grid-template-columns: 1fr; padding: 48px 24px; }
  .rre-cta-btns { align-items: flex-start; }

  .rre-footer { padding: 48px 24px 24px; }
  .rre-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .rre-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .rre-page-hero { padding: 48px 24px; }
  .rre-page-content { padding: 48px 24px; }
  .rre-404 { padding: 48px 24px; }
  .rre-404 h1 { font-size: 5rem; }
}
