/* ============================================
   MOTILLI LISTICLE — SHARED STYLES
   Layout ref: Primal Viking editorial pattern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --accent: #3D8B7A;
  --accent-light: #EBF5F2;
  --accent-dark: #2E6B5E;
  --cta: #D97B5A;
  --cta-hover: #C46A4A;
  --dark: #1E2D2F;
  --dark-text: #2C3338;
  --body-bg: #FDFBF7;
  --light-bg: #F5F1EB;
  --border: #E2DDD5;
  --star: #D4A03C;
  --success: #3D8B7A;
  --danger: #C0392B;
  --muted: #7A7568;
  --white: #FFFFFF;
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

strong {
  font-weight: 700;
}


/* ==========================================
   BANNER — sticky top urgency bar
   ========================================== */

.banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 13px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}


/* ==========================================
   CONTAINER
   ========================================== */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ==========================================
   HERO — headline + author + callout
   ========================================== */

.hero {
  padding: 44px 0 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.22;
  color: var(--dark-text);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.hero h1 .accent {
  color: var(--accent);
}


/* ---- Author Row ---- */

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  overflow: hidden;
  flex-shrink: 0;
}

.author-info {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.author-info strong {
  color: var(--dark-text);
  display: block;
}


/* ---- Callout Quote ---- */

.callout-quote {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 0 0 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  font-style: italic;
  border-radius: 0 6px 6px 0;
}


/* ==========================================
   COMPARISON TABLE
   ========================================== */

.table-section {
  margin: 0 0 8px;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  line-height: 1.5;
  min-width: 660px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--accent);
}

.comparison-table thead th:first-child {
  text-align: left;
  background: var(--dark);
  width: 140px;
}

.comparison-table thead th.highlight {
  background: var(--accent-dark);
  color: var(--white);
}

.comparison-table tbody tr {
  transition: background 0.15s;
}

.comparison-table tbody tr:hover {
  background: rgba(61, 139, 122, 0.04);
}

.comparison-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

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

.comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--dark-text);
  background: #F9F7F3;
  font-size: 13px;
}

.comparison-table tbody td:not(:first-child) {
  text-align: center;
}

.comparison-table tbody td.highlight {
  background: var(--accent-light);
}

.comparison-table tbody tr:hover td.highlight {
  background: #DCEEE9;
}

.comparison-table .check {
  color: var(--success);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--danger);
  font-weight: 500;
}

.comparison-table .face-happy {
  font-size: 22px;
  line-height: 1;
}

.comparison-table .face-meh {
  font-size: 22px;
  line-height: 1;
  opacity: 0.6;
}

.comparison-table .face-sad {
  font-size: 22px;
  line-height: 1;
  opacity: 0.5;
}


/* ---- Bridge / TLDR text ---- */

.bridge-text {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.75;
}


/* ==========================================
   DIVIDER
   ========================================== */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}


/* ==========================================
   CONTENT SECTIONS — image left, text right
   ========================================== */

.content-section {
  padding: 0 0 8px;
}

.section-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.section-image {
  flex: 0 0 270px;
  max-width: 270px;
}

.image-placeholder {
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 28px 14px;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image .section-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.cta-product-img {
  max-width: 260px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 24px;
}

.section-content {
  flex: 1;
  min-width: 0;
}

.section-content h2 {
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.3;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-content h2 .accent {
  color: var(--accent);
}

.section-content p {
  margin-bottom: 14px;
}

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

.section-content .disclaimer-mark {
  font-size: 12px;
  vertical-align: super;
  color: var(--muted);
}


/* ==========================================
   CTA BLOCK — mid-page + bottom
   ========================================== */

.cta-block {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-image-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: 8px;
  width: 240px;
  height: 180px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  padding: 12px;
  text-align: center;
}

.cta-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(217, 123, 90, 0.25);
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(217, 123, 90, 0.35);
}

.btn-cta:active {
  transform: translateY(0);
}

.checklist {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
  padding: 0;
}

.checklist li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--dark-text);
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: '\2714';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 14px;
}


/* ==========================================
   TESTIMONIAL
   ========================================== */

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 28px 0;
}

.testimonial .stars {
  color: var(--star);
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--dark-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.testimonial .attribution {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}


/* ==========================================
   TIMELINE
   ========================================== */

.timeline {
  margin: 20px 0 4px;
}

.timeline-item {
  padding: 14px 0 14px 24px;
  border-left: 3px solid var(--accent);
  margin-left: 6px;
  position: relative;
}

.timeline-item:last-child {
  border-left-color: transparent;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 18px;
}

.timeline-item .time-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}


/* ==========================================
   CLOSE SECTION — dark bottom CTA
   ========================================== */

.close-section {
  background: var(--dark);
  color: var(--white);
  padding: 48px 36px;
  text-align: center;
  border-radius: 12px;
  margin: 40px 0 0;
}

.close-section .close-testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.close-section .close-testimonial .stars {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.close-section .close-testimonial blockquote {
  font-style: italic;
  color: #D1CCC5;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.close-section .close-testimonial .attribution {
  color: #9A958D;
  font-size: 13px;
  font-weight: 600;
}

.close-section h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}

.close-section p {
  color: #C8C3BA;
  margin-bottom: 18px;
  font-size: 15px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.close-section .price-line {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 20px;
}

.close-section .btn-cta {
  margin: 16px 0;
}

.close-section .checklist {
  margin: 0 auto 24px;
}

.close-section .checklist li {
  color: #C8C3BA;
  font-size: 14px;
}

.close-section .checklist li::before {
  color: #5BBFAE;
}

.close-section .scarcity {
  font-size: 14px;
  color: var(--cta);
  font-weight: 600;
  margin: 20px 0 4px;
  line-height: 1.6;
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--dark);
  color: var(--muted);
  text-align: center;
  padding: 28px 20px;
  font-size: 11.5px;
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer .disclaimer {
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 27px;
  }

  .section-inner {
    flex-direction: column;
  }

  .section-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .image-placeholder {
    min-height: 140px;
  }

  .section-content h2 {
    font-size: 21px;
  }

  .comparison-table {
    font-size: 12.5px;
  }

  .cta-block {
    padding: 28px 20px;
    margin: 32px -8px;
  }

  .close-section {
    padding: 36px 24px;
    margin: 32px -24px;
    border-radius: 0;
  }

  .close-section h3 {
    font-size: 22px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .banner {
    font-size: 10.5px;
    padding: 10px 12px;
    letter-spacing: 1px;
  }

  .container {
    padding: 0 16px;
  }

  .section-content h2 {
    font-size: 20px;
  }

  .cta-block {
    margin: 28px -16px;
    border-radius: 0;
  }

  .close-section {
    margin: 28px -16px;
    padding: 32px 16px;
  }

  .callout-quote {
    font-size: 15px;
    padding: 14px 16px;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .checklist {
    max-width: 100%;
  }

  .timeline-item p {
    font-size: 14px;
  }
}
