/* =========================
   1) Design Tokens
========================== */
:root {
  --centaur-red: #c12422;
  --centaur-red-bright: #f1212a;
  --centaur-red-dark: #9d1c1a;
  --centaur-charcoal: #212121;
  --centaur-footer-bg: #201d1e;
  --centaur-nav-text: #222222;
  --centaur-ink: #101418;
  --centaur-steel: #4f5b66;
  --centaur-border: #d7dde2;
  --centaur-surface: #ffffff;
  --centaur-surface-alt: #f4f6f8;
  --centaur-success: #0f8a5f;
  --centaur-shadow: 0 10px 30px rgba(16, 20, 24, 0.1);
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 220ms ease;
  --max-width: 1200px;
  --focus: 0 0 0 3px rgba(193, 36, 34, 0.28);
}

/* =========================
   2) Base Styles
========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--centaur-ink);
  background: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =========================
   3) Centaur Header + Nav
   Matches live sticky/inner-page header (Contact template)
========================== */
.centaur-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: #fff;
}

.centaur-header__lang {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.centaur-header__lang-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0.35rem 20px;
}

.centaur-header__bar {
  position: relative;
}

.centaur-header__inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 20px;
  width: 100%;
}

.centaur-logo {
  display: block;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.centaur-logo img {
  width: 253px;
  height: auto;
}

.centaur-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #000;
  padding: 0.35rem;
  margin-left: auto;
}

.centaur-nav-toggle svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}

.centaur-nav {
  margin-left: auto;
}

.centaur-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.centaur-nav > ul > li {
  position: relative;
}

.centaur-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 13px 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #222;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.centaur-nav .nav-link:hover,
.centaur-nav .nav-link:focus-visible,
.centaur-nav .nav-link.is-active {
  color: #c12422;
}

.centaur-nav .sub-arrow {
  width: 0.55rem;
  height: auto;
  fill: currentColor;
  margin-left: 0.15rem;
}

.centaur-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.centaur-nav li.has-sub:hover > .sub-menu,
.centaur-nav li.has-sub:focus-within > .sub-menu,
.centaur-nav li.has-sub.sub-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.centaur-nav .sub-menu a {
  display: block;
  padding: 13px 16px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.2s ease, color 0.2s ease;
}

.centaur-nav .sub-menu li:last-child a {
  border-bottom: 0;
}

.centaur-nav .sub-menu a:hover,
.centaur-nav .sub-menu a:focus-visible {
  background: #f1212a;
  color: #fff;
}


/* Basket / cart control */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  margin-left: 0.35rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem 0.4rem;
  border: 1px solid transparent;
  background: transparent;
  color: #222;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  color: #c12422;
  border-color: rgba(193, 36, 34, 0.35);
  outline: none;
}

.lang-switch__btn.is-active {
  color: #c12422;
  border-color: #c12422;
  background: rgba(193, 36, 34, 0.06);
}

.lang-switch__flag {
  font-size: 0.95rem;
  line-height: 1;
}

.lang-switch__code {
  font-size: 0.68rem;
}

.header-basket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #222;
  border-radius: 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-basket:hover,
.header-basket:focus-visible {
  color: #c12422;
}

.header-basket svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-basket__count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #c12422;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

/* Page title bar — same chrome as Contact / Systems pages */
.page-title-bar {
  background: #f1212a;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-title-bar h1 {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.page-title-bar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 28px;
  height: 28px;
  transition: color 0.2s ease;
}

.page-title-bar__social:hover,
.page-title-bar__social:focus-visible {
  color: #c12422;
}

.page-title-bar__social svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* =========================
   4) Intro
========================== */
.intro {
  padding: 60px 40px 24px;
  text-align: left;
  max-width: none;
}

.intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #212121;
  font-family: Helvetica, Arial, sans-serif;
}

.intro p {
  margin: 0 auto;
  max-width: 760px;
  color: #201d1e;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.duration-pill {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 400;
  background: transparent;
  color: #c12422;
  border: 1px solid #c12422;
}

/* =========================
   5) Selector Shell
========================== */
.selector-shell {
  padding-bottom: 4rem;
}

.selector-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--centaur-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--centaur-shadow);
  overflow: hidden;
  border: 1px solid #e9edf1;
}

.selector-head {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid #e3e8ed;
  background: linear-gradient(180deg, #fff 0%, #f7f9fa 100%);
}

.selector-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.question-count {
  font-weight: 600;
  color: #2f3942;
}

.progress-steps {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.progress-step {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  border: 1px solid #b7c2cc;
  color: #52606c;
  background: #fff;
  transition: all var(--transition);
}

.progress-step.active {
  border-color: var(--centaur-red);
  background: var(--centaur-red);
  color: #fff;
}

.progress-step.done {
  border-color: #2a7f64;
  color: #2a7f64;
  background: rgba(15, 138, 95, 0.1);
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e5eaef;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.progress-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--centaur-red-dark), var(--centaur-red));
  transition: width var(--transition);
}

.answer-summary {
  font-size: 0.88rem;
  color: #4a5662;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  min-height: 45px;
}

.question-panel {
  padding: 1.5rem 1.25rem 1.1rem;
}

.question-title {
  margin: 0 0 1rem;
  font-size: clamp(1.16rem, 2.2vw, 1.44rem);
  color: #1f252a;
  line-height: 1.3;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.option-card {
  position: relative;
  border: 1px solid #cfd7de;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.95rem;
  text-align: left;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.option-card:hover {
  transform: translateY(-1px);
  border-color: #9ca9b4;
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.08);
}

.option-card.selected {
  border-color: var(--centaur-red);
  background: rgba(193, 36, 34, 0.06);
  box-shadow: 0 0 0 2px rgba(193, 36, 34, 0.12);
}

.option-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--centaur-red-dark);
  background: rgba(193, 36, 34, 0.1);
  font-weight: 700;
}

.option-label {
  font-weight: 600;
  color: #1f252a;
  font-size: 0.98rem;
}

.selector-controls {
  padding: 0.5rem 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--centaur-red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--centaur-red-dark);
}

.btn-primary:disabled {
  background: #c3ccd3;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: #fff;
  color: #273039;
  border-color: #b5c0c9;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #8493a0;
  background: #f8fafc;
}

.validation-message {
  min-height: 1.2rem;
  color: var(--centaur-red-dark);
  font-size: 0.9rem;
  padding: 0 1.25rem 1rem;
  font-weight: 500;
}

.question-stage {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--transition), transform var(--transition);
}

.question-stage.exit-left {
  opacity: 0;
  transform: translateX(-14px);
}

.question-stage.enter-right {
  opacity: 0;
  transform: translateX(14px);
}

.question-stage.enter-right.active,
.question-stage.enter-left.active {
  opacity: 1;
  transform: translateX(0);
}

.question-stage.exit-right {
  opacity: 0;
  transform: translateX(14px);
}

.question-stage.enter-left {
  opacity: 0;
  transform: translateX(-14px);
}

/* =========================
   6) Loading + Results
========================== */
.results-wrap {
  margin-top: 1.25rem;
  display: none;
}

.results-wrap.visible {
  display: block;
}

.loading-state {
  margin: 0 auto 1rem;
  max-width: 1200px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--centaur-shadow);
  border: 1px solid #e9edf1;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: #2b3640;
  display: none;
}

.loading-state.visible {
  display: block;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #dae2e9;
  border-top-color: var(--centaur-red);
  margin: 0 auto 0.75rem;
  animation: spin 900ms linear infinite;
}

.results-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e9edf1;
  box-shadow: var(--centaur-shadow);
  overflow: hidden;
}

.results-header {
  padding: 1.6rem 1.25rem 1.2rem;
  border-bottom: 1px solid #e4eaef;
}

.results-header h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: #1f252a;
}

.results-header p {
  margin: 0;
  color: #4a5662;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
}

.recommend-card {
  border: 1px solid #d6dfe6;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.recommend-card.featured {
  border-color: var(--centaur-red);
  box-shadow: 0 0 0 2px rgba(193, 36, 34, 0.1);
}

.recommend-media {
  aspect-ratio: 16 / 9;
  background: #f3f4f5;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.recommend-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-media__fallback {
  color: #fff;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(145deg, #29333d, #3e4a56);
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.recommend-body {
  padding: 0.9rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  width: fit-content;
}

.badge.primary {
  background: rgba(193, 36, 34, 0.12);
  color: var(--centaur-red-dark);
}

.badge.secondary {
  background: rgba(33, 33, 33, 0.1);
  color: #3c454f;
}

.category {
  font-size: 0.78rem;
  color: #5d6974;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-name {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.28;
  color: #1f252a;
}

.description {
  margin: 0;
  color: #47515c;
  font-size: 0.92rem;
}

.benefits {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: #2f3942;
  font-size: 0.88rem;
  display: grid;
  gap: 0.2rem;
}

.card-actions {
  margin-top: auto;
  display: grid;
  gap: 0.45rem;
  padding-top: 0.35rem;
}

.btn-small {
  font-size: 0.88rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  text-align: center;
}

.project-summary-block {
  margin: 0 1.2rem 1.2rem;
  border: 1px solid #e8e8e8;
  background: #f7f7f7;
  padding: 1rem;
}

.project-summary-block h3 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  color: #212121;
  font-family: Helvetica, Arial, sans-serif;
}

.answer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.answer-list li {
  font-size: 0.92rem;
  color: #33404b;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e3e9ee;
}

.answer-list strong {
  color: #1f252a;
}

.disclaimer {
  margin: 0 1.2rem 1.2rem;
  font-size: 0.85rem;
  color: #4f5b66;
  border-left: 4px solid #c4ced7;
  background: #f7fafc;
  padding: 0.7rem 0.85rem;
}

.cta-row {
  margin: 0 1.2rem 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =========================
   7) Modal
========================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 18, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.modal.visible {
  display: flex;
}

.modal-panel {
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #d9e2e9;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e3e8ed;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.modal-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.close-btn {
  border: 1px solid #bcc7d1;
  background: #fff;
  color: #283038;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
  line-height: 1;
}

.modal-body {
  padding: 1rem 1.1rem 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #283038;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bfcad4;
  border-radius: 8px;
  padding: 0.58rem 0.7rem;
  color: #1d252c;
  background: #fff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.error-text {
  color: var(--centaur-red-dark);
  font-size: 0.83rem;
  min-height: 0.95rem;
}

.answers-preview {
  margin-top: 1rem;
  border: 1px solid #dde5ec;
  background: #f9fbfc;
  border-radius: 10px;
  padding: 0.8rem;
}

.answers-preview h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.answers-preview ul {
  margin: 0;
  padding-left: 1rem;
  color: #33404b;
  font-size: 0.88rem;
  display: grid;
  gap: 0.3rem;
}

.submit-wrap {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  margin-top: 0.9rem;
  border: 1px solid #bfe8d8;
  background: #effbf5;
  color: #136746;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.93rem;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

/* =========================
   8) Centaur Footer
   Matches live Elementor footer template (post 409)
========================== */
.centaur-footer {
  margin-top: 0;
}

.centaur-footer__brand-band {
  background: #f1212a;
  padding: 60px;
}

.centaur-footer__brand-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.centaur-footer__brand-inner h2 {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.2;
}

.centaur-footer__cta {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  transition: color 0.2s ease;
  padding: 12px 0;
}

.centaur-footer__cta:hover,
.centaur-footer__cta:focus-visible {
  color: #c12422;
}

.centaur-footer__cta svg {
  width: 1.15rem;
  height: auto;
  fill: currentColor;
}

.centaur-footer__main {
  background: #201d1e;
  padding: 100px 60px;
}

.centaur-footer__main-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.centaur-footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.centaur-footer__logo img {
  width: 249px;
  height: auto;
  max-width: 100%;
}

.centaur-footer__address {
  margin: 0 0 1rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
}

.centaur-footer__contact {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 4px;
}

.centaur-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  transition: color 0.3s ease;
}

.centaur-footer__contact a:hover,
.centaur-footer__contact a:focus-visible {
  color: #f1212a;
}

.centaur-footer__contact svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  flex-shrink: 0;
}

.centaur-footer__iso {
  width: 239px;
  height: auto;
  max-width: 100%;
  margin-top: 0.5rem;
}

.centaur-footer__col h3 {
  margin: 0 0 0.85rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.centaur-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.centaur-footer__links a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  transition: color 0.3s ease;
}

.centaur-footer__links a:hover,
.centaur-footer__links a:focus-visible {
  color: #f1212a;
}

.centaur-footer__legal {
  background: #000;
  border-top: 1px solid #252525;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.centaur-footer__legal p,
.centaur-footer__legal a {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
}

.centaur-footer__legal a:hover,
.centaur-footer__legal a:focus-visible {
  color: #f1212a;
}

/* =========================
   9) Responsive
========================== */
@media (max-width: 920px) {
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .centaur-footer__main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .centaur-header__inner {
    min-height: auto;
    padding: 12px 20px;
  }

  .centaur-nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .header-actions {
    order: 3;
    margin-left: 0.15rem;
  }

  .centaur-nav {
    order: 4;
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    padding: 0.5rem 0 1rem;
  }

  .centaur-nav.is-open {
    display: block;
  }

  .centaur-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .centaur-nav .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 16px;
  }

  .centaur-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    background: #fafafa;
  }

  .centaur-nav li.has-sub.sub-open > .sub-menu {
    display: block;
  }
}

@media (max-width: 760px) {
  .page-title-bar {
    padding: 20px;
  }

  .page-title-bar h1 {
    font-size: 28px;
  }

  .centaur-logo img {
    width: 175px;
  }

  .intro {
    padding: 40px 20px 20px;
  }

  .intro p {
    font-size: 18px;
  }

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

  .form-grid,
  .centaur-footer__main-grid {
    grid-template-columns: 1fr;
  }

  .centaur-footer__brand-band,
  .centaur-footer__main,
  .centaur-footer__legal {
    padding: 40px 20px;
  }

  .centaur-footer__brand-inner h2 {
    font-size: 24px;
  }

  .centaur-footer__cta {
    font-size: 18px;
  }

  .centaur-footer__legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .centaur-footer__legal a {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
