/**
 * replicated-website.css
 * Replicated Website Module Page — Global MLM Software Solutions
 * Design tokens aligned with enterprise brand palette
 */

/* ================================================================
   0. DESIGN TOKENS
   ================================================================ */
:root {
  /* Primary brand */
  --rep-primary:       #0d9488;
  --rep-primary-d:     #0f766e;
  --rep-primary-l:     #14b8a6;
  --rep-primary-xl:    #5eead4;
  --rep-primary-bg:    #f0fdfa;

  /* Accent */
  --rep-accent:        #f59e0b;
  --rep-accent-d:      #d97706;

  /* Dark palette */
  --rep-dark:          #0f172a;
  --rep-dark-2:        #1e293b;
  --rep-dark-3:        #334155;
  --rep-dark-4:        #475569;

  /* Light palette */
  --rep-light:         #f8fafc;
  --rep-border:        #e2e8f0;
  --rep-text:          #1e293b;
  --rep-text-muted:    #64748b;
  --rep-white:         #ffffff;

  /* Semantic */
  --rep-success:       #22c55e;
  --rep-success-d:     #16a34a;

  /* Shadows */
  --rep-shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --rep-shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --rep-shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --rep-shadow-xl:     0 24px 60px rgba(0,0,0,.18);

  /* Radii */
  --rep-radius-sm:     6px;
  --rep-radius-md:     12px;
  --rep-radius-lg:     20px;
  --rep-radius-xl:     32px;
  --rep-radius-full:   9999px;

  /* Transitions */
  --rep-trans-fast:    0.15s ease;
  --rep-trans:         0.3s ease;
  --rep-trans-slow:    0.5s ease;

  /* Container */
  --rep-container:     1200px;

  /* Section spacing */
  --rep-section-py:    clamp(4rem, 8vw, 7rem);
}

/* ================================================================
   1. BASE RESETS & UTILITIES
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--rep-text);
  background: var(--rep-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.rep-container {
  max-width: var(--rep-container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Section wrapper */
.rep-section {
  padding: var(--rep-section-py) 0;
}

/* Section header */
.rep-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rep-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--rep-dark);
  margin: 0.5rem 0 1rem;
}

.rep-section-intro {
  color: var(--rep-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Section label */
.rep-section-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--rep-primary-bg);
  color: var(--rep-primary-d);
  border-radius: var(--rep-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(13,148,136,.2);
}
.rep-section-label.white {
  background: rgba(255,255,255,.15);
  color: var(--rep-white);
  border-color: rgba(255,255,255,.3);
}

/* Gradient text */
.rep-gradient-text {
  background: linear-gradient(135deg, var(--rep-primary-l) 0%, var(--rep-primary) 50%, var(--rep-primary-d) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rep-gradient-text-light {
  background: linear-gradient(135deg, #a7f3d0 0%, #5eead4 50%, #99f6e4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   2. SCROLL ANIMATIONS
   ================================================================ */
.rep-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rep-fade-up.visible { opacity: 1; transform: translateY(0); }

.rep-delay-1 { transition-delay: 0.12s; }
.rep-delay-2 { transition-delay: 0.24s; }
.rep-delay-3 { transition-delay: 0.36s; }
.rep-delay-4 { transition-delay: 0.48s; }

/* ================================================================
   3. BUTTONS
   ================================================================ */
.rep-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--rep-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--rep-trans);
  white-space: nowrap;
  justify-content: center;
  font-family: inherit;
}

.rep-btn-primary {
  background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d));
  color: var(--rep-white);
  box-shadow: 0 4px 15px rgba(13,148,136,.35);
}
.rep-btn-primary:hover {
  background: linear-gradient(135deg, var(--rep-primary-d), #0c6b63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,148,136,.45);
}

.rep-btn-outline {
  background: transparent;
  color: var(--rep-primary);
  border-color: var(--rep-primary);
}
.rep-btn-outline:hover {
  background: var(--rep-primary);
  color: var(--rep-white);
}

.rep-btn-ghost {
  background: rgba(13,148,136,.08);
  color: var(--rep-primary-d);
  border-color: transparent;
}
.rep-btn-ghost:hover {
  background: rgba(13,148,136,.15);
  transform: translateY(-1px);
}

.rep-btn-ghost-white {
  background: rgba(255,255,255,.15);
  color: var(--rep-white);
  border-color: rgba(255,255,255,.4);
}
.rep-btn-ghost-white:hover {
  background: rgba(255,255,255,.25);
}

.rep-btn-white {
  background: var(--rep-white);
  color: var(--rep-primary-d);
  border-color: var(--rep-white);
}
.rep-btn-white:hover {
  background: var(--rep-primary-bg);
  transform: translateY(-2px);
  box-shadow: var(--rep-shadow-lg);
}

.rep-btn-outline-white {
  background: transparent;
  color: var(--rep-white);
  border-color: rgba(255,255,255,.6);
}
.rep-btn-outline-white:hover {
  background: rgba(255,255,255,.15);
}

.rep-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--rep-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(37,211,102,.35);
}
.rep-btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba58, #0f7a6e);
  transform: translateY(-2px);
}

.rep-btn-full { width: 100%; }

.rep-btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.rep-btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.rep-btn-xl {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ================================================================
   4. HERO SECTION
   ================================================================ */
.rep-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #0d2d45 40%, #0f5a4e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

/* Background shapes */
.rep-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.rep-hero-shape {
  position: absolute;
  border-radius: var(--rep-radius-full);
  opacity: 0.08;
  animation: repShapeFloat 8s ease-in-out infinite;
}
.rep-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rep-primary-l), transparent);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.rep-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--rep-accent), transparent);
  bottom: -100px; left: -50px;
  animation-delay: 3s;
}
.rep-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rep-primary), transparent);
  top: 50%; right: 30%;
  animation-delay: 6s;
}
.rep-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

@keyframes repShapeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero container */
.rep-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Breadcrumb */
.rep-breadcrumb ol {
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,.5);
}
.rep-breadcrumb ol li a { color: rgba(255,255,255,.6); text-decoration: none; }
.rep-breadcrumb ol li a:hover { color: var(--rep-primary-xl); }
.rep-breadcrumb ol li[aria-current="page"] { color: var(--rep-primary-xl); }
.rep-breadcrumb ol li i { font-size: 0.65rem; }

/* Hero badge */
.rep-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--rep-radius-full);
  padding: 0.4rem 1rem;
  color: var(--rep-white);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.rep-hero-badge i { color: var(--rep-accent); }

/* Hero H1 */
.rep-hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--rep-white);
  margin: 0 0 1.25rem;
}

/* Hero sub */
.rep-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Trust strip */
.rep-trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  margin-bottom: 1.75rem;
}
.rep-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,.8); font-size: 0.85rem;
}
.rep-trust-item i { color: var(--rep-success); }

/* Hero actions */
.rep-hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* ── Hero Visual (Mock Site Preview) ── */
.rep-hero-visual {
  display: flex; justify-content: center; align-items: center;
}

.rep-site-preview {
  background: var(--rep-dark-2);
  border-radius: var(--rep-radius-lg);
  overflow: hidden;
  box-shadow: var(--rep-shadow-xl);
  max-width: 400px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
}

.rep-preview-bar {
  background: var(--rep-dark-3);
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.rep-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.rep-dot.red    { background: #ff5f57; }
.rep-dot.yellow { background: #febc2e; }
.rep-dot.green  { background: #28c840; }

.rep-url-bar {
  flex: 1;
  background: var(--rep-dark);
  border-radius: var(--rep-radius-sm);
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}
.rep-url-bar strong { color: var(--rep-primary-xl); }

.rep-preview-body { padding: 1.25rem; }

.rep-preview-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rep-avatar i { font-size: 2.5rem; color: var(--rep-primary-l); }
.rep-dist-info strong {
  display: block; font-size: 0.9rem; color: var(--rep-white);
}
.rep-dist-info span {
  font-size: 0.75rem; color: rgba(255,255,255,.5);
}

.rep-preview-hero-block {
  background: linear-gradient(135deg, var(--rep-primary-d), var(--rep-dark-3));
  border-radius: var(--rep-radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.rep-preview-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--rep-accent);
  color: var(--rep-dark);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--rep-radius-full);
  margin-bottom: 0.6rem;
}
.rep-preview-badge i { color: var(--rep-dark); }
.rep-preview-headline {
  font-size: 0.9rem; font-weight: 700; color: var(--rep-white);
  line-height: 1.3; margin-bottom: 1rem;
}
.rep-preview-cta-row { display: flex; gap: 0.5rem; }
.rep-preview-btn {
  flex: 1; text-align: center; border-radius: var(--rep-radius-sm);
  padding: 0.4rem; font-size: 0.75rem; font-weight: 600; cursor: default;
}
.rep-preview-btn.primary {
  background: var(--rep-primary); color: var(--rep-white);
}
.rep-preview-btn.outline {
  background: transparent; color: var(--rep-white);
  border: 1px solid rgba(255,255,255,.3);
}

.rep-preview-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.rep-stat-box {
  background: rgba(255,255,255,.05);
  border-radius: var(--rep-radius-sm);
  padding: 0.6rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.rep-stat-box strong {
  display: block; font-size: 1.1rem; font-weight: 800;
  color: var(--rep-primary-xl);
}
.rep-stat-box span { font-size: 0.65rem; color: rgba(255,255,255,.5); }

/* ================================================================
   5. STATS BANNER
   ================================================================ */
.rep-stats-banner {
  background: linear-gradient(135deg, var(--rep-primary-d) 0%, var(--rep-primary) 100%);
  padding: 3rem 0;
}

.rep-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.rep-stat-item {
  color: var(--rep-white);
}
.rep-stat-item strong {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}
.rep-stat-item span {
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,.8);
}
.rep-stat-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  margin: 0.4rem 0 0;
}

/* ================================================================
   6. WHAT IS A REPLICATED WEBSITE
   ================================================================ */
.rep-what-section {
  background: var(--rep-white);
}

.rep-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rep-what-text p {
  color: var(--rep-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.rep-what-text strong { color: var(--rep-dark); }
.rep-what-text em { color: var(--rep-primary-d); font-style: normal; font-weight: 600; }

.rep-what-cta-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.75rem;
}

/* Flow Diagram */
.rep-flow-diagram {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}

.rep-flow-node {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--rep-white);
  border: 2px solid var(--rep-border);
  border-radius: var(--rep-radius-md);
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--rep-shadow-sm);
  transition: all var(--rep-trans);
}
.rep-flow-node:hover {
  border-color: var(--rep-primary-l);
  box-shadow: var(--rep-shadow-md);
  transform: translateY(-2px);
}
.rep-flow-node i {
  width: 36px; height: 36px;
  border-radius: var(--rep-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.rep-flow-node.company   { border-left: 4px solid var(--rep-primary); }
.rep-flow-node.company i { background: var(--rep-primary-bg); color: var(--rep-primary-d); }
.rep-flow-node.platform  { border-left: 4px solid var(--rep-accent); }
.rep-flow-node.platform i { background: #fef3c7; color: var(--rep-accent-d); }
.rep-flow-node.result    { border-left: 4px solid var(--rep-success); }
.rep-flow-node.result i  { background: #dcfce7; color: var(--rep-success-d); }
.rep-flow-node span      { font-weight: 600; font-size: 0.9rem; color: var(--rep-dark); }

.rep-flow-arrow {
  color: var(--rep-primary-l); font-size: 1.1rem;
  margin: 0.35rem 0;
}

.rep-flow-distributors {
  display: flex; flex-direction: column; gap: 0.5rem; width: 100%; max-width: 340px;
}
.rep-flow-dist {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--rep-primary-bg);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--rep-radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--rep-primary-d);
  font-weight: 500;
}
.rep-flow-dist i { color: var(--rep-primary); }

/* ================================================================
   7. FEATURES GRID
   ================================================================ */
.rep-features-section {
  background: var(--rep-light);
}

.rep-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rep-feature-card {
  background: var(--rep-white);
  border-radius: var(--rep-radius-md);
  padding: 1.75rem;
  border: 1px solid var(--rep-border);
  box-shadow: var(--rep-shadow-sm);
  transition: all var(--rep-trans);
  position: relative;
  overflow: hidden;
}
.rep-feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rep-primary), var(--rep-primary-l));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--rep-trans);
}
.rep-feature-card:hover {
  border-color: var(--rep-primary-l);
  box-shadow: var(--rep-shadow-md);
  transform: translateY(-4px);
}
.rep-feature-card:hover::before { transform: scaleX(1); }

.rep-feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--rep-primary-bg), rgba(20,184,166,.15));
  border-radius: var(--rep-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--rep-primary-d);
  margin-bottom: 1.1rem;
  transition: all var(--rep-trans);
}
.rep-feature-card:hover .rep-feature-icon {
  background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d));
  color: var(--rep-white);
}

.rep-feature-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--rep-dark);
  margin: 0 0 0.65rem;
}
.rep-feature-card p {
  font-size: 0.875rem; color: var(--rep-text-muted);
  line-height: 1.65; margin: 0;
}
.rep-feature-card p em { color: var(--rep-primary-d); font-style: normal; font-weight: 600; }

/* ================================================================
   8. HOW IT WORKS
   ================================================================ */
.rep-how-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
}

.rep-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.rep-step {
  background: var(--rep-white);
  border-radius: var(--rep-radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--rep-border);
  box-shadow: var(--rep-shadow-sm);
  text-align: center;
  transition: all var(--rep-trans);
  position: relative;
}
.rep-step:hover {
  border-color: var(--rep-primary-l);
  box-shadow: var(--rep-shadow-md);
  transform: translateY(-4px);
}

.rep-step-num {
  font-size: 3rem; font-weight: 900;
  color: rgba(13,148,136,.08);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.rep-step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d));
  border-radius: var(--rep-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--rep-white);
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(13,148,136,.3);
}

.rep-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--rep-dark); margin: 0 0 0.6rem; }
.rep-step p  { font-size: 0.82rem; color: var(--rep-text-muted); line-height: 1.6; margin: 0; }

.rep-step-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.5rem;
  margin-top: 4rem;
  color: var(--rep-primary-l);
  font-size: 1.25rem;
}

/* ================================================================
   9. TEMPLATES SECTION
   ================================================================ */
.rep-templates-section {
  background: var(--rep-white);
}

.rep-templates-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.rep-tab-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--rep-radius-full);
  background: var(--rep-light);
  border: 2px solid var(--rep-border);
  color: var(--rep-text-muted);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--rep-trans);
  font-family: inherit;
}
.rep-tab-btn:hover {
  border-color: var(--rep-primary-l);
  color: var(--rep-primary-d);
}
.rep-tab-btn.active {
  background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d));
  border-color: transparent;
  color: var(--rep-white);
  box-shadow: 0 4px 15px rgba(13,148,136,.3);
}

.rep-tab-panel { display: none; }
.rep-tab-panel.active { display: block; }

.rep-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.rep-template-card {
  background: var(--rep-white);
  border-radius: var(--rep-radius-md);
  border: 1px solid var(--rep-border);
  overflow: hidden;
  box-shadow: var(--rep-shadow-sm);
  transition: all var(--rep-trans);
}
.rep-template-card:hover {
  box-shadow: var(--rep-shadow-lg);
  transform: translateY(-5px);
}

.rep-template-preview {
  height: 200px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Template color themes */
.rep-template-preview.health-1 { background: linear-gradient(135deg, #065f46, #059669, #34d399); }
.rep-template-preview.health-2 { background: linear-gradient(135deg, #0c4a6e, #0284c7, #38bdf8); }
.rep-template-preview.health-3 { background: linear-gradient(135deg, #4a044e, #a21caf, #e879f9); }
.rep-template-preview.finance-1 { background: linear-gradient(135deg, #1e3a5f, #1d4ed8, #60a5fa); }
.rep-template-preview.finance-2 { background: linear-gradient(135deg, #292524, #78350f, #f59e0b); }
.rep-template-preview.finance-3 { background: linear-gradient(135deg, #1f1f1f, #374151, #6b7280); }
.rep-template-preview.beauty-1  { background: linear-gradient(135deg, #7f1d1d, #dc2626, #fca5a5); }
.rep-template-preview.beauty-2  { background: linear-gradient(135deg, #4c0519, #9f1239, #fb7185); }
.rep-template-preview.beauty-3  { background: linear-gradient(135deg, #052e16, #15803d, #86efac); }
.rep-template-preview.crypto-1  { background: linear-gradient(135deg, #0f0f0f, #1e1e2e, #7c3aed); }
.rep-template-preview.crypto-2  { background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #00d4ff); }
.rep-template-preview.crypto-3  { background: linear-gradient(135deg, #1a1000, #422006, #d97706); }

.rep-tmpl-header {
  background: rgba(0,0,0,.25);
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem; color: rgba(255,255,255,.7);
  font-family: monospace;
}

.rep-tmpl-body {
  flex: 1; padding: 1rem; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
}
.rep-tmpl-avatar i { font-size: 2rem; color: rgba(255,255,255,.7); }
.rep-tmpl-title {
  font-size: 0.9rem; font-weight: 700; color: var(--rep-white);
  margin: 0.4rem 0 0.15rem;
}
.rep-tmpl-sub { font-size: 0.7rem; color: rgba(255,255,255,.6); margin-bottom: 0.7rem; }
.rep-tmpl-cta {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--rep-radius-sm);
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem; font-weight: 600; color: var(--rep-white);
}

.rep-template-info {
  padding: 1.1rem 1.25rem;
}
.rep-template-info h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--rep-dark);
  margin: 0 0 0.3rem;
}
.rep-template-info p {
  font-size: 0.78rem; color: var(--rep-text-muted); margin: 0 0 0.65rem;
}

.rep-tmpl-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--rep-primary-bg);
  color: var(--rep-primary-d);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--rep-radius-full);
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem; font-weight: 600;
}
.rep-tmpl-badge i { color: var(--rep-success); }

/* ================================================================
   10. OFFER CARDS
   ================================================================ */
.rep-offer-section {
  background: var(--rep-light);
}

.rep-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.rep-offer-card {
  background: var(--rep-white);
  border-radius: var(--rep-radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--rep-border);
  box-shadow: var(--rep-shadow-sm);
  position: relative;
  transition: all var(--rep-trans);
}
.rep-offer-card:hover {
  box-shadow: var(--rep-shadow-lg);
  transform: translateY(-4px);
}
.rep-offer-card.free-trial {
  border-color: var(--rep-primary-l);
  box-shadow: 0 0 0 2px rgba(13,148,136,.12);
}

.rep-offer-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rep-primary-bg), rgba(20,184,166,.2));
  border-radius: var(--rep-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--rep-primary-d);
  margin-bottom: 1rem;
}
.rep-offer-card.migration .rep-offer-icon { background: #fef3c7; color: var(--rep-accent-d); }
.rep-offer-card.support   .rep-offer-icon { background: #ede9fe; color: #7c3aed; }

.rep-offer-badge {
  position: absolute; top: -0.6rem; right: 1.5rem;
  background: var(--rep-primary);
  color: var(--rep-white);
  border-radius: var(--rep-radius-full);
  padding: 0.2rem 0.9rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.rep-offer-card h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--rep-dark);
  margin: 0 0 0.75rem;
}
.rep-offer-card > p {
  font-size: 0.875rem; color: var(--rep-text-muted);
  line-height: 1.65; margin-bottom: 1.25rem;
}

.rep-offer-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.rep-offer-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--rep-dark);
}
.rep-offer-list li i { color: var(--rep-primary); flex-shrink: 0; }

/* ================================================================
   11. GLOBAL SECTION
   ================================================================ */
.rep-global-section {
  background: var(--rep-white);
}

.rep-global-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.rep-global-stat {
  background: var(--rep-light);
  border-radius: var(--rep-radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--rep-border);
  transition: all var(--rep-trans);
}
.rep-global-stat:hover {
  border-color: var(--rep-primary-l);
  box-shadow: var(--rep-shadow-md);
  transform: translateY(-3px);
}

.rep-global-icon {
  width: 48px; height: 48px;
  background: var(--rep-primary-bg);
  border-radius: var(--rep-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--rep-primary-d);
  margin-bottom: 1rem;
}

.rep-global-stat h3 {
  font-size: 1rem; font-weight: 700; color: var(--rep-dark);
  margin: 0 0 0.5rem;
}
.rep-global-stat p {
  font-size: 0.85rem; color: var(--rep-text-muted); line-height: 1.65; margin: 0 0 1rem;
}

.rep-lang-tags, .rep-currency-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.rep-lang-tags span, .rep-currency-tags span {
  background: var(--rep-primary-bg);
  color: var(--rep-primary-d);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--rep-radius-sm);
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem; font-weight: 600;
}

/* ================================================================
   12. SECURITY SECTION
   ================================================================ */
.rep-security-section {
  background: var(--rep-dark);
  color: var(--rep-white);
}

.rep-security-section .rep-section-label {
  background: rgba(255,255,255,.08);
  color: var(--rep-primary-xl);
  border-color: rgba(255,255,255,.15);
}

.rep-security-section h2 { color: var(--rep-white); }

.rep-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rep-security-content > p {
  color: rgba(255,255,255,.7); font-size: 1rem;
  line-height: 1.7; margin-bottom: 2rem;
}

.rep-security-items {
  display: flex; flex-direction: column; gap: 1rem;
}
.rep-security-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--rep-radius-md);
  padding: 1rem 1.25rem;
  transition: all var(--rep-trans);
}
.rep-security-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(13,148,136,.3);
}
.rep-security-item > i {
  width: 36px; height: 36px;
  background: rgba(13,148,136,.15);
  border-radius: var(--rep-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--rep-primary-xl);
  flex-shrink: 0;
}
.rep-security-item > div strong {
  display: block; font-size: 0.9rem; font-weight: 700; color: var(--rep-white);
  margin-bottom: 0.2rem;
}
.rep-security-item > div span {
  font-size: 0.8rem; color: rgba(255,255,255,.5);
}

/* Security badges */
.rep-badge-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.rep-sec-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rep-radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  transition: all var(--rep-trans);
}
.rep-sec-badge:hover {
  background: rgba(13,148,136,.1);
  border-color: rgba(13,148,136,.3);
}
.rep-sec-badge i { font-size: 1.5rem; color: var(--rep-primary-xl); }
.rep-sec-badge strong { font-size: 0.95rem; color: var(--rep-white); }
.rep-sec-badge span { font-size: 0.75rem; color: rgba(255,255,255,.5); }

/* ================================================================
   13. TESTIMONIALS
   ================================================================ */
.rep-testimonials-section {
  background: var(--rep-light);
}

.rep-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.rep-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.rep-testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.rep-testimonial-card {
  background: var(--rep-white);
  border-radius: var(--rep-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--rep-shadow-md);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--rep-border);
  border-top: 4px solid var(--rep-primary);
  position: relative;
}

.rep-testimonial-stars {
  display: flex; gap: 0.2rem;
  margin-bottom: 1rem;
}
.rep-testimonial-stars i { color: var(--rep-accent); font-size: 1rem; }

.rep-testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rep-dark-3);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}

.rep-testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.rep-author-avatar i { font-size: 2.5rem; color: var(--rep-primary-l); }
.rep-testimonial-author > div strong {
  display: block; font-size: 0.95rem; font-weight: 700; color: var(--rep-dark);
}
.rep-testimonial-author > div span {
  font-size: 0.8rem; color: var(--rep-text-muted);
}

.rep-testimonial-metric {
  display: inline-block;
  background: var(--rep-primary-bg);
  color: var(--rep-primary-d);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--rep-radius-full);
  padding: 0.3rem 1rem;
  font-size: 0.82rem; font-weight: 700;
}

/* Slider Navigation */
.rep-slider-nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem;
}
.rep-slider-prev, .rep-slider-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--rep-border);
  background: var(--rep-white);
  color: var(--rep-dark-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--rep-trans);
  font-size: 0.8rem;
  font-family: inherit;
}
.rep-slider-prev:hover, .rep-slider-next:hover {
  border-color: var(--rep-primary);
  color: var(--rep-primary);
}

.rep-slider-dots { display: flex; gap: 0.5rem; }
.rep-slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rep-border);
  border: none; cursor: pointer;
  transition: all var(--rep-trans);
}
.rep-slider-dot.active {
  background: var(--rep-primary);
  transform: scale(1.2);
}

/* ================================================================
   14. FAQ
   ================================================================ */
.rep-faq-section {
  background: var(--rep-white);
}

.rep-faq-grid {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.rep-faq-item {
  background: var(--rep-white);
  border: 1px solid var(--rep-border);
  border-radius: var(--rep-radius-md);
  overflow: hidden;
  transition: all var(--rep-trans);
}
.rep-faq-item.open {
  border-color: var(--rep-primary-l);
  box-shadow: var(--rep-shadow-sm);
}

.rep-faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: transparent; border: none;
  text-align: left; cursor: pointer;
  font-size: 0.95rem; font-weight: 600;
  color: var(--rep-dark);
  font-family: inherit;
  transition: all var(--rep-trans);
}
.rep-faq-question:hover { color: var(--rep-primary-d); }
.rep-faq-item.open .rep-faq-question { color: var(--rep-primary-d); }

.rep-faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--rep-primary);
  transition: transform var(--rep-trans);
}
.rep-faq-item.open .rep-faq-icon { transform: rotate(45deg); }

.rep-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.rep-faq-item.open .rep-faq-answer {
  max-height: 600px;
}

.rep-faq-answer [itemprop="text"] {
  padding: 0 1.5rem 1.25rem;
}
.rep-faq-answer p {
  font-size: 0.875rem; color: var(--rep-text-muted);
  line-height: 1.7; margin: 0 0 0.75rem;
}
.rep-faq-answer p:last-child { margin-bottom: 0; }

/* ================================================================
   15. DEMO / CONTACT FORM SECTION
   ================================================================ */
.rep-demo-section {
  background: linear-gradient(135deg, #0f172a 0%, #0d2d45 50%, #0f5a4e 100%);
  color: var(--rep-white);
}

.rep-demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.rep-demo-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; line-height: 1.2;
  color: var(--rep-white);
  margin: 0.75rem 0 1rem;
}
.rep-demo-intro {
  color: rgba(255,255,255,.75);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1.75rem;
}

.rep-demo-benefits {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-bottom: 2rem;
}
.rep-demo-benefits li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: rgba(255,255,255,.85);
}
.rep-demo-benefits li i { color: var(--rep-success); flex-shrink: 0; }

.rep-demo-contacts {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.rep-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: rgba(255,255,255,.7);
}
.rep-contact-item i {
  color: var(--rep-primary-xl);
  flex-shrink: 0; margin-top: 0.15rem;
  width: 18px; text-align: center;
}
.rep-contact-item a {
  color: rgba(255,255,255,.85); text-decoration: none;
}
.rep-contact-item a:hover { color: var(--rep-primary-xl); }
.rep-contact-item address { font-style: normal; }

.rep-urgency-banner {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--rep-radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.8);
}
.rep-urgency-banner i { color: var(--rep-accent); }
.rep-urgency-banner strong { color: var(--rep-accent); }

/* Form */
.rep-demo-form-wrapper {
  background: var(--rep-white);
  border-radius: var(--rep-radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--rep-shadow-xl);
}
.rep-demo-form h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--rep-dark);
  margin: 0 0 0.4rem;
}
.rep-form-subtitle {
  font-size: 0.85rem; color: var(--rep-text-muted);
  margin-bottom: 1.5rem;
}

.rep-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.rep-form-group { margin-bottom: 1rem; }
.rep-form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600; color: var(--rep-dark-3);
  margin-bottom: 0.35rem;
}
.rep-form-group label span { color: #dc2626; }
.rep-form-group input,
.rep-form-group select,
.rep-form-group textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1px solid var(--rep-border);
  border-radius: var(--rep-radius-sm);
  font-size: 0.9rem; color: var(--rep-text);
  background: var(--rep-white);
  outline: none; transition: all var(--rep-trans);
  font-family: inherit;
}
.rep-form-group input:focus,
.rep-form-group select:focus,
.rep-form-group textarea:focus {
  border-color: var(--rep-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.rep-form-group input.error,
.rep-form-group select.error { border-color: #dc2626; }
.rep-error-msg {
  display: block; font-size: 0.78rem; color: #dc2626;
  margin-top: 0.25rem; min-height: 1rem;
}
.rep-form-privacy {
  margin-top: 0.75rem; font-size: 0.78rem; color: var(--rep-text-muted);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.3rem;
}
.rep-form-privacy i { color: var(--rep-primary); }

/* Success message */
.rep-form-success {
  text-align: center; padding: 2.5rem 1.5rem;
}
.rep-form-success > i {
  font-size: 3rem; color: var(--rep-success);
  display: block; margin-bottom: 1rem;
}
.rep-form-success h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--rep-dark);
  margin: 0 0 0.6rem;
}
.rep-form-success p {
  font-size: 0.9rem; color: var(--rep-text-muted);
  margin-bottom: 1.5rem;
}

/* ================================================================
   16. FINAL CTA
   ================================================================ */
.rep-final-cta {
  background: linear-gradient(135deg, var(--rep-primary-d) 0%, var(--rep-primary) 50%, var(--rep-primary-l) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.rep-final-cta-inner {
  max-width: 860px; margin: 0 auto; padding: 0 1.5rem;
}
.rep-final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  color: var(--rep-white);
  margin: 0 0 1rem;
}
.rep-final-cta > .rep-final-cta-inner > p {
  color: rgba(255,255,255,.8);
  font-size: 1rem; margin-bottom: 2rem;
}
.rep-final-cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.rep-final-cta-note {
  font-size: 0.85rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.rep-final-cta-note i { color: rgba(255,255,255,.9); }

/* ================================================================
   17. FOOTER (uses global style.css classes, these are supplements)
   ================================================================ */
.site-footer { background: #0f172a; color: rgba(255,255,255,.75); }
.site-footer .container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d)); border-radius: var(--rep-radius-sm); display: flex; align-items: center; justify-content: center; color: var(--rep-white); font-size: 1.1rem; }
.logo-main { display: block; font-size: 1rem; font-weight: 800; color: var(--rep-white); }
.logo-sub  { display: block; font-size: 0.7rem; color: rgba(255,255,255,.5); }

.footer-brand p, .footer-brand address {
  font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,.55); margin-bottom: 1rem;
  font-style: normal;
}

.footer-contact-links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.footer-contact-links a { font-size: 0.82rem; color: rgba(255,255,255,.6); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color var(--rep-trans); }
.footer-contact-links a:hover { color: var(--rep-primary-xl); }
.footer-contact-links a i { width: 14px; text-align: center; color: var(--rep-primary-l); }

.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: var(--rep-radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 0.8rem; text-decoration: none; transition: all var(--rep-trans); }
.footer-social a:hover { background: var(--rep-primary); color: var(--rep-white); }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--rep-white); margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--rep-trans); }
.footer-col ul li a:hover { color: var(--rep-primary-xl); }

.footer-badges { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-badges li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,.5); list-style: none; }
.footer-badges li i { color: var(--rep-primary-l); width: 14px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--rep-primary-xl); }

/* ================================================================
   18. STICKY ELEMENTS
   ================================================================ */

/* Sticky bottom bar (mobile) */
.sticky-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--rep-white);
  border-top: 1px solid var(--rep-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  display: none; /* shown via JS on mobile */
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}
.sticky-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; text-decoration: none;
  font-size: 0.7rem; font-weight: 600; color: var(--rep-dark-3);
  padding: 0.4rem;
  border-radius: var(--rep-radius-sm);
}
.sticky-btn i { font-size: 1.1rem; }
.sticky-btn.call     { color: var(--rep-primary-d); }
.sticky-btn.demo     { color: var(--rep-primary-d); }
.sticky-btn.whatsapp { color: #25d366; }

/* Sticky CTA bar (desktop top-scroll) */
.rep-sticky-cta {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 900;
  background: rgba(15,22,42,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,148,136,.25);
  padding: 0.65rem 2rem;
  display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.rep-sticky-cta.visible { transform: translateY(0); }
.rep-sticky-cta > span {
  margin-right: auto;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 0.5rem;
}
.rep-sticky-cta > span i { color: var(--rep-primary-xl); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 999;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rep-primary), var(--rep-primary-d));
  color: var(--rep-white); border: none; border-radius: 50%;
  font-size: 0.9rem; cursor: pointer;
  box-shadow: var(--rep-shadow-md);
  transition: all var(--rep-trans);
  display: flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--rep-shadow-lg); }

/* ================================================================
   19. RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1100px) {
  .rep-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .rep-step-connector { display: none; }
}

@media (max-width: 900px) {
  .rep-hero-container { grid-template-columns: 1fr; }
  .rep-hero-visual { display: none; }
  .rep-what-grid { grid-template-columns: 1fr; }
  .rep-security-grid { grid-template-columns: 1fr; }
  .rep-demo-wrapper { grid-template-columns: 1fr; }
  .rep-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .rep-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rep-steps-grid { grid-template-columns: 1fr; }
  .rep-form-row  { grid-template-columns: 1fr; }
  .sticky-bottom-bar { display: flex; }
  .back-to-top { bottom: 5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .rep-hero-actions { flex-direction: column; }
  .rep-what-cta-row { flex-direction: column; }
  .rep-badge-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 420px) {
  .rep-stats-grid { grid-template-columns: 1fr 1fr; }
  .rep-badge-grid { grid-template-columns: repeat(2, 1fr); }
  .rep-offer-grid { grid-template-columns: 1fr; }
  .rep-final-cta-actions { flex-direction: column; align-items: center; }
}
