/* Landing Page Styles */
/* Brand Colors */
:root {
  --brand-green: #046C4E;
  --brand-green-light: #059669;
  --brand-green-dark: #034E3D;
  --brand-green-soft: #D1FAE5;
  
  --brand-navy: #102542;
  --brand-navy-light: #1E3A5F;
  --brand-navy-dark: #0A1628;
  
  --brand-gold: #F2C14E;
  --brand-gold-light: #FBBF24;
  --brand-gold-dark: #B45309;
  --brand-gold-soft: #FEF3C7;
  
  --text-primary: #102542;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-soft: #F3F4F6;
  
  --border-color: #E5E7EB;
  --border-light: #F3F4F6;
  
  --font-display: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Landing Page Base */
.landing-page {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .landing-container {
    padding: 0 2rem;
  }
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.landing-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .landing-nav-container {
    padding: 1rem 2rem;
  }
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.landing-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-green);
  letter-spacing: 0.5px;
}

.landing-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .landing-nav-links {
    display: flex;
  }
}

.landing-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.landing-nav-link:hover {
  color: var(--brand-green);
}

.landing-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border: none;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 992px) {
  .landing-mobile-toggle {
    display: none;
  }
}

.landing-mobile-toggle:hover {
  background: var(--border-color);
}

.landing-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.landing-mobile-menu.active {
  display: flex;
}

@media (min-width: 992px) {
  .landing-mobile-menu {
    display: none !important;
  }
}

.landing-mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.landing-mobile-link:hover {
  background: var(--bg-soft);
}

/* Buttons */
.btn-landing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(4, 108, 78, 0.3);
}

.btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 108, 78, 0.4);
  color: white;
}

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

.btn-landing-primary i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-landing-primary:hover i {
  transform: translateX(3px);
}

.btn-landing-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-landing-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: rgba(4, 108, 78, 0.04);
}

.btn-landing-outline i {
  font-size: 1.125rem;
}

.btn-landing-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-landing-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--brand-green-dark);
}

.btn-landing-white i {
  transition: transform 0.2s ease;
}

.btn-landing-white:hover i {
  transform: translateX(3px);
}

.btn-landing-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.landing-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  overflow: hidden;
}

@media (min-width: 992px) {
  .landing-hero {
    padding: 10rem 0 6rem;
  }
  
  .landing-hero .landing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.landing-hero .landing-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-decoration {
  position: absolute;
  border-radius: 50%;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(4, 108, 78, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 193, 78, 0.1) 0%, transparent 70%);
  top: 20%;
  right: -50px;
}

.hero-decoration-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 37, 66, 0.06) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-highlight {
  position: relative;
  color: var(--brand-green);
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(242, 193, 78, 0.4);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Image / Dashboard Preview */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(4, 108, 78, 0.1) 0%, rgba(242, 193, 78, 0.1) 100%);
  border-radius: 32px;
  z-index: -1;
}

.hero-dashboard-preview {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(16, 37, 66, 0.15);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-logo {
  height: 24px;
  width: auto;
}

.dashboard-brand span {
  font-weight: 600;
  color: var(--brand-green);
}

.dashboard-title {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dashboard-content {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

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

.dashboard-card {
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.dashboard-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.dashboard-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-card-value.text-success {
  color: var(--brand-green);
}

.dashboard-profession {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profession-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-gold-soft) 0%, rgba(242, 193, 78, 0.3) 100%);
}

.profession-info {
  flex: 1;
}

.profession-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
}

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

.metric-item i {
  font-size: 1rem;
}

.metric-item i.text-danger {
  color: #EF4444;
}

.metric-item i.text-warning {
  color: var(--brand-gold);
}

.metric-bar {
  flex: 1;
  height: 8px;
  background: var(--border-color);
  border-radius: 100px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
  border-radius: 100px;
}

.metric-fill-warning {
  background: linear-gradient(90deg, var(--brand-gold-dark) 0%, var(--brand-gold) 100%);
}

.metric-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 60px;
}

.dashboard-investments {
  grid-column: 1 / -1;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.investment-header {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.investment-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.investment-item:last-child {
  border-bottom: none;
}

.investment-item span {
  font-size: 0.875rem;
}

.investment-item span:first-child {
  color: var(--text-secondary);
}

.investment-item span.text-success {
  color: var(--brand-green);
  font-weight: 600;
}

/* Social Proof Section */
.landing-social-proof {
  padding: 3rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .social-proof-logos {
    gap: 3rem;
  }
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.social-proof-item i {
  font-size: 1.25rem;
  color: var(--brand-navy);
  opacity: 0.7;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: transparent;
  color: var(--brand-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Features Section */
.landing-features {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 37, 66, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card-primary .feature-icon {
  background: linear-gradient(135deg, var(--brand-green-soft) 0%, rgba(4, 108, 78, 0.2) 100%);
  color: var(--brand-green);
}

.feature-card-gold .feature-icon {
  background: linear-gradient(135deg, var(--brand-gold-soft) 0%, rgba(242, 193, 78, 0.3) 100%);
  color: var(--brand-gold-dark);
}

.feature-card-navy .feature-icon {
  background: linear-gradient(135deg, rgba(16, 37, 66, 0.1) 0%, rgba(16, 37, 66, 0.2) 100%);
  color: var(--brand-navy);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* How It Works Section */
.landing-how-it-works {
  padding: 5rem 0;
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 8px 24px rgba(4, 108, 78, 0.08);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: white;
  border-radius: 14px;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Section */
.landing-benefits {
  padding: 5rem 0;
  background: var(--bg-white);
}

.benefits-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .benefits-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.benefits-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .benefits-title {
    font-size: 2.25rem;
  }
}

.benefits-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
}

.benefits-list li i {
  color: var(--brand-green);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefits-list li span {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefits-visual {
  order: -1;
}

@media (min-width: 992px) {
  .benefits-visual {
    order: 0;
  }
}

.benefit-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-visual-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(16, 37, 66, 0.06);
  transition: all 0.3s ease;
}

.benefit-visual-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(16, 37, 66, 0.1);
}

.bvc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bvc-icon-green {
  background: var(--brand-green-soft);
  color: var(--brand-green);
}

.bvc-icon-gold {
  background: var(--brand-gold-soft);
  color: var(--brand-gold-dark);
}

.bvc-icon-navy {
  background: rgba(16, 37, 66, 0.1);
  color: var(--brand-navy);
}

.bvc-content {
  flex: 1;
}

.bvc-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.bvc-description {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Section */
.landing-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.landing-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-brand .landing-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 300px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.375rem 0;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Waitlist Page */
.waitlist-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.waitlist-content {
  max-width: 480px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--brand-green);
}

.back-link i {
  transition: transform 0.2s ease;
}

.back-link:hover i {
  transform: translateX(-3px);
}

.waitlist-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .waitlist-title {
    font-size: 3rem;
  }
}

.waitlist-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.waitlist-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(16, 37, 66, 0.08);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-green);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(4, 108, 78, 0.1);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.waitlist-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.waitlist-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.waitlist-feature i {
  color: var(--brand-green);
  font-size: 1rem;
}

.legal-page {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(16, 37, 66, 0.06);
  padding: 2rem;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .legal-content {
    padding: 4rem;
  }
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .legal-header h1 {
    font-size: 2.5rem;
  }
}

.legal-updated {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .legal-section h2 {
    font-size: 1.375rem;
  }
}

.legal-section h2 i {
  color: var(--brand-gold);
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-section ul li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
}

.legal-section ul li strong {
  color: var(--text-primary);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Utility */
.w-100 {
  width: 100%;
}

.text-success {
  color: var(--brand-green) !important;
}

.text-warning {
  color: var(--brand-gold) !important;
}

.text-danger {
  color: #EF4444 !important;
}

