/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #151515;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2BA8C6 0%, #2C244A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #2C244A 0%, #2BA8C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-text {
  color: #2C244A;
  font-weight: 500;
  background: transparent;
}

.btn-text:hover {
  color: #2BA8C6;
  background: rgba(255, 255, 255, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, #2BA8C6 0%, #2C244A 100%);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: #2C244A;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-white {
  background: white;
  color: #2C244A;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-blob-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: linear-gradient(135deg, rgba(43, 168, 198, 0.1) 0%, rgba(44, 36, 74, 0.1) 100%);
  animation-delay: 0s;
}

.hero-blob-2 {
  top: 160px;
  right: 40px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  animation-delay: 1.4s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(43, 168, 198, 0.1) 0%, rgba(44, 36, 74, 0.1) 100%);
  border: 1px solid rgba(43, 168, 198, 0.2);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.hero-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #2C244A;
}

.hero-title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.title-line {
  display: block;
  color: #151515;
}

.title-gradient {
  background: linear-gradient(135deg, #2BA8C6 0%, #2C244A 50%, #2BA8C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #5A5A5A;
  max-width: 448px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-group {
  display: flex;
  margin-right: 8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.avatar-1 { background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%); }
.avatar-2 { background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 100%); }
.avatar-3 { background: linear-gradient(135deg, #34d399 0%, #10b981 100%); }
.avatar-4 { background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%); }

.early-access-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  margin-right: 8px;
}

.early-access-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #059669;
}

.hero-social-proof .social-proof-item:first-child span:last-child {
  font-size: 14px;
  color: #5A5A5A;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}

/* Hero Visual */
.hero-visual {
  margin-left: 40px;
}

.demo-window {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.demo-window::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(43, 168, 198, 0.2) 0%, rgba(44, 36, 74, 0.2) 100%);
  border-radius: 32px;
  filter: blur(32px);
  z-index: -1;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dot-red { background: #f87171; }
.demo-dot-yellow { background: #fbbf24; }
.demo-dot-green { background: #34d399; }

.demo-url {
  flex: 1;
  background: #f3f4f6;
  border-radius: 9999px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
  color: #6b7280;
}

.demo-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
}

.demo-alert-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left: 4px solid #f87171;
}

.demo-alert-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.demo-alert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.demo-alert-danger .demo-alert-icon {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: white;
}

.demo-alert-success .demo-alert-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: white;
  font-size: 12px;
}

.demo-alert-title {
  font-weight: 600;
  color: #991b1b;
  font-size: 14px;
}

.demo-alert-subtitle {
  font-size: 12px;
  color: #dc2626;
}

.demo-alert-success .demo-alert-title {
  color: #166534;
}

.demo-alert-success .demo-alert-subtitle {
  color: #16a34a;
}

.demo-email {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 16px;
}

.demo-email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.demo-email-from {
  font-weight: 500;
  color: #111827;
}

.demo-email-badge {
  font-size: 10px;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 9999px;
}

.demo-email-body {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.demo-email-actions {
  display: flex;
  gap: 8px;
}

.demo-btn {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  border: none;
  cursor: pointer;
}

.demo-btn-danger {
  background: #fee2e2;
  color: #991b1b;
}

.demo-btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(43, 168, 198, 0.1) 0%, rgba(44, 36, 74, 0.1) 100%);
  border: 1px solid rgba(43, 168, 198, 0.2);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.section-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #2C244A;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 24px;
}

.section-description {
  font-size: 20px;
  color: #5A5A5A;
  max-width: 768px;
  margin: 0 auto;
}

/* How It Works Section */
.section-how-it-works {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.step-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-icon-1 { background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%); }
.step-icon-2 { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }
.step-icon-3 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.step-number {
  font-size: 32px;
  font-weight: bold;
  color: #e5e7eb;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
}

.step-description {
  color: #5A5A5A;
  line-height: 1.6;
}

/* Features Section */
.section-features {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-1 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.feature-icon-2 { background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%); }
.feature-icon-3 { background: linear-gradient(135deg, #34d399 0%, #059669 100%); }
.feature-icon-4 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.feature-icon-5 { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.feature-icon-6 { background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%); }

.feature-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.feature-description {
  color: #5A5A5A;
  line-height: 1.6;
}

/* Waitlist Section */
.section-waitlist {
  background: linear-gradient(135deg, #2C244A 0%, #2C244A 50%, #2BA8C6 100%);
  color: white;
  position: relative;
}

.section-waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.waitlist-content {
  position: relative;
  z-index: 1;
}

.waitlist-header {
  text-align: center;
  margin-bottom: 64px;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.waitlist-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #22c55e;
}

.waitlist-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  margin-bottom: 24px;
}

.waitlist-description {
  font-size: 20px;
  color: #a5f3fc;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

.waitlist-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1024px;
  margin: 0 auto;
}

.waitlist-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2BA8C6;
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: #2C244A;
  color: white;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.waitlist-benefits {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.waitlist-benefits h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.waitlist-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.waitlist-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #a5f3fc;
  line-height: 1.5;
}

.waitlist-benefits li strong {
  color: white;
}

/* Contact Form Section */
.section-contact {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
  padding: 80px 0;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-label {
  font-weight: 600;
  color: #2C244A;
  font-size: 14px;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  color: #2C244A;
}

/* Contact form specific styles */
.contact-form .form-input,
.contact-form .form-textarea {
  background: white;
  color: #2C244A;
  border: 2px solid #e2e8f0;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #9ca3af;
}

/* Fix contact form labels - ensure they're dark, not white */
.contact-form .form-label {
  color: #2C244A !important;
  font-weight: 600;
  font-size: 14px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2BA8C6;
  box-shadow: 0 0 0 3px rgba(43, 168, 198, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.char-counter {
  text-align: right;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* Pricing Section */
.section-pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1152px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  background: white;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.pricing-card-popular {
  border-color: #2BA8C6;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2BA8C6 0%, #2C244A 100%);
  color: white;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-name {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
}

.period {
  font-size: 20px;
  color: #6b7280;
}

.pricing-description {
  color: #5A5A5A;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #374151;
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-features li::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Final CTA Section */
.section-final-cta {
  background: linear-gradient(135deg, #2C244A 0%, #2C244A 50%, #2BA8C6 100%);
  color: white;
  position: relative;
}

.cta-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(96px);
  animation: pulse 4s ease-in-out infinite;
}

.cta-blob-1 {
  top: 80px;
  left: 80px;
  width: 384px;
  height: 384px;
  background: linear-gradient(135deg, rgba(43, 168, 198, 0.2) 0%, transparent 100%);
  animation-delay: 0s;
}

.cta-blob-2 {
  bottom: 80px;
  right: 80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
  animation-delay: 2s;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 20px;
  color: #a5f3fc;
  max-width: 768px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.cta-info {
  text-align: center;
}

.cta-info-item {
  color: #a5f3fc;
  font-size: 14px;
  font-weight: 500;
}

.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0.7;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a5f3fc;
}

.badge-icon {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-visual {
    margin-left: 0;
  }
  
  .steps-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .waitlist-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-social-proof {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 24px;
    margin: 0 16px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-content {
    padding: 48px 0;
  }
  
  .section {
    padding: 64px 0;
  }
}
