/* ============================================
   VITALMAX — PROTOCOLO 40+
   Design System: Dark Masculine / Medical Authority
   ============================================ */

:root {
  --primary: #f5a623;
  --primary-dark: #d4891a;
  --primary-glow: rgba(245, 166, 35, 0.25);
  --bg-dark: #0a0c10;
  --bg-card: #12151c;
  --bg-card2: #1a1e28;
  --border: rgba(255,255,255,0.08);
  --text-primary: #f0f2f7;
  --text-secondary: #8b92a5;
  --text-muted: #555c6e;
  --success: #38a169;
  --danger: #e53e3e;
  --warning: #d69e2e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-secondary); line-height: 1.7; }
strong { color: var(--text-primary); font-weight: 600; }

/* ============ LAYOUT ============ */
.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }

/* ============ HEADER / NAV ============ */
.vm-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.vm-logo {
  font-size: 1.3rem; font-weight: 800;
  color: var(--text-primary); text-decoration: none;
  letter-spacing: -0.5px;
}
.vm-logo span { color: var(--primary); }
.lang-switcher {
  display: flex; gap: 6px;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* ============ BADGE ============ */
.badge {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  width: 100%;
  max-width: 480px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { border-color: rgba(255,255,255,0.15); }

/* ============ LANDING PAGE ============ */
#page-landing {
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: 70px;
}
.landing-hero {
  flex: 1;
  display: flex; align-items: center;
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
}
.landing-hero .container { text-align: center; }
.landing-hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 60%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-secondary);
}
.landing-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.landing-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.landing-disclaimer::before { content: "🔒"; font-size: 0.9rem; }

.social-proof {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.social-proof-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}
.social-proof-item::before {
  content: "★★★★★";
  display: block;
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 8px;
  font-style: normal;
}

/* ============ QUIZ PAGE ============ */
#page-quiz {
  min-height: 100vh;
  padding-top: 70px;
  display: none;
}
.quiz-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.quiz-progress-bar {
  height: 4px;
  background: var(--bg-card2);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-progress-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: right;
}
.quiz-category-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.quiz-question {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.4;
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
  display: flex; align-items: center; gap: 14px;
}
.quiz-option::before {
  content: "";
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.quiz-option:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  background: rgba(245, 166, 35, 0.05);
}
.quiz-option:hover::before { border-color: var(--primary); }
.quiz-option.selected {
  border-color: var(--primary);
  background: rgba(245, 166, 35, 0.1);
  color: var(--text-primary);
}
.quiz-option.selected::before {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}
.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
}

/* ============ LOADING PAGE ============ */
#page-loading {
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
  padding-top: 70px;
}
.loading-spinner {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--bg-card2);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  margin: 0 auto 32px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  min-height: 1.6em;
  transition: opacity 0.3s ease;
}
.loading-bar-wrap {
  width: 280px;
  height: 6px;
  background: var(--bg-card2);
  border-radius: 3px;
  margin: 24px auto 0;
  overflow: hidden;
}
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s ease;
}

/* ============ RESULT PAGE ============ */
#page-result {
  min-height: 100vh;
  padding-top: 70px;
  display: none;
}
.result-hero {
  padding: 50px 0 40px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
}
.score-ring-wrap {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 24px;
}
.score-ring {
  width: 180px; height: 180px;
  transform: rotate(-90deg);
}
.score-ring-bg { fill: none; stroke: var(--bg-card2); stroke-width: 10; }
.score-ring-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.score-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}
.score-suffix { font-size: 0.9rem; color: var(--text-muted); }
.score-level {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.result-profile-card {
  max-width: 580px;
  margin: 0 auto 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: left;
}
.result-profile-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.result-profile-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.result-categories {
  max-width: 580px;
  margin: 0 auto 40px;
}
.result-categories h3 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.category-bars { display: flex; flex-direction: column; gap: 12px; }
.category-bar-item { display: flex; align-items: center; gap: 12px; }
.category-bar-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  width: 100px;
  min-width: 100px;
  text-transform: capitalize;
}
.category-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-card2);
  border-radius: 4px;
  overflow: hidden;
}
.category-bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1s ease 0.3s;
}
.category-bar-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 36px;
  text-align: right;
}

.result-cta-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border-top: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
}
.result-cta-section h2 { margin-bottom: 12px; }
.result-cta-section p { max-width: 500px; margin: 0 auto 28px; }

/* ============ EMAIL CAPTURE ============ */
.email-capture {
  max-width: 480px;
  margin: 0 auto 16px;
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--primary);
  background: var(--bg-card);
}
.email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
}
.email-input::placeholder { color: var(--text-muted); }
.email-submit {
  background: var(--primary);
  border: none;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 16px 24px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.email-submit:hover { background: var(--primary-dark); }

/* ============ CHECKOUT PAGE ============ */
#page-checkout {
  min-height: 100vh;
  padding-top: 70px;
  display: none;
}
.checkout-hero {
  padding: 50px 0 40px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
}
.checkout-hero h1 { margin-bottom: 10px; }
.checkout-hero p { font-size: 1rem; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0;
}
@media (max-width: 680px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.checkout-includes-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.checkout-includes-card h3 { margin-bottom: 20px; font-size: 1rem; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.includes-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  min-width: 16px;
  margin-top: 1px;
}

.checkout-price-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.price-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.price-current { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }

.timer-wrap {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 20px;
}
.timer-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.timer-digits {
  display: flex; justify-content: center; gap: 8px;
  font-size: 1.6rem; font-weight: 800; color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.timer-sep { color: var(--text-muted); }

.guarantee-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(56, 161, 105, 0.1);
  border: 1px solid rgba(56, 161, 105, 0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  text-align: left;
}
.guarantee-badge .icon { font-size: 1.5rem; min-width: 28px; }
.guarantee-badge p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

.security-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.security-note::before { content: "🔒"; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 50px 0; border-top: 1px solid var(--border); }
.testimonials-section h2 { text-align: center; margin-bottom: 32px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.testimonial-stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 10px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); font-style: italic; margin-bottom: 12px; }
.testimonial-name { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq-section { padding: 50px 0; border-top: 1px solid var(--border); }
.faq-section h2 { text-align: center; margin-bottom: 32px; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question::after { content: "+"; font-size: 1.2rem; color: var(--primary); transition: var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 18px; font-size: 0.9rem; }

/* ============ FOOTER ============ */
.vm-footer {
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
}
.vm-footer p { font-size: 0.8rem; color: var(--text-muted); }
.vm-footer a { color: var(--text-muted); text-decoration: underline; }
.vm-footer a:hover { color: var(--text-secondary); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(245, 166, 35, 0.7); }
}
.btn-pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .vm-header { padding: 12px 16px; }
  .quiz-container { padding: 24px 16px 80px; }
  .score-ring-wrap { width: 150px; height: 150px; }
  .score-ring { width: 150px; height: 150px; }
  .score-number { font-size: 2.2rem; }
  .email-capture { flex-direction: column; border-radius: var(--radius); }
  .email-submit { border-radius: 0 0 var(--radius) var(--radius); padding: 14px; }
  .checkout-price-card { padding: 20px; }
  .price-current { font-size: 2.5rem; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ============ RESULT — BADGE ============ */
.result-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.result-hero h2 {
  margin-bottom: 28px;
}
.result-categories h3 {
  margin-bottom: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============ RESULT — NARRATIVE SECTIONS ============ */
.result-narrative-section {
  padding: 50px 0;
  border-top: 1px solid var(--border);
}
.result-cause-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 21, 28, 0.6) 100%);
}
.result-solution-section {
  padding: 50px 0 60px;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
}

.narrative-block {
  max-width: 640px;
  margin: 0 auto 36px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.narrative-block:last-child { margin-bottom: 0; }

.narrative-block-alert {
  border-color: rgba(229, 62, 62, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(229, 62, 62, 0.04) 100%);
}

.narrative-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.narrative-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.narrative-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.narrative-text strong { color: var(--primary); }

.solution-header {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 28px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.06) 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-lg);
}

/* ============ TIMELINE ============ */
.timeline-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.timeline-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(245, 166, 35, 0.2) 100%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  gap: 0 16px;
  align-items: flex-start;
  padding: 0 0 28px 0;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-week {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 2px;
  text-align: right;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content {
  padding-bottom: 4px;
}
.timeline-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.timeline-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ RESPONSIVE — NARRATIVE ============ */
@media (max-width: 480px) {
  .narrative-block { padding: 20px; }
  .solution-header { padding: 20px; }
  .timeline::before { left: 64px; }
  .timeline-item { grid-template-columns: 64px 20px 1fr; gap: 0 12px; }
  .timeline-week { font-size: 0.65rem; }
}
