body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff0f0;
  color: #333;
}

.page {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.optin-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 960px;
  width: 100%;
}

.optin-left, .optin-right {
  flex: 1 1 300px;
  padding: 40px;
}

.hero-img {
  width: 100%;
  max-width: 360px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

.badge {
  color: #0066ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.subtext {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.optin-form input {
  padding: 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.optin-form button {
  background-color: #0056ff;
  color: white;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.optin-form button:hover {
  background-color: #003fcc;
}

.trusted {
  margin-top: 30px;
}

.trusted p {
  font-size: 0.9rem;
  color: #777;
}

.logos img {
  width: 60px;
  margin-right: 15px;
  opacity: 0.7;
}

.thankyou {
  background: #ffffff;
}

.thankyou-content {
  max-width: 600px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background-color: #4444ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.cta-link:hover {
  background-color: #2222cc;
}

/* ------------------------------------ */
/* ✅ Thank You Page Asset Section */
/* ------------------------------------ */

#asset-section {
  margin-top: 30px;
  text-align: center;
}

#asset-section img {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.download-button {
  display: inline-block;
  margin: 12px 10px;
  padding: 12px 20px;
  background-color: #0046ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #002eaa;
}
