/* ============================================================
   Seniors Aging Forward — Design System
   Senior-optimised: 18px base type · high contrast · warm palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  /* Core palette */
  --navy:         #0c2d5e;
  --navy-dark:    #071a3a;
  --blue-mid:     #185fa5;
  --blue-bright:  #2b72c8;     /* slightly richer — better contrast on white */
  --blue-light:   #a8cbf0;
  --blue-pale:    #e8f2fb;

  /* Accent — warm teal */
  --accent:       #1f8b7e;     /* deepened for better contrast on light BG */
  --accent-light: #dff4f2;

  /* Backgrounds — warm cream replaces cool grey */
  --white:        #ffffff;
  --off-white:    #f6f5f1;     /* warm cream, easier on ageing eyes */

  /* Text — high contrast throughout */
  --text-dark:    #0f1f3d;
  --text-mid:     #2d3748;     /* darker than before */
  --text-muted:   #4a5568;     /* was #6b7280 — contrast now 7:1 on white */

  --border:       #c8ddf0;
}

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

html { font-size: 112.5%; }   /* 18 px base — aids seniors with mild vision loss */

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;           /* generous leading for readability */
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  background: var(--navy-dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .nav-badge {
  background: var(--blue-bright);
  color: white;
  font-size: 0.65rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.88);   /* was 0.8 — better contrast */
  text-decoration: none;
  font-size: 1rem;                  /* was 0.9rem */
  font-weight: 500;                 /* was 400 — heavier = easier to read */
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--blue-bright);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-mid) !important; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--blue-bright);
  color: var(--white);
  padding: 14px 28px;             /* taller tap target */
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;               /* was 600 */
  font-size: 1rem;                /* was 0.95rem */
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.01em;
}

.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.55);   /* was 1.5px — more visible */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-accent:hover { background: #167066; transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 7px;
  border: 2px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline-dark:hover { border-color: var(--blue-mid); color: var(--blue-mid); }

.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; }
section { padding: 84px 5%; }
.section-sm { padding: 52px 5%; }

.section-label {
  font-size: 0.82rem;             /* was 0.75rem */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1.1rem;              /* was 1.05rem */
  color: var(--text-muted);
  font-weight: 400;               /* was 300 — light weight is hard to read */
  max-width: 580px;
  line-height: 1.8;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a8a 100%);
  padding: 96px 5% 84px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(43,114,200,0.12);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(31,139,126,0.1);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43,114,200,0.2);
  border: 1px solid rgba(43,114,200,0.45);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: #6db6ff;                 /* lighter, warmer accent on dark BG */
}

.hero p {
  color: rgba(255,255,255,0.88);  /* was 0.75 — much more readable */
  font-size: 1.1rem;
  font-weight: 400;               /* was 300 */
  margin-bottom: 34px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.hero-card:hover { background: rgba(255,255,255,0.15); }

.hero-card-icon {
  width: 54px;                    /* was 44px — larger tap / visual target */
  height: 54px;
  border-radius: 10px;
  background: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;              /* was 1.2rem */
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.05rem;             /* was 0.95rem */
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card p {
  color: rgba(255,255,255,0.78);  /* was 0.6 */
  font-size: 0.92rem;             /* was 0.82rem */
  margin: 0;
  line-height: 1.55;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 5%;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(43,114,200,0.1);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero .section-label { color: var(--blue-light); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 16px;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: rgba(255,255,255,0.84);  /* was 0.7 */
  font-size: 1.05rem;             /* was 1rem */
  font-weight: 400;               /* was 300 */
  max-width: 600px;
  line-height: 1.8;
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;             /* was 0.85rem */
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item strong { color: var(--navy); font-weight: 700; }

/* ── FREE DOWNLOAD CARDS ─────────────────────────────────── */
.downloads-section {
  background: var(--blue-pale);
  border-top: 4px solid var(--blue-bright);  /* thicker stripe — more visible */
}

.downloads-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;                    /* was 3px — more visible */
  background: var(--blue-bright);
}

.download-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(12,45,94,0.12); }

.download-card-tag {
  font-size: 0.8rem;              /* was 0.7rem */
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  display: inline-block;
}

.download-card h3 {
  font-size: 1.05rem;             /* was 0.95rem */
  font-weight: 700;               /* was 600 */
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.download-card p {
  font-size: 0.97rem;             /* was 0.82rem */
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;             /* was 0.82rem */
  font-weight: 700;
  color: var(--blue-mid);
  text-decoration: none;
  border: 2px solid var(--blue-light);
  border-radius: 6px;
  padding: 9px 14px;              /* was 7px 12px — taller tap target */
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}

.download-btn:hover { background: var(--blue-pale); border-color: var(--blue-bright); }

/* ── EMAIL CAPTURE ───────────────────────────────────────── */
.email-capture {
  background: var(--navy);
  border-radius: 14px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.email-capture h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;              /* was 1.2rem */
  color: var(--white);
  margin-bottom: 6px;
}

.email-capture p {
  font-size: 0.95rem;             /* was 0.85rem */
  color: rgba(255,255,255,0.75);  /* was 0.6 */
}

.email-form { display: flex; gap: 10px; flex-wrap: wrap; }

.email-form input {
  padding: 12px 18px;             /* taller */
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1rem;                /* was 0.9rem */
  font-family: 'Source Sans 3', sans-serif;
  width: 250px;
}

.email-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-form input:focus { outline: none; border-color: var(--blue-bright); background: rgba(255,255,255,0.18); }

.email-form button {
  padding: 12px 24px;
  background: var(--blue-bright);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;                /* was 0.9rem */
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
}

.email-form button:hover { background: var(--blue-mid); }

/* ── EBOOK CARDS ─────────────────────────────────────────── */
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.ebook-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.ebook-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(12,45,94,0.14); }

.ebook-card.featured { border: 2px solid var(--blue-bright); }

.ebook-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--blue-bright);
  color: var(--white);
  font-size: 0.75rem;             /* was 0.7rem */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  z-index: 2;
}

.ebook-cover {
  height: 168px;                  /* was 160px */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cover-1 { background: linear-gradient(135deg, #0c2d5e, #185fa5); }
.cover-2 { background: linear-gradient(135deg, #185fa5, #2b72c8); }
.cover-3 { background: linear-gradient(135deg, #1f8b7e, #0c6e56); }
.cover-4 { background: linear-gradient(135deg, #1a4a8a, #1f8b7e); }
.cover-5 { background: linear-gradient(135deg, #071a3a, #185fa5); }
.cover-6 { background: linear-gradient(135deg, #0c6e56, #185fa5); }

.ebook-cover-text { text-align: center; padding: 0 20px; }

.ebook-cover-text p {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.95);
  font-size: 1rem;                /* was 0.95rem */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.ebook-cover-text span {
  font-size: 0.76rem;             /* was 0.72rem */
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ebook-body { padding: 24px; }

.ebook-body h3 {
  font-size: 1.1rem;              /* was 1rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.ebook-body p {
  font-size: 0.95rem;             /* was 0.83rem */
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.ebook-includes { list-style: none; margin-bottom: 22px; }

.ebook-includes li {
  font-size: 0.9rem;              /* was 0.8rem */
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ebook-includes li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.ebook-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.ebook-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-dark);
  font-family: 'Playfair Display', serif;
}

.ebook-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
}

.ebook-buy {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;             /* was 9px 18px */
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.9rem;              /* was 0.85rem */
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}

.ebook-buy:hover { background: var(--blue-mid); }

/* ── BUNDLE BOX ──────────────────────────────────────────── */
.bundle-box {
  margin-top: 40px;
  background: var(--navy-dark);
  border-radius: 14px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.bundle-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;             /* was 1.4rem */
  color: var(--white);
  margin-bottom: 10px;
}

.bundle-left p {
  color: rgba(255,255,255,0.78);  /* was 0.6 */
  font-size: 0.97rem;             /* was 0.88rem */
  max-width: 480px;
  line-height: 1.7;
}

.bundle-right { text-align: center; flex-shrink: 0; }

.bundle-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.bundle-was {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.bundle-save {
  font-size: 0.82rem;
  color: #5dd6c8;                 /* lighter teal — legible on dark BG */
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SITUATIONS ──────────────────────────────────────────── */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.situation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.situation-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(12,45,94,0.1); }

.situation-icon {
  width: 64px;                    /* was 52px — much more visible */
  height: 64px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;              /* was 1.4rem */
}

.situation-card h3 {
  font-size: 1.1rem;              /* was 1rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.situation-card p {
  font-size: 0.95rem;             /* was 0.85rem */
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.situation-link {
  font-size: 0.95rem;             /* was 0.85rem */
  font-weight: 700;
  color: var(--blue-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.situation-link:hover { color: var(--navy); }

/* ── EPISODE CARDS ───────────────────────────────────────── */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.episode-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.episode-card:hover { box-shadow: 0 6px 24px rgba(12,45,94,0.12); }

.episode-thumb {
  height: 130px;                  /* was 120px */
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 52px; height: 52px;     /* was 44px — larger tap target */
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  padding-left: 3px;
}

.episode-num {
  position: absolute;
  top: 10px; left: 12px;
  font-size: 0.76rem;             /* was 0.7rem */
  color: rgba(255,255,255,0.72);  /* was 0.55 */
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.episode-duration {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 0.76rem;             /* was 0.72rem */
  color: rgba(255,255,255,0.75);  /* was 0.6 */
}

.episode-body { padding: 20px 22px; }

.episode-body h3 {
  font-size: 1rem;                /* was 0.92rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.episode-body p {
  font-size: 0.9rem;              /* was 0.8rem */
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #7bc8f8;                 /* lightened for contrast on dark BG */
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;             /* was 0.8rem */
  color: rgba(255,255,255,0.72);  /* was 0.5 */
}

.about-content .section-label { color: var(--blue-light); }
.about-content .section-title { color: var(--white); }

.about-content p {
  color: rgba(255,255,255,0.85);  /* was 0.7 */
  font-size: 1rem;                /* was 0.95rem */
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 400;               /* was 300 */
}

.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }

.about-feature { display: flex; align-items: flex-start; gap: 16px; }

.about-feature-icon {
  width: 46px; height: 46px;     /* was 36px — more visible */
  background: rgba(43,114,200,0.22);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;              /* was 1rem */
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;                /* was 0.9rem */
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.about-feature p {
  font-size: 0.9rem;              /* was 0.82rem */
  color: rgba(255,255,255,0.75); /* was 0.55 */
  margin: 0;
  line-height: 1.6;
}

/* ── SHOP PAGE ───────────────────────────────────────────── */
.shop-section { background: var(--white); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.bundle-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.bundle-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bundle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(12,45,94,0.14); }

.bundle-card.featured-bundle { border: 2px solid var(--accent); }

.bundle-card-header {
  padding: 30px 30px 22px;
  background: var(--navy-dark);
  position: relative;
}

.bundle-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;             /* was 0.68rem */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}

.bundle-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;              /* was 1.25rem */
  color: var(--white);
  margin-bottom: 8px;
}

.bundle-card-header p {
  font-size: 0.92rem;             /* was 0.83rem */
  color: rgba(255,255,255,0.75);  /* was 0.6 */
  margin: 0;
  line-height: 1.6;
}

.bundle-card-body { padding: 26px 30px; }

.bundle-includes { list-style: none; margin-bottom: 26px; }

.bundle-includes li {
  font-size: 0.95rem;             /* was 0.85rem */
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.bundle-includes li:last-child { border-bottom: none; }

.bundle-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.bundle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.bundle-card-pricing { line-height: 1.35; }

.bundle-card-was {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.bundle-card-save {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── PRODUCT DETAIL PAGE ─────────────────────────────────── */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.product-sidebar { position: sticky; top: 92px; }

.product-cover-lg {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  box-shadow: 0 16px 52px rgba(12,45,94,0.22);
}

.product-cover-lg .ebook-cover-text p { font-size: 1.3rem; }
.product-cover-lg .ebook-cover-text span { font-size: 0.88rem; }

.product-buy-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.product-buy-box .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.product-buy-box .price-note {
  font-size: 0.9rem;              /* was 0.82rem */
  color: var(--text-muted);
  margin-bottom: 22px;
}

.product-guarantees { list-style: none; margin: 18px 0 0; }

.product-guarantees li {
  font-size: 0.92rem;             /* was 0.82rem */
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-guarantees li span { color: var(--accent); font-size: 1rem; }

.product-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;             /* was 1.6rem */
  color: var(--navy-dark);
  margin: 40px 0 14px;
}

.product-main h2:first-child { margin-top: 0; }

.product-main p {
  font-size: 1.05rem;             /* was 0.95rem */
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.product-chapters { list-style: none; margin: 0 0 26px; }

.product-chapters li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
}

.chapter-num {
  font-size: 0.8rem;              /* was 0.75rem */
  font-weight: 700;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 64px;
}

.chapter-title {
  font-size: 1rem;                /* was 0.9rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.chapter-desc {
  font-size: 0.9rem;              /* was 0.8rem */
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bonus-item {
  background: var(--accent-light);
  border: 1px solid rgba(31,139,126,0.28);
  border-radius: 9px;
  padding: 16px;
  font-size: 0.9rem;              /* was 0.82rem */
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}

.bonus-item::before { content: '📋'; font-size: 1.1rem; }

.related-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.related-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}

.related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(12,45,94,0.11); }

.related-cover {
  height: 96px;                   /* was 90px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-cover p {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.95);
  font-size: 0.84rem;             /* was 0.78rem */
  font-weight: 600;
  line-height: 1.4;
  padding: 0 14px;
  text-align: center;
}

.related-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-body span {
  font-size: 0.88rem;             /* was 0.82rem */
  color: var(--text-muted);
}

.related-body strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ── BUNDLE DETAIL PAGE ──────────────────────────────────── */
.bundle-detail {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.bundle-what-inside { margin-bottom: 44px; }

.bundle-product-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}

.bundle-product-row:hover { box-shadow: 0 4px 18px rgba(12,45,94,0.09); }

.bundle-mini-cover {
  width: 64px;
  height: 80px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-mini-cover span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 4px;
  font-weight: 600;
  line-height: 1.3;
}

.bundle-product-info h4 {
  font-size: 1rem;                /* was 0.95rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.bundle-product-info p {
  font-size: 0.9rem;              /* was 0.82rem */
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.bundle-value-table { width: 100%; border-collapse: collapse; margin-top: 18px; }

.bundle-value-table tr { border-bottom: 1px solid var(--border); }

.bundle-value-table td {
  padding: 11px 4px;
  font-size: 0.95rem;             /* was 0.85rem */
  color: var(--text-mid);
}

.bundle-value-table td:last-child { text-align: right; font-weight: 700; color: var(--navy-dark); }

.bundle-value-table tr.total td { font-size: 1.05rem; font-weight: 700; color: var(--navy-dark); border-bottom: none; }

.bundle-value-table tr.savings td { color: var(--accent); font-weight: 700; border-bottom: none; }

.bundle-buy-box {
  background: var(--navy-dark);
  border-radius: 14px;
  padding: 30px;
  position: sticky;
  top: 92px;
  text-align: center;
}

.bundle-buy-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.bundle-buy-box .bundle-was {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.bundle-buy-box .bundle-price { margin-bottom: 6px; }

.bundle-buy-box .bundle-save { margin-bottom: 26px; }

.bundle-buy-box p {
  font-size: 0.88rem;             /* was 0.8rem */
  color: rgba(255,255,255,0.68);  /* was 0.5 */
  margin-top: 16px;
  line-height: 1.7;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.97rem;             /* was 0.9rem */
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 26px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.contact-item-icon {
  width: 46px; height: 46px;     /* was 40px */
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;              /* was 1.1rem */
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.97rem;             /* was 0.88rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 0.9rem;              /* was 0.82rem */
  color: var(--text-muted);
  margin: 0;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.95rem;             /* was 0.85rem */
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;             /* was 11px — taller tap target */
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 1rem;                /* was 0.9rem */
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(43,114,200,0.12);  /* focus ring for accessibility */
}

.form-group textarea { height: 140px; resize: vertical; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 26px;
  font-weight: 700;               /* was 600 */
  font-size: 1.05rem;             /* was 0.95rem */
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue-bright);
  flex-shrink: 0;
  font-weight: 400;
}

.faq-a {
  padding: 0 26px 20px;
  font-size: 0.97rem;             /* was 0.88rem */
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── THANK YOU PAGE ──────────────────────────────────────── */
.thank-you-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  width: 88px; height: 88px;     /* was 80px */
  background: var(--accent-light);
  border: 2px solid rgba(31,139,126,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 30px;
}

.download-links { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }

.download-link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;             /* was 16px — taller */
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.download-link-btn:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 4px 14px rgba(12,45,94,0.09);
}

.download-link-btn .dlb-title {
  font-weight: 700;
  font-size: 1rem;                /* was 0.9rem */
  color: var(--navy-dark);
  text-align: left;
}

.download-link-btn .dlb-meta {
  font-size: 0.85rem;             /* was 0.78rem */
  color: var(--text-muted);
  text-align: left;
}

.download-link-btn .dlb-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── ABOUT FULL PAGE ─────────────────────────────────────── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.value-card .icon { font-size: 1.7rem; margin-bottom: 12px; }  /* was 1.5rem */
.value-card h4 {
  font-size: 1rem;                /* was 0.9rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.92rem;             /* was 0.82rem */
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--blue-mid));
  padding: 70px 5%;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.84);  /* was 0.7 */
  font-size: 1.05rem;             /* was 1rem */
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #040e1f;
  color: rgba(255,255,255,0.68);  /* was 0.55 */
  padding: 64px 5% 32px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;              /* was 0.83rem */
  line-height: 1.75;
  max-width: 290px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;             /* was 0.82rem */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);  /* was 0.5 */
  text-decoration: none;
  font-size: 0.9rem;              /* was 0.83rem */
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.84rem; }                      /* was 0.78rem */
.footer-bottom a {
  color: rgba(255,255,255,0.52);  /* was 0.4 */
  text-decoration: none;
  margin-left: 18px;
  font-size: 0.84rem;
}
.footer-bottom a:hover { color: var(--white); }

.disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 18px 22px;
  margin-bottom: 30px;
  font-size: 0.84rem;             /* was 0.76rem */
  line-height: 1.7;
  color: rgba(255,255,255,0.55);  /* was 0.38 */
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.section-bg-light { background: var(--off-white); }
.section-bg-pale { background: var(--blue-pale); }
.section-bg-dark { background: var(--navy-dark); color: var(--white); }

/* ── FREE DOWNLOAD PRODUCT PAGES ────────────────────────── */
.free-cover {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 16px 52px rgba(12,45,94,0.22);
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.free-cover::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
}

.free-cover-icon { font-size: 3.2rem; margin-bottom: 18px; } /* was 2.8rem */

.free-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 12px;
}

.free-cover-meta {
  font-size: 0.76rem;             /* was 0.72rem */
  color: rgba(255,255,255,0.72);  /* was 0.6 */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.free-badge-cover {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}

/* Free cover colour variants */
.fc-teal    { background: linear-gradient(135deg, #1f8b7e 0%, #185fa5 100%); }
.fc-blue    { background: linear-gradient(135deg, #185fa5 0%, #1f8b7e 100%); }
.fc-green   { background: linear-gradient(135deg, #0c6e56 0%, #1f8b7e 100%); }
.fc-navy    { background: linear-gradient(135deg, #071a3a 0%, #185fa5 100%); }
.fc-mid     { background: linear-gradient(135deg, #185fa5 0%, #071a3a 100%); }
.fc-warm    { background: linear-gradient(135deg, #1f8b7e 0%, #071a3a 100%); }

.download-box {
  background: var(--accent-light);
  border: 1.5px solid rgba(31,139,126,0.35);
  border-radius: 14px;
  padding: 26px;
}

.download-box .free-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.download-box .price-note {
  font-size: 0.92rem;             /* was 0.82rem */
  color: var(--text-muted);
  margin-bottom: 20px;
}

.download-box .email-input {
  width: 100%;
  padding: 13px 16px;             /* was 11px — taller tap target */
  border: 1.5px solid rgba(31,139,126,0.4);
  border-radius: 7px;
  font-size: 1rem;                /* was 0.9rem */
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  margin-bottom: 12px;
}

.download-box .email-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,139,126,0.12);
}

.btn-accent-download {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;                  /* was 13px */
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;                /* was 0.95rem */
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-accent-download:hover { background: #167066; }

.btn-accent-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.97rem;             /* was 0.9rem */
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-accent-outline:hover { background: var(--accent-light); }

.or-divider {
  text-align: center;
  font-size: 0.84rem;             /* was 0.78rem */
  color: var(--text-muted);
  margin: 14px 0;
  position: relative;
}

.or-divider::before, .or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}

.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

.inside-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.inside-section:last-child { border-bottom: none; }

.inside-section h4 {
  font-size: 1rem;                /* was 0.92rem */
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.inside-section ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.inside-section ul li {
  font-size: 0.97rem;             /* was 0.85rem */
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
}

.inside-section ul li::before {
  content: '☐';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;                /* was 0.9rem — larger checkbox */
  margin-top: 1px;
}

.upsell-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.upsell-mini-cover {
  height: 100px;
  width: 80px;
  min-width: 80px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.upsell-mini-cover p {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.95);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.upsell-content .label {
  font-size: 0.78rem;             /* was 0.75rem */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 5px;
}

.upsell-content h4 {
  font-size: 1.05rem;             /* was 1rem */
  color: var(--navy-dark);
  margin-bottom: 7px;
}

.upsell-content p {
  font-size: 0.92rem;             /* was 0.83rem */
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero h1 { font-size: 2.3rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-stats { margin-top: 0; }
  .product-detail { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .bundle-detail { grid-template-columns: 1fr; }
  .bundle-buy-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  html { font-size: 106%; }        /* 17px on small screens — still senior-safe */
  section { padding: 60px 4%; }
  .section-title { font-size: 1.8rem; }
  .hero h1 { font-size: 2rem; }
  .email-capture { flex-direction: column; text-align: center; }
  .email-form { flex-direction: column; width: 100%; }
  .email-form input { width: 100%; }
  .bundle-box { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
