/* Scoped wizard styles for home page embed */
:root {
  --wz-brand: #111111;
  --wz-brand-dark: #000000;
  --wz-brand-light: #F7F7F7;
  --wz-brand-mid: #7c7c7c;
  --wz-accent: #111111;
  --wz-accent-light: #fffcf6;
  --wz-green: #10B981;
  --wz-green-light: #ECFDF5;
  --wz-bg: #ffffff;
  --wz-surface: #ffffff;
  --wz-surface-2: #F7F7F7;
  --wz-border: #D9D9D9;
  --wz-border-strong: #c7c7c7;
  --wz-text: #111111;
  --wz-text-2: #7c7c7c;
  --wz-text-3: #8a8787;
  --wz-radius: 2px;
  --wz-radius-sm: 2px;
  --wz-radius-xl: 4px;
  --wz-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --wz-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --wz-font-display: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  --wz-font-body: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
}

.project-wizard-section {
  --brand: var(--wz-brand);
  --brand-dark: var(--wz-brand-dark);
  --brand-light: #f0f7ff;
  --brand-mid: var(--wz-brand-mid);
  --accent: #00d4ff;
  --accent-light: #fffcf6;
  --green: var(--wz-green);
  --green-light: var(--wz-green-light);
  --bg: var(--wz-bg);
  --surface: rgba(255, 255, 255, 0.97);
  --surface-2: #f4f8fc;
  --border: rgba(255, 255, 255, 0.22);
  --border-strong: #c7c7c7;
  --text: var(--wz-text);
  --text-2: var(--wz-text-2);
  --text-3: var(--wz-text-3);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-xl: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.35);
  --font-display: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  --font-body: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-theme-1, #111111);
  position: relative;
  overflow: hidden;
  background: #060e1a;
  padding: clamp(50px, 8vw, 90px) 0;
  isolation: isolate;
}

.project-wizard-section .wizard-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.project-wizard-section .wizard-hero-bg__image {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-wizard-section .wizard-hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.68) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.project-wizard-section .wizard-hero-bg__glow {
  position: absolute;
  width: min(60vw, 700px);
  height: min(40vw, 320px);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, rgba(200, 220, 255, 0.05) 40%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.project-wizard-section .wizard-section-inner {
  position: relative;
  z-index: 2;
}

.project-wizard-section .wizard-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(30px, 5vw, 50px);
}

.project-wizard-section .wizard-section-title {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.project-wizard-section .wizard-section-sub {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 680px;
}

/* ===== PAGE WRAPPER ===== */
.project-wizard-section .wizard-page-wrapper {
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}
/* ===== WIZARD CONTAINER — solid white card ===== */
.project-wizard-section .wizard-container {
  --border: #d9d9d9;
  --border-strong: #111111;
  --brand-light: #f7f7f7;
  --surface: #ffffff;
  --surface-2: #f7f7f7;
  --text: #111111;
  --text-2: #7c7c7c;
  --text-3: #8a8787;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  width: 100%;
  transition: box-shadow 0.35s ease;
}
.project-wizard-section .wizard-container:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}
/* ===== PROGRESS ===== */.project-wizard-section .wizard-progress-wrap {
  padding: clamp(16px, 2.5vw, 20px) clamp(16px, 3vw, 32px) 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}
.project-wizard-section .progress-track {
  flex: 1;
  height: 4px;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}
.project-wizard-section .progress-fill {
  height: 100%;
  background: #111111;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 12.5%;
}
.project-wizard-section .progress-label {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #7c7c7c;
  white-space: nowrap;
}
/* ===== STEP BODY ===== */
.project-wizard-section .step-body {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 3vw, 32px) clamp(24px, 3vw, 32px);
}
.project-wizard-section .step-header {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.project-wizard-section .step-title {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
}
.project-wizard-section .step-sub {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
}
/* ===== STEP 1 — large vertical type cards ===== */
.project-wizard-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.project-wizard-section .cards-grid > .type-card,
.project-wizard-section .cards-grid > button.type-card {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(12px, 1.8vw, 18px) clamp(10px, 1.5vw, 16px);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.project-wizard-section .cards-grid > .type-card:hover {
  border-color: #111111;
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.project-wizard-section .cards-grid > .type-card.selected {
  border: 2px solid #111111;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.project-wizard-section .cards-grid .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  flex-shrink: 0;
}
.project-wizard-section .cards-grid .card-icon i {
  font-size: 18px;
  line-height: 1;
  color: #111111;
}
.project-wizard-section .cards-grid > .type-card:hover .card-icon,
.project-wizard-section .cards-grid > .type-card.selected .card-icon {
  transform: scale(1.05);
  background: #f7f7f7;
  border-color: #111111;
}
.project-wizard-section .cards-grid .card-label {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
}

/* ===== STEPS 2+ — slim inline option cards ===== */
.project-wizard-section .options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
  gap: 8px;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  justify-content: start;
}
.project-wizard-section .options-grid--features {
  grid-template-columns: repeat(auto-fill, minmax(190px, 235px));
}
.project-wizard-section .option-card,
.project-wizard-section button.option-card {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 8px 10px;
  min-height: 42px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.project-wizard-section .option-card:hover {
  border-color: #111111;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.project-wizard-section .option-card.selected {
  border: 1.5px solid #111111;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.project-wizard-section .option-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.project-wizard-section .option-card__icon i {
  font-size: 12px;
  line-height: 1;
  color: #111111;
}
.project-wizard-section .option-card.selected .option-card__icon {
  background: #f7f7f7;
  border-color: #111111;
}
.project-wizard-section .option-card__label {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: #111111;
  flex: 1;
  min-width: 0;
}
.project-wizard-section .option-card.selected .option-card__label {
  font-weight: 500;
  color: #000000;
}
/* ===== STEP SECTION LABEL ===== */
.project-wizard-section .step-section-label {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7c7c7c;
  margin: 0 0 10px;
}
.project-wizard-section .step-section-label:not(:first-child) {
  margin-top: 1.5rem;
}
/* ===== NAVIGATION BUTTONS ===== */
.project-wizard-section .nav-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  margin-top: clamp(24px, 4vw, 36px);
  padding-top: clamp(8px, 1.5vw, 12px);
}
.project-wizard-section .nav-row .btn-back,
.project-wizard-section .nav-row .btn-next {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.project-wizard-section .nav-row:has(.btn-back):has(.btn-next) .btn-back,
.project-wizard-section .nav-row:has(.btn-back):has(.btn-next) .btn-next {
  min-width: 180px;
}
.project-wizard-section .btn-back {
  background: #ffffff;
  border: 1.5px solid #111111;
  color: #111111;
}
.project-wizard-section .btn-back i {
  font-size: 13px;
  line-height: 1;
}
.project-wizard-section .btn-back:hover {
  background: #f7f7f7;
}
.project-wizard-section .btn-next {
  background: #111111;
  border: 1.5px solid #111111;
  color: #ffffff;
}
.project-wizard-section .btn-next i {
  font-size: 13px;
  line-height: 1;
}
.project-wizard-section .btn-next:hover:not(:disabled) {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.project-wizard-section .btn-next:active:not(:disabled) {
  transform: translateY(0);
}
.project-wizard-section .btn-next:disabled {
  background: #e8e8e8;
  border-color: #d9d9d9;
  color: #8a8787;
  cursor: not-allowed;
  box-shadow: none;
}
.project-wizard-section .nav-row .btn-next:only-child {
  margin-left: auto;
}
.project-wizard-section .btn-skip {

  background: transparent;
  border: none;
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  margin-left: auto;
  padding: 0.5rem;

}
.project-wizard-section .btn-skip:hover {
 color: var(--text-2); 
}
/* ===== RESULT SCREEN (Step 8) ===== */
.project-wizard-section .result-wrap {
  padding-top: 0;
}
.project-wizard-section .result-header {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.project-wizard-section .result-header .step-section-label {
  margin-bottom: 8px;
}
.project-wizard-section .result-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.project-wizard-section .hl-box {
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(12px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
}
.project-wizard-section .hl-box-label {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7c7c7c;
  margin-bottom: 6px;
}
.project-wizard-section .hl-box-val {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  color: #111111;
}
.project-wizard-section .result-summary-card {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.project-wizard-section .result-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(20px, 3vw, 28px);
}
.project-wizard-section .result-block .step-section-label {
  margin-bottom: 12px;
}
.project-wizard-section .stack-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.project-wizard-section .stack-card {
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(12px, 1.8vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-wizard-section .stack-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-wizard-section .stack-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-wizard-section .stack-card__icon i {
  font-size: 16px;
  color: #111111;
  line-height: 1;
}
.project-wizard-section .stack-card__role {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7c7c7c;
}
.project-wizard-section .stack-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-wizard-section .stack-tech-tag {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #111111;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 10px;
}
.project-wizard-section .result-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.project-wizard-section .result-mini-grid--team {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-wizard-section .result-mini-card {
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(10px, 1.5vw, 14px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 100%;
}
.project-wizard-section .result-mini-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-wizard-section .result-mini-card__icon i {
  font-size: 14px;
  color: #111111;
  line-height: 1;
}
.project-wizard-section .result-mini-card__label {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
}
.project-wizard-section .why-section {
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 22px);
  margin-bottom: 0;
  background: #f7f7f7;
}
.project-wizard-section .why-title {
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  color: #111111;
  margin: 0 0 12px;
}
.project-wizard-section .why-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;

}
.project-wizard-section .why-item {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  line-height: 1.5;
  color: #7c7c7c;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-wizard-section .why-item .why-check {
  width: 18px;
  height: 18px;
  background: #111111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-wizard-section .why-item .why-check i {
  font-size: 10px;
  color: #ffffff;
  line-height: 1;
}
/* ===== FORM ===== */.project-wizard-section .form-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 1.5rem;

}
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }.project-wizard-section .form-group {
 display: flex; flex-direction: column; gap: 6px; 
}
.project-wizard-section .form-group.full {
 grid-column: 1 / -1; 
}
.project-wizard-section .form-label {
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: #111111;
}
.project-wizard-section .form-input {
  border: 1px solid #d9d9d9;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  color: #111111;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.project-wizard-section .form-input::placeholder {
  color: #8a8787;
}
.project-wizard-section .form-input:focus {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}
.project-wizard-section .form-input.error {
 border-color: #EF4444; 
}
.project-wizard-section .error-msg {
 font-size: 12px; color: #EF4444; margin-top: 2px; 
}
.project-wizard-section .privacy-note {
  font-size: 13px;
  color: #7c7c7c;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.project-wizard-section .privacy-note i {
  color: #111111;
}
/* ===== SUCCESS ===== */.project-wizard-section .success-wrap {

  padding: 1.5rem 0 0;

}
.project-wizard-section .success-hero {

  text-align: center;
  padding: 0 1rem 1.5rem;

}
.project-wizard-section .success-icon {
  width: 64px;
  height: 64px;
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 28px;
  color: #111111;
}
.project-wizard-section .success-icon i {
  font-size: 28px;
  line-height: 1;
}
.project-wizard-section .success-title {

  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;

}
.project-wizard-section .success-sub {

  font-size: 14px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;

}
.project-wizard-section .success-divider {

  height: 4px;
  background: var(--brand);
  max-width: 100%;
  margin: 1.5rem auto 0;

}
.project-wizard-section .success-layout {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0 0;

}
.project-wizard-section .success-col-left,
.project-wizard-section .success-col-right {

  min-width: 0;

}
.project-wizard-section .success-actions {

  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;

}
.project-wizard-section .success-actions .btn-cta-primary,
.project-wizard-section .success-actions .btn-cta-outline {

  justify-content: center;
  width: 100%;

}
.project-wizard-section .summary-card {
  background: #f7f7f7;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 22px);
  text-align: left;
  margin-bottom: 0;
}
.project-wizard-section .summary-card-label {

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;

}
/* ===== CASE STUDY PORTFOLIO ===== */.project-wizard-section .portfolio-panel {

  text-align: left;

}
.project-wizard-section .portfolio-heading {

  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;

}
.project-wizard-section .case-card {

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;

}
.project-wizard-section .case-card-image-wrap {

  background: #f2f2f2;
  padding: 0;

}
.project-wizard-section .case-card-image {

  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;

}
.project-wizard-section .case-card-body {

  padding: 1rem 1.1rem 1.15rem;

}
.project-wizard-section .case-card-title {

  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;

}
.project-wizard-section .case-card-desc {

  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.project-wizard-section .case-card-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;

}
.project-wizard-section .case-card-btn:hover {

  border-color: var(--text);
  background: var(--surface-2);

}
.project-wizard-section .case-dots {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0.25rem 0 0.5rem;

}
.project-wizard-section .case-dot {

  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;

}
.project-wizard-section .case-dot:hover {

  transform: scale(1.1);

}
.project-wizard-section .case-dot.active {

  background: var(--brand);

}
.project-wizard-section .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}
.project-wizard-section .summary-row:last-child {
  border-bottom: none;
}
.project-wizard-section .summary-row-label {
  color: #7c7c7c;
  flex-shrink: 0;
  margin-right: 12px;
}
.project-wizard-section .summary-row-val {
  font-weight: 400;
  color: #111111;
  text-align: right;
  max-width: 62%;
  line-height: 1.5;
}
.project-wizard-section .action-btns {

  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;

}
.project-wizard-section .btn-cta-primary {

  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;

}
.project-wizard-section .btn-cta-primary:hover {
 background: var(--brand-dark); 
}
.project-wizard-section .btn-cta-outline {

  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-family: var(--tpl-ff-body, 'Tenor Sans', Arial, sans-serif);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;

}
.project-wizard-section .btn-cta-outline:hover {
 border-color: var(--border-strong); 
}
/* ===== SCHEDULE CONSULTATION ===== */.project-wizard-section .schedule-wrap .schedule-card {

  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;

}
.project-wizard-section .schedule-actions {
  margin-top: 1rem;
}
.project-wizard-section .schedule-error {

  color: #EF4444;
  font-size: 13px;
  margin-top: 8px;

}
.project-wizard-section .schedule-card .form-group {

  margin-bottom: 1rem;

}
.project-wizard-section .summary-row-val a {

  color: var(--brand);
  text-decoration: none;
  font-weight: 500;

}
.project-wizard-section .summary-row-val a:hover {

  text-decoration: underline;

}
/* ===== LOADING SPINNER ===== */.project-wizard-section .loading-wrap {

  text-align: center;
  padding: 3rem 1rem;

}
.project-wizard-section .spinner {

  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;

}
.project-wizard-section .loading-text {
 font-size: 14px; color: var(--text-2); 
}
/* ===== TRUST STRIP ===== */.project-wizard-section .trust-strip {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;

}
.project-wizard-section .trust-item {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;

}
.project-wizard-section .trust-num {

  font-family: var(--tpl-ff-heading, 'Archivo', Arial, sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);

}
.project-wizard-section .trust-desc {

  font-size: 12px;
  color: var(--text-2);
  font-weight: 400;

}
.project-wizard-section .trust-divider {

  width: 1px;
  height: 36px;
  background: var(--border);

}
/* ===== ANIMATIONS ===== */.project-wizard-section .step-content {

  min-height: 320px;

}
.project-wizard-section .step-content.step-changing {

  animation: stepChange 0.22s ease-out;
}
@keyframes stepChange {
  from { opacity: 0.85; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE — matches site breakpoints ===== */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-wizard-section .wizard-page-wrapper {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1500px){

  .project-wizard-section .wizard-page-wrapper {
    max-width: 1300px;
  }
} 
@media only screen and (max-width: 1199px) {
  .project-wizard-section .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-wizard-section .options-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 210px));
  }

  .project-wizard-section .options-grid--features {
    grid-template-columns: repeat(auto-fill, minmax(175px, 220px));
  }
}

@media only screen and (max-width: 991px) {
  .project-wizard-section .wizard-hero-bg__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.75) 100%);
  }

  .project-wizard-section .wizard-section-title {
    font-size: 36px;
  }

  .project-wizard-section .wizard-container {
    border-radius: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-wizard-section .wizard-section-title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .project-wizard-section {
    padding: 50px 0;
  }

  .project-wizard-section .wizard-hero-bg__image {
    background-position: center center;
  }

  .project-wizard-section .wizard-section-head {
    margin-bottom: 28px;
  }

  .project-wizard-section .wizard-section-title {
    font-size: 32px;
  }

  .project-wizard-section .wizard-section-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .project-wizard-section .wizard-container {
    border-radius: 12px;
  }

  .project-wizard-section .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .project-wizard-section .wizard-progress-wrap {
    padding: 16px 16px 0;
  }
}

@media only screen and (max-width: 575px) {
  .project-wizard-section {
    padding: 40px 0;
  }

  .project-wizard-section .wizard-section-title {
    font-size: 28px;
  }

  .project-wizard-section .step-title {
    font-size: 22px;
  }

  .project-wizard-section .step-body {
    padding: 18px 14px 22px;
  }

  .project-wizard-section .cards-grid > .type-card {
    padding: 12px 10px;
  }

  .project-wizard-section .cards-grid .card-label {
    font-size: 12px;
  }

  .project-wizard-section .options-grid,
  .project-wizard-section .options-grid--features {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    gap: 6px;
  }

  .project-wizard-section .option-card {
    padding: 8px 10px;
    min-height: 40px;
  }

  .project-wizard-section .option-card__label {
    font-size: 13px;
  }

  .project-wizard-section .stack-cards-grid {
    grid-template-columns: 1fr;
  }

  .project-wizard-section .result-mini-grid,
  .project-wizard-section .result-mini-grid--team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-wizard-section .nav-row .btn-next:only-child {
    width: auto;
    margin-left: auto;
  }

  .project-wizard-section .result-highlights {
    grid-template-columns: 1fr;
  }

  .project-wizard-section .result-mini-grid {
    grid-template-columns: 1fr;
  }

  .project-wizard-section .why-grid {
    grid-template-columns: 1fr;
  }

  .project-wizard-section .team-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 450px) {
  .project-wizard-section .wizard-section-title {
    font-size: 24px;
  }

  .project-wizard-section .cards-grid {
    gap: 8px;
  }

  .project-wizard-section .cards-grid > .type-card {
    padding: 10px 8px;
  }

  .project-wizard-section .cards-grid .card-icon i {
    font-size: 16px;
  }
}