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

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  min-height: 100vh;
}

.logo {
  width: 170px;
  display: block;
  margin: 20px auto 30px;
}

.progress {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.bar {
  height: 100%;
  width: 12%;
  background: #fff;
  transition: 0.4s;
}

.step {
  display: none;
  animation: fade 0.4s ease;
}

.step.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  border-radius: 28px;
  margin-bottom: 30px;
  height: 520px;
  object-fit: cover;
}

.video {
  width: 100%;
  border-radius: 28px;
  margin-bottom: 30px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  font-size: 20px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

.option:hover {
  background: #1d1d1d;
  transform: scale(1.02);
}

.button {
  width: 100%;
  border: none;
  border-radius: 22px;
  padding: 24px;
  background: #e7e7e7;
  color: #000;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}

input {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 22px;
  font-size: 18px;
  margin-bottom: 18px;
}

.form-status {
  min-height: 24px;
  color: #f2c94c;
  font-size: 14px;
  line-height: 1.4;
}

.form-status[data-state="success"] {
  color: #65d6a7;
}

.testimonial {
  background: #080808;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 10px;
}

.name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.loading {
  width: 100%;
  height: 10px;
  background: #222;
  border-radius: 20px;
  overflow: hidden;
  margin: 25px 0;
}

.loading-bar {
  width: 28%;
  height: 100%;
  background: #fff;
}

.audio-box {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.audio-title {
  color: #00aa55;
  font-weight: bold;
  margin-bottom: 10px;
}
