/* ==========================================================================
   /assets/css/rt_marketing.css  ·  RepairTicket Solutions Funnel
   Mobile-first · Dark-tech aesthetic · High-converting funnel
   ========================================================================== */

/* ── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Page */
  --bg:          #0b1220;
  --bg-card:     rgba(255,255,255,.05);
  --bg-card-2:   rgba(255,255,255,.08);
  --border:      rgba(255,255,255,.10);
  --border-med:  rgba(255,255,255,.16);

  /* Text */
  --fg:          #e7eefc;
  --fg-muted:    rgba(231,238,252,.70);
  --fg-faint:    rgba(231,238,252,.45);

  /* Accents */
  --blue:        #0ea5e9;
  --indigo:      #6366f1;
  --green:       #16a34a;
  --amber:       #d97706;
  --red:         #dc2626;
  --orange:      #ea580c;

  /* Glow tokens */
  --glow-blue:   rgba(14,165,233,.25);
  --glow-indigo: rgba(99,102,241,.25);
  --glow-green:  rgba(22,163,74,.25);
  --glow-amber:  rgba(245,158,11,.25);

  /* Spacing */
  --radius-hero: 22px;
  --radius-card: 18px;
  --radius-sm:   13px;
  --radius-pill: 999px;
  --page-x:      18px;

  /* Headlines */
  --font-headline: 'Bebas Neue', 'DM Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1400px 800px at 15% 5%,  rgba(99,102,241,.18), transparent 55%),
    radial-gradient(1000px 600px at 90% 0%,  rgba(14,165,233,.14), transparent 55%),
    radial-gradient(800px  600px at 50% 80%, rgba(22,163,74,.08),  transparent 60%),
    var(--bg);
  color: var(--fg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body.rt-modal-open { overflow: hidden; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--glow-indigo); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate    { animation: fade-up 0.38s ease both; }
.animate-d1 { animation-delay: 0.08s; }
.animate-d2 { animation-delay: 0.16s; }
.animate-d3 { animation-delay: 0.24s; }

/* ── ANNOUNCEMENT STRIP ──────────────────────────────────────────────────── */
.announce-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #1e1b4b, #1e3a5f, #1e1b4b);
  border-bottom: 1px solid rgba(99,102,241,.35);
  padding: 8px var(--page-x);
  font-size: 12px;
  font-weight: 500;
  color: rgba(231,238,252,.85);
  letter-spacing: 0.02em;
  text-align: center;
  flex-wrap: wrap;
}
.announce-strip i { color: var(--blue); font-size: 13px; flex-shrink: 0; }

/* ── PAGE WRAPPER ────────────────────────────────────────────────────────── */
.rt-page-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px var(--page-x) 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.rt-hero {
  border-radius: var(--radius-hero);
  background: linear-gradient(145deg, #0d1b36, #0f172a);
  border: 1px solid var(--border-med);
  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(99,102,241,.08);
  overflow: hidden;
  position: relative;
}

.hero-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--indigo), var(--blue), var(--green));
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 24px 18px;
  align-items: center;
}

/* Hero copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.35);
  color: rgba(231,238,252,.88);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Bebas Neue headline */
.hero-headline{
  font-family: var(--font-headline);
  font-size: clamp(30px, 5.2vw, 60px);
  font-weight: 400;        /* Bebas Neue is best at 400 */
  line-height: 1.02;
  letter-spacing: 0.03em;  /* improves readability for condensed font */
  margin-bottom: 12px;
  color: var(--fg);
  text-wrap: balance;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hl-accent {
  background: linear-gradient(90deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-blue {
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 13.5px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--fg); }

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hbc-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--fg-faint);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.hbc-active {
  color: var(--indigo);
  border-color: rgba(99,102,241,.35);
  background: rgba(99,102,241,.10);
}

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hstat {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148,163,184,.25);
  overflow: hidden;
  background: rgba(15,23,42,.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hstat:hover { transform: translateY(-2px); }

.hstat-accent-bar { height: 3px; }
.hstat-blue  .hstat-accent-bar { background: linear-gradient(90deg, var(--blue), #38bdf8); }
.hstat-amber .hstat-accent-bar { background: linear-gradient(90deg, var(--amber), #f59e0b); }
.hstat-indigo .hstat-accent-bar { background: linear-gradient(90deg, var(--indigo), #818cf8); }
.hstat-green .hstat-accent-bar { background: linear-gradient(90deg, var(--green), #22c55e); }

.hstat-blue   { border-color: rgba(14,165,233,.40); }
.hstat-amber  { border-color: rgba(217,119,6,.40); }
.hstat-indigo { border-color: rgba(99,102,241,.40); }
.hstat-green  { border-color: rgba(22,163,74,.40); }

.hstat-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
}

.hstat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  margin-bottom: 2px;
}
.hstat-value {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hstat-sub { font-size: 10.5px; color: var(--fg-faint); margin-top: 2px; }

.hstat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.hstat-icon-blue   { background: rgba(14,165,233,.15);  border: 1px solid rgba(14,165,233,.30);  color: var(--blue); }
.hstat-icon-amber  { background: rgba(217,119,6,.15);   border: 1px solid rgba(217,119,6,.30);   color: #f59e0b; }
.hstat-icon-indigo { background: rgba(99,102,241,.15);  border: 1px solid rgba(99,102,241,.30);  color: var(--indigo); }
.hstat-icon-green  { background: rgba(22,163,74,.15);   border: 1px solid rgba(22,163,74,.30);   color: #22c55e; }

/* Hero Footer */
.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.hero-ctas { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(231,238,252,.85);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-ghost-sm:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(99,102,241,.45);
  color: var(--fg);
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  border: none;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
  transition: all 0.2s ease;
  animation: pulse-glow 2.5s ease infinite;
  white-space: nowrap;
}
.btn-primary-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(99,102,241,.50);
  color: #fff;
  filter: brightness(1.05);
}

.hero-meta {
  font-size: 11.5px;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── PAIN STRIP ──────────────────────────────────────────────────────────── */
.pain-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(220,38,38,.12), rgba(217,119,6,.08));
  border: 1px solid rgba(220,38,38,.25);
  border-radius: var(--radius-card);
  padding: 14px 20px;
  flex-wrap: wrap;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--fg-muted);
  flex: 1;
  min-width: 200px;
  text-align: center;
  justify-content: center;
}
.pain-item i { color: #f87171; font-size: 16px; flex-shrink: 0; }

.pain-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0;
}

/* ── REMOTE MONITORING SECTION ───────────────────────────────────────────── */
.remote-section {
  border-radius: var(--radius-hero);
  background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(99,102,241,.08));
  border: 1px solid rgba(14,165,233,.25);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.remote-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.15), transparent 70%);
  pointer-events: none;
}

.remote-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.35);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Bebas Neue headline */
.remote-headline {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4.0vw, 44px);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.remote-sub {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.remote-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.remote-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(15,23,42,.75);
  padding: 18px 14px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.remote-card:hover { transform: translateY(-3px); }

.rc-blue   { border-color: rgba(14,165,233,.30); }
.rc-blue:hover { border-color: rgba(14,165,233,.60); }
.rc-indigo { border-color: rgba(99,102,241,.30); }
.rc-indigo:hover { border-color: rgba(99,102,241,.60); }
.rc-green  { border-color: rgba(22,163,74,.30); }
.rc-green:hover { border-color: rgba(22,163,74,.60); }
.rc-amber  { border-color: rgba(217,119,6,.30); }
.rc-amber:hover { border-color: rgba(217,119,6,.60); }

.rc-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.rc-blue   .rc-icon { color: var(--blue); }
.rc-indigo .rc-icon { color: var(--indigo); }
.rc-green  .rc-icon { color: #22c55e; }
.rc-amber  .rc-icon { color: #f59e0b; }

.rc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 5px;
}
.rc-desc {
  font-size: 11.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── CONTENT GRID ────────────────────────────────────────────────────────── */
.rt-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.rt-col-left  { display: flex; flex-direction: column; gap: 14px; }
.rt-col-right { position: relative; }

/* ── RT CARD SHELL ───────────────────────────────────────────────────────── */
.rt-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.rt-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rt-card-head-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  font-size: 14px;
  flex-shrink: 0;
}
.rt-card-head-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.rt-card-body { padding: 18px; }

.body-text {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.body-text strong { color: var(--fg); }

/* ── CALLOUT ─────────────────────────────────────────────────────────────── */
.rt-callout {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.rt-callout-amber {
  background: rgba(217,119,6,.12);
  border: 1px solid rgba(217,119,6,.30);
  border-left: 4px solid var(--amber);
}
.rt-callout-head {
  font-size: 12.5px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 5px;
}
.rt-callout-body {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── SCENARIO LIST ───────────────────────────────────────────────────────── */
.scenario-list { display: flex; flex-direction: column; gap: 10px; }

.scenario-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid;
}
.scenario-bad  { background: rgba(220,38,38,.08); border-color: rgba(220,38,38,.25); }
.scenario-good { background: rgba(22,163,74,.08);  border-color: rgba(22,163,74,.25); }

.scenario-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.scenario-bad  .scenario-icon { color: #f87171; }
.scenario-good .scenario-icon { color: #4ade80; }

.scenario-title { font-size: 13px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.scenario-desc  { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; }

/* ── RT FEATURE LIST ─────────────────────────────────────────────────────── */
.rt-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rt-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.rt-feature-list li strong { color: var(--fg); }

.rfl-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.rfl-blue   { background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.25); color: var(--blue); }
.rfl-indigo { background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.25); color: var(--indigo); }
.rfl-amber  { background: rgba(217,119,6,.15);  border: 1px solid rgba(217,119,6,.25);  color: #f59e0b; }
.rfl-green  { background: rgba(22,163,74,.15);  border: 1px solid rgba(22,163,74,.25);  color: #4ade80; }
.rfl-red    { background: rgba(220,38,38,.15);  border: 1px solid rgba(220,38,38,.25);  color: #f87171; }

/* ── MINI FEATURE GRID ───────────────────────────────────────────────────── */
.mini-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mfg-item {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.mfg-item:hover { border-color: rgba(99,102,241,.40); transform: translateY(-1px); }

.mfg-icon { font-size: 20px; color: var(--indigo); margin-bottom: 6px; }
.mfg-title { font-size: 12.5px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.mfg-desc  { font-size: 11.5px; color: var(--fg-muted); line-height: 1.45; }

/* ── CTA CARD ────────────────────────────────────────────────────────────── */
.cta-sticky-wrap { position: sticky; top: 16px; }

.cta-card {
  border-color: rgba(99,102,241,.35);
  background: linear-gradient(145deg, rgba(15,23,42,.95), rgba(30,27,75,.85));
  box-shadow: 0 8px 32px rgba(99,102,241,.20), 0 0 0 1px rgba(99,102,241,.12);
}

.cta-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(99,102,241,.10);
  border-bottom: 1px solid rgba(99,102,241,.20);
  flex-wrap: wrap;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
}
.cta-pill-paypal { color: #60a5fa; border-color: rgba(96,165,250,.30); }

.cta-card-body { padding: 18px; }

.cta-rule-block {
  background: rgba(22,163,74,.10);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.cta-rule-head { font-size: 12.5px; font-weight: 700; color: #4ade80; margin-bottom: 4px; }
.cta-rule-text { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; font-style: italic; }

.cta-divider { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; }

.cta-features-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  margin-bottom: 10px;
}

.cta-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.cta-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.45;
}
.cta-feature-list li i { color: #4ade80; font-size: 14px; margin-top: 1px; flex-shrink: 0; }

.btn-subscribe-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #ea580c, #f97316, #6366f1);
  background-size: 200% auto;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(234,88,12,.40), 0 2px 8px rgba(0,0,0,.30);
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
  min-height: 50px;
  animation: pulse-glow 3s ease infinite;
}
.btn-subscribe-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234,88,12,.55);
  background-position: right center;
  color: #fff;
  filter: brightness(1.06);
}

.cta-redirect-note {
  text-align: center;
  font-size: 11px;
  color: var(--fg-faint);
  margin-top: 8px;
  margin-bottom: 14px;
}

.trust-block {
  background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.20);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.trust-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.trust-head i { color: #4ade80; }

.trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--fg-muted);
}
.trust-list li i { color: #4ade80; }

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-avatars { display: flex; }
.sp-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid rgba(15,23,42,.8);
  margin-right: -8px;
  color: #fff;
}
.sp-av-1 { background: var(--indigo); }
.sp-av-2 { background: var(--blue); }
.sp-av-3 { background: var(--green); }
.sp-text { font-size: 11.5px; color: var(--fg-muted); line-height: 1.4; padding-left: 12px; }
.sp-text strong { color: var(--fg); }

/* ── URGENCY SECTION ─────────────────────────────────────────────────────── */
.urgency-section {
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(234,88,12,.15), rgba(99,102,241,.15));
  border: 1px solid rgba(234,88,12,.30);
  padding: 24px;
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 32px;
  color: #fb923c;
  flex-shrink: 0;
  animation: pulse-glow 2s ease infinite;
}

.urgency-copy { flex: 1; min-width: 200px; }
.urgency-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.1;
}
.urgency-sub   { font-size: 12.5px; color: var(--fg-muted); }

.btn-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--orange), #f97316);
  border: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(234,88,12,.40);
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 46px;
}
.btn-urgency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(234,88,12,.55);
  color: #fff;
  filter: brightness(1.05);
}

/* ── MOBILE BOTTOM BAR ───────────────────────────────────────────────────── */
/* Hidden by default (desktop), shown via media query ≤1199px */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,18,32,.95);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  align-items: stretch;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mbb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 6px;
  text-decoration: none;
  color: var(--fg-faint);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  min-height: 54px;
}
.mbb-item i { font-size: 20px; }
.mbb-item:hover { color: var(--fg); }

.mbb-cta {
  background: linear-gradient(90deg, var(--orange), var(--indigo));
  color: #fff !important;
  font-weight: 800;
  font-size: 11px;
}
.mbb-cta i { font-size: 22px; }
.mbb-cta:hover { filter: brightness(1.08); color: #fff !important; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.rt-footer {
  text-align: center;
  font-size: 12px;
  color: var(--fg-faint);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.rt-footer a { color: var(--blue); text-decoration: none; }
.rt-footer a:hover { text-decoration: underline; }
.footer-dot { margin: 0 6px; }

/* ── VIDEO MODAL ─────────────────────────────────────────────────────────── */
.rt-video-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2200;
}
.rt-video-modal.is-open{ display:block; }

.rt-video-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
}

.rt-video-sheet{
  position:absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 24px));
  background: rgba(10, 14, 22, .97);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
}

.rt-video-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.rt-video-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  display:flex;
  align-items:center;
  gap:.45rem;
  color: rgba(231,238,252,.92);
}

.rt-video-close{
  border: 0;
  background: transparent;
  color: rgba(231,238,252,.88);
  padding: 6px 8px;
  border-radius: 10px;
}
.rt-video-close:hover{ background: rgba(255,255,255,.06); }

.rt-video-wrap{
  padding: 10px 12px;
  overflow: auto;
}

.rt-video-wrap video{
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #000;
}

.rt-video-foot{
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ========================================================================== */
/* RESPONSIVE MEDIA QUERIES — MOBILE FIRST                                    */
/* ========================================================================== */

/* ── ≤1199px ─────────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .mobile-bottom-bar { display: flex; }

  .rt-content-grid { grid-template-columns: minmax(0, 1fr) 300px; }
  .remote-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤991px ──────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  :root { --page-x: 14px; }

  .hero-inner { grid-template-columns: 1fr; gap: 18px; }

  .rt-content-grid { grid-template-columns: 1fr; }
  .rt-col-right { order: -1; }
  .cta-sticky-wrap { position: static; }

  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }

  .pain-divider { display: none; }
  .pain-item    { min-width: 100%; text-align: left; padding: 4px 0; }
  .pain-strip   { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ── ≤767px ──────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root { --page-x: 12px; }

  .rt-page-wrap { padding-bottom: 90px; }

  /* Announce */
  .announce-strip { font-size: 11px; gap: 6px; }
  .announce-strip i { display: none; }

  /* Hero */
  .hero-inner { padding: 18px 16px 14px; }
  .hero-headline { font-size: clamp(28px, 9.5vw, 44px); }
  .hero-sub { font-size: 13px; }

  .hero-stats-grid { grid-template-columns: 1fr 1fr; }

  .hero-footer { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-meta   { font-size: 11px; }

  /* Remote Section */
  .remote-section { padding: 22px 18px; }
  .remote-headline { font-size: clamp(22px, 7.2vw, 34px); }
  .remote-cards { grid-template-columns: 1fr 1fr; }

  /* Mini feature grid */
  .mini-feature-grid { grid-template-columns: 1fr 1fr; }

  /* Urgency */
  .urgency-inner { flex-direction: column; text-align: center; }
  .urgency-icon  { font-size: 28px; }
  .btn-urgency   { width: 100%; justify-content: center; }

  /* Video modal positioning */
  .rt-video-sheet{
    bottom: 10px;
    max-height: 90vh;
  }
}

/* ── ≤575px — SMALL PHONES ───────────────────────────────────────────────── */
@media (max-width: 575px) {
  :root { --page-x: 10px; }

  /* Hero: full-width single column */
  .hero-inner { padding: 16px 14px 12px; gap: 14px; }
  .hero-badge { font-size: 10px; padding: 4px 10px; }
  .hero-headline { font-size: clamp(26px, 10vw, 38px); }
  .hero-sub { font-size: 12.5px; }
  .hero-breadcrumb { gap: 4px; }
  .hbc-item { font-size: 10px; padding: 2px 8px; }

  /* Stats: 2 cols on small */
  .hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hstat-value { font-size: 18px; }
  .hstat-body  { padding: 8px 10px; }

  /* Buttons — thumb-friendly */
  .btn-primary-pill { padding: 10px 18px; font-size: 12px; min-height: 42px; }
  .btn-ghost-sm     { padding: 9px 14px;  font-size: 12px; min-height: 40px; }

  /* Hero CTA stack vertically */
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-ghost-sm,
  .hero-ctas .btn-primary-pill { width: 100%; justify-content: center; }

  /* Remote */
  .remote-section  { padding: 18px 14px; }
  .remote-headline { font-size: clamp(20px, 8.5vw, 30px); }
  .remote-cards    { grid-template-columns: 1fr; gap: 8px; }

  /* Content cards */
  .rt-card-body  { padding: 14px; }
  .rt-card-head  { padding: 10px 14px; }
  .body-text     { font-size: 13px; }

  /* Mini grid: single column on tiny screens */
  .mini-feature-grid { grid-template-columns: 1fr; }

  /* CTA card */
  .cta-card-head  { padding: 12px 14px; }
  .cta-card-body  { padding: 14px; }

  /* Subscribe button — big thumb target */
  .btn-subscribe-full { font-size: 13.5px; padding: 15px 18px; min-height: 52px; }

  /* Urgency */
  .urgency-section { padding: 18px 14px; }
  .urgency-title   { font-size: 20px; }

  /* Pain strip */
  .pain-strip  { padding: 12px 14px; }
  .pain-item   { font-size: 12px; }

  /* Footer */
  .rt-footer { font-size: 11px; }
}

/* ── PREVENT HORIZONTAL OVERFLOW ─────────────────────────────────────────── */
img, video, iframe, table { max-width: 100%; }
pre { white-space: pre-wrap; word-break: break-word; }