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

:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --secondary: #1f2937;
  --dark: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --success: #10b981;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  text-align: center;
  padding: 80px 20px 70px;
  background: linear-gradient(180deg, #0f0f1a 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

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

.subtitle {
  font-size: 18px;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.package-card {
  background: var(--secondary);
  padding: 32px 28px;
  border-radius: 20px;
  width: 320px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.package-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  background: linear-gradient(180deg, #1f2937 0%, #171f2b 100%);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.15);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(220, 38, 38, 0.2);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.package-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-meta {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 600;
}

.package-meta strong {
  color: var(--light);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--success);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
  color: white;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-icon {
  font-size: 28px;
  line-height: 1;
}

.proof-content {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-size: 24px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.proof-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.benefits {
  padding: 80px 20px;
  background: var(--secondary);
}

.benefits h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--dark);
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
}

.testimonials {
  padding: 80px 20px;
  background: var(--dark);
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--secondary);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.author-result {
  font-size: 12px;
  color: var(--success);
}

.application-section {
  padding: 80px 20px 100px;
  background: linear-gradient(180deg, var(--dark) 0%, #0f0f1a 100%);
}

.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--primary);
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.form-container {
  max-width: 520px;
  margin: 0 auto;
  background: var(--secondary);
  padding: 48px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}

.progress-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 40px;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  width: 25%;
  transition: width 0.3s ease;
}

.progress-steps {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.progress-step {
  width: 28px;
  height: 28px;
  background: var(--secondary);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: var(--primary);
  border-color: var(--primary);
}

.progress-step.completed {
  background: var(--success);
  border-color: var(--success);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-step h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--light);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark);
  color: var(--light);
}

.error-message {
  display: none;
  color: var(--primary);
  font-size: 12px;
  margin-top: 6px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--primary);
}

.form-group.error .error-message {
  display: block;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.btn-next,
.btn-submit {
  flex: 1;
  padding: 16px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-back {
  flex: 0 0 auto;
  padding: 16px 24px;
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  border-color: var(--light);
  color: var(--light);
}

.btn-submit {
  background: var(--success);
}

.btn-submit:hover {
  background: #059669;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal.active {
  display: flex;
}

.success-content {
  background: var(--secondary);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}

.success-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.success-content p {
  color: var(--gray);
  margin-bottom: 12px;
}

.success-detail {
  color: var(--light) !important;
  font-weight: 500;
}

.success-note {
  font-size: 14px;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 24px !important;
}

.btn-booking {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-close {
  padding: 12px 32px;
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close:hover {
  background: rgba(255,255,255,0.05);
  color: white;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: var(--secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
  font-size: 12px;
  color: var(--gray);
}

.footer-note {
  margin-top: 8px;
  font-size: 11px !important;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 50px;
  }
  
  .packages {
    gap: 16px;
  }
  
  .package-card {
    width: 100%;
    max-width: 360px;
    padding: 28px 24px;
  }
  
  .package-card.featured {
    transform: none;
    order: -1;
  }
  
  .package-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .cta-button {
    padding: 18px 36px;
    font-size: 17px;
    width: 100%;
    max-width: 360px;
  }
  
  .social-proof {
    gap: 20px;
    padding: 20px 16px;
  }
  
  .proof-icon {
    font-size: 24px;
  }
  
  .proof-number {
    font-size: 20px;
  }
  
  .proof-label {
    font-size: 11px;
  }
  
  .proof-divider {
    height: 32px;
  }
  
  .benefits,
  .testimonials {
    padding: 60px 20px;
  }
  
  .benefit-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 16px 40px;
  }
  
  .badge {
    padding: 6px 16px;
    font-size: 10px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  
  .subtitle {
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .packages {
    margin-bottom: 32px;
  }
  
  .package-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .package-card:not(.featured) {
    display: none;
  }
  
  .package-card.featured {
    box-shadow: none;
    border-width: 2px;
  }
  
  .package-title {
    font-size: 22px;
  }
  
  .package-meta {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .package-features li {
    font-size: 13px;
    padding: 6px 0;
  }
  
  .cta-button {
    padding: 16px 24px;
    font-size: 16px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  
  .social-proof {
    flex-direction: row;
    gap: 12px;
    padding: 16px 12px;
    border-radius: 12px;
    margin-top: 20px;
  }
  
  .proof-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    flex: 1;
  }
  
  .proof-icon {
    font-size: 20px;
  }
  
  .proof-number {
    font-size: 18px;
  }
  
  .proof-label {
    font-size: 9px;
  }
  
  .proof-divider {
    width: 1px;
    height: 50px;
  }
  
  .benefits {
    padding: 40px 16px;
  }
  
  .benefits h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .benefit-card {
    padding: 16px 14px;
    border-radius: 12px;
  }
  
  .benefit-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .benefit-card h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .benefit-card p {
    display: none;
  }
  
  .testimonials {
    padding: 50px 16px;
  }
  
  .testimonials h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .testimonial-card {
    flex: 0 0 280px;
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 13px;
  }
  
  .application-section {
    padding: 50px 16px 120px;
  }
  
  .urgency-banner {
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .form-container {
    padding: 28px 20px;
    border-radius: 20px;
  }
  
  .form-container h2 {
    font-size: 24px;
  }
  
  .form-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .form-step h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .btn-group {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 24px;
  }
  
  .btn-next,
  .btn-submit,
  .btn-back {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
  }
  
  .btn-back {
    flex: 1;
  }
  
  footer {
    padding: 24px 16px 100px;
  }
  
  footer p {
    font-size: 11px;
  }
}

