/* ── EPR PAGE EXTENSIONS ──────────────────────────────────────────────────── */
/* Builds on top of styles.css — adds new components only.                     */
/* Design tokens, nav, footer, .btn, and .fade-up live in styles.css.          */

/* ── BUTTON EXTENSIONS ──────────────────────────────────────────────────── */

.btn--sm {
  height: 36px;
  padding: 0 1.25rem;
  font-size: 0.78rem;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(13,19,35,0.18);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(13,19,35,0.04);
  border-color: rgba(13,19,35,0.30);
  box-shadow: none;
  transform: translateY(-1px);
}
.btn--ghost::after { display: none; }

/* ── SECTION LAYOUT PRIMITIVES ──────────────────────────────────────────── */

.section {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
  flex-shrink: 0;
}

.section-h2 {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.section-sub {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── EPR HERO ────────────────────────────────────────────────────────────── */

.epr-hero {
  padding: calc(var(--nav-h) + clamp(3rem, 7vh, 5.5rem)) clamp(2rem, 6vw, 5rem) clamp(3.5rem, 7vh, 5.5rem);
  background: var(--navy);
  text-align: left;
}

.epr-hero-inner {
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(224,82,18,0.15);
  border: 1px solid rgba(224,82,18,0.35);
  padding: 0.42rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.countdown-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.epr-h1 {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.epr-lead {
  font-family: var(--fb);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}

.epr-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── DIAGNOSTIC SECTION ──────────────────────────────────────────────────── */

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.diagnostic-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  position: relative;
}

.diagnostic-num {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--terracotta);
  opacity: 1;
  margin-bottom: 0.5rem;
  margin-left: -0.05em;
}

.diagnostic-q {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--navy);
}

.diagnostic-body {
  font-family: var(--fb);
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--muted);
}

.diagnostic-callout {
  background: rgba(224,82,18,0.07);
  border: 1px solid rgba(224,82,18,0.18);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-family: var(--fb);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--graphite);
}

/* ── OBLIGATIONS TABLE ───────────────────────────────────────────────────── */

.obligations-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.obligation-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.obligation-row:last-child { border-bottom: none; }

.obligation-main { flex: 1; }

.obligation-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.obligation-desc {
  font-family: var(--fb);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.obligation-status {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.status--urgent {
  background: var(--terracotta);
  color: var(--white);
}

.status--verify {
  background: rgba(31,77,99,0.1);
  color: var(--teal);
}

/* ── ENFORCEMENT SECTION ─────────────────────────────────────────────────── */

.enforcement-section {
  background: var(--navy);
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  border-top: none;
}

.enforcement-card {
  max-width: 820px;
  margin: 0 auto;
}

.enforcement-label {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.enforcement-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
  flex-shrink: 0;
}

.enforcement-h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.enforcement-body {
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin-bottom: 1.75rem;
}

.enforcement-platforms {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.platform-badge {
  font-family: var(--fb);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.42rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ── GUIDE ACCORDION ─────────────────────────────────────────────────────── */

.guide-section { padding-bottom: clamp(3rem, 7vw, 5rem); }

.guide-accordion {
  border-top: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.guide-item {
  border-bottom: 1px solid var(--line);
}

.guide-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--navy);
  transition: opacity 0.15s;
}
.guide-trigger:hover { opacity: 0.75; }

.guide-flag { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }

.guide-market {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  flex: 1;
}

.guide-pro-name {
  font-family: var(--fb);
  font-size: 0.8rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.guide-chevron {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  align-items: center;
}

.guide-trigger[aria-expanded="true"] .guide-chevron {
  transform: rotate(180deg);
}

.guide-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), padding-bottom 0.35s;
  padding-bottom: 0;
}

.guide-panel.is-open {
  max-height: 700px;
  padding-bottom: 1.5rem;
}

.guide-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-detail-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  line-height: 1.55;
}
.guide-detail-row:last-child { border-bottom: none; }

.guide-detail-label {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 110px;
  padding-top: 0.1rem;
}

.guide-detail-val {
  font-family: var(--fb);
  color: var(--graphite);
  flex: 1;
}

.guide-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s;
}
.guide-link:hover { opacity: 0.7; text-decoration: underline; }

.guide-footnote {
  font-family: var(--fb);
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── ASSESSMENT ──────────────────────────────────────────────────────────── */

.assessment-section { background: var(--navy); }

/* Section label + headings on dark background */
.assessment-section .section-h2 {
  color: var(--white);
}
.assessment-section .section-sub {
  color: rgba(255,255,255,0.5);
}

.assessment-container {
  max-width: 580px;
  margin: 0 auto;
  background: var(--sand);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
}

/* Progress on sand card */
.assessment-section .progress-label {
  color: var(--muted);
}
.assessment-section .progress-track {
  background: var(--line);
}

/* Option buttons: white base on sand card */
.assessment-section .option-btn {
  background: var(--white);
  border-color: var(--line);
}
.assessment-section .option-btn:hover {
  background: var(--white);
  border-color: rgba(13,19,35,0.35);
}
.assessment-section .option-btn.selected {
  background: rgba(224,82,18,0.06);
  border-color: var(--terracotta);
}

.assessment-progress {
  margin-bottom: 2rem;
}

.progress-track {
  height: 3px;
  background: var(--line);
  border-radius: 100px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}

.progress-label {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Step visibility */
.assessment-step {
  display: none;
}
.assessment-step.active {
  display: block;
  animation: stepIn 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-question {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-sub {
  font-family: var(--fb);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.step-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.option-btn {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1.1rem;
  background: var(--sand);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  position: relative;
}
.option-btn:hover {
  border-color: rgba(13,19,35,0.3);
  background: var(--white);
}
.option-btn.selected {
  border-color: var(--terracotta);
  background: rgba(224,82,18,0.06);
  color: var(--navy);
}
.option-btn--exclusive {
  border-style: dashed;
  color: var(--muted);
}
.option-btn--exclusive.selected {
  border-style: solid;
  color: var(--navy);
}

.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ── ASSESSMENT RESULTS ──────────────────────────────────────────────────── */

.assessment-results {
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.assessment-results.is-visible { display: block; }

.results-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  border-left-width: 4px;
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.results-card--critical {
  border-left-color: var(--terracotta);
  background: rgba(224,82,18,0.04);
}
.results-card--gaps {
  border-left-color: #d97706;
  background: rgba(217,119,6,0.04);
}
.results-card--on-track {
  border-left-color: var(--teal);
  background: rgba(31,77,99,0.05);
}
.results-card--not-in-eu {
  border-left-color: var(--muted);
  background: rgba(138,130,120,0.05);
}

.results-status-badge {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  color: var(--white);
}
.results-card--critical  .results-status-badge { background: var(--terracotta); }
.results-card--gaps      .results-status-badge { background: #c2780a; }
.results-card--on-track  .results-status-badge { background: var(--teal); }
.results-card--not-in-eu .results-status-badge { background: var(--muted); }

.results-headline {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.results-description {
  font-family: var(--fb);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--graphite);
  margin-bottom: 1.25rem;
}

.results-gaps-heading,
.results-actions-heading {
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.results-gaps {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.results-gap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--fb);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--graphite);
}

.results-gap-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-weight: 700;
}

.results-actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.results-action-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--fb);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--graphite);
}

.results-action-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.results-textile-bridge {
  background: rgba(31,77,99,0.07);
  border: 1px solid rgba(31,77,99,0.15);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--fb);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.results-cta-block {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.results-cta-text {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.results-cta-sub {
  font-family: var(--fb);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.65rem;
}

.retake-btn {
  display: block;
  margin: 0.75rem auto 0;
  font-size: 0.82rem;
  height: 40px;
  padding: 0 1.25rem;
}

/* ── TIMELINE / BRIDGE ───────────────────────────────────────────────────── */

.timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  padding-left: 0;
  border-left: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
  margin-top: 0;
  position: static;
}

.timeline-dot { display: none; }

.timeline-year {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  opacity: 0.12;
  white-space: normal;
  writing-mode: horizontal-tb;
}

.timeline-item--now .timeline-year {
  color: var(--terracotta);
  opacity: 1;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.timeline-content { flex: 1; }

.timeline-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.timeline-item--now .timeline-title { color: var(--terracotta); }

.timeline-body {
  font-family: var(--fb);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 0.6rem;
}

.timeline-tag {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--teal);
  background: rgba(31,77,99,0.07);
  border: 1px solid rgba(31,77,99,0.12);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.4;
}

.bridge-callout {
  background: var(--terracotta);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
}

.bridge-callout p {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
}

.bridge-callout .btn {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: none;
}
.bridge-callout .btn:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.bridge-callout .btn::after {
  background: linear-gradient(90deg, transparent, rgba(224,82,18,0.1), transparent);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  .epr-hero { text-align: left; }
  .epr-hero-ctas { justify-content: flex-start; }
  .countdown-badge { font-size: 0.72rem; }

  .diagnostic-grid { grid-template-columns: 1fr; }

  .obligation-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .obligation-status { align-self: flex-start; }

  .guide-detail-row { flex-direction: column; gap: 0.25rem; }
  .guide-detail-label { flex: none; }
  .guide-pro-name { display: none; }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .timeline-year { font-size: 1.5rem; }
  .timeline-item--now .timeline-year { font-size: 1.1rem; }
  .assessment-container { padding: 1.5rem 1.25rem 1.25rem; }

  .step-nav { gap: 0.5rem; }
  .step-nav .btn, .step-nav .btn--ghost { flex: 1; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .epr-h1 { font-size: 2rem; }
  .section-h2 { font-size: 1.6rem; }
  .enforcement-h2 { font-size: 1.6rem; }
  .diagnostic-num { font-size: 4rem; }
  .bridge-callout { padding: 1.75rem; }
}

/* ── RESULTS DOWNLOAD FORM ───────────────────────────────────────────────── */

.results-download-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.results-download-divider {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.results-download-heading {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.download-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.download-input {
  font-family: var(--fb);
  font-size: 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--graphite);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.download-input::placeholder { color: var(--muted); }
.download-input:focus { border-color: var(--navy); }

.results-download-confirmation {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.75rem 0;
}

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

/* ── PRINT ───────────────────────────────────────────────────────────────── */

@media print {
  nav,
  .epr-hero,
  .diagnostic-section,
  .obligations-section,
  .enforcement-section,
  .guide-section,
  .bridge-section,
  footer,
  .assessment-section .assessment-progress,
  #assessmentSteps,
  .retake-btn,
  .results-download-block,
  .cookie-banner,
  .ticker-wrapper {
    display: none !important;
  }

  body, .assessment-section {
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .assessment-section {
    padding: 2rem !important;
  }

  .results-card {
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 0 !important;
  }

  .results-card::before {
    content: 'fabriq — EPR Readiness Assessment';
    display: block;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0D1323;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E05212;
  }
}

