/* ===== CSS Variables ===== */
:root {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --accent-fresh: #10b981;
  --accent-vitality: #f97316;
  --accent-calm: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --accent-gradient-hover: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  --smoke-dark: #374151;
  --smoke-light: #9ca3af;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

[data-theme="dark"] {
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f26;
  --bg-card: #1a1f26;
  --text-primary: #f0f3f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -1px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -2px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: var(--accent-fresh);
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* ===== Smoke Particles Background ===== */
.smoke-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.smoke-particle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 163, 175, 0.08) 0%, transparent 70%);
  animation: floatSmoke 20s ease-in-out infinite;
}

.smoke-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.smoke-particle:nth-child(2) { left: 60%; top: 10%; animation-delay: -5s; width: 400px; height: 400px; }
.smoke-particle:nth-child(3) { left: 30%; top: 60%; animation-delay: -10s; }
.smoke-particle:nth-child(4) { left: 70%; top: 50%; animation-delay: -15s; width: 350px; height: 350px; }
.smoke-particle:nth-child(5) { left: 85%; top: 30%; animation-delay: -7s; }

@keyframes floatSmoke {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(30px, -50px) scale(1.1); opacity: 0.3; }
  50% { transform: translate(-20px, -100px) scale(1.2); opacity: 0.5; }
  75% { transform: translate(50px, -50px) scale(1.1); opacity: 0.3; }
}

/* ===== Utility Classes ===== */
.hidden { display: none !important; }

.view {
  position: relative;
  z-index: 1;
}

/* ===== Auth View ===== */
#auth-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  width: 100%;
  align-items: center;
}

.auth-brand {
  animation: fadeInUp 0.6s ease forwards;
}

.brand-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.auth-brand h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-icon {
  font-size: 1.5rem;
}

.auth-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.auth-tab:hover {
  color: var(--text-secondary);
  background: var(--bg-primary);
}

.auth-tab.active {
  color: var(--text-primary);
  background: var(--bg-primary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 2px solid transparent;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-fresh);
  background: var(--bg-secondary);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
  background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--accent-fresh);
  background: var(--bg-card);
  padding: 0 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-error {
  color: var(--danger);
  font-size: 0.875rem;
  min-height: 20px;
}

.btn-primary {
  position: relative;
  padding: 16px 24px;
  border: none;
  background: var(--accent-gradient);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-primary.loading .btn-text {
  opacity: 0;
}

.btn-primary.loading .btn-loader {
  opacity: 1;
}

.btn-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-loader::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-demo {
  padding: 12px;
  border: 2px solid var(--text-muted);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-demo:hover {
  border-color: var(--accent-fresh);
  color: var(--accent-fresh);
}

/* ===== Dashboard ===== */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: var(--bg-card);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.dashboard-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}

/* ===== Hero Section ===== */
.hero-section {
  text-align: center;
  padding: 48px 0 64px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.days-clean-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.smoke-break-icon {
  animation: breathe 4s ease-in-out infinite;
}

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

.smoke-break-icon .smoke {
  animation: smokeRise 3s ease-in-out infinite;
  opacity: 0;
}

.smoke-break-icon .smoke:nth-child(1) { animation-delay: 0s; }
.smoke-break-icon .smoke:nth-child(2) { animation-delay: 1s; }
.smoke-break-icon .smoke:nth-child(3) { animation-delay: 2s; }

@keyframes smokeRise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

.days-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.days-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: countPulse 2s ease-in-out infinite;
}

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

.days-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.time-clean {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== Stats Section ===== */
.stats-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  font-size: 2.5rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ===== Health Timeline ===== */
.health-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.health-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.health-timeline::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-fresh), var(--accent-calm));
  border-radius: 1px;
}

.health-item {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  position: relative;
  opacity: 0;
  animation: slideIn 0.4s ease forwards;
}

.health-item:nth-child(1) { animation-delay: 0.1s; }
.health-item:nth-child(2) { animation-delay: 0.15s; }
.health-item:nth-child(3) { animation-delay: 0.2s; }
.health-item:nth-child(4) { animation-delay: 0.25s; }
.health-item:nth-child(5) { animation-delay: 0.3s; }
.health-item:nth-child(6) { animation-delay: 0.35s; }
.health-item:nth-child(7) { animation-delay: 0.4s; }
.health-item:nth-child(8) { animation-delay: 0.45s; }
.health-item:nth-child(9) { animation-delay: 0.5s; }
.health-item:nth-child(10) { animation-delay: 0.55s; }
.health-item:nth-child(11) { animation-delay: 0.6s; }
.health-item:nth-child(12) { animation-delay: 0.65s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.health-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.health-item.achieved .health-marker {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.health-item.current .health-marker {
  background: var(--warning);
  color: white;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.health-item.future .health-marker {
  background: var(--bg-primary);
  color: var(--text-muted);
  border: 2px dashed var(--text-muted);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.1); }
}

.health-content {
  flex: 1;
  padding-top: 4px;
}

.health-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-fresh);
  margin-bottom: 2px;
}

.health-item.future .health-time,
.health-item.current .health-time {
  color: var(--text-muted);
}

.health-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.health-item.future .health-title,
.health-item.current .health-title {
  color: var(--text-secondary);
}

.health-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Milestones ===== */
.milestones-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.milestone-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.milestone-card.achieved {
  background: var(--accent-gradient);
  color: white;
}

.milestone-card.achieved:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.milestone-card.locked {
  opacity: 0.5;
  filter: grayscale(0.5);
}

.milestone-card.locked:hover {
  opacity: 0.7;
}

.milestone-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.milestone-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.milestone-earned {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ===== Chart Section ===== */
.chart-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.chart-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.chart-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.chart-tab {
  padding: 8px 16px;
  border: none;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.chart-tab:hover {
  background: var(--bg-secondary);
}

.chart-tab.active {
  background: var(--accent-gradient);
  color: white;
}

#progress-chart {
  max-height: 300px;
}

/* ===== Quote Section ===== */
.quote-section {
  padding: 48px 0;
  text-align: center;
  animation: fadeInUp 0.6s ease 0.5s forwards;
  opacity: 0;
}

.quote {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent-fresh);
  opacity: 0.2;
  line-height: 1;
}

.quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease forwards;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close {
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-secondary);
}

.settings-form .form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid transparent;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
}

.settings-form .form-group input:focus {
  outline: none;
  border-color: var(--accent-fresh);
}

.settings-actions {
  margin-top: 8px;
}

.settings-actions .btn-primary {
  width: 100%;
}

/* ===== Celebration ===== */
.celebration {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.celebration-content {
  text-align: center;
  animation: celebrationIn 0.5s ease forwards;
}

@keyframes celebrationIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.celebration-icon {
  font-size: 6rem;
  display: block;
  margin-bottom: 16px;
  animation: bounce 0.6s ease infinite;
}

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

.celebration-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.celebration-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti::before,
.confetti::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  animation: confettiFall 3s ease-in-out infinite;
}

.confetti::before {
  left: 20%;
  background: var(--accent-fresh);
  animation-delay: 0s;
}

.confetti::after {
  left: 80%;
  background: var(--accent-vitality);
  animation-delay: 0.5s;
}

@keyframes confettiFall {
  0% { top: -10px; transform: rotate(0deg); opacity: 1; }
  100% { top: 100vh; transform: rotate(720deg); opacity: 0; }
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 450px;
  }

  .auth-brand {
    text-align: center;
  }

  .auth-features {
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-timeline::before {
    left: 16px;
  }

  .health-item {
    padding-left: 52px;
  }

  .health-marker {
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 600px) {
  .dashboard-main {
    padding: 20px;
  }

  .dashboard-header {
    padding: 12px 16px;
  }

  .days-number {
    font-size: 4.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .milestone-card {
    padding: 16px;
  }

  .milestone-icon {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .quote {
    padding: 24px;
  }

  .quote p {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
