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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #0066cc;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #0066cc;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.btn-secondary {
  background: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.btn-secondary:hover {
  background: #f0f7ff;
}

.mission {
  background: #f8f9fa;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #4a4a4a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 32px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature p {
  color: #4a4a4a;
}

.impact {
  padding: 80px 24px;
}

.impact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.impact-content p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 20px;
  max-width: 800px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 500;
}

.impact-image {
  margin-top: 40px;
}

.impact-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #0066cc;
}

.cta-section .btn-primary:hover {
  background: #f0f7ff;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 32px 24px;
  text-align: center;
}

.footer p {
  opacity: 0.8;
}

.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #4a4a4a;
}

.content-section {
  padding: 80px 24px;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.content-block h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.content-block p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.test-framework {
  max-width: 1000px;
  margin: 60px auto;
}

.test-framework h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.framework-card {
  background: #f8f9fa;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.framework-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.framework-card p {
  color: #4a4a4a;
  font-size: 16px;
}

.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.phase {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
}

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

.phase-label {
  background: #0066cc;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.phase-budget {
  font-weight: 600;
  color: #0066cc;
}

.phase h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

.phase li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.phase li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.image-section {
  max-width: 1000px;
  margin: 60px auto;
}

.image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-section {
  padding: 60px 24px;
  background: #f8f9fa;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.form-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.form-content p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: #4a4a4a;
}

.benefits-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.form-image {
  margin-top: 32px;
}

.form-image img {
  width: 100%;
  border-radius: 8px;
}

.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.btn-full {
  width: 100%;
}

.form-note {
  font-size: 14px;
  color: #6a6a6a;
  text-align: center;
  margin-top: -8px;
}

.testimonial-section {
  padding: 80px 24px;
  background: #ffffff;
}

.testimonial-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #4a4a4a;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .nav {
    gap: 16px;
  }
  
  .form-layout {
    grid-template-columns: 1fr;
  }
  
  .section-header h2,
  .page-hero h1 {
    font-size: 32px;
  }
}