/* 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;
}

p:last-child {
  margin-bottom: 0;
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--burnt-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #d14f1a;
}

/* Section base padding */
section {
  padding: 48px 0;
}

/* Visual Placeholder */
.toolkit-visual-placeholder {
  background-color: var(--white);
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-size: 0.875rem;
}

.toolkit-placeholder-note {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.toolkit-hero-section {
  padding: 60px 0 48px;
  text-align: center;
}

.toolkit-hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.toolkit-hero-visual {
  margin: 2rem 0;
}

.toolkit-product-mockup {
  max-width: 540px;
  margin: 0 auto;
}

.toolkit-cta-btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.125rem;
}

/* ============================================
   SECTION 2: KELLY'S MOMENT
   ============================================ */
.toolkit-kelly-moment-section {
  padding: 40px 0;
}

.toolkit-kelly-moment-section h2 {
  color: var(--forest-green);
  font-size: 1.375rem;
}

.toolkit-kelly-moment-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.toolkit-kelly-thought {
  font-style: italic;
  background-color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--forest-green);
  margin: 1.5rem 0;
  font-weight: 500;
}

.toolkit-kelly-visual {
  margin: 2rem 0;
}

.toolkit-kelly-support {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

/* ============================================
   SECTION 3: BIG PROBLEM
   ============================================ */
.toolkit-big-problem-section {
  padding: 40px 0;
  background-color: var(--white);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.toolkit-big-problem-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.toolkit-problem-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.toolkit-problem-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.toolkit-problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--burnt-orange);
  font-weight: bold;
}

.toolkit-standout-line {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
}

.toolkit-standout-line p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}

.toolkit-receipt-shock-visual {
  text-align: center;
}

.toolkit-receipt-shock-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ============================================
   SECTION 4: METHOD
   ============================================ */
.toolkit-method-section {
  padding: 48px 0;
  text-align: center;
}

.toolkit-method-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 2rem;
}

.toolkit-3-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
  text-align: left;
}

.toolkit-3-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.toolkit-step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--forest-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.toolkit-step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toolkit-step-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
}

.toolkit-step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.toolkit-method-visual {
  margin-top: 2rem;
}

.toolkit-method-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.toolkit-method-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.toolkit-icon-box {
  font-size: 2rem;
}

.toolkit-icon-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.toolkit-method-arrow {
  font-size: 1.5rem;
  color: var(--forest-green);
}

/* ============================================
   SECTION 5: PRODUCT OVERVIEW
   ============================================ */
.toolkit-product-overview-section {
  padding: 40px 0;
  background-color: var(--white);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.toolkit-product-overview-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.toolkit-product-overview-helps {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.toolkit-product-helps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.toolkit-product-helps-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.toolkit-product-helps-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
}

/* ============================================
   SECTION 6: WHAT'S INCLUDED
   ============================================ */
.toolkit-whats-included-section {
  padding: 48px 0;
}

.toolkit-whats-included-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.toolkit-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.toolkit-included-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.toolkit-card-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.toolkit-included-card h3 {
  color: var(--forest-green);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.toolkit-included-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   SECTIONS 7-8: BONUS SECTIONS
   ============================================ */
.toolkit-bonus-section {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.toolkit-bonus-header h2 {
  color: var(--forest-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.toolkit-bonus-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.toolkit-3-pictures-list {
  padding-left: 24px;
  margin-bottom: 1rem;
}

.toolkit-3-pictures-list li {
  margin-bottom: 4px;
}

.toolkit-bonus-detail {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.toolkit-meal-finder-key,
.toolkit-leak-key {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  margin: 1.5rem 0;
}

.toolkit-meal-finder-key p,
.toolkit-leak-key p {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0;
}

.toolkit-3-panel-visual {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.toolkit-panel {
  flex: 1;
  text-align: center;
}

.toolkit-panel-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.toolkit-panel-placeholder {
  background-color: var(--warm-cream);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px 8px;
  font-size: 0.75rem;
  color: #aaa;
}

.toolkit-arrow-row {
  text-align: center;
  font-size: 1.25rem;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.toolkit-meal-ideas-box {
  background-color: var(--warm-cream);
  border: 2px solid var(--forest-green);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-bottom: 1rem;
}

.toolkit-meal-ideas-label {
  font-weight: 600;
  color: var(--forest-green);
}

.toolkit-chatgpt-prompt-card {
  background-color: var(--warm-cream);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.toolkit-prompt-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.toolkit-prompt-card-content {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.8125rem;
  color: #888;
}

.toolkit-leak-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.toolkit-leak-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}

.toolkit-leak-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--burnt-orange);
}

.toolkit-leak-description {
  font-size: 1rem;
  color: var(--text-muted);
}

.toolkit-leak-checklist {
  background-color: var(--warm-cream);
  border-radius: 8px;
  padding: 20px;
}

.toolkit-leak-checklist-title {
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 12px;
  text-align: center;
}

.toolkit-leak-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.toolkit-leak-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
}

.toolkit-leak-icon {
  font-size: 1.125rem;
}

/* ============================================
   SECTION 9: WHO THIS IS FOR
   ============================================ */
.toolkit-who-section {
  padding: 48px 0;
}

.toolkit-who-section h2 {
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.toolkit-who-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.toolkit-who-list {
  list-style: none;
  padding: 0;
}

.toolkit-who-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.toolkit-who-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
}

/* ============================================
   SECTION 10: WHY THIS WORKS
   ============================================ */
.toolkit-why-section {
  padding: 48px 0;
  background-color: var(--white);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.toolkit-comparison-table {
  border: 2px solid var(--forest-green);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.toolkit-comparison-header {
  display: flex;
  background-color: var(--forest-green);
  color: var(--white);
}

.toolkit-comparison-col {
  flex: 1;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.toolkit-comparison-row {
  display: flex;
  border-top: 1px solid #e0e0e0;
}

.toolkit-comparison-row .toolkit-comparison-col {
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.toolkit-comparison-not {
  background-color: #f5f5f5;
}

.toolkit-comparison-this {
  background-color: var(--warm-cream);
}

.toolkit-why-support {
  margin-bottom: 1rem;
}

.toolkit-why-support p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

.toolkit-why-description {
  font-size: 1.0625rem;
  color: var(--text-dark);
}

/* ============================================
   SECTION 11: OFFER STACK
   ============================================ */
.toolkit-offer-section {
  padding: 48px 0;
  text-align: center;
}

.toolkit-offer-section h2 {
  margin-bottom: 2rem;
}

.toolkit-value-stack {
  margin-bottom: 2rem;
}

.toolkit-offer-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid var(--forest-green);
  border-radius: 8px;
  overflow: hidden;
}

.toolkit-offer-table th {
  background-color: var(--forest-green);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}

.toolkit-offer-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.toolkit-value-col {
  text-align: right;
  font-weight: 500;
}

.toolkit-offer-table tbody tr:last-child td {
  border-bottom: none;
}

.toolkit-total-row {
  background-color: #f5f5f5;
}

.toolkit-total-row td {
  font-weight: 600;
}

.toolkit-price-row {
  background-color: var(--forest-green);
  color: var(--white);
}

.toolkit-price-row td {
  font-weight: 700;
  font-size: 1.125rem;
}

.toolkit-price-value {
  color: var(--white);
}

.toolkit-offer-cta {
  margin-top: 1.5rem;
}

.toolkit-reassurance {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ============================================
   SECTION 12: FINAL CTA
   ============================================ */
.toolkit-final-cta-section {
  padding: 48px 0 60px;
  text-align: center;
}

.toolkit-final-cta-section h2 {
  color: var(--forest-green);
  margin-bottom: 1.5rem;
}

.toolkit-final-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin-bottom: 2rem;
}

.toolkit-final-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.toolkit-final-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
  font-size: 1.125rem;
}

.toolkit-final-cta {
  margin-bottom: 2rem;
}

.toolkit-final-visual {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 480px) {
  h1 {
    font-size: 1.625rem;
  }

  h2 {
    font-size: 1.25rem;
  }

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

  section {
    padding: 36px 0;
  }

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

  .toolkit-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
    display: block;
  }

  .toolkit-included-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-3-panel-visual {
    flex-direction: column;
  }

  .toolkit-method-arrow {
    display: none;
  }

  .toolkit-leak-items {
    grid-template-columns: 1fr;
  }

  .toolkit-comparison-table {
    font-size: 0.875rem;
  }

  .toolkit-comparison-col {
    padding: 10px 12px;
  }

  .toolkit-offer-table th,
  .toolkit-offer-table td {
    padding: 10px 12px;
  }

  .toolkit-step-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .toolkit-kelly-moment-section h2 {
    font-size: 1.25rem;
  }

  .toolkit-bonus-section {
    padding: 24px 16px;
  }

  .toolkit-standout-line p {
    font-size: 1rem;
  }
}
