.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #2d1b4e 100%);
  padding: 0 0 60px 0;
}

.urgency-bar {
  background: linear-gradient(90deg, #ff6b35, #f7c800);
  color: #000;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.live-badge {
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  padding-top: 40px;
}

.hero-text {
  color: white;
}

.pre-headline {
  color: #f7c800;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 15px;
}

.highlight {
  color: #4ade80;
}

.subheadline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.benefits {
  list-style: none;
  margin-bottom: 30px;
}

.benefits li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.5;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.2rem;
}

.presenter {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.presented-by {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.presenter-name {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.presenter-title {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.form-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
  text-align: center;
}

.form-header h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.seats-left {
  color: #f7c800;
  font-weight: 600;
}

.event-details {
  padding: 20px 30px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-date .icon {
  font-size: 1.5rem;
}

.event-date strong {
  display: block;
  color: #333;
}

.event-date span {
  color: #666;
  font-size: 0.9rem;
}

.form-card form {
  padding: 25px 30px;
}

.form-card .form-group {
  margin-bottom: 15px;
}

.btn-cta {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7c800 100%);
  color: #000;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-text {
  font-size: 1.2rem;
}

.btn-subtext {
  font-size: 0.85rem;
  opacity: 0.8;
}

.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 15px 30px 0;
}

.bonus-teaser {
  background: #fffbeb;
  margin: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed #f7c800;
}

.bonus-badge {
  background: #f7c800;
  color: #000;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.bonus-teaser p {
  margin-top: 8px;
  font-weight: 600;
  color: #333;
}

.pain-points {
  background: #0f0f1a;
  padding: 80px 0;
  color: white;
}

.pain-points h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pain-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.pain-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.pain-item p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.5;
}

.transformation {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  padding: 60px 0;
}

.transformation-content {
  text-align: center;
}

.before-after {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.before, .after {
  background: white;
  padding: 25px 35px;
  border-radius: 12px;
  max-width: 300px;
}

.before .label {
  color: #ef4444;
  font-weight: 700;
  font-size: 0.85rem;
}

.after .label {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.85rem;
}

.arrow {
  font-size: 2rem;
  color: white;
}

.transformation-text {
  color: white;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.framework {
  background: #1a0a2e;
  padding: 80px 0;
  color: white;
}

.framework h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.framework-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: transform 0.3s;
}

.framework-item:hover {
  transform: translateY(-5px);
}

.framework-number {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.framework-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.framework-item p {
  color: rgba(255,255,255,0.7);
}

.final-cta {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-date {
  color: #f7c800;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-box .btn-cta {
  display: inline-flex;
  padding: 20px 50px;
}

.footer {
  background: #050508;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .framework-grid {
    grid-template-columns: 1fr;
  }
  
  .pain-grid {
    grid-template-columns: 1fr;
  }
}
