:root {
  --bg: #0c2230;
  --bg-2: #102c3d;
  --bg-3: #16384d;
  --card: #1a3f56;
  --text: #e8eef2;
  --text-soft: #b8c5cf;
  --muted: #8aa0ae;
  --accent: #f29125;
  --accent-hover: #d97a10;
  --accent-soft: rgba(242, 145, 37, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --success: #3bb273;
  --danger: #e05d5d;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.35);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 34, 48, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav a:hover { color: var(--accent); background: var(--accent-soft); }
.nav .btn { margin-left: 8px; }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Buttons — higher specificity to beat .content a */
a.btn, button.btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  border-radius: 6px;
  border-bottom: none !important;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(242, 145, 37, 0.3);
}
a.btn:hover, button.btn:hover, .btn:hover {
  background: var(--accent-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(242, 145, 37, 0.4);
}
.btn-lg { padding: 16px 38px; font-size: 17px; }
a.btn-outline, button.btn-outline, .btn-outline {
  background: transparent;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  box-shadow: none;
}
a.btn-outline:hover, button.btn-outline:hover, .btn-outline:hover {
  background: var(--accent);
  color: #ffffff !important;
}

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0c2230 0%, #16384d 60%, #1e4a66 100%);
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 145, 37, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 820px;
}
.hero .lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Verdict box */
.verdict {
  background: linear-gradient(135deg, var(--card), var(--bg-3));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
.verdict h3 { font-size: 22px; margin-bottom: 8px; }
.verdict .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.verdict .stars { color: var(--accent); font-size: 22px; letter-spacing: 2px; }
.verdict .pros h4, .verdict .cons h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.verdict .pros h4 { color: var(--success); }
.verdict .cons h4 { color: var(--danger); }
.verdict ul { list-style: none; }
.verdict ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-soft);
}
.verdict .pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.verdict .cons li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.verdict-cta { margin-top: 24px; text-align: center; }

/* Typography */
.content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 48px 0 18px;
  line-height: 1.25;
}
.content h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  margin: 32px 0 14px;
}
.content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}
.content p { margin-bottom: 18px; color: var(--text-soft); }
.content p strong, .content li strong { color: var(--text); font-weight: 700; }
.content ul, .content ol { margin: 0 0 20px 22px; color: var(--text-soft); }
.content ul li, .content ol li { margin-bottom: 8px; }
.content a { color: var(--accent); text-decoration: none; border-bottom: 1px dotted var(--accent); }
.content a:hover { border-bottom-style: solid; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 18px 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; }

/* Tables */
.tbl-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
th {
  background: var(--bg-3);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}
td { color: var(--text-soft); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* Callout / promo code box */
.callout {
  background: linear-gradient(135deg, var(--accent-soft), rgba(242, 145, 37, 0.04));
  border: 1px solid rgba(242, 145, 37, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 26px 0;
}
.callout h4 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
}
.callout p { margin-bottom: 0; color: var(--text); }

.promo-box {
  background: linear-gradient(135deg, #1e4a66, #16384d);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin: 28px 0;
  text-align: center;
}
.promo-box .label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 10px 0 14px;
}
.promo-code .code {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.copy-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--accent-hover); }
.copy-btn.copied { background: var(--success); }
.promo-box .bonus-desc {
  font-size: 15px;
  color: var(--text-soft);
  margin-top: 6px;
}

/* Figures */
figure {
  margin: 28px 0;
  text-align: center;
}
figure img {
  width: 90%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}
figure.mobile img { width: 50%; max-width: 300px; }
figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* FAQ */
.faq { margin: 24px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--bg-2);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item .faq-body { padding: 18px 22px; color: var(--text-soft); }
.faq-item .faq-body p { margin-bottom: 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* CTA sections */
.cta-section {
  background: linear-gradient(135deg, #16384d, #1e4a66);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid var(--border-strong);
}
.cta-section h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--text-soft);
  margin-bottom: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 {
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 10px;
}
.card p { font-size: 15px; color: var(--text-soft); margin-bottom: 14px; }
.card a { font-weight: 600; }

/* Steps */
.steps { counter-reset: step; margin: 28px 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  background: var(--accent);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.step-content h4 { margin: 0 0 6px; font-size: 17px; }
.step-content p { margin: 0; font-size: 15px; color: var(--text-soft); }

/* Feature grid on homepage */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.feature {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--accent);
}
.feature h4 { font-size: 16px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--text-soft); }

/* Disclaimer */
.disclaimer {
  background: var(--bg-2);
  border-left: 3px solid var(--muted);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: #081923;
  border-top: 1px solid var(--border);
  padding: 50px 20px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
}
.footer ul { list-style: none; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
}
.footer ul a:hover { color: var(--accent); }
.footer-brand p {
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 10px;
}
.badges { display: flex; gap: 10px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
.badge-18 {
  background: var(--danger);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom p { margin-bottom: 6px; }

/* Responsive */
@media (max-width: 860px) {
  .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg-2); flex-direction: column; padding: 80px 20px 20px; align-items: stretch; transition: right 0.3s; border-left: 1px solid var(--border); }
  .nav.open { right: 0; }
  .nav a { padding: 14px 16px; width: 100%; }
  .burger { display: block; z-index: 101; }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .verdict-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 20px 48px; }
  .section { padding: 40px 0; }
  figure img, figure.mobile img { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 26px; font-size: 15px; }
  .verdict { padding: 22px; }
  .cta-section { padding: 30px 20px; }
  .step { padding: 16px; gap: 14px; }
  .step::before { width: 32px; height: 32px; font-size: 16px; }
}

/* =========================================================
   INTERACTIVE COMPONENTS
   ========================================================= */

/* Bonus Calculator */
.calculator {
  background: linear-gradient(135deg, var(--card), var(--bg-3));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-lg);
}
.calculator h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
}
.calculator-intro {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 20px;
}
.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.calc-field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.calc-field input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.calc-field input[type="number"]:focus {
  border-color: var(--accent);
}
.calc-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-range input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(242, 145, 37, 0.4);
}
.calc-range input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(242, 145, 37, 0.4);
}
.calc-range .range-value {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}
.calc-toggle {
  display: flex;
  gap: 0;
  background: var(--bg);
  border-radius: 6px;
  padding: 4px;
  border: 1px solid var(--border-strong);
}
.calc-toggle button {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  color: var(--text-soft);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}
.calc-toggle button.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(242, 145, 37, 0.3);
}
.calc-result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.calc-result-item {
  text-align: center;
}
.calc-result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.calc-result-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.calc-result-value.accent-text {
  color: var(--text);
}
.calc-result-value small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.calc-notice {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-soft);
}
.calc-notice strong { color: var(--accent); }

/* Quiz / Pack Picker */
.picker {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.picker h3 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 8px;
}
.picker-intro {
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 15px;
}
.picker-question {
  display: none;
}
.picker-question.active {
  display: block;
}
.picker-question .q-text {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 14px;
}
.picker-question .q-progress {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.picker-options {
  display: grid;
  gap: 10px;
}
.picker-options button {
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.picker-options button:hover {
  border-color: var(--accent);
  background: var(--card);
  transform: translateX(4px);
}
.picker-result {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.picker-result.active { display: block; }
.picker-result-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 12px;
}
.picker-result h4 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--text);
}
.picker-result p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 16px;
}
.picker-restart {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 10px;
  transition: all 0.2s;
}
.picker-restart:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(242, 145, 37, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 90;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Live ticker bar (for homepage) */
.ticker {
  background: linear-gradient(90deg, var(--bg-3), var(--card), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-label .dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ticker-content {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-ticker 40s linear infinite;
  padding-right: 40px;
}
.ticker-item {
  font-size: 14px;
  color: var(--text-soft);
  white-space: nowrap;
}
.ticker-item strong {
  color: var(--accent);
  font-weight: 700;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* Tab component (for comparison sections) */
.tabs {
  margin: 28px 0;
}
.tab-buttons {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
  overflow-x: auto;
}
.tab-buttons button {
  background: transparent;
  border: none;
  color: var(--text-soft);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab-buttons button:hover { color: var(--text); }
.tab-buttons button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

@media (max-width: 600px) {
  .calc-controls { grid-template-columns: 1fr; }
}
