/* Reset + Base */
:root{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fdfafa;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #fceefc, #fdfafa);
}
.hero-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.hero .text {
  flex: 1;
}
.hero h1 {
  font-size: 2.5rem;
  color: #111;
}
.hero h1 span {
  color: #b54694;
}
.hero h2 {
  font-size: 1.2rem;
  color: #7a6479;
  margin: 10px 0;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}
.bonus-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(180, 70, 148, 0.1);
  font-weight: 500;
}
.bonus-box span {
  color: #b54694;
  font-weight: 600;
}
.hero .image {
  flex: 1;
}
.hero .image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Waitlist Section */
.waitlist-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.discovery {
  flex: 1;
}
.discovery h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}
.discovery ul {
  list-style: none;
}
.discovery li {
  background: #fffdfd;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(180, 70, 148, 0.05);
  display: flex;
  align-items: center;
  font-weight: 500;
}
.discovery li::before {
  content: "✔️";
  margin-right: 10px;
  color: #b54694;
}

/* Form Box */
.form-box {
  flex: 1;
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(180, 70, 148, 0.1);
}
.form-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}
.form-box p {
  color: #7a6479;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input[type="email"],[type="text"] {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
form button {
  padding: 14px;
  background: linear-gradient(to right, #b54694, #c778b6);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background: linear-gradient(to right, #a13a82, #b960a5);
}
.form-box small {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .waitlist-section {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2rem;
  }
}