:root {
  /* Colors - Primary (Coral/Salmon) */
  --primary-color: #fb9678;
  --primary-hover: #e8866a;
  --primary-light: #fce6ed;

  /* Status Colors */
  --accent-color: #4ade80; /* Success */
  --error-color: #f87171;
  --warning-color: #fbbf24;

  /* Neutrals & Surfaces (Dark - Default) */
  --bg-dark: #0f172a; /* Slate-950 */
  --bg-card: #1e293b;  /* Slate-800 */
  --border-color: #334155;   /* Slate-700 */
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --white: #ffffff;
  
  /* Input & Tiles */
  --input-bg: rgba(0, 0, 0, 0.2);
  --badge-bg: rgba(251, 150, 120, 0.1);
  --tile-bg: rgba(255, 255, 255, 0.03);
  --tile-hover: rgba(255, 255, 255, 0.08);

  /* Radius Patterns */
  --radius-sm: 4px;
  --radius-md: 7px;
  --radius-lg: 15px;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;

  --font-main: "Outfit", sans-serif;
  --border-radius: var(--radius-3xl);
  
  /* Shadows */
  --shadow-soft: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px, rgba(0, 0, 0, 0.1) 0px 8px 16px -4px;
  --shadow-hover: rgba(145, 158, 171, 0.24) 0px 0px 2px 0px, rgba(145, 158, 171, 0.24) 0px 20px 40px -4px;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --border-color: rgba(145, 158, 171, 0.2);
  --text-main: #0f172a;
  --text-muted: #637381;
  
  --input-bg: #fbfcfd;
  --badge-bg: rgba(251, 150, 120, 0.1);
  --tile-bg: #fbfcfd;
  --tile-hover: #f1f5f9;
  
  --shadow-soft: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.08) 0px 8px 16px -4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  transition: var(--transition);
}

/* Background Blurs */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
.bg-shape-1 {
  top: -10%;
  right: -5%;
  width: 60vmax;
  height: 60vmax;
  background: var(--primary-color);
}
.bg-shape-2 {
  bottom: -10%;
  left: -10%;
  width: 50vmax;
  height: 50vmax;
  background: var(--primary-hover);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.main-header {
  padding: 32px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-main);
}
.logo .logo-icon { color: var(--primary-color); }
.logo span span { color: var(--primary-color); }

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  text-align: center;
  padding: 60px 0;
}

.hero-container {
  max-width: 850px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--badge-bg);
  color: var(--primary-color);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-2xl);
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

/* Wizard */
.wizard-wrapper {
  width: 100%;
  max-width: 650px;
}

.gloss-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-3xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 40px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: var(--radius-xl);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-dark);
}

.tile-radio {
  cursor: pointer;
}
.tile-radio input {
  display: none;
}
.tile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background: var(--tile-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: var(--transition);
}
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.tile-radio input:checked + .tile-content {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-hover);
}

.light-theme .tile-radio input:checked + .tile-content {
    background: rgba(251, 150, 120, 0.1);
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

/* ── Utilities ───────────────────────────────────────────── */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 32px;
  transition: var(--transition);
}

.hidden { display: none !important; }
