/* ==============================================
   GLOBAL MLM SOFTWARE — REAL ESTATE MLM PAGE
   real-estate-mlm.css — Page-specific styles
   Extends: css/style.css
   Theme: Forest Green / Amber / Deep Charcoal / Gold
   ============================================== */

/* ===========================
   BREADCRUMB BAR
   =========================== */
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.625rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb a { color: var(--gray-500); font-weight: 500; }
.breadcrumb a:hover { color: var(--re-green); }
.breadcrumb li[aria-current="page"] { color: var(--gray-900); font-weight: 600; }
.breadcrumb i { color: var(--gray-400); font-size: 0.65rem; }

/* ===========================
   CSS OVERRIDES — REAL ESTATE GREEN THEME
   =========================== */
:root {
  --re-green:          #16a34a;
  --re-green-dark:     #14532d;
  --re-green-light:    #4ade80;
  --re-emerald:        #059669;
  --re-emerald-light:  #6ee7b7;
  --re-gold:           #d97706;
  --re-gold-light:     #fbbf24;
  --re-amber:          #f59e0b;
  --re-charcoal:       #0f1a0f;
  --re-charcoal-mid:   #1a2e1a;
  --re-glow:           0 0 40px rgba(22,163,74,0.3);
  --radius-2xl:        32px;
}

/* ===========================
   EEAT AUTHOR BOX
   =========================== */
.eeat-author-box {
  display: flex;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(22,163,74,0.05), rgba(5,150,105,0.04));
  border: 1px solid rgba(22,163,74,0.2);
  border-left: 4px solid var(--re-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.eeat-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.eeat-name { font-weight: 700; color: var(--gray-900); margin-bottom: 0.375rem; }
.eeat-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.eeat-creds span { display: flex; align-items: center; gap: 0.3rem; }
.eeat-creds i { color: var(--re-green); }

/* ===========================
   HERO — REAL ESTATE THEME
   =========================== */
.hero-re {
  background: linear-gradient(135deg, #0a1a0a 0%, #112211 40%, #091409 100%);
  position: relative;
  overflow: hidden;
  padding: calc(var(--gnav-h, 70px) + 5rem) 0 4rem;
  min-height: 90vh;
}
.hero-re .hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  pointer-events: none;
}
.hero-re .shape-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, #16a34a, transparent 70%);
  top: -130px; right: 3%;
}
.hero-re .shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #059669, transparent 70%);
  bottom: -80px; left: 8%;
}
.hero-re .shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d97706, transparent 70%);
  top: 35%; left: 28%;
}
.hero-re .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,163,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-re-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-re-container { grid-template-columns: 1fr; gap: 3rem; }
}
.hero-re-copy .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.3);
  color: var(--re-green-light);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-re-copy .hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-re-copy .hero-subheadline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}
.trust-item i { color: var(--re-green-light); }

/* ===========================
   RE HERO DIAGRAM — rehd-*
   =========================== */
.re-hero-diagram {
  background: linear-gradient(135deg, rgba(22,163,74,0.08), rgba(10,26,10,0.95));
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--re-glow);
  position: sticky;
  top: 90px;
}
.rehd-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--re-green-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(22,163,74,0.15);
}
.rehd-header i { color: var(--re-green-light); font-size: 1rem; }
.rehd-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}

/* Real estate agent tiers */
.rehd-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.rehd-tier {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(22,163,74,0.12);
  border-radius: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}
.rehd-tier-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.rehd-tier-name { font-weight: 700; color: var(--re-green-light); flex: 1; }
.rehd-tier-comm { font-size: 0.75rem; color: var(--re-gold-light); font-weight: 600; }

/* Metrics row */
.rehd-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.rehd-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(22,163,74,0.14);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
}
.rehd-metric-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--re-green-light);
}
.rehd-metric-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* Industry tags */
.rehd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.rehd-tag {
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--re-green-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ===========================
   STATS BAR
   =========================== */
.stats-section {
  background: linear-gradient(135deg, var(--re-green-dark) 0%, #0a1a0a 100%);
  padding: 2rem 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.stat-box {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-number span { color: var(--re-green-light); }
.stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
@media (max-width: 640px) {
  .stat-box { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ===========================
   CONTENT SECTIONS
   =========================== */
.content-section { padding: 5rem 0; }
.bg-light-section { background: var(--gray-50); }
.bg-dark-section  { background: linear-gradient(135deg, #0a1a0a 0%, #112211 100%); }
.section-header   { margin-bottom: 3rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--re-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 720px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

/* ===========================
   INTRO CARDS — reic-*
   =========================== */
.re-intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.reic-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.reic-card:hover { box-shadow: 0 10px 28px rgba(22,163,74,0.1); transform: translateY(-3px); }
.reic-icon {
  font-size: 1.75rem;
  color: var(--re-green);
  margin-bottom: 1rem;
}
.reic-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.reic-desc  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ===========================
   INTRO TEXT
   =========================== */
.re-intro-text p { font-size: 1rem; color: var(--gray-700); line-height: 1.9; }

/* ===========================
   INTERNAL LINK CARDS
   =========================== */
.re-link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.re-link-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22,163,74,0.06);
  border: 1px solid rgba(22,163,74,0.18);
  color: var(--re-green);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.re-link-card:hover { background: var(--re-green); color: #fff; }

/* ===========================
   HOW IT WORKS — how-re-*
   =========================== */
.how-re-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.how-re-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.how-re-step:hover { box-shadow: 0 12px 32px rgba(22,163,74,0.1); transform: translateY(-4px); }
.how-re-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(22,163,74,0.1);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.how-re-icon {
  font-size: 1.625rem;
  color: var(--re-green);
  margin-bottom: 1rem;
}
.how-re-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.625rem; }
.how-re-step p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

/* ===========================
   COMPENSATION PLANS ACCORDION — repa-*
   =========================== */
.re-plan-accordion { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.repa-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.repa-item.open { box-shadow: 0 8px 24px rgba(22,163,74,0.1); border-color: rgba(22,163,74,0.3); }
.repa-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.repa-trigger-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.repa-trigger-text { flex: 1; }
.repa-trigger-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.repa-trigger-sub   { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.2rem; }
.repa-chevron { color: var(--gray-400); transition: transform 0.3s; font-size: 0.875rem; }
.repa-item.open .repa-chevron { transform: rotate(180deg); color: var(--re-green); }
.repa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.repa-item.open .repa-body { max-height: 1200px; }
.repa-body-inner { padding: 0 1.5rem 1.5rem; }
.repa-body-inner p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.repa-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.repa-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-700);
}
.repa-feat i { color: var(--re-green); font-size: 0.75rem; }

/* ===========================
   FEATURE CARDS GRID — ref-*
   =========================== */
.re-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.ref-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ref-card:hover { box-shadow: 0 10px 28px rgba(22,163,74,0.1); transform: translateY(-3px); }
.ref-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(5,150,105,0.08));
  border: 1px solid rgba(22,163,74,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--re-green);
  margin-bottom: 1.125rem;
}
.ref-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.ref-desc  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ===========================
   BENEFITS DUAL ACCORDION — reb-*
   =========================== */
.re-benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) { .re-benefits-wrap { grid-template-columns: 1fr; } }
.re-benefits-col-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.re-benefits-col-title i { color: var(--re-green); }
.reb-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.reb-item.open { border-color: rgba(22,163,74,0.3); }
.reb-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.reb-trigger i { color: var(--re-green); font-size: 0.875rem; }
.reb-trigger .reb-chev { margin-left: auto; transition: transform 0.3s; color: var(--gray-400); font-size: 0.75rem; }
.reb-item.open .reb-chev { transform: rotate(180deg); color: var(--re-green); }
.reb-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.reb-item.open .reb-body { max-height: 400px; }
.reb-body p { padding: 0 1rem 1rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; }

/* ===========================
   COMPARISON TABLE — re-comp-*
   =========================== */
.re-comp-wrap { overflow-x: auto; margin-top: 2rem; }
.re-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.re-comp-table th {
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  color: #fff;
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
.re-comp-table th:first-child { border-radius: 0.625rem 0 0 0; }
.re-comp-table th:last-child  { border-radius: 0 0.625rem 0 0; }
.re-comp-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.re-comp-table tr:last-child td { border-bottom: none; }
.re-comp-table tr:nth-child(even) td { background: var(--gray-50); }
.re-comp-table .row-hover td { background: rgba(22,163,74,0.05); }
.re-comp-table .check  { color: var(--re-green);  font-weight: 700; }
.re-comp-table .cross  { color: var(--gray-300); }
.re-comp-table .feature-col { font-weight: 600; color: var(--gray-800); }

/* ===========================
   WHO USES — re-who-*
   =========================== */
.re-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.re-who-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.re-who-card:hover { box-shadow: 0 10px 28px rgba(22,163,74,0.1); transform: translateY(-3px); }
.re-who-icon {
  font-size: 2rem;
  color: var(--re-green);
  margin-bottom: 0.875rem;
}
.re-who-title { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.375rem; }
.re-who-desc  { font-size: 0.8125rem; color: var(--gray-600); line-height: 1.6; }

/* ===========================
   CASE STUDY — re-cs-*
   =========================== */
.re-case-study {
  background: linear-gradient(135deg, #0a1a0a 0%, #112211 100%);
  border-radius: var(--radius-2xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: #fff;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .re-case-study { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}
.re-cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22,163,74,0.2);
  border: 1px solid rgba(22,163,74,0.4);
  color: var(--re-green-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.re-cs-headline {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.re-cs-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.re-cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) { .re-cs-metrics { grid-template-columns: 1fr 1fr; } }
.re-cs-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 0.875rem;
  padding: 1rem;
  text-align: center;
}
.re-cs-metric-num {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--re-green-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.re-cs-metric-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.re-cs-quote {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(22,163,74,0.2);
  border-left: 3px solid var(--re-green-light);
  border-radius: 0.875rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.re-cs-quote-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.re-cs-quote-author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--re-green-light);
}

/* ===========================
   TESTIMONIALS — re-testi-*
   =========================== */
.re-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.re-testi-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.25s;
}
.re-testi-card:hover { box-shadow: 0 8px 24px rgba(22,163,74,0.1); }
.re-testi-stars { color: var(--re-gold); font-size: 0.875rem; margin-bottom: 0.875rem; }
.re-testi-text  { font-size: 0.9rem; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.re-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.re-testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.re-testi-name    { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); }
.re-testi-company { font-size: 0.8rem; color: var(--gray-500); }

/* ===========================
   FAQ ACCORDION — re-faq-*
   =========================== */
.re-faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.re-faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.re-faq-item.open { border-color: rgba(22,163,74,0.3); box-shadow: 0 4px 16px rgba(22,163,74,0.08); }
.re-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}
.re-faq-trigger .faq-chev { transition: transform 0.3s; color: var(--gray-400); flex-shrink: 0; }
.re-faq-item.open .faq-chev { transform: rotate(180deg); color: var(--re-green); }
.re-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.re-faq-item.open .re-faq-body { max-height: 600px; }
.re-faq-body p { padding: 0 1.5rem 1.5rem; font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; }

/* ===========================
   DEMO FORM — re-demo-*
   =========================== */
.re-demo-section {
  background: linear-gradient(135deg, #0a1a0a 0%, #112211 100%);
  padding: 5rem 0;
  color: #fff;
}
.re-demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .re-demo-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
.re-demo-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.re-demo-copy p { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; }
.re-demo-perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.re-demo-perks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.re-demo-perks li i { color: var(--re-green-light); font-size: 0.875rem; }
.re-demo-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.re-form-group { margin-bottom: 1rem; }
.re-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.375rem;
}
.re-form-group input,
.re-form-group select,
.re-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.re-form-group input::placeholder,
.re-form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.re-form-group input:focus,
.re-form-group select:focus,
.re-form-group textarea:focus { border-color: var(--re-green-light); }
.re-form-group select option { background: #112211; color: #fff; }
.re-form-group input.error,
.re-form-group select.error,
.re-form-group textarea.error { border-color: #f87171; }
.re-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .re-form-row { grid-template-columns: 1fr; } }
.re-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.re-form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.re-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}
.re-form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.re-form-success.visible { display: block; }
.re-form-success i { font-size: 3rem; color: var(--re-green-light); margin-bottom: 1rem; }
.re-form-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.re-form-success p  { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ===========================
   STICKY MOBILE CTA — re-sticky-*
   =========================== */
.re-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--re-charcoal);
  border-top: 1px solid rgba(22,163,74,0.3);
  padding: 0.875rem 1rem;
  gap: 0.75rem;
  justify-content: center;
  z-index: 999;
}
@media (max-width: 768px) { .re-sticky-cta { display: flex; } }
.re-sticky-cta a {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.re-sticky-cta .re-sticky-demo {
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  color: #fff;
}
.re-sticky-cta .re-sticky-wa {
  background: #25D366;
  color: #fff;
}

/* ===========================
   SCROLL REVEAL UTILITY
   =========================== */
.re-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.re-reveal.visible { opacity: 1; transform: translateY(0); }
.re-reveal.delay-1 { transition-delay: 0.1s; }
.re-reveal.delay-2 { transition-delay: 0.2s; }
.re-reveal.delay-3 { transition-delay: 0.3s; }
.re-reveal.delay-4 { transition-delay: 0.4s; }

/* ===========================
   BUTTON OVERRIDES
   =========================== */
.btn-primary {
  background: linear-gradient(135deg, var(--re-green), var(--re-emerald));
  border-color: var(--re-green);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--re-green-dark), var(--re-green)); }
.btn-outline-white {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===========================
   FOOTER OVERRIDE
   =========================== */
.re-footer-note {
  background: linear-gradient(135deg, var(--re-green-dark) 0%, #0a1a0a 100%);
  padding: 3rem 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.re-footer-note h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.re-footer-note p { font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.re-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.re-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.re-pill-phone { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.re-pill-wa    { background: #25D366; color: #fff; }
.re-pill-email { background: rgba(22,163,74,0.25); color: var(--re-green-light); border: 1px solid rgba(22,163,74,0.3); }

/* ===========================
   RESPONSIVE FIXES
   =========================== */
@media (max-width: 768px) {
  .content-section { padding: 3rem 0; }
  .re-case-study   { padding: 1.75rem; }
  .re-demo-form    { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .re-cs-metrics   { grid-template-columns: 1fr 1fr; }
  .hero-actions    { flex-direction: column; }
}
