/* ============================================
   True North AI Solutions
   Practical AI guidance for content, brand, and marketing workflows
   ============================================ */

:root {
  --red:      #EB4213;
  --pink:     #FF99DC;
  --purple:   #826DEE;
  --green:    #D8F382;
  --black:    #0D0D0D;
  --white:    #FFFFFF;
  --offwhite: #FFF8F5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', sans-serif;
  background: var(--offwhite);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
}
.nav-logo {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900; font-size: 20px;
  color: var(--pink); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.5);} }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: 100px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  z-index: 99; background: var(--black);
  padding: 24px 24px 32px; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 18px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Cabinet Grotesk', sans-serif;
}
.mobile-menu a:last-child {
  border-bottom: none; color: var(--pink); margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--purple); color: var(--white);
  padding: 15px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700;
  text-decoration: none;
  font-family: 'Cabinet Grotesk', sans-serif;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { transform: scale(1.04); opacity: 0.92; }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700;
  text-decoration: none;
  font-family: 'Cabinet Grotesk', sans-serif;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block; cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--black); color: var(--white);
  padding: 15px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700;
  text-decoration: none;
  font-family: 'Cabinet Grotesk', sans-serif;
  display: inline-block; transition: opacity 0.2s; cursor: pointer; border: none;
}
.btn-dark:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  background: var(--red);
  min-height: 88vh;
  padding: 130px 60px 90px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 550px; height: 550px;
  background: var(--purple); border-radius: 50%;
  top: -120px; right: -60px;
  opacity: 0.38; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 300px; height: 300px;
  background: var(--pink); border-radius: 50%;
  bottom: -40px; right: 60px;
  opacity: 0.2; pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: var(--purple); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 1.0; color: var(--white); margin-bottom: 12px;
}
.hero-underline {
  display: block; width: 280px; height: 6px;
  background: var(--green); border-radius: 4px;
  margin-bottom: 28px;
}
.hero p {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 560px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero side card — replaces stat cards, signals "learning lab" */
.hero-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-card-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--purple); text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-size: 22px; line-height: 1.2;
  color: var(--black); margin-bottom: 12px;
}
.hero-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(0,0,0,0.65); margin-bottom: 18px;
}
.hero-card-list { list-style: none; }
.hero-card-list li {
  font-size: 13px; line-height: 1.5;
  color: rgba(0,0,0,0.75);
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 10px; align-items: flex-start;
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li::before {
  content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green);
  padding: 18px 60px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 13px; font-weight: 500;
  color: var(--black); opacity: 0.55;
  white-space: nowrap;
}
.trust-divider {
  width: 1px; height: 18px;
  background: rgba(0,0,0,0.15); flex-shrink: 0;
}
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-item {
  font-size: 14px; font-weight: 700;
  color: var(--purple);
  font-family: 'Cabinet Grotesk', sans-serif;
}

/* ===== SECTION BASICS ===== */
.section-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-headline {
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.08;
  color: var(--black); margin-bottom: 16px;
  max-width: 640px;
}
.section-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(0,0,0,0.55);
  max-width: 600px; margin-bottom: 52px;
}

/* ===== RESOURCES ===== */
.resources { background: var(--white); padding: 96px 60px; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.resource-card {
  background: var(--offwhite);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}
.resource-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 16px; align-self: flex-start;
}
.tag-progress { background: var(--green); color: #3a5a00; }
.tag-soon { background: rgba(130, 109, 238, 0.15); color: var(--purple); }
.tag-live { background: var(--red); color: var(--white); }
.resource-card h3 {
  font-size: 21px; line-height: 1.2;
  color: var(--black); margin-bottom: 10px;
}
.resource-card p {
  font-size: 15px; line-height: 1.65;
  color: rgba(0,0,0,0.6);
  flex-grow: 1;
}

/* ===== ABOUT ===== */
.about {
  background: var(--purple);
  padding: 96px 60px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px; align-items: center;
  position: relative; overflow: hidden;
}
.about::before {
  content: ''; position: absolute;
  width: 480px; height: 480px;
  background: var(--pink); border-radius: 50%;
  left: -140px; top: -120px;
  opacity: 0.18; pointer-events: none;
}
.avatar-card {
  width: 360px; height: 440px;
  border-radius: 22px; overflow: hidden;
  position: relative; z-index: 1; flex-shrink: 0;
}
.avatar-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-content { position: relative; z-index: 1; }
.about-content .section-eyebrow { color: var(--green); }
.about-content h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1; color: var(--white); margin-bottom: 18px;
}
.about-content p {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.88); margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 28px; }

/* ===== OFFER TEASER ===== */
.offer-teaser {
  background: var(--black);
  padding: 96px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.offer-teaser .section-eyebrow { color: var(--pink); }
.offer-teaser h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.1; color: var(--white); margin-bottom: 18px;
}
.offer-teaser p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.7); margin-bottom: 24px;
}
.offer-bullets { list-style: none; }
.offer-bullets li {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 12px; align-items: flex-start;
}
.offer-bullets li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--green);
  padding: 96px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute;
  width: 380px; height: 380px;
  background: var(--purple); border-radius: 50%;
  top: -160px; left: -120px;
  opacity: 0.15; pointer-events: none;
}
.newsletter::after {
  content: ''; position: absolute;
  width: 320px; height: 320px;
  background: var(--red); border-radius: 50%;
  bottom: -140px; right: -100px;
  opacity: 0.12; pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.newsletter .section-eyebrow { color: var(--red); }
.newsletter h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.05; color: var(--black); margin-bottom: 18px;
}
.newsletter p {
  font-size: 17px; line-height: 1.7;
  color: rgba(0,0,0,0.65); margin-bottom: 32px;
}
.newsletter-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1 1 260px;
  padding: 16px 22px;
  border-radius: 100px;
  border: 2px solid var(--black);
  font-size: 15px; font-family: 'Satoshi', sans-serif;
  background: var(--white); color: var(--black);
  outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--purple); }
.newsletter-fineprint {
  margin-top: 18px; font-size: 13px;
  color: rgba(0,0,0,0.5);
}
.newsletter-success {
  display: none;
  background: var(--white); border-radius: 16px;
  padding: 28px; max-width: 480px; margin: 0 auto;
  border: 2px solid var(--black);
}
.newsletter-success.show { display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--black); color: var(--white);
  padding: 56px 60px 36px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 36px;
}
.footer-brand h3 {
  color: var(--pink); font-size: 22px; margin-bottom: 8px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.55); max-width: 360px;
}
.footer-col h4 {
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 14px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 15px; display: block; padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ===== WORK WITH ME PAGE ===== */
.page-hero {
  background: var(--purple);
  padding: 130px 60px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 480px; height: 480px;
  background: var(--pink); border-radius: 50%;
  top: -160px; right: -120px;
  opacity: 0.2; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero .section-eyebrow { color: var(--green); }
.page-hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.05; color: var(--white); margin-bottom: 18px;
}
.page-hero p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.88); max-width: 620px;
}

.offer-detail { background: var(--offwhite); padding: 96px 60px; }
.offer-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.offer-detail-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px;
  border: 1.5px solid rgba(0,0,0,0.06);
}
.offer-detail-card h2 {
  font-size: 30px; line-height: 1.15;
  margin-bottom: 12px;
}
.offer-detail-card .price {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 38px; font-weight: 900;
  color: var(--red); margin-bottom: 6px;
}
.offer-detail-card .price-note {
  font-size: 14px; color: rgba(0,0,0,0.55);
  margin-bottom: 28px;
}
.offer-detail-card h3 {
  font-size: 15px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
  margin-top: 28px; margin-bottom: 14px;
}
.offer-detail-card ul { list-style: none; }
.offer-detail-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px; line-height: 1.55;
  color: rgba(0,0,0,0.78);
  display: flex; gap: 10px; align-items: flex-start;
}
.offer-detail-card li::before {
  content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0;
}
.offer-detail-card .btn-dark {
  margin-top: 28px; width: 100%; text-align: center;
}

.offer-detail-side h2 {
  font-size: 30px; line-height: 1.15;
  color: var(--black); margin-bottom: 16px;
}
.offer-detail-side p {
  font-size: 16px; line-height: 1.7;
  color: rgba(0,0,0,0.68);
  margin-bottom: 18px;
}
.offer-detail-side h3 {
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  margin-top: 32px; margin-bottom: 12px;
}
.offer-fit-list { list-style: none; }
.offer-fit-list li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(0,0,0,0.78);
  display: flex; gap: 10px; align-items: flex-start;
}
.offer-fit-list li::before {
  content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0;
}

.faq { background: var(--white); padding: 96px 60px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 24px 0;
}
.faq-item h3 {
  font-size: 19px; margin-bottom: 10px;
  color: var(--black);
}
.faq-item p {
  font-size: 15px; line-height: 1.7;
  color: rgba(0,0,0,0.65);
}

/* ===== HOW IT WORKS (3 steps) ===== */
.how-it-works { background: var(--white); padding: 96px 60px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--offwhite);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.step-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.step-num::before {
  content: ''; display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%; background: var(--red);
  color: var(--white); text-align: center;
  line-height: 28px; font-size: 14px;
  counter-increment: step;
  content: counter(step);
  font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900;
}
.step-card h3 {
  font-size: 22px; line-height: 1.15;
  color: var(--black); margin-bottom: 12px;
}
.step-card p {
  font-size: 15px; line-height: 1.65;
  color: rgba(0,0,0,0.62);
}
.step-meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--purple);
  font-weight: 700;
  font-family: 'Cabinet Grotesk', sans-serif;
}

/* ===== DECK PREVIEW (what's in the game plan) ===== */
.deck-preview {
  background: var(--offwhite);
  padding: 96px 60px;
}
.deck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1200px;
}
.deck-slide {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1.5px solid rgba(0,0,0,0.06);
  position: relative;
  min-height: 130px;
  transition: transform 0.2s, border-color 0.2s;
}
.deck-slide:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
}
.deck-slide-num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px; font-weight: 900;
  color: rgba(130, 109, 238, 0.18);
  line-height: 1;
}
.deck-slide h4 {
  font-size: 14px; line-height: 1.25;
  color: var(--black);
  margin-bottom: 8px;
  padding-right: 32px;
  font-weight: 900;
}
.deck-slide p {
  font-size: 13px; line-height: 1.5;
  color: rgba(0,0,0,0.55);
}

/* ===== FREEBIE / LEAD MAGNET ===== */
.freebie {
  background: var(--pink);
  padding: 96px 60px;
  position: relative; overflow: hidden;
}
.freebie::before {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  background: var(--purple); border-radius: 50%;
  top: -150px; right: -120px;
  opacity: 0.2; pointer-events: none;
}
.freebie-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px;
}
.freebie .section-eyebrow { color: var(--black); opacity: 0.6; }
.freebie h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 14px;
}
.freebie p {
  font-size: 16px; line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin-bottom: 24px;
  max-width: 520px;
}
.freebie-form {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 460px;
}
.freebie-form input[type="email"] {
  flex: 1 1 220px;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid var(--black);
  font-size: 15px;
  font-family: 'Satoshi', sans-serif;
  background: var(--white);
  outline: none;
}
.freebie-form input[type="email"]:focus { border-color: var(--purple); }
.freebie-fineprint {
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  margin-top: 14px;
}

/* Freebie visual mock (the PDF preview card) */
.freebie-mock {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
}
.freebie-mock-tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.freebie-mock h4 {
  font-size: 18px; line-height: 1.15;
  margin-bottom: 16px;
  color: var(--black);
}
.freebie-mock ol {
  padding-left: 18px; list-style: decimal;
}
.freebie-mock li {
  font-size: 13px; line-height: 1.5;
  color: rgba(0,0,0,0.75);
  padding: 4px 0;
}
.freebie-success {
  display: none;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-top: 8px;
  max-width: 460px;
  border: 2px solid var(--black);
  font-size: 15px;
}
.freebie-success.show { display: block; }

/* ===== GUARANTEE CALLOUT ===== */
.guarantee-callout {
  background: var(--green);
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0 0;
  display: flex; gap: 22px; align-items: flex-start;
}
.guarantee-callout::before {
  content: '✓';
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  font-family: 'Cabinet Grotesk', sans-serif;
}
.guarantee-callout h4 {
  font-size: 18px; margin-bottom: 6px;
  color: var(--black);
}
.guarantee-callout p {
  font-size: 14px; line-height: 1.6;
  color: rgba(0,0,0,0.72);
  margin: 0;
}

/* ===== DISCOVERY CALL QUESTIONS PREVIEW ===== */
.questions-preview {
  background: var(--white); padding: 96px 60px;
}
.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1100px;
}
.question-card {
  background: var(--offwhite);
  border-left: 4px solid var(--purple);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  transition: border-color 0.2s;
}
.question-card:hover { border-color: var(--red); }
.question-card .q-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--purple); text-transform: uppercase;
  margin-bottom: 8px;
}
.question-card p {
  font-size: 15px; line-height: 1.55;
  color: var(--black);
  margin: 0; font-weight: 500;
}

/* ===== SAMPLE SLIDE MOCKUP ===== */
.sample-slide {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 40px;
  border: 1.5px solid rgba(0,0,0,0.08);
  max-width: 620px;
  margin: 32px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.sample-slide-header {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sample-slide h3 {
  font-size: 24px; line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
}
.sample-slide .sample-body p {
  font-size: 14px; line-height: 1.65;
  color: rgba(0,0,0,0.72);
  margin-bottom: 12px;
}
.sample-slide .impact-bar {
  display: flex; gap: 14px; margin-top: 18px;
  flex-wrap: wrap;
}
.sample-slide .impact-bar span {
  font-size: 12px; padding: 6px 12px;
  border-radius: 100px;
  background: var(--offwhite);
  font-weight: 600;
}
.sample-slide .impact-bar .high {
  background: var(--green); color: #2a4a00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .about, .offer-teaser, .resources, .newsletter,
  .page-hero, .offer-detail, .faq, footer,
  .how-it-works, .deck-preview, .freebie, .questions-preview {
    padding-left: 24px; padding-right: 24px;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .freebie-inner { grid-template-columns: 1fr; gap: 36px; }
  .freebie-mock { transform: none; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px; padding-bottom: 60px;
    min-height: auto; gap: 40px;
  }
  .hero-card { order: 2; }
  .about {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .avatar-card { width: 100%; max-width: 360px; margin: 0 auto; }
  .offer-teaser { grid-template-columns: 1fr; gap: 32px; }
  .offer-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { padding: 16px 24px; }
}
