:root {
  --eg-blue: #1d3456;
  --eg-red: #d00b37;
  --eg-light-blue: #f2f5fa;
  --eg-dark-red: #8b0b37;
  --text-primary: #132238;
  --text-muted: #5f7089;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --border: #d8e0ec;
  --ok: #198754;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 28px rgba(19, 34, 56, 0.09);
  --shadow-card: 0 18px 36px rgba(29, 52, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--eg-blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  z-index: 1000;
}

.top-brand-bar {
  background: #fff;
  border-bottom: 1px solid #e3e9f2;
  position: sticky;
  top: 0;
  z-index: 60;
}

.top-brand-bar__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.top-brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.top-brand-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex-wrap: wrap;
}

.top-brand-nav a {
  text-decoration: none;
  color: #2c3f5f;
  font-size: 0.86rem;
  font-weight: 400;
  white-space: nowrap;
}

.top-brand-nav a:hover {
  color: var(--eg-red);
}

.top-brand-bar__actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.top-brand-bar__cta {
  text-decoration: none;
  color: #fff;
  background: var(--eg-red);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(208, 11, 55, 0.24);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--eg-red);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-section {
  padding: 56px 0 40px;
  background:
    radial-gradient(920px 520px at 5% 10%, rgba(29, 52, 86, 0.14), transparent 52%),
    linear-gradient(180deg, #f8fbff 0%, #eff4fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  line-height: 1.1;
  color: var(--eg-blue);
}

.hero-copy p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 0;
}

.hero-card-glow {
  position: absolute;
  inset: 28px 20px 0;
  background: linear-gradient(140deg, rgba(29, 52, 86, 0.28), rgba(29, 52, 86, 0.08));
  filter: blur(28px);
  border-radius: 34px;
}

.hero-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.hero-card--memphis {
  overflow: hidden;
  background: #fff;
  border-color: rgba(180, 196, 221, 0.9);
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  color: var(--eg-blue);
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-product-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
  align-items: center;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(320px 220px at 88% 18%, rgba(208, 11, 55, 0.08), transparent 64%),
    #fff;
}

.hero-product-card--image-only {
  display: block;
  padding: 10px;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.94)),
    #fff;
}

.hero-product-card__copy {
  position: relative;
  z-index: 2;
}

.hero-product-card__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--eg-red);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-product-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.08;
  color: var(--eg-blue);
}

.hero-product-card__media {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d8e1ee;
  box-shadow: 0 18px 38px rgba(19, 34, 56, 0.16);
  background: #eef3f8;
}

.hero-product-card--image-only .hero-product-card__media {
  height: 100%;
  min-height: 340px;
  border-radius: 18px;
}

.hero-product-card__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.03);
}

.hero-product-card--image-only .hero-product-card__media img {
  min-height: 340px;
  object-position: center;
}

.hero-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 31, 53, 0.08));
  pointer-events: none;
}

.hero-product-card--image-only .hero-product-card__media::after {
  background:
    radial-gradient(420px 220px at 78% 12%, rgba(255, 255, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 31, 53, 0.08));
}

.hero-benefits {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hero-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.hero-benefit__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 11, 55, 0.1);
  color: var(--eg-red);
  font-size: 1rem;
  font-weight: 900;
}

.hero-benefit strong {
  display: block;
  color: var(--eg-blue);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.hero-benefit p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-card-label {
  margin-top: 18px !important;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--eg-blue) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-sample {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.hero-config-preview {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #d9e2ef;
  background: linear-gradient(180deg, #f6f9fe 0%, #ffffff 100%);
}

.hero-sample__step {
  border: 1px solid #d4deeb;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(19, 34, 56, 0.06);
}

.hero-sample__head {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-sample__head h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--eg-blue);
}

.hero-sample__head span {
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--eg-red);
  background: rgba(208, 11, 55, 0.12);
}

.hero-sample__choice {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(208, 11, 55, 0.24);
  background:
    linear-gradient(135deg, rgba(208, 11, 55, 0.08), rgba(29, 52, 86, 0.04)),
    #fff;
  box-shadow: inset 4px 0 0 var(--eg-red);
}

.hero-card-mini__label,
.hero-sample__param-grid span {
  display: block;
  margin-bottom: 4px;
  color: #72839a;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-sample__choice strong {
  display: block;
  color: var(--eg-blue);
  font-size: 0.92rem;
}

.hero-card-mini__desc {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.hero-sample__param-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.hero-sample__param-grid div {
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid #d1dcea;
  background: #fff;
  min-height: 52px;
  box-shadow: 0 5px 12px rgba(19, 34, 56, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-sample__param-grid div:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-sample__param-grid div:nth-child(even) {
  background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.hero-sample__param-grid strong {
  display: block;
  color: var(--eg-blue);
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-sample__result {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(208, 11, 55, 0.32);
  background:
    linear-gradient(135deg, rgba(208, 11, 55, 0.12), rgba(29, 52, 86, 0.08)),
    #fff;
  box-shadow: inset 4px 0 0 var(--eg-red);
}

.hero-sample__result strong {
  display: block;
  color: var(--eg-blue);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-sample__result p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.hero-card-footnote {
  margin-top: 9px !important;
  font-size: 0.74rem !important;
  color: #6f8099 !important;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.96rem;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(208, 11, 55, 0.25);
  outline-offset: 2px;
}

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

.btn-primary {
  color: #fff;
  background: var(--eg-red);
  box-shadow: 0 10px 20px rgba(208, 11, 55, 0.28);
}

.btn-ghost {
  border: 1px solid #bcc8db;
  background: #fff;
  color: var(--eg-blue);
}

.configurator-section {
  padding-top: 58px;
}

.sticky-panel {
  position: sticky;
  top: 12px;
  z-index: 30;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.step-pill {
  border-radius: 12px;
  border: 1px solid #cad5e5;
  background: #f8faff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.step-pill .step-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.step-pill strong {
  font-size: 0.88rem;
  color: var(--eg-blue);
}

.step-pill.active {
  border-color: rgba(208, 11, 55, 0.46);
  background: rgba(208, 11, 55, 0.06);
}

.step-pill.done {
  border-color: rgba(25, 135, 84, 0.36);
  background: rgba(25, 135, 84, 0.08);
}

.status-message {
  margin-bottom: 14px;
  color: var(--text-muted);
  min-height: 22px;
}

.wizard-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  min-height: 320px;
  transition: min-height 0.28s ease;
  position: relative;
  overflow: hidden;
}

.wizard-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--eg-red), var(--eg-blue));
  opacity: 0.9;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.32s ease;
}

.wizard-step--loading .opt-chip,
.wizard-step--loading .btn {
  pointer-events: none;
}

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

.step-header {
  margin-bottom: 18px;
}

.step-header h3 {
  margin: 0 0 6px;
  color: var(--eg-blue);
  font-size: 1.42rem;
}

.step-header p {
  margin: 0;
  color: var(--text-muted);
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.selection-grid--5 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 900px) {
  .selection-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .selection-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.selection-card {
  border-radius: 16px;
  border: 1px solid #cfd9e8;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.selection-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.selection-card.active {
  border-color: rgba(208, 11, 55, 0.55);
  box-shadow: 0 10px 20px rgba(208, 11, 55, 0.18);
}

.selection-card--disabled,
.selection-card:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.selection-card--disabled:hover,
.selection-card:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Krok 1: pięć linii produktu — karty ze zdjęciem */
.line-card {
  border: 0;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.line-card:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.line-card.active {
  border-color: rgba(208, 11, 55, 0.45);
  box-shadow: 0 16px 36px rgba(208, 11, 55, 0.15);
}

.line-card.active .line-card__badge {
  background: var(--eg-red);
  color: #fff;
}

.line-card--disabled,
.line-card:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.line-card__figure {
  position: relative;
  display: block;
  height: 148px;
  overflow: hidden;
  padding: 8px;
  background: linear-gradient(145deg, #eef3fb 0%, #e2eaf6 100%);
}

.line-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.line-card:hover:not(:disabled) .line-card__img {
  transform: scale(1.04);
}

.line-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 34, 56, 0.45) 100%);
  pointer-events: none;
}

.line-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 18px;
}

.line-card__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--eg-red);
  background: rgba(208, 11, 55, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.line-card__kicker {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eg-blue);
}

.line-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.line-card__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.choice-helper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 18px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid #d9e2ef;
  background: #f8fbff;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.choice-helper strong {
  color: var(--eg-blue);
  white-space: nowrap;
}

/* Karty serii produktu */
.family-series-card {
  border: 0;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.family-series-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.family-series-card.active {
  border-color: rgba(208, 11, 55, 0.5);
}

.family-series-card__media {
  display: block;
  height: 132px;
  background: #f0f4fa;
  overflow: hidden;
}

.family-series-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.family-series-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.family-series-card__label {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--eg-blue);
}

.family-series-card__blurb {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.family-series-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ok);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.type-grid--family {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 520px) {
  .line-card__figure {
    height: 128px;
  }
}

.selection-card h4 {
  margin: 0 0 7px;
  color: var(--eg-blue);
}

.selection-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.type-card {
  border: 1px solid #ccd8e8;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.type-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.type-card.active {
  border-color: rgba(208, 11, 55, 0.62);
}

.type-card .thumb {
  height: 110px;
  border-radius: 12px;
  object-fit: contain;
  background: #f6f8fb;
  width: 100%;
}

.muted {
  color: var(--text-muted);
}

.details-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.panel img {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f6f8fb;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tech-item {
  border: 1px solid #d6dfeb;
  border-radius: 12px;
  padding: 10px;
  background: #f8fbff;
}

.tech-item strong {
  display: block;
  color: var(--eg-blue);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.applications-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.mode-switch {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #cdd8e7;
  padding: 6px;
  background: #f8faff;
}

.mode-btn {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  background: transparent;
  color: var(--eg-blue);
  cursor: pointer;
}

.mode-btn.active {
  background: var(--eg-blue);
  color: #fff;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--eg-blue);
}

.form-select {
  border: 1px solid #c9d5e6;
  border-radius: 10px;
  padding: 10px;
  min-height: 42px;
  background: #fff;
  color: #1d3456;
}

.form-select:focus-visible {
  outline: 3px solid rgba(29, 52, 86, 0.2);
  outline-offset: 1px;
}

.table-shell {
  overflow: auto;
  border: 1px solid #d3ddeb;
  border-radius: 14px;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.tech-table th,
.tech-table td {
  border-bottom: 1px solid #e0e8f3;
  border-right: 1px solid #e0e8f3;
  padding: 10px;
  text-align: center;
}

.tech-table th {
  background: #f5f8fd;
  color: var(--eg-blue);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-cell-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  background: #eef4fe;
  color: var(--eg-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  line-height: 1.25;
  min-height: 4.5rem;
  justify-content: center;
}

.table-cell-btn__action {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table-cell-btn__ctx {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4a5d78;
}

.table-cell-btn__ctx strong {
  font-weight: 800;
  color: var(--eg-blue);
}

.table-cell-btn:hover {
  background: #dce8fc;
}

.table-cell-btn.selected {
  background: var(--eg-red);
  color: #fff;
}

.table-cell-btn.selected .table-cell-btn__ctx,
.table-cell-btn.selected .table-cell-btn__ctx strong {
  color: rgba(255, 255, 255, 0.95);
}

.table-filter-recap {
  margin: 14px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d6e8;
  background: linear-gradient(180deg, #f5f8fd 0%, #fff 100%);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.table-filter-recap__label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--eg-red);
  margin-bottom: 6px;
}

.table-filter-recap__val {
  color: var(--eg-blue);
  font-size: 0.95rem;
}

.table-filter-recap__sep {
  margin: 0 0.35em;
  color: var(--text-muted);
  font-weight: 400;
}

.table-filter-recap__hint {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.table-filter-recap--partial {
  border-style: dashed;
  background: #fafbfd;
}

.table-empty-hint {
  margin: 12px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed #c5d0e0;
}

.table-cell-btn.disabled {
  cursor: not-allowed;
  background: #f2f4f8;
  color: #b0bac8;
}

.variant-highlight {
  border-radius: 14px;
  border: 1px solid rgba(25, 135, 84, 0.3);
  background: rgba(25, 135, 84, 0.08);
  padding: 12px;
  color: #145a32;
  margin: 12px 0;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-secondary {
  border: 1px solid #c2cedf;
  background: #fff;
  color: var(--eg-blue);
}

.summary-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.summary-list li {
  border: 1px solid #d3deed;
  border-radius: 10px;
  padding: 9px 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.summary-list strong {
  color: var(--eg-blue);
}

.summary-list__catalog {
  background: linear-gradient(135deg, rgba(208, 11, 55, 0.08), rgba(29, 52, 86, 0.06));
  border-color: rgba(208, 11, 55, 0.28) !important;
}

.summary-list__catalog span {
  font-weight: 800;
  color: var(--eg-red);
  letter-spacing: 0.01em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(19, 34, 56, 0.06);
}

.timeline-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(208, 11, 55, 0.08);
  color: var(--eg-red);
  font-size: 1.2rem;
  font-weight: 800;
}

.timeline-icon--target {
  background: rgba(208, 11, 55, 0.08);
  color: var(--eg-red);
  border: 1px solid rgba(208, 11, 55, 0.2);
}

.timeline-icon--click {
  padding: 7px;
}

.timeline-icon__svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-item h3 {
  margin: 0 0 6px;
  color: var(--eg-blue);
  font-size: 1.02rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer {
  background: #1d3456;
  color: #fff;
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.9fr 1fr;
  gap: 22px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin: 0 0 8px;
  font-weight: 400;
}

.footer p {
  margin: 0 0 8px;
  line-height: 1.6;
  font-weight: 400;
}

.footer p a {
  color: #fff;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.footer-brand p {
  max-width: 360px;
}

.footer-cta {
  display: inline-block !important;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--eg-red);
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  font-size: 0.96rem;
}

#how-it-works {
  padding-top: 46px;
  padding-bottom: 92px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 400;
}

.footer-bottom p {
  margin: 0;
}

.skeleton {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef3fb, #f8fbff, #eef3fb);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.step-header--hero h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.step-header--tight {
  margin-bottom: 12px;
}

.params-series-recap {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Krokowy dobór parametrów */
.param-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin: 0 0 20px;
  padding: 14px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f7fc 0%, #fbfcff 100%);
  border: 1px solid #d9e2ef;
  overflow-x: auto;
}

.param-step {
  flex: 1 1 0;
  min-width: 100px;
  text-align: center;
  padding: 8px 6px;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.param-step--active {
  opacity: 1;
  font-weight: 600;
}

.param-step--done {
  opacity: 1;
  color: #146c43;
}

.param-step--future {
  opacity: 0.45;
}

.param-step__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #c4d0e3;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--eg-blue);
}

.param-step--active .param-step__n {
  border-color: var(--eg-red);
  color: var(--eg-red);
  background: rgba(208, 11, 55, 0.06);
  box-shadow: 0 0 0 2px rgba(208, 11, 55, 0.12);
}

.param-step--done .param-step__n {
  border-color: rgba(20, 108, 67, 0.45);
  color: #146c43;
  background: rgba(25, 135, 84, 0.08);
}

.param-step--future .param-step__n {
  background: #f2f4f8;
}

.param-step__label {
  display: block;
  font-size: 0.68rem;
  line-height: 1.2;
  color: var(--text-muted);
  max-width: 8.5em;
  margin: 0 auto;
}

.param-step--active .param-step__label {
  color: var(--eg-blue);
}

.param-step--done .param-step__label {
  color: #145a32;
}

.param-stepper__join {
  flex: 0 0 12px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, #c4d0e3, #dbe5f0);
  border-radius: 1px;
  margin-top: -24px;
}

.param-wizard__stage {
  margin-bottom: 20px;
  min-height: 220px;
  position: relative;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.param-wizard__stage.is-loading {
  opacity: 0.82;
  transform: translateY(2px);
  pointer-events: none;
}

.param-wizard__stage.is-loading::before {
  content: "Dobieram kolejne dostępne opcje...";
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: min(320px, calc(100% - 32px));
  padding: 14px 18px 14px 46px;
  border-radius: 999px;
  border: 1px solid rgba(29, 52, 86, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 31, 53, 0.16);
  color: var(--eg-blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  backdrop-filter: blur(8px);
}

.param-wizard__stage.is-loading::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: calc(50% - min(160px, calc((100% - 32px) / 2)) + 18px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #c7d5e8;
  border-top-color: var(--eg-red);
  animation: spinCentered 0.8s linear infinite;
}

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

@keyframes spinCentered {
  to { transform: translateY(-50%) rotate(360deg); }
}

.param-panel--active,
.param-panel--summary {
  border-radius: 18px;
  border: 1px solid #c9d6e8;
  background:
    radial-gradient(520px 180px at 100% 0, rgba(29, 52, 86, 0.06), transparent 60%),
    #fff;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(15, 31, 53, 0.06);
  animation: paramPanelIn 0.28s ease;
}

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

.param-panel--summary {
  border-style: solid;
  background: #f6faf7;
  border-color: rgba(20, 108, 67, 0.25);
}

.param-panel--summary h4 {
  margin: 0 0 4px;
}

.param-panel--summary p {
  margin: 0;
}

.param-panel--summary .muted {
  margin-top: 6px;
}

.param-panel__step {
  margin: 0 0 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eg-red);
  font-weight: 800;
}

.param-panel__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--eg-blue);
}

.param-panel__hint {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.92rem;
  max-width: none;
}

.param-panel__microcopy {
  margin: -6px 0 16px;
  font-size: 0.82rem;
  color: #72839a;
}

.param-panel__empty {
  margin: 0;
  color: #9a2c2c;
  background: #fff4f4;
  border: 1px solid #f0c4c4;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.opt-chip-grid--comfy {
  gap: 12px;
}

.opt-chip:disabled {
  opacity: 0.65;
  cursor: wait;
}

.param-recap {
  display: none;
  margin-top: 8px;
}

.param-recap--visible {
  display: block;
}

.param-wizard__actions {
  margin-top: 8px;
  margin-bottom: 8px;
}

.param-quick-actions {
  margin: 4px 0 10px;
  display: flex;
}

.param-wizard__actions-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.step-footnote {
  margin-top: 14px;
  font-size: 0.88rem;
}

.card-kicker {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--eg-red);
  margin-bottom: 6px;
}

.type-card-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eg-blue);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #e8edf5;
}

.product-context {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fbff 0%, #fff 55%);
}

.product-context__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-context__figure {
  margin: 0;
}

.product-context__media img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid #e0e8f0;
  background: #f7f9fc;
}

.product-context__eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
}

.product-context__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--eg-blue);
  line-height: 1.3;
}

.product-context__desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-context__dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.product-context__dl dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.product-context__dl dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--eg-blue);
}

.btn-text {
  background: none;
  border: 0;
  padding: 0;
  color: var(--eg-red);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-text:hover {
  color: var(--eg-dark-red);
}

.btn-text:focus-visible {
  outline: 2px solid rgba(208, 11, 55, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.param-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.bc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  border-radius: 999px;
  border: 1px solid #d0d9e8;
  background: #fff;
  padding: 6px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--text-muted);
  max-width: 100%;
}

.bc-pill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bc-pill--done {
  border-color: rgba(25, 135, 84, 0.35);
  background: rgba(25, 135, 84, 0.06);
  color: var(--text-primary);
}

.bc-pill--active {
  border-color: rgba(208, 11, 55, 0.45);
  box-shadow: 0 0 0 2px rgba(208, 11, 55, 0.12);
}

.bc-pill__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--eg-blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.bc-pill--done .bc-pill__n {
  background: var(--ok);
}

.bc-pill__t {
  font-weight: 700;
  color: var(--eg-blue);
}

.bc-pill__v {
  color: var(--text-primary);
  font-weight: 600;
}

.guided-panel {
  border-radius: var(--radius-md);
  border: 1px solid #d5deeb;
  background: #fbfcfe;
  padding: 22px;
  margin-bottom: 18px;
}

.guided-panel__head {
  margin-bottom: 18px;
}

.guided-step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eg-red);
  margin-bottom: 8px;
}

.param-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.param-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dde8;
}

.param-dot--active {
  background: var(--eg-red);
  transform: scale(1.15);
}

.param-dot--done {
  background: var(--ok);
}

.guided-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--eg-blue);
}

.guided-hint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.opt-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opt-chip {
  position: relative;
  border: 1px solid #c5d0e2;
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 58px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--eg-blue);
  min-width: 132px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.opt-chip:hover:not(:disabled) {
  border-color: rgba(29, 52, 86, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.opt-chip:focus-visible {
  outline: 3px solid rgba(208, 11, 55, 0.25);
  outline-offset: 2px;
}

.opt-chip--selected {
  border-color: rgba(208, 11, 55, 0.65);
  background: rgba(208, 11, 55, 0.06);
  box-shadow: 0 8px 18px rgba(208, 11, 55, 0.15);
}

.opt-chip--disabled {
  opacity: 0.42;
  cursor: not-allowed;
  background: #f3f5f8;
  color: #8a96a8;
}

.opt-chip__lock {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #8c99aa;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

.table-mode-panel {
  margin-bottom: 18px;
}

.table-mode-lead {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.filters-grid--compact {
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.table-cell-na {
  display: block;
  padding: 8px;
  color: #b8c0cc;
  font-weight: 700;
}

.actions-row--spread {
  justify-content: space-between;
  align-items: center;
}

.guided-wait {
  margin: 12px 0 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .details-layout,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-brand-bar__inner {
    min-height: 60px;
    gap: 14px;
  }

  .top-brand-logo img {
    height: 32px;
  }

  .top-brand-nav {
    gap: 12px;
  }

  .top-brand-nav a {
    font-size: 0.78rem;
    font-weight: 400;
  }

  .top-brand-bar__cta {
    padding: 8px 11px;
    font-size: 0.76rem;
    font-weight: 400;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-product-card {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 280px;
  }

  .hero-product-card--image-only {
    min-height: 300px;
  }

  .hero-product-card__media {
    min-height: 260px;
  }

  .hero-product-card--image-only .hero-product-card__media,
  .hero-product-card--image-only .hero-product-card__media img {
    min-height: 280px;
  }

  .hero-product-card__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: none;
    object-fit: cover;
  }

  .hero-config-preview {
    padding: 12px;
    gap: 10px;
  }

  .hero-sample__step {
    padding: 12px;
  }

  .hero-sample__param-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-sample__param-grid div {
    min-height: 58px;
    padding: 9px 10px;
  }
}

@media (min-width: 1081px) and (max-height: 760px) {
  .hero-section {
    padding: 34px 0 28px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.55rem);
    margin-bottom: 10px;
  }

  .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-product-card {
    min-height: 270px;
  }

  .hero-product-card--image-only {
    min-height: 250px;
    padding: 8px;
  }

  .hero-product-card__media {
    min-height: 230px;
  }

  .hero-product-card--image-only .hero-product-card__media,
  .hero-product-card--image-only .hero-product-card__media img {
    min-height: 230px;
  }

  .hero-product-card__media img {
    min-height: 230px;
  }

  .hero-sample {
    gap: 8px;
  }

  .hero-sample__step {
    padding: 9px;
  }

  .hero-sample__param-grid div {
    min-height: 46px;
    padding: 7px 8px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 52px 0;
  }

  .selection-grid,
  .type-grid,
  .timeline,
  .filters-grid,
  .step-progress {
    grid-template-columns: 1fr;
  }

  .wizard-shell {
    padding: 16px;
  }

  .top-brand-bar {
    position: static;
  }

  .top-brand-bar__inner {
    min-height: auto;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .top-brand-logo img {
    height: 30px;
  }

  .top-brand-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .top-brand-nav a {
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #d7e1ee;
    border-radius: 8px;
    padding: 7px 6px;
    background: #fff;
  }

  .top-brand-bar__actions {
    margin-left: 0;
  }

  .top-brand-bar__cta {
    font-size: 0.74rem;
    padding: 8px 10px;
    font-weight: 400;
  }

  #how-it-works {
    padding-top: 34px;
    padding-bottom: 74px;
  }

  .hero-section {
    padding: 56px 0 36px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-product-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .hero-product-card--image-only {
    min-height: auto;
  }

  .hero-product-card__media {
    order: -1;
    min-height: 200px;
    border-radius: 16px;
  }

  .hero-product-card--image-only .hero-product-card__media,
  .hero-product-card--image-only .hero-product-card__media img {
    min-height: 210px;
  }

  .hero-product-card__media img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: none;
    object-fit: cover;
  }

  .hero-benefits {
    gap: 10px;
    margin-top: 16px;
  }

  .hero-benefit {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .hero-benefit__icon {
    width: 34px;
    height: 34px;
    font-size: 0.86rem;
  }

  .hero-benefit strong {
    font-size: 0.82rem;
  }

  .hero-benefit p {
    font-size: 0.72rem;
  }

  .hero-card h2 {
    font-size: 1.2rem;
  }

  .hero-card p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-sample {
    margin-top: 12px;
    gap: 9px;
  }

  .hero-config-preview {
    padding: 10px;
    border-radius: 16px;
  }

  .hero-sample__step {
    padding: 10px;
    border-radius: 14px;
  }

  .hero-sample__head h3 {
    font-size: 0.88rem;
  }

  .hero-sample__head span {
    min-width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 0.68rem;
  }

  .hero-sample__choice,
  .hero-sample__result {
    margin-top: 8px;
    padding: 10px 11px;
    border-radius: 12px;
  }

  .hero-sample__param-grid {
    margin-top: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-sample__param-grid div {
    min-height: auto;
    padding: 8px 9px;
    border-radius: 11px;
  }

  .hero-card-mini__label,
  .hero-sample__param-grid span {
    font-size: 0.6rem;
    margin-bottom: 2px;
  }

  .hero-sample__choice strong,
  .hero-sample__result strong,
  .hero-sample__param-grid strong {
    font-size: 0.82rem;
  }

  .hero-card-mini__desc,
  .hero-sample__result p,
  .hero-card-footnote {
    font-size: 0.76rem !important;
  }

  .tech-list {
    grid-template-columns: 1fr;
  }

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

  .product-context {
    grid-template-columns: 1fr;
  }

  .product-context__media {
    grid-template-columns: 1fr;
  }

  .product-context__dl {
    grid-template-columns: 1fr;
  }

  .actions-row--spread {
    flex-direction: column;
    align-items: stretch;
  }

  .actions-row--spread .btn {
    width: 100%;
    text-align: center;
  }
}
