/* =============================================================
   DESIGN SYSTEM — Diagnóstico de Risco do Seu Negócio
   ============================================================= */

/* --- Tokens --- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #111111;
  --bg-card: #111111;
  --text-primary: #F5F2EA;
  --text-secondary: #C9C1B3;
  --text-placeholder: #8F8778;
  --gold: #C9A24A;
  --gold-hover: #E0C16A;
  --gold-bg-selected: #1A1500;
  --border: #2A2A2A;
  --border-active: #C9A24A;
  --error-color: #FCA5A5;

  /* Risk colors */
  --risk-green: #22C55E;
  --risk-green-yellow: #84CC16;
  --risk-yellow: #EAB308;
  --risk-orange: #F97316;
  --risk-red: #EF4444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-hover); }

/* =============================================================
   SCREENS
   ============================================================= */
.screen {
  display: none;
  min-height: 100vh;
}
.screen.active {
  display: flex;
  flex-direction: column;
}

/* =============================================================
   HERO SCREEN
   ============================================================= */
.hero-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-header {
  padding: 32px 0 0;
  display: flex;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  background: var(--gold-bg-selected);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 48px;
  gap: 0;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-info-icon {
  font-size: 16px;
}

.hero-footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.hero-footer p {
  font-size: 13px;
  color: var(--text-placeholder);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #050505;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: fit-content;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 162, 74, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  background: var(--border);
  color: var(--text-placeholder);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-large {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-arrow {
  font-size: 18px;
  transition: transform var(--transition);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(201, 162, 74, 0.08);
}

/* =============================================================
   FORM SCREEN
   ============================================================= */
.form-wrapper {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.form-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.form-footer p {
  font-size: 13px;
  color: var(--text-placeholder);
}

/* --- Progress Bar --- */
.progress-bar-container {
  padding: 24px 0 20px;
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  z-index: 10;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.progress-bar-track {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.progress-label span {
  font-size: 12px;
  color: var(--text-placeholder);
  font-weight: 500;
}
#progress-pct {
  color: var(--gold);
}

/* --- Form Blocks --- */
.form-block {
  display: none;
  animation: fadeIn 0.3s ease;
}
.form-block.active {
  display: block;
}

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

.block-header {
  margin-bottom: 36px;
}

.block-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-placeholder);
  margin-bottom: 12px;
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.block-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

/* --- Questions --- */
.question-group {
  margin-bottom: 36px;
}

.question-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.5;
}
.question-label.required::after {
  content: ' *';
  color: var(--gold);
}

.label-note {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-placeholder);
}

.field-hint {
  display: block;
  font-size: 13px;
  color: var(--text-placeholder);
  margin-top: 8px;
  font-style: italic;
}

.field-error {
  display: block;
  font-size: 13px;
  color: var(--error-color);
  margin-top: 8px;
  min-height: 20px;
  transition: opacity var(--transition);
}

/* --- Text Inputs --- */
.text-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.text-input::placeholder {
  color: var(--text-placeholder);
}
.text-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.12);
}
.text-input.has-error {
  border-color: var(--risk-red);
}

/* Remove number input arrows */
.text-input[type="number"]::-webkit-inner-spin-button,
.text-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* --- Chips Grid --- */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  text-align: left;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}
.chip.selected {
  border-color: var(--gold);
  background: var(--gold-bg-selected);
  color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--gold);
}
.chip.chip-exclusive {
  width: 100%;
}


/* --- Pain Meter --- */
.pain-meter {
  margin-top: 14px;
  display: none;
}
.pain-meter.visible {
  display: block;
}
.pain-meter-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pain-meter-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.3s ease, background 0.3s ease;
  width: 0%;
  background: var(--risk-green);
}
.pain-meter-label {
  font-size: 12px;
  color: var(--text-placeholder);
  font-weight: 500;
}

/* --- Sliders --- */
.slider-container {
  margin-top: 4px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.slider-labels span {
  font-size: 12px;
  color: var(--text-placeholder);
  text-align: center;
  flex: 1;
}

.risk-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  transition: background var(--transition);
}

.risk-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--gold);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.risk-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.risk-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--gold);
}

.slider-value-display {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  min-height: 22px;
  transition: color var(--transition);
}

/* --- Conditional Fields --- */
.conditional-field {
  margin-top: 12px;
}
.conditional-field.hidden {
  display: none;
}

/* --- Form Navigation --- */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

/* =============================================================
   TEST HELPER (Parte T)
   ============================================================= */
.test-helper-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--bg-secondary);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  min-width: 200px;
}

.test-helper-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-placeholder);
}

.test-select {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.test-select option {
  background: var(--bg-primary);
}

.test-btn {
  background: var(--gold);
  color: #050505;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}
.test-btn:hover {
  background: var(--gold-hover);
}

/* --- Textarea --- */
.textarea-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  min-height: 100px;
}
.textarea-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.12);
}

/* --- Phone input group --- */
.phone-input-group {
  display: flex;
  gap: 10px;
}
.ddi-select {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  cursor: pointer;
}
.ddi-select:focus {
  border-color: var(--gold);
}
.phone-input {
  flex: 1;
}

/* --- Consent Group --- */
.consent-group {
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
}

.consent-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  user-select: none;
}

.consent-container input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}

.consent-container:hover input ~ .checkmark {
  border-color: var(--gold);
}

.consent-container input:checked ~ .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.consent-container input:checked ~ .checkmark::after {
  content: '✓';
  color: #050505;
  font-size: 12px;
  font-weight: 900;
}

.consent-text {
  line-height: 1.5;
}

/* --- Submit Error Box --- */
.submit-error-box {
  margin-top: 24px;
  padding: 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1.5px solid var(--risk-red);
  border-radius: var(--radius-md);
  color: var(--error-color);
  font-size: 14px;
  line-height: 1.5;
}

/* =============================================================
   RESULT SCREEN
   ============================================================= */
.result-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.result-content {
  flex: 1;
  padding: 24px 0 60px;
}

.overall-index-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 48px;
}

.overall-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.overall-score-display {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.overall-range-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.overall-message {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.indicators-section {
  margin-bottom: 56px;
}

.indicators-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.indicators-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.indicator-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicator-item.highlighted {
  border-left: 4px solid var(--indicator-color);
}

.indicator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.indicator-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.indicator-score {
  font-size: 30px;
  font-weight: 700;
}

.indicator-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.cta-section {
  background: var(--gold-bg-selected);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.btn-whatsapp {
  width: 100%;
  justify-content: center;
}

/* =============================================================
   NEW LANDING PAGE HERO STYLES
   ============================================================= */
.hero-mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65vh;
  z-index: 0;
  overflow: hidden;
}

.hero-mobile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(125%) brightness(0.85);
  mix-blend-mode: luminosity;
  opacity: 0.55;
}

.hero-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(5, 5, 5, 0.95) 60%, rgba(5, 5, 5, 0.3) 100%);
}

.hero-header-section {
  position: relative;
  z-index: 10;
  width: 100%;
}

.header-container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 16px;
  display: flex;
  justify-content: flex-start;
}

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

.hero-main-section {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 64px;
}

.hero-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 162, 74, 0.25);
  background: rgba(201, 162, 74, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}

.icon-clock {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.hero-title-new {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc-1 {
  font-size: 17.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 620px;
}

.hero-desc-2 {
  font-size: 13.5px;
  color: var(--text-placeholder);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.btn-start-new {
  width: 100%;
}

.hero-right-col {
  display: none; /* Hidden on mobile */
  justify-content: flex-end;
  align-items: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0) 50%);
  z-index: 1;
}

.hero-desktop-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(125%) brightness(0.9);
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

.hero-features-section {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 64px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-icon-box svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-footer-new {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 40px 24px;
  text-align: center;
}

.hero-footer-new p {
  font-size: 13.5px;
  color: var(--text-placeholder);
}

/* Desktop Styles Breakpoint */
@media (min-width: 1024px) {
  .hero-mobile-bg {
    display: none;
  }
  
  .hero-main-section {
    padding-top: 60px;
    padding-bottom: 96px;
    background: radial-gradient(ellipse at top right, rgba(201, 162, 74, 0.08) 0%, rgba(5, 5, 5, 0) 65%);
  }

  .hero-grid-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .hero-right-col {
    display: flex;
  }

  .btn-start-new {
    width: auto;
  }

  .features-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

/* Tablet / Mobile tweaks */
@media (max-width: 1023px) {
  .hero-left-col {
    align-items: center;
    text-align: center;
    margin-top: 15vh;
  }
  
  .hero-badge-new {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-desc-1, .hero-desc-2 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-col {
    align-items: center;
    text-align: center;
  }
}

/* =============================================================
   RESPONSIVE (FOR FORM SCREEN)
   ============================================================= */
@media (max-width: 640px) {
  .form-wrapper {
    padding: 0 16px 60px;
  }
  .hero-container {
    padding: 0 16px;
  }
  .chips-grid {
    gap: 8px;
  }
  .chip {
    padding: 9px 14px;
    font-size: 13px;
  }
  .form-nav {
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    flex: 1;
    justify-content: center;
  }
  .slider-labels span {
    font-size: 10px;
  }
}

