/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0a0a0a;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 150px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* ===== Lead Magnet Form ===== */
.lead-form {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

#convertkit-form-container {
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

/* Success Offer */
.success-offer {
  background: #111;
  padding: 40px;
  border: 2px solid #ffd700;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-offer h2 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.success-offer h3 {
  color: #ff4444;
  margin: 1rem 0;
}

.success-offer p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.offer-btn {
  display: inline-block;
  padding: 15px 25px;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.countdown {
  font-size: 1.5rem;
  color: #ff4444;
  margin: 1rem 0;
}

/* ===== Why Free Section ===== */
.why-free {
  background: #0f0f0f;
  padding: 60px 20px;
  text-align: center;
}

.why-free h2 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.why-free p {
  color: #ccc;
  max-width: 700px;
  margin: auto;
}

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  padding: 60px 20px 20px;
  color: #fff;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none;
  }

  #convertkit-form-container {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}