/* Version: 2.0.9 - Fixed form submission with PHP mail() fallback - Last updated: Feb 22, 2026 12:30 UTC */
/* SPARK4BRAND Discovery Forms - Apple-Level Design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Navy Blue & Gold Theme */
  --primary: #1e3a5f;
  --primary-dark: #152844;
  --secondary: #f5a623;
  --secondary-dark: #e8920e;
  
  --background: #0f1e33;
  --card: #ffffff;
  --text-primary: #1e3a5f;
  --text-secondary: #64748b;
  --text-white: #ffffff;
  
  --border: #e2e8f0;
  --input-bg: #f8fafc;
  --muted: #f1f5f9;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0f1e33 0%, #1a2f4a 50%, #0f1e33 100%);
  background-attachment: fixed;
  color: var(--text-white);
  min-height: 100vh;
  padding: 2rem 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease-out;
}

.logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);  /* Changed from white to navy for visibility on white card */
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.header p {
  font-size: 1.125rem;
  color: var(--text-secondary);  /* Changed from white to gray for visibility on white card */
  font-weight: 400;
}

/* Form Card */
.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.6s ease-out;
}

/* Progress Section */
.progress-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.progress-percent {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
}

.progress-bar-container {
  height: 8px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section */
.section {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.section.active {
  display: block;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

label .required {
  color: #ef4444;
  margin-left: 2px;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Slider */
.slider-container {
  padding: 1rem 0;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 1rem;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.slider-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
}

/* Buttons */
.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
}

.btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 50%, #E55A00 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  flex: 0 1 auto;
  min-width: 180px;
  margin-left: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF9A1A 0%, #FF7A10 50%, #F06000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  flex: 0 1 auto;
  min-width: 180px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateX(-3px);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 1rem 0.75rem;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .form-card {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .button-group {
    flex-direction: row;
    gap: 0.75rem;
  }
  
  .btn-prev,
  .btn-next,
  .btn[type="submit"] {
    flex: 1;
    min-width: auto;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

/* Loading State */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  display: none;
  background: #10b981;
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  animation: slideUp 0.5s ease-out;
}

.success-message.show {
  display: block;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Draft Restoration Modal */
.draft-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.draft-modal-overlay.active {
  opacity: 1;
}

.draft-modal {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.draft-modal-overlay.active .draft-modal {
  transform: scale(1);
}

.draft-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.draft-modal-title {
  color: #1e3a5f;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.draft-modal-text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.draft-modal-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.draft-btn {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.draft-btn-primary {
  background: linear-gradient(135deg, #FF8C00 0%, #E55A00 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.draft-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.5);
}

.draft-btn-secondary {
  background: #f1f5f9;
  color: #64748b;
}

.draft-btn-secondary:hover {
  background: #e2e8f0;
}

@media (min-width: 640px) {
  .draft-modal-buttons {
    flex-direction: row;
  }
  
  .draft-btn {
    width: auto;
    flex: 1;
  }
}

/* Mobile optimization */
@media (max-width: 640px) {
  .draft-modal {
    padding: 2rem 1.5rem;
  }
  
  .draft-modal-title {
    font-size: 1.5rem;
  }
  
  .draft-modal-text {
    font-size: 0.95rem;
  }
  
  .draft-modal-icon {
    width: 70px;
    height: 70px;
  }
}

/* ============================================
   INTRO SCREEN STYLES
   ============================================ */

.intro-screen {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.6s ease;
  border-top: 5px solid var(--secondary);
}

.intro-content {
  max-width: 700px;
  margin: 0 auto;
}

.intro-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-logo {
  width: 320px;
  max-width: 90%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.intro-icon-large {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.intro-icon-image {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.intro-3d-icon {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.intro-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.intro-screen h2,
.intro-title {
  color: var(--primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-lead {
  color: var(--text-secondary);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.intro-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.intro-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-text {
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.intro-sections {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--input-bg);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.intro-sections h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-sections ul {
  list-style: none;
  padding: 0;
}

.intro-sections li {
  padding: 0.75rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.intro-sections li:last-child {
  border-bottom: none;
}

.intro-sections strong {
  color: var(--primary);
  font-weight: 600;
}

.intro-next-steps {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.intro-next-steps h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-next-steps p {
  color: var(--text-primary);
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.btn-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}

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

/* Mobile adjustments for intro screen */
@media (max-width: 768px) {
  .intro-screen {
    padding: 2rem 1.5rem;
  }

  .intro-screen h2 {
    font-size: 1.5rem;
  }

  .intro-lead {
    font-size: 1rem;
  }

  .intro-details {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }

  .intro-sections,
  .intro-next-steps {
    padding: 1.5rem;
  }
}


/* Custom 3D Icon Styling */
.intro-icon-image {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-3d-icon {
  width: 200px;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .intro-3d-icon {
    width: 150px;
    height: 150px;
  }
}

/* Back Button on Intro Screen */
.back-button-intro {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.back-button-intro:hover {
  background: var(--muted);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateX(-3px);
}

.back-button-intro i {
  font-size: 1rem;
}

/* ========================================
   CRITICAL: Hide header when form is active
   ======================================== */

/* Hide the navy header completely when intro screen is showing */
#introScreen:not([style*="display: none"]) ~ .header,
body:has(#introScreen:not([style*="display: none"])) .header {
  display: none !important;
}

/* Show header only when main form is visible */
#mainForm:not([style*="display: none"]) ~ .header {
  display: block !important;
}

/* Alternative: Hide header when intro is visible */
.header {
  display: none;
}

#mainForm:not([style*="display: none"]) .header,
body:has(#mainForm:not([style*="display: none"])) > .container > .header {
  display: block !important;
}

/* FORM TOOLBAR */
.form-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 1rem; background: #f8f9fc; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.form-toolbar-group { display: flex; align-items: center; gap: 0.4rem; }
.form-toolbar-label { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-right: 0.25rem; }
.currency-btn, .lang-switch-btn { background: transparent; border: 1.5px solid var(--border); color: var(--text-secondary); padding: 4px 10px; border-radius: 4px; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.currency-btn:hover, .lang-switch-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.currency-btn.active, .lang-switch-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.btn-prev { display: inline-flex !important; align-items: center; gap: 0.4rem; }

/* ── Intro Preferences: Language & Currency Selector ────────────────────── */
.intro-preferences {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #152844 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}
.intro-preferences::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.intro-preferences-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.intro-preferences-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FF8C00, #E55A00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.intro-preferences-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.01em;
}
.intro-preferences-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}
.intro-preferences-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.intro-pref-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.intro-pref-label {
  color: rgba(212, 175, 55, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 80px;
  flex-shrink: 0;
}
.intro-pref-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.intro-lang-pill,
.intro-currency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.intro-lang-pill:hover,
.intro-currency-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}
.intro-lang-pill.active,
.intro-currency-pill.active {
  background: linear-gradient(135deg, #FF8C00 0%, #FF9A1A 50%, #E55A00 100%) !important;
  border-color: #f5a623 !important;
  border-width: 2.5px !important;
  color: #1a2f4e !important;
  font-weight: 800 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35), 0 6px 18px rgba(212, 175, 55, 0.5) !important;
  transform: translateY(-2px) scale(1.06) !important;
}
.pill-flag {
  font-size: 1rem;
  line-height: 1;
}
.pill-text {
  line-height: 1;
}
.intro-pref-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.25), transparent);
  margin: 0;
}
@media (max-width: 600px) {
  .intro-pref-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .intro-pref-label {
    min-width: unset;
  }
}
