/* Brand Colors */
:root {
  --forest-green: #3d6b4f;
  --burnt-orange: #e85d26;
  --warm-cream: #faf8f5;
  --text-dark: #1a1a1a;
  --text-muted: #4a4a4a;
  --white: #ffffff;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .sub-headline {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Emotional Intro */
.intro-section {
  padding: 0 0 40px;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.intro-section p {
  margin-bottom: 1.25rem;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* Video Placeholder */
.video-placeholder {
  background-color: var(--white);
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 540px;
}

.video-placeholder-label {
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* What's Inside Section */
.whats-inside-section {
  padding: 0 0 40px;
}

.whats-inside-section h2 {
  text-align: center;
}

.whats-inside-list {
  list-style: none;
  padding: 0;
}

.whats-inside-list li {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.whats-inside-list li:last-child {
  margin-bottom: 0;
}

.whats-inside-list h3 {
  color: var(--forest-green);
  margin-bottom: 0.25rem;
}

.whats-inside-list p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Bonus Section */
.bonus-section {
  background-color: var(--white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.bonus-section h3 {
  color: var(--forest-green);
}

.bonus-section p {
  margin-bottom: 0;
}

/* Opt-In Form Section */
.optin-section {
  background-color: var(--forest-green);
  padding: 40px 24px;
  margin-bottom: 40px;
  border-radius: 8px;
  text-align: center;
}

.optin-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.optin-form {
  max-width: 360px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 16px;
  text-align: left;
}

.form-field label {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.optin-form button {
  width: 100%;
  padding: 14px 24px;
  background-color: var(--burnt-orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

.optin-reassurance {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-top: 16px;
}

.optin-privacy {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  margin-top: 8px;
}

/* Social Proof Section */
.social-proof-section {
  padding: 0 0 60px;
  text-align: center;
}

.testimonial {
  background-color: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
}

.stars {
  color: #f5a623;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 40px 0 30px;
  }

  .page-container {
    padding: 0 16px;
  }

  .optin-section {
    padding: 32px 20px;
  }
}
