/* ═══════════════════════════════════════════════════════════
   LEAD WIZARD — "Dobierz meble pod swój taras"
   ogrodowy.expert | Botanical Luxury Concierge
═══════════════════════════════════════════════════════════ */

/* ── Reset & Container ── */
.lw *, .lw *::before, .lw *::after { box-sizing: border-box; }

/* Eliminuj przerwę między nagłówkiem "Nie jesteś pewien?" a wizardem */
#lead-form { margin: 0; padding: 0; line-height: 0; font-size: 0; }
.lw { margin-top: 0; }

.lw {
  --lw-dark: #1C2B1A;
  --lw-dark-2: #243422;
  --lw-gold: #B8965A;
  --lw-gold-light: #D4B87A;
  --lw-gold-glow: rgba(184, 150, 90, 0.15);
  --lw-white: #fff;
  --lw-text: rgba(255, 255, 255, 0.85);
  --lw-text-dim: rgba(255, 255, 255, 0.5);
  --lw-border: rgba(255, 255, 255, 0.1);
  --lw-glass: rgba(255, 255, 255, 0.06);
  --lw-radius: 14px;
  --lw-font-display: 'DM Serif Display', Georgia, serif;
  --lw-font-body: 'DM Sans', system-ui, sans-serif;

  position: relative;
  background: var(--lw-dark);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle diamond pattern overlay */
.lw::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z' fill='none' stroke='%23B8965A' stroke-width='0.6'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
.lw::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lw__container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 24px;
  overflow: hidden;
}

/* Wszystkie stepy: ogranicz do kontenera */
.lw__step { max-width: 100%; overflow: hidden; }
.lw__steps { max-width: 100%; overflow: hidden; }

@media (max-width: 520px) {
  .lw__container { padding-left: 16px; padding-right: 16px; }
}

/* ── Header ── */
.lw__header {
  text-align: center;
  margin-bottom: 40px;
}

.lw__suptitle {
  font-family: var(--lw-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lw-gold);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lw__suptitle::before,
.lw__suptitle::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--lw-gold);
  opacity: 0.4;
}

.lw__title {
  font-family: var(--lw-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--lw-white);
  line-height: 1.15;
  margin: 0 0 12px;
}

.lw__title em {
  color: var(--lw-gold);
  font-style: italic;
}

.lw__subtitle {
  font-family: var(--lw-font-body);
  font-size: 0.95rem;
  color: var(--lw-text-dim);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Progress Bar ── */
.lw__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  padding: 0 20px;
}

.lw__progress-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.lw__progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  border: 2px solid var(--lw-border);
  color: var(--lw-text-dim);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

.lw__progress-dot--active {
  border-color: var(--lw-gold);
  color: var(--lw-dark);
  background: var(--lw-gold);
  box-shadow: 0 0 20px rgba(184, 150, 90, 0.35);
  transform: scale(1.1);
}

.lw__progress-dot--done {
  border-color: var(--lw-gold);
  color: var(--lw-gold);
  background: rgba(184, 150, 90, 0.15);
}

.lw__progress-dot--done::after {
  content: '\2713';
  font-size: 14px;
}

.lw__progress-dot--done span { display: none; }

.lw__progress-line {
  width: 48px;
  height: 2px;
  background: var(--lw-border);
  transition: background 0.4s ease;
  flex-shrink: 0;
}

.lw__progress-line--done {
  background: var(--lw-gold);
}

/* ── Steps Container ── */
.lw__steps {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.lw__step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.lw__step--active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.lw__step--exit-left {
  transform: translateX(-60px);
  opacity: 0;
}

.lw__step-title {
  font-family: var(--lw-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--lw-white);
  text-align: center;
  margin: 0 0 8px;
}

.lw__step-hint {
  font-family: var(--lw-font-body);
  font-size: 0.85rem;
  color: var(--lw-text-dim);
  text-align: center;
  margin: 0 0 32px;
}

/* ── Inline back link (steps 2, 4) ── */
.lw__back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--lw-text-dim);
  font-family: var(--lw-font-body);
  font-size: 0.82rem;
  cursor: pointer;
  margin: 0 auto 20px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
  text-align: center;
}
.lw__back-link:hover {
  color: var(--lw-gold-light);
  background: rgba(255,255,255,0.04);
}

/* ── Swipe hint (mobile only) ── */
.lw__swipe-hint {
  display: none;
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  color: var(--lw-gold);
  text-align: center;
  margin: 0 0 12px;
  animation: lwSwipeHint 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes lwSwipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ── Step 1: Category Cards ── */
.lw__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lw__cat-card {
  position: relative;
  border-radius: var(--lw-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 16 / 9;
  background: var(--lw-dark-2);
}

.lw__cat-card:hover {
  border-color: var(--lw-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(184, 150, 90, 0.2);
}

.lw__cat-card--selected {
  border-color: var(--lw-gold) !important;
  box-shadow: 0 0 30px rgba(184, 150, 90, 0.25);
}

.lw__cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lw__cat-card:hover .lw__cat-card__img {
  transform: scale(1.06);
}

.lw__cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(28, 43, 26, 0.92) 0%,
    rgba(28, 43, 26, 0.4) 45%,
    rgba(28, 43, 26, 0.15) 100%);
  z-index: 1;
}

.lw__cat-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 16px;
  font-family: var(--lw-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lw-white);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.lw__cat-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.lw__cat-card--selected .lw__cat-card__check {
  opacity: 1;
  transform: scale(1);
}

.lw__cat-card__check svg {
  width: 14px;
  height: 14px;
  stroke: var(--lw-dark);
  stroke-width: 3;
  fill: none;
}

/* ── Step 2: Person Count Pills ── */
.lw__pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lw__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  border-radius: var(--lw-radius);
  border: 2px solid var(--lw-border);
  background: var(--lw-glass);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 110px;
}

.lw__pill:hover {
  border-color: rgba(184, 150, 90, 0.5);
  background: rgba(184, 150, 90, 0.08);
  transform: translateY(-2px);
}

.lw__pill--selected {
  border-color: var(--lw-gold) !important;
  background: rgba(184, 150, 90, 0.12) !important;
  box-shadow: 0 0 24px rgba(184, 150, 90, 0.15);
}

.lw__pill-number {
  font-family: var(--lw-font-display);
  font-size: 1.8rem;
  color: var(--lw-gold-light);
  line-height: 1;
}

.lw__pill-label {
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  color: var(--lw-text-dim);
  letter-spacing: 0.04em;
}

/* ── Step 3: Terrace Dimensions + Upload ── */
.lw__terrace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.lw__dims {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.lw__dim-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lw__dim-input {
  flex: 1;
  min-width: 0;
  font-family: var(--lw-font-body);
  font-size: 1rem;
  color: var(--lw-white);
  background: var(--lw-glass);
  border: 1.5px solid var(--lw-border);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.lw__dim-input::placeholder { color: var(--lw-text-dim); }

.lw__dim-input:focus {
  outline: none;
  border-color: var(--lw-gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
}

.lw__dim-x {
  font-family: var(--lw-font-display);
  font-size: 1.2rem;
  color: var(--lw-text-dim);
  flex-shrink: 0;
}

.lw__dim-unit {
  font-family: var(--lw-font-body);
  font-size: 0.85rem;
  color: var(--lw-text-dim);
  flex-shrink: 0;
}

.lw__dim-alt {
  font-family: var(--lw-font-body);
  font-size: 0.82rem;
  color: var(--lw-text-dim);
  text-align: center;
  margin-top: 4px;
}

.lw__dim-alt-input {
  font-family: var(--lw-font-body);
  font-size: 0.95rem;
  color: var(--lw-white);
  background: var(--lw-glass);
  border: 1.5px solid var(--lw-border);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  max-width: 100%;
  transition: border-color 0.2s;
  margin-top: 8px;
}

.lw__dim-alt-input::placeholder { color: var(--lw-text-dim); }
.lw__dim-alt-input:focus { outline: none; border-color: var(--lw-gold); }

/* Upload Area */
.lw__upload {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.lw__upload-label {
  font-family: var(--lw-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lw-text);
  letter-spacing: 0.02em;
}

.lw__upload-zone {
  border: 2px dashed rgba(184, 150, 90, 0.3);
  border-radius: var(--lw-radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: rgba(184, 150, 90, 0.03);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lw__upload-zone:hover,
.lw__upload-zone--drag {
  border-color: var(--lw-gold);
  background: rgba(184, 150, 90, 0.08);
}

.lw__upload-zone__icon {
  color: var(--lw-gold);
  opacity: 0.7;
}

.lw__upload-zone__text {
  font-family: var(--lw-font-body);
  font-size: 0.85rem;
  color: var(--lw-text-dim);
  line-height: 1.5;
}

.lw__upload-zone__text strong {
  color: var(--lw-gold-light);
  font-weight: 600;
}

.lw__previews {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lw__preview {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--lw-border);
}

.lw__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lw__preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  transition: background 0.2s;
}

.lw__preview-remove:hover { background: #c0392b; }

/* ── Step 4: Color Cards ── */
.lw__colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.lw__color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  border-radius: var(--lw-radius);
  border: 2px solid var(--lw-border);
  background: var(--lw-glass);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.lw__color-card:hover {
  border-color: rgba(184, 150, 90, 0.5);
  background: rgba(184, 150, 90, 0.06);
  transform: translateY(-2px);
}

.lw__color-card--selected {
  border-color: var(--lw-gold) !important;
  background: rgba(184, 150, 90, 0.1) !important;
  box-shadow: 0 0 24px rgba(184, 150, 90, 0.15);
}

.lw__color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
}

.lw__color-card:hover .lw__color-swatch { border-color: rgba(255, 255, 255, 0.3); }
.lw__color-card--selected .lw__color-swatch { border-color: var(--lw-gold); transform: scale(1.1); }

.lw__color-swatch--advisor {
  background: linear-gradient(135deg, rgba(184,150,90,0.15), rgba(184,150,90,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lw-gold);
}

.lw__color-name {
  font-family: var(--lw-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.3;
}

.lw__color-sub {
  font-family: var(--lw-font-body);
  font-size: 0.72rem;
  color: var(--lw-text-dim);
  line-height: 1.4;
}

.lw__color-card--advisor {
  border-style: dashed;
  border-color: rgba(184, 150, 90, 0.3);
}

.lw__color-card--advisor:hover {
  border-color: var(--lw-gold);
  border-style: solid;
}

/* ── Step 5: Budget Cards ── */
.lw__budgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.lw__budget-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  border-radius: var(--lw-radius);
  border: 2px solid var(--lw-border);
  background: var(--lw-glass);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.lw__budget-card:hover {
  border-color: rgba(184, 150, 90, 0.5);
  background: rgba(184, 150, 90, 0.08);
  transform: translateY(-2px);
}

.lw__budget-card--selected {
  border-color: var(--lw-gold) !important;
  background: rgba(184, 150, 90, 0.12) !important;
  box-shadow: 0 0 24px rgba(184, 150, 90, 0.15);
}

.lw__budget-amount {
  font-family: var(--lw-font-display);
  font-size: 1.15rem;
  color: var(--lw-white);
  line-height: 1.2;
}

.lw__budget-note {
  font-family: var(--lw-font-body);
  font-size: 0.72rem;
  color: var(--lw-text-dim);
}

/* ── Step 5: Contact Form ── */
.lw__contact {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lw__contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lw__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lw__field label {
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lw-text);
  letter-spacing: 0.02em;
}

.lw__field label .lw__req { color: var(--lw-gold); }
.lw__field label .lw__opt { opacity: 0.4; font-weight: 400; }

.lw__input {
  font-family: var(--lw-font-body);
  font-size: 0.95rem;
  color: var(--lw-white);
  background: var(--lw-glass);
  border: 1.5px solid var(--lw-border);
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.lw__input::placeholder { color: var(--lw-text-dim); }

.lw__input:focus {
  outline: none;
  border-color: var(--lw-gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
}

.lw__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.lw__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--lw-gold);
  flex-shrink: 0;
  cursor: pointer;
}

.lw__consent span {
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  color: var(--lw-text-dim);
  line-height: 1.55;
}

.lw__consent a {
  color: var(--lw-gold);
  text-decoration: none;
}

.lw__consent a:hover { text-decoration: underline; }

/* ── Buttons ── */
.lw__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.lw__btn {
  font-family: var(--lw-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.lw__btn--primary {
  background: var(--lw-gold);
  color: var(--lw-dark);
}

.lw__btn--primary:hover {
  background: var(--lw-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
}

.lw__btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lw__btn--back {
  background: transparent;
  color: var(--lw-text-dim);
  border: 1.5px solid var(--lw-border);
  padding: 15px 28px;
}

.lw__btn--back:hover {
  color: var(--lw-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.lw__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Status / Error ── */
.lw__status {
  font-family: var(--lw-font-body);
  font-size: 0.78rem;
  color: var(--lw-text-dim);
  text-align: center;
  margin-top: 14px;
  min-height: 20px;
}

.lw__status--error { color: #e74c3c; }

/* ── Success State ── */
.lw__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  animation: lwFadeIn 0.5s ease;
}

.lw__success--visible { display: flex; }

.lw__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(184, 150, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: lwPulse 2s ease infinite;
}

.lw__success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--lw-gold);
  fill: none;
  stroke-width: 2;
}

.lw__success h3 {
  font-family: var(--lw-font-display);
  font-size: 1.6rem;
  color: var(--lw-white);
  margin: 0 0 12px;
}

.lw__success p {
  font-family: var(--lw-font-body);
  font-size: 0.95rem;
  color: var(--lw-text-dim);
  line-height: 1.7;
  max-width: 420px;
  margin: 0;
}

/* ── Animations ── */
@keyframes lwFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lwPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 150, 90, 0.2); }
  50% { box-shadow: 0 0 0 16px rgba(184, 150, 90, 0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Kategorie: horizontal scroll slider */
  .lw__swipe-hint { display: block; }

  .lw__categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 4px 24px 16px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .lw__categories::-webkit-scrollbar { display: none; }

  .lw__cat-card {
    flex: 0 0 70%;
    scroll-snap-align: center;
    aspect-ratio: 16 / 10;
    min-height: 170px;
  }

  .lw__budgets {
    grid-template-columns: repeat(2, 1fr);
  }
  .lw__colors {
    grid-template-columns: repeat(2, 1fr);
  }
  .lw__terrace-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lw__pills {
    gap: 10px;
  }
  .lw__pill {
    padding: 20px 24px;
    min-width: 90px;
  }
  .lw__progress-line { width: 20px; }
  .lw__progress-dot { width: 30px; height: 30px; font-size: 0.7rem; }
}

@media (max-width: 520px) {
  .lw__cat-card {
    flex: 0 0 80%;
    min-height: 160px;
  }
  .lw__budgets {
    grid-template-columns: 1fr 1fr;
  }
  .lw__colors {
    grid-template-columns: repeat(2, 1fr);
  }
  .lw__color-card--advisor {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 14px;
    padding: 16px 20px;
  }
  .lw__color-card--advisor .lw__color-swatch { width: 40px; height: 40px; }
  .lw__contact-row {
    grid-template-columns: 1fr;
  }
  .lw__actions {
    flex-direction: column-reverse;
  }
  .lw__btn { width: 100%; justify-content: center; }
  .lw__progress-line { width: 12px; }
  .lw__progress-dot { width: 28px; height: 28px; font-size: 0.65rem; }
}
