*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #a02021;
  --primary-dk: #7f191a;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --r: 8px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Geist", system-ui, sans-serif;
  background: var(--white);
  color: var(--stone-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--stone-200);
  padding: 0 24px;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 36px;
  display: block;
}
.nav-logo-text {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--stone-800);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--stone-500);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s !important;
}

.nav-cta:hover {
  background: var(--primary-dk) !important;
  transform: translateY(-1px);
}

.topbar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}
.topbar strong {
  font-weight: 700;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(160, 32, 33, 0.55) 0%,
      rgba(127, 25, 26, 0.35) 50%,
      rgba(160, 32, 33, 0.45) 100%
    ),
    linear-gradient(180deg, #2a0a0a 0%, #4a1010 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.unbreakablelove.com/images/backgrounds/hero-couple.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  padding: 8rem 24px;
}
.hero-content {
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 span {
  color: #d6d0c8;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: #e8e0d8;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bundle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.bundle-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
  backdrop-filter: blur(8px);
}
.bundle-pill .bp-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.bundle-pill .bp-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.bundle-pill .bp-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.bundle-plus {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-price {
  margin-bottom: 28px;
}
.hero-price .was {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  letter-spacing: 1px;
}
.hero-price .amount {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-price .period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8e2d8;
  color: var(--primary);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: var(--r);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 36px;
  border-radius: var(--r);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* INCLUDES CARD in hero */
.hero-offer-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 32px;
  max-width: 500px;
  backdrop-filter: blur(8px);
}
.hero-offer-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.inc-item:last-child {
  border-bottom: none;
}
.inc-item svg {
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
.price-row-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 24px;
}
.price-row-hero .old {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}
.price-row-hero .new {
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--stone-600);
}
.trust-item svg {
  color: var(--primary);
}

/* ── PRICE BANNER ── */
.price-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 20px 24px;
}

.price-banner p {
  font-size: 15px;
  font-weight: 500;
}
.price-banner strong {
  font-size: 28px;
  font-weight: 700;
  margin: 0 8px;
}
.price-banner s {
  font-size: 15px;
  opacity: 0.6;
}

/* ── SECTIONS ── */
.sec {
  padding: 80px 24px;
}
.sec-stone {
  background: var(--stone-50);
}
.sec-white {
  background: var(--white);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
}

.sec-label {
  display: inline-block;
  background: #fef2f2;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--stone-800);
  line-height: 1.15;
  margin-bottom: 16px;
}
.body-p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--stone-600);
}

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

.what-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.what-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.what-icon {
  width: 56px;
  height: 56px;
  background: #fef2f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.what-icon svg {
  color: var(--primary);
}
.what-icon.stone {
  background: var(--stone-100);
}
.what-icon.stone svg {
  color: var(--stone-700);
}

.what-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 8px;
}
.what-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stone-600);
}

/* ── MODULE SECTION ── */
.module-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--stone-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 4px;
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--stone-600);
}

/* CTA CARD inside module */
.module-cta-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dk) 100%
  );
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--white);
}

.module-cta-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.module-cta-card p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

.checklist {
  list-style: none;
  margin-bottom: 28px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 6px 0;
}
.checklist li svg {
  flex-shrink: 0;
}

.btn-white {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-white:hover {
  background: #f5f5f4;
}

/* ── UPSELL BOX ── */
.upsell-box {
  background: var(--stone-100);
  border: 1px dashed var(--stone-300);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  text-align: center;
}

.upsell-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 8px;
}
.upsell-box p {
  font-size: 15px;
  color: var(--stone-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-primary-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--r);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* BOOK */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.book-cover {
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, var(--stone-900) 0%, #3d1010 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  box-shadow:
    -8px 8px 40px rgba(0, 0, 0, 0.35),
    8px 0 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.book-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 25%,
    rgba(160, 32, 33, 0.25),
    transparent 60%
  );
}
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.b-ornament {
  font-size: 40px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.b-title {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 600;
  color: #e8e2d8;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.b-author {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}
.book-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 14px;
}
.book-info p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone-600);
  margin-bottom: 14px;
}
.included-tag {
  display: inline-block;
  background: #fef2f2;
  border: 1px solid rgba(160, 32, 33, 0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
}

/* INCLUDED CARDS */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.inc-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.inc-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.inc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dk));
}
.inc-val {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.inc-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 8px;
}
.inc-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stone-600);
}

/* CONSULT */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.consult-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.consult-card .big {
  font-size: 56px;
  margin-bottom: 16px;
}
.consult-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 10px;
}
.consult-card p {
  font-size: 15px;
  color: var(--stone-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.free-badge {
  display: inline-block;
  background: #fef2f2;
  border: 1px solid rgba(160, 32, 33, 0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
}
.consult-copy h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 14px;
}
.consult-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone-600);
  margin-bottom: 14px;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--stone-50);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.testi-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}
.testi-card blockquote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone-700);
  font-style: italic;
  margin-bottom: 16px;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--stone-900);
}
.testi-role {
  font-size: 13px;
  color: var(--stone-500);
  margin-top: 2px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 48px;
}
.stat-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 15px;
  color: var(--stone-600);
}

/* CTA BOTTOM */
.cta-bottom {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dk) 100%
  );
  padding: 80px 24px;
  text-align: center;
}
.cta-bottom h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-bottom > div > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.value-stack {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.v-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.v-row:last-child {
  border-bottom: none;
}
.v-name {
  font-weight: 500;
}
.v-price {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-size: 14px;
}
.v-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}
.v-total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.v-total-price {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.btn-white-lg {
  display: inline-block;
  background: #e8e2d8;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 52px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-white-lg:hover {
  background: var(--white);
}
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 18px;
}

/* ASSOC */
.assoc-bar {
  background: var(--white);
  border-top: 1px solid var(--stone-200);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.assoc-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 80px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}
.assoc-bar a:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.assoc-bar img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.2s;
}
.assoc-bar a:hover img {
  filter: grayscale(0);
}

/* ── FOOTER ── */

footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  height: 52px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-400);
  max-width: 360px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--stone-400);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--stone-200);
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--stone-400);
}
.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a {
  color: var(--stone-400);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--stone-200);
}

/* MODULES GRID */
.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.mod-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--stone-50);
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid var(--stone-200);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.mod-row:hover {
  border-color: var(--stone-300);
  transform: translateX(4px);
}
.mod-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--stone-300);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.mod-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 6px;
}
.mod-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stone-600);
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }
  .book-grid {
    grid-template-columns: 1fr;
  }
  .consult-grid {
    grid-template-columns: 1fr;
  }
  .inc-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 6rem 20px;
  }
  .bundle-plus {
    display: none;
  }
  .modules-grid {
    gap: 12px;
  }
}

/* <s>Assessment</s> <span class="discovery-label">Discovery</span> strikethrough + Discovery label */
s {
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  color: inherit;
  opacity: 0.75;
}
.discovery-label {
  color: var(--stone-50);
  font-style: italic;
  font-weight: 600;
}
