* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5efe6;
  color: #1f1f1f;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 80px 20px;

  background:
    linear-gradient(rgba(245,239,230,0.85), rgba(245,239,230,0.95)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?q=80&w=1800&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
  z-index: 2;
}

.book-cover {
  width: 260px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.free-badge {
  letter-spacing: 4px;
  font-size: 12px;
  opacity: 0.7;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 500;
  line-height: 0.95;
  margin: 25px 0;
}

.subtitle {
  font-size: 20px;
  line-height: 1.8;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
  opacity: 0.8;
}

form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

input {
  padding: 18px 22px;
  width: 320px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  font-size: 16px;
}

button {
  padding: 18px 30px;
  border: none;
  border-radius: 999px;
  background: #1f1f1f;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

#message {
  margin-top: 20px;
  font-size: 15px;
}

.quote-section {
  padding: 140px 20px;
  text-align: center;
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  margin-bottom: 30px;
}

.quote-text {
  max-width: 700px;
  margin: auto;
  font-size: 22px;
  line-height: 1.8;
  opacity: 0.75;
}

.benefits {
  padding: 120px 20px;
}

.benefits h2,
.author h2,
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  text-align: center;
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.6);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.card p {
  line-height: 1.8;
  opacity: 0.8;
}

.author {
  padding: 120px 20px;
}

.author-container {
  max-width: 850px;
}

.author p {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 25px;
  opacity: 0.8;
}

.final-cta {
  padding: 140px 20px;
  text-align: center;
}

footer {
  padding: 40px 20px;
  text-align: center;
  opacity: 0.5;
}

@media(max-width: 768px) {

  h1 {
    font-size: 58px;
  }

  .quote {
    font-size: 46px;
  }

  .benefits h2,
  .author h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .subtitle,
  .quote-text,
  .author p {
    font-size: 18px;
  }

  input {
    width: 100%;
  }

  button {
    width: 100%;
  }

}
