/**
 * Wiki Express Connect — Course Page Styles · VIP Edition
 *
 * Animaciones de entrada, glassmorphism, glow effects,
 * 3D hover, micro-interacciones y acabado premium.
 */
.course-page {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.course-page * { box-sizing: border-box; }
.course-page a { text-decoration: none; color: inherit; }
.course-page { margin: 0; padding: 0; }

/* ═══════════════════════════════════════
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); opacity: 0; }
.reveal-scale.visible { transform: scale(1); opacity: 1; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════
   BOTONES · VIP
   ═══════════════════════════════════════ */
.crs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 24px; border-radius: 10px; border: 0;
  font-weight: 800; font-size: 0.98rem; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.2s, border-color 0.2s,
              box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.crs-btn.primary {
  background: linear-gradient(135deg, var(--safety), #f06a3a);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,98,44,.32);
}
.crs-btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(232,98,44,.48);
}
.crs-btn.primary:active { transform: translateY(-1px) scale(0.98); }
.crs-btn.secondary {
  background: rgba(0,187,0,.12);
  color: #0b0;
  border: 1px solid rgba(0,187,0,.25);
}
.crs-btn.secondary:hover {
  background: rgba(0,187,0,.2);
  border-color: rgba(0,187,0,.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,187,0,.15);
}
.crs-btn.ghost {
  border: 1px solid var(--paper3); color: var(--paper); background: transparent;
  backdrop-filter: blur(8px);
}
.crs-btn.ghost:hover {
  border-color: var(--brass); color: var(--brass);
  box-shadow: 0 0 24px rgba(201,154,62,.18);
  transform: translateY(-2px);
}
.crs-btn.mp {
  background: linear-gradient(135deg, #00b1ea, #0095c6);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,177,234,.28);
}
.crs-btn.mp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,177,234,.42);
}

/* Ripple */
.crs-btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0); animation: ripple .6s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ═══════════════════════════════════════
   KICKER · VIP
   ═══════════════════════════════════════ */
.crs-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.76rem;
  color: var(--brass); text-transform: uppercase; letter-spacing: 1.8px;
  border: 1px solid rgba(201,154,62,.25); padding: 7px 14px; border-radius: 999px;
  background: rgba(30,35,44,.85);
  backdrop-filter: blur(12px);
  animation: kickerGlow 3s ease-in-out infinite;
}
@keyframes kickerGlow {
  0%,100% { box-shadow: 0 0 0 rgba(201,154,62,0); }
  50% { box-shadow: 0 0 18px rgba(201,154,62,.18); }
}
.crs-kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--circuit);
  box-shadow: 0 0 10px var(--circuit);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px var(--circuit); transform: scale(1); }
  50% { box-shadow: 0 0 16px var(--circuit); transform: scale(1.3); }
}

/* ═══════════════════════════════════════
   HERO · VIP
   ═══════════════════════════════════════ */
.crs-hero {
  position: relative; padding: 100px 0 80px;
  background:
    radial-gradient(820px 420px at 78% 8%, rgba(201,154,62,.16), transparent 62%),
    radial-gradient(520px 360px at 7% 82%, rgba(47,143,130,.08), transparent 64%),
    radial-gradient(400px 280px at 40% 50%, rgba(232,98,44,.05), transparent 70%);
  animation: heroFadeIn .8s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.crs-hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image:
    linear-gradient(rgba(217,208,184,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,208,184,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 72% 20%, black, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,100% { opacity: .35; }
  50% { opacity: .42; }
}

.crs-hero-grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.08fr 0.92fr; gap: 48px; align-items: center;
}
.crs-hero-grid > :first-child {
  animation: slideInLeft .8s cubic-bezier(0.22,1,0.36,1) .1s both;
}
.crs-hero-grid > :last-child {
  animation: slideInRight .8s cubic-bezier(0.22,1,0.36,1) .25s both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.crs-h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem); line-height: 1.02; letter-spacing: -1.8px;
  margin: 22px 0 18px; font-weight: 800;
  background: linear-gradient(135deg, var(--paper) 0%, #c5bfaf 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crs-h1 span {
  background: linear-gradient(135deg, var(--safety), var(--brass));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crs-lead { color: #b8bfc9; font-size: 1.12rem; max-width: 620px; margin: 0 0 30px; }
.crs-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

/* ═══════════════════════════════════════
   TRUST STATS · VIP
   ═══════════════════════════════════════ */
.crs-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 660px; }
.crs-trust div {
  border: 1px solid rgba(217,208,184,.12);
  background: rgba(30,35,44,.7);
  backdrop-filter: blur(14px);
  border-radius: 14px; padding: 16px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.crs-trust div:hover {
  transform: translateY(-3px);
  border-color: rgba(201,154,62,.35);
  box-shadow: 0 8px 32px rgba(0,0,0,.24);
}
.crs-trust b {
  display: block; font-family: 'Space Grotesk'; font-size: 1.6rem; line-height: 1;
  color: var(--paper); margin-bottom: 4px;
  background: linear-gradient(135deg, var(--brass), var(--safety));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crs-trust span { font-family: 'JetBrains Mono'; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.9px; color: var(--steel); }

/* ═══════════════════════════════════════
   PANEL / TERMINAL · VIP
   ═══════════════════════════════════════ */
.crs-panel {
  background: rgba(26,31,39,.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(217,208,184,.18);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 32px 64px -28px rgba(0,0,0,.8),
              0 0 0 1px rgba(201,154,62,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              box-shadow .35s;
}
.crs-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 72px -28px rgba(0,0,0,.85),
              0 0 0 1px rgba(201,154,62,.12),
              0 0 48px rgba(201,154,62,.06);
}
.crs-panel-top {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(217,208,184,.12);
  background: rgba(30,35,44,.95);
}
.crs-panel-top i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.crs-panel-top i:nth-child(1) { background: #e0635c; }
.crs-panel-top i:nth-child(2) { background: #e0b03c; }
.crs-panel-top i:nth-child(3) { background: var(--circuit); }
.crs-panel-top span { margin-left: 8px; font-family: 'JetBrains Mono'; font-size: 0.78rem; color: var(--steel); }
.crs-terminal { padding: 24px; font-family: 'JetBrains Mono'; font-size: 0.86rem; line-height: 1.9; }
.crs-terminal .c { color: var(--steel); }
.crs-terminal .k { color: var(--brass); }
.crs-terminal .v { color: var(--circuit); }
.crs-gauge {
  height: 8px; background: rgba(217,208,184,.06); border-radius: 999px;
  margin: 18px 0 10px; overflow: hidden; position: relative;
}
.crs-gauge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,.04) 30%, transparent 60%);
  animation: gaugeShine 3s ease-in-out infinite;
}
@keyframes gaugeShine {
  0%,100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.crs-gauge i {
  display: block; height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brass), var(--safety), var(--safety));
  box-shadow: 0 0 12px rgba(232,98,44,.4);
  animation: gaugeLoad 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
  width: 0;
}
@keyframes gaugeLoad { to { width: var(--gauge-pct, 92%); } }

/* ═══════════════════════════════════════
   VISUAL PANEL · VIP
   ═══════════════════════════════════════ */
.crs-visual {
  position: relative; margin-top: 20px; min-height: 240px;
  border: 1px solid rgba(201,154,62,.32);
  border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(280px 200px at var(--mx,70%) var(--my,28%), rgba(201,154,62,.16), transparent 66%),
    radial-gradient(180px 120px at calc(100% - var(--mx,30%)) calc(100% - var(--my,72%)), rgba(47,143,130,.08), transparent 60%),
    linear-gradient(160deg, rgba(18,24,31,.88), rgba(24,31,38,.8));
  backdrop-filter: blur(8px);
  transition: border-color .5s;
  cursor: crosshair;
}
.crs-visual:hover { border-color: rgba(201,154,62,.55); }
.crs-visual::before {
  content: ""; position: absolute; inset: 0; opacity: 0.28; pointer-events: none;
  background-image:
    linear-gradient(rgba(217,208,184,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,208,184,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: visualGridDrift 20s linear infinite;
}
@keyframes visualGridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}
.crs-visual svg { position: relative; z-index: 1; width: 100%; height: 220px; display: block; }
.crs-visual .v-line { fill: none; stroke: var(--brass); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.crs-visual .v-soft { fill: none; stroke: rgba(217,208,184,.18); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.crs-visual .v-wheel { fill: none; stroke: #586473; stroke-width: 8; }
.crs-visual .v-accent { fill: var(--safety); }
.crs-visual .v-accent-brass { fill: var(--brass); }
.crs-visual .v-accent-circuit { fill: var(--circuit); }

/* Animated SVG elements per type */
@keyframes wheelSpin { to { transform-origin: center; } }
@keyframes pulseAccent { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes floatUpDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes engineShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(1px); } 75% { transform: translateX(-1px); } }

/* Scan line */
.crs-scan {
  position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(47,143,130,.2), transparent);
  animation: crs-scan 3.8s ease-in-out infinite;
}
@keyframes crs-scan { 0%,100% { left: -80px; } 50% { left: calc(100% + 10px); } }

/* Hotspots */
.crs-hotspot {
  position: absolute; z-index: 3; width: 20px; height: 20px;
  border: 1.5px solid var(--brass); border-radius: 50%;
  background: rgba(201,154,62,.25); box-shadow: 0 0 0 0 rgba(201,154,62,.55);
  cursor: pointer; animation: crs-pulse 2.2s ease-out infinite;
  transition: transform .2s, background .2s;
}
.crs-hotspot:hover {
  transform: scale(1.4);
  background: rgba(201,154,62,.5);
  border-color: var(--safety);
}
.crs-hotspot:active { transform: scale(1.1); }
@keyframes crs-pulse {
  70% { box-shadow: 0 0 0 14px rgba(201,154,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,154,62,0); }
}

/* Diagnostic bar */
.crs-diag {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 4;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  background: rgba(18,24,31,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217,208,184,.2);
  border-radius: 12px; padding: 12px 14px;
  transition: border-color .3s;
}
.crs-diag b {
  color: var(--brass); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.2px;
  animation: diagLabelGlow 2s ease-in-out infinite;
}
@keyframes diagLabelGlow {
  0%,100% { text-shadow: 0 0 0 rgba(201,154,62,0); }
  50% { text-shadow: 0 0 12px rgba(201,154,62,.5); }
}
.crs-diag span { color: #b8bfc9; font-size: 0.77rem; text-align: right; transition: color .2s; }

/* ═══════════════════════════════════════
   PRICE BOX · VIP
   ═══════════════════════════════════════ */
.crs-pricebox {
  margin-top: 20px;
  border: 1px solid rgba(201,154,62,.5);
  background: linear-gradient(135deg, rgba(201,154,62,.1), rgba(232,98,44,.05));
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 20px;
  transition: border-color .3s, box-shadow .3s;
}
.crs-pricebox:hover {
  border-color: rgba(232,98,44,.6);
  box-shadow: 0 0 32px rgba(232,98,44,.1);
}
.crs-pricebox .price {
  font-family: 'Space Grotesk'; font-size: 2.3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--safety), var(--brass));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crs-pricebox small { color: var(--steel); font-size: 0.92rem; font-weight: 500; }
.crs-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.crs-note { font-family: 'JetBrains Mono'; font-size: 0.72rem; color: var(--steel); margin-top: 8px; }

/* ═══════════════════════════════════════
   SECTIONS · VIP
   ═══════════════════════════════════════ */
.crs-section {
  padding: 80px 0;
  border-top: 1px solid rgba(217,208,184,.08);
  position: relative;
}
.crs-section::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,154,62,.25) 30%, rgba(201,154,62,.25) 70%, transparent 100%);
  opacity: 0; transition: opacity 1s;
}
.crs-section.seen::before { opacity: 1; }

.crs-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.crs-head { max-width: 740px; margin-bottom: 40px; }
.crs-tag {
  display: block; font-family: 'JetBrains Mono'; font-size: 0.76rem;
  color: var(--brass); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.crs-head h2 {
  font-family: 'Space Grotesk'; font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.08; letter-spacing: -1.2px; margin: 0 0 14px;
  background: linear-gradient(135deg, var(--paper), #c5bfaf);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crs-head p { color: #b8bfc9; font-size: 1.05rem; margin: 0; }

/* ═══════════════════════════════════════
   OUTCOMES GRID · VIP
   ═══════════════════════════════════════ */
.crs-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.crs-card {
  background: rgba(26,31,39,.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(217,208,184,.1);
  border-radius: 16px; padding: 26px;
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              border-color .35s,
              box-shadow .35s,
              background .35s;
  position: relative; overflow: hidden;
}
.crs-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--safety));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.crs-card:hover::before { transform: scaleX(1); }
.crs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,154,62,.3);
  box-shadow: 0 20px 48px -16px rgba(0,0,0,.4),
              0 0 32px rgba(201,154,62,.06);
  background: rgba(26,31,39,.9);
}
.crs-card .num {
  font-family: 'JetBrains Mono'; font-size: 0.82rem;
  background: linear-gradient(135deg, var(--brass), var(--safety));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px; font-weight: 700;
}
.crs-card h3 { font-family: 'Space Grotesk'; font-size: 1.2rem; margin: 0 0 10px; }
.crs-card p { color: #b8bfc9; font-size: 0.95rem; margin: 0; line-height: 1.5; }

/* ═══════════════════════════════════════
   BAND / TEMARIO · VIP
   ═══════════════════════════════════════ */
.crs-band {
  background: linear-gradient(160deg,
    rgba(26,31,39,.92), rgba(30,35,44,.95), rgba(26,31,39,.92));
  border-top: 1px solid rgba(217,208,184,.1);
  border-bottom: 1px solid rgba(217,208,184,.1);
  position: relative;
}
.crs-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(201,154,62,.04), transparent 70%),
    radial-gradient(400px 240px at 80% 30%, rgba(47,143,130,.03), transparent 60%);
  pointer-events: none;
}
.crs-summary { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; position: relative; z-index: 1; }

/* Mini list */
.crs-mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.crs-mini-list div {
  border: 1px solid rgba(217,208,184,.12);
  border-radius: 12px; padding: 14px 16px;
  background: rgba(18,24,31,.55);
  backdrop-filter: blur(6px);
  color: #b8bfc9; font-size: 0.93rem;
  transition: border-color .3s, transform .2s, background .3s;
}
.crs-mini-list div:hover {
  border-color: rgba(201,154,62,.3);
  transform: translateX(4px);
  background: rgba(18,24,31,.72);
}
.crs-mini-list b {
  color: var(--brass); font-family: 'JetBrains Mono'; font-size: 0.74rem; margin-right: 6px;
}

/* ═══════════════════════════════════════
   ACCORDION · VIP
   ═══════════════════════════════════════ */
.crs-accordion { display: flex; flex-direction: column; gap: 12px; }
.crs-acc {
  border: 1px solid rgba(217,208,184,.12);
  border-radius: 14px; overflow: hidden;
  background: rgba(26,31,39,.7);
  backdrop-filter: blur(12px);
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.crs-acc:hover {
  border-color: rgba(201,154,62,.25);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.crs-acc.open {
  border-color: rgba(201,154,62,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 24px rgba(201,154,62,.06);
  transform: scale(1.005);
}
.crs-acc button {
  width: 100%; background: transparent; border: 0; color: var(--paper);
  padding: 20px 22px; text-align: left; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.02rem;
  transition: background .25s, color .25s;
}
.crs-acc button:hover { background: rgba(201,154,62,.06); }
.crs-acc.open button { background: rgba(201,154,62,.08); }
.crs-acc button span {
  color: var(--brass); font-family: 'JetBrains Mono'; font-size: 1.4rem;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color .3s;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(201,154,62,.08);
}
.crs-acc.open button span {
  transform: rotate(135deg);
  background: rgba(232,98,44,.15);
  color: var(--safety);
}
.crs-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
  color: #b8bfc9;
}
.crs-acc-body .inner { padding: 4px 22px 22px; }
.crs-acc-body ul {
  list-style: none; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px 18px; padding: 0;
}
.crs-acc-body li {
  font-size: 0.94rem; position: relative; padding-left: 18px;
  transition: transform .2s, color .2s;
}
.crs-acc-body li:hover { transform: translateX(3px); color: var(--paper); }
.crs-acc-body li::before {
  content: "›"; position: absolute; left: 0; color: var(--brass); font-weight: 800;
  transition: color .3s;
}
.crs-acc-body li:hover::before { color: var(--safety); }

/* ═══════════════════════════════════════
   CTA FINAL · VIP
   ═══════════════════════════════════════ */
.crs-cta {
  text-align: center;
  border: 1px solid rgba(201,154,62,.45);
  border-radius: 20px; padding: 52px 32px;
  background:
    radial-gradient(600px 300px at 50% 0, rgba(201,154,62,.16), transparent 70%),
    radial-gradient(400px 200px at 50% 100%, rgba(232,98,44,.08), transparent 60%),
    linear-gradient(160deg, rgba(26,31,39,.88), rgba(30,35,44,.92));
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
  transition: border-color .5s, box-shadow .5s;
}
.crs-cta:hover {
  border-color: rgba(232,98,44,.5);
  box-shadow: 0 0 60px rgba(201,154,62,.08);
}
.crs-cta::after {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background:
    conic-gradient(
      from 0deg, transparent, rgba(201,154,62,.06), transparent, rgba(47,143,130,.04), transparent
    );
  animation: ctaRotate 20s linear infinite; pointer-events: none;
}
@keyframes ctaRotate { to { transform: rotate(360deg); } }
.crs-cta h2 {
  font-family: 'Space Grotesk'; font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.06; margin: 0 0 16px;
  background: linear-gradient(135deg, var(--paper), var(--brass));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
}
.crs-cta p { color: #b8bfc9; max-width: 660px; margin: 0 auto 28px; position: relative; z-index: 1; }
.crs-cta .crs-pay { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   SHARED HOTSPOT POSITIONS
   ═══════════════════════════════════════ */
.crs-hotspot.h1-spot1 { left: 46%; top: 54%; }
.crs-hotspot.h1-spot2 { left: 62%; top: 34%; }
.crs-hotspot.h1-spot3 { left: 20%; top: 65%; }
.crs-hotspot.h1-spot4 { left: 72%; top: 55%; }

/* ═══════════════════════════════════════
   ANIMATED PARTICLES · BACKGROUND
   ═══════════════════════════════════════ */
.crs-particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.crs-particle {
  position: absolute; border-radius: 50%;
  background: var(--brass); opacity: 0;
  animation: particleFloat var(--dur) ease-in-out var(--delay) infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  20% { opacity: .4; }
  80% { opacity: .15; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1); }
}

/* ═══════════════════════════════════════
   FULL-WIDTH VS NARROW SECTION SEPARATOR
   ═══════════════════════════════════════ */
.crs-sep {
  height: 1px; background: linear-gradient(90deg,
    transparent, rgba(217,208,184,.12) 30%, rgba(217,208,184,.12) 70%, transparent);
  margin: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .crs-hero-grid, .crs-summary { grid-template-columns: 1fr; }
  .crs-outcomes { grid-template-columns: 1fr 1fr; }
  .crs-hero { padding: 70px 0 52px; }
}
@media (max-width: 640px) {
  .crs-wrap { padding: 0 16px; }
  .crs-hero { padding: 54px 0 42px; }
  .crs-trust, .crs-outcomes, .crs-mini-list, .crs-pay, .crs-acc-body ul { grid-template-columns: 1fr; }
  .crs-actions .crs-btn, .crs-pay .crs-btn { width: 100%; }
  .crs-section { padding: 56px 0; }
  .crs-cta { padding: 36px 20px; }
  .crs-hero-grid { gap: 32px; }
  .crs-panel { border-radius: 14px; }
  .crs-card { padding: 20px; }
}
