:root {
  --primary-color: #2563eb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --background-alt: #fafafa;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-alt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.main-content {
  background: var(--background);
  min-height: 100vh;
}

.hero-section {
  text-align: center;
  padding: 100px 0 80px;
  background: var(--background);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.highlight-text {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 400;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.badge:hover {
  border-color: var(--primary-color);
}

.badge-icon {
  font-size: 16px;
}

.video-section {
  padding: 0 0 100px;
}

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

.video-wrapper {
  background: var(--background);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.video-player {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius-sm);
  background: #000;
}

.video-caption {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
}

.benefits-section {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.benefit-card {
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.2s ease;
}

.benefit-card:hover {
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 400;
}

.pricing-section {
  padding: 100px 0;
}

.pricing-card {
  background: var(--background);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.pricing-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--background-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.stat:hover {
  border-color: var(--primary-color);
}

.stat.highlight {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.stat.highlight .stat-number {
  color: white;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat.highlight .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-note {
  background: var(--background-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.pricing-note p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

.cta-section {
  padding: 100px 0;
}

.cta-card {
  background: var(--background);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  margin-bottom: 24px;
}

.cta-button:hover {
  background: #1d4ed8;
}

.button-icon {
  font-size: 16px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.feature {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.booking-section {
  padding: 100px 0;
}

.booking-card {
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.booking-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.booking-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.calendly-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer {
  background: var(--background);
  color: var(--text-secondary);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand {
  margin-bottom: 12px;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .video-player {
    height: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefit-card {
    padding: 32px 24px;
  }
  
  .pricing-card,
  .cta-card,
  .booking-card {
    padding: 32px 24px;
  }
  
  .pricing-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat {
    padding: 16px 12px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-card h2 {
    font-size: 2rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .booking-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .video-player {
    height: 250px;
  }
  
  .pricing-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-button {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .benefits-section,
  .pricing-section,
  .cta-section,
  .booking-section {
    padding: 60px 0;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

* {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, 
              box-shadow 0.15s ease, transform 0.15s ease;
}
