/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-blue: #2F4550;
  --dusty-rose: #C98C8C;
  --cream: #F4EFEA;
  --light-blue: #D5E8EC;
  --sage: #9CAF88;
  --light-sage: #EFF3EB;
  --warm-gray: #D4C5BC;
  --near-black: #1A1A1A;
  --mid-blue: #7AABBC;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--near-black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-blue);
  line-height: 1.2;
}

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

.center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
  background: var(--deep-blue);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.site-title img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dusty-rose); }

.nav-cta {
  background: var(--cream) !important;
  color: var(--deep-blue) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta:hover { opacity: 0.9; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
  flex: 1;
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 120px 120px 12px 12px;
  border: 3px solid var(--dusty-rose);
  box-shadow: 0 8px 30px rgba(47,69,80,0.12);
}

.headshot-round {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dusty-rose);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--deep-blue);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-primary {
  background: var(--deep-blue);
  color: var(--cream);
}

.btn-rose {
  background: var(--dusty-rose);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

.text-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dusty-rose);
  text-decoration: underline;
}

.text-link:hover { color: var(--deep-blue); }

/* ===== FEATURED PRODUCT ===== */
.featured-product {
  background: var(--light-blue);
  padding: 80px 0;
}

.featured-product .eyebrow {
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.featured-product h2 {
  font-size: 40px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.body-text {
  font-size: 16px;
  color: var(--deep-blue);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

.body-text.light { color: var(--white); }

/* ===== PRODUCT LADDER ===== */
.product-ladder {
  background: var(--cream);
  padding: 80px 0;
}

.product-ladder h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: var(--deep-blue);
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--dusty-rose);
  margin-bottom: 12px;
}

.card-subtitle {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sage);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ASSESSMENT SECTION ===== */
.assessment-section {
  background: var(--deep-blue);
  padding: 80px 0;
}

.assessment-section h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 16px;
}

.assessment-section .body-text {
  max-width: 600px;
}

.assessment-section .btn {
  margin-top: 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--cream);
  padding: 80px 0;
}

.about-section h2 {
  font-size: 36px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.about-section .text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--deep-blue);
  padding: 48px 0;
  color: var(--warm-gray);
}

.footer-inner {
  text-align: center;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--warm-gray);
  text-decoration: none;
}

.footer-nav a:hover { color: var(--dusty-rose); }

.footer-copy {
  font-size: 13px;
  color: var(--mid-blue);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--cream);
  padding: 80px 0 60px;
}

.page-header h1 {
  font-size: 48px;
  max-width: 800px;
  margin: 0 auto 24px;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  background: var(--cream);
  padding: 0 0 80px;
}

.about-body {
  max-width: 700px;
  margin: 0 auto;
}

.about-body p {
  font-size: 16px;
  color: var(--deep-blue);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-body h3 {
  font-size: 22px;
  margin: 40px 0 16px;
  color: var(--dusty-rose);
}

/* ===== COMING SOON ===== */
.coming-hero {
  background: var(--deep-blue);
  padding: 80px 0 60px;
}

.coming-hero h1 { color: var(--white); }
.light { color: var(--white) !important; }

.coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

/* ===== SIGNUP FORM ===== */
.signup-section {
  background: var(--light-blue);
  padding: 80px 0;
}

.signup-form {
  max-width: 480px;
  margin: 24px auto 0;
}

.signup-form form {
  display: flex;
  gap: 12px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  background: var(--white);
  color: var(--near-black);
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--deep-blue);
}

.signup-form .btn {
  white-space: nowrap;
  padding: 14px 24px;
}

/* ===== GUIDANCE SECTION ===== */
.guidance-section {
  background: var(--light-sage);
  padding: 80px 0;
}

/* ===== FEATURED SUBTITLE ===== */
.featured-subtitle {
  font-size: 20px;
  color: var(--deep-blue);
  margin-bottom: 20px;
}

/* ===== WHATS INSIDE LIST ===== */
.whats-inside {
  max-width: 500px;
  margin: 0 auto 30px;
}

.whats-inside ul {
  list-style: none;
  padding: 0;
}

.whats-inside li {
  font-size: 16px;
  color: var(--deep-blue);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.whats-inside li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--dusty-rose);
}

/* ===== CARD DESCRIPTION ===== */
.card-desc {
  font-size: 14px;
  color: var(--deep-blue);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ===== ACTIVE NAV ===== */
.nav-links .active {
  color: var(--dusty-rose) !important;
  font-weight: 700;
}

.nav-links .active.nav-cta {
  color: var(--deep-blue) !important;
}

/* ===== BPP SALES PAGE ===== */
.brand-bar {
  background: var(--deep-blue);
  padding: 16px 0;
  overflow: hidden;
}

.brand-bar-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--light-blue);
  letter-spacing: 1px;
  white-space: nowrap;
}

.for-you-section {
  background: var(--cream);
  padding: 80px 0;
}

.check-list {
  max-width: 600px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
}

.check-list li {
  font-size: 16px;
  color: var(--deep-blue);
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.why-now-section {
  background: var(--light-blue);
  padding: 80px 0;
}

.whats-inside-section {
  background: var(--cream);
  padding: 80px 0;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.inside-item {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 28px;
}

.inside-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.inside-item p {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.6;
}

.inside-item.full-width {
  grid-column: 1 / -1;
}

.final-cta {
  background: var(--deep-blue);
  padding: 80px 0;
}

.final-cta h2 { color: var(--white); }

.price-box {
  text-align: center;
  margin: 32px auto;
  max-width: 500px;
}

.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}

.price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--light-blue);
}

.price-details {
  font-size: 14px;
  color: var(--light-blue);
  line-height: 1.6;
}

.btn-lg {
  font-size: 18px;
  padding: 18px 50px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: var(--cream);
  padding: 0 0 80px;
}

.legal-body {
  max-width: 700px;
  margin: 0 auto;
}

.legal-body p, .legal-body li {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-body h3 {
  font-size: 18px;
  margin: 32px 0 12px;
}

.legal-body ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body a {
  color: var(--dusty-rose);
}

.footer-legal {
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--warm-gray);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--dusty-rose);
}

/* ===== PULL-QUOTE / TRUTHS SECTION ===== */
.truths-section {
  background: var(--cream);
  padding: 80px 0;
}

.truths-section.has-bg {
  background: var(--light-blue);
}

.pull-quote-block {
  max-width: 700px;
  margin: 0 auto;
  background: var(--deep-blue);
  border-left: 4px solid var(--dusty-rose);
  border-radius: 0 12px 12px 0;
  padding: 40px 40px 40px 36px;
}

.pull-quote-block h2 {
  font-size: 28px;
  margin-bottom: 28px;
  color: var(--cream);
}

.pull-quote-block .truths-list li {
  color: var(--cream);
}

.pull-quote-block .truths-list li::before {
  color: var(--dusty-rose);
}

/* Subtle section divider */
.section-rule {
  max-width: 120px;
  margin: 0 auto;
  border: none;
  border-top: 2px solid var(--dusty-rose);
}

/* Rose section divider — wider, for major breaks */
.section-rule-wide {
  max-width: 200px;
  margin: 0 auto;
  border: none;
  border-top: 3px solid var(--dusty-rose);
}

.truths-list {
  list-style: none;
  padding: 0;
}

.truths-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--deep-blue);
  line-height: 1.6;
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: none;
}

.truths-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--dusty-rose);
  font-size: 20px;
  line-height: 1.6;
}

.truths-list li:last-child { border-bottom: none; }

/* ===== CREDENTIALS BAR ===== */
.credentials-bar {
  background: var(--dusty-rose);
  padding: 20px 0;
}

.credentials-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ===== ABOUT — WHAT I BUILT ===== */
.built-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.built-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 28px;
}

.built-card .btn-rose-full {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  background: var(--dusty-rose);
  color: var(--white);
  transition: opacity 0.2s, transform 0.2s;
}

.built-card .btn-rose-full:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.built-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.built-card .price {
  margin-bottom: 10px;
}

.built-card p {
  font-size: 14px;
  color: var(--deep-blue);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== TOOLS PAGE — FULL-WIDTH PRODUCT CARDS ===== */
.product-stack {
  margin-top: 48px;
}

.product-card-full {
  padding: 60px 0;
}

.product-card-full:nth-child(odd) {
  background: var(--cream);
}

.product-card-full:nth-child(even) {
  background: var(--white);
}

.product-card-full .card-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-card-full h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.product-card-full .price {
  font-size: 20px;
  margin-bottom: 16px;
}

.product-card-full .hook {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.4;
  margin-bottom: 24px;
}

.product-card-full .for-you {
  margin-bottom: 24px;
}

.product-card-full .for-you-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dusty-rose);
  margin-bottom: 12px;
}

.product-card-full .for-you ul {
  list-style: none;
  padding: 0;
}

.product-card-full .for-you li {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.product-card-full .for-you li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.product-card-full .promise {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-content {
  background: var(--cream);
  padding: 0 0 80px;
}

.faq-body {
  max-width: 700px;
  margin: 0 auto;
}

.faq-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--deep-blue);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--warm-gray);
}

.faq-section-heading:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}

.faq-item summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-blue);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--dusty-rose);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p, .faq-answer li {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer ul, .faq-answer ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.faq-answer a {
  color: var(--dusty-rose);
}

/* ===== SCRIPT LIST (CCS page) ===== */
.script-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.script-list li {
  font-size: 15px;
  color: var(--deep-blue);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.script-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--dusty-rose);
}

/* ===== LINKS PAGE ===== */
.links-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 48px 24px;
}

.links-container {
  max-width: 440px;
  margin: 0 auto;
}

.links-profile {
  text-align: center;
  margin-bottom: 32px;
}

.links-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.links-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.links-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--mid-blue);
  line-height: 1.5;
}

.links-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid-blue);
  margin: 28px 0 12px;
}

.link-btn {
  display: block;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.link-btn-featured {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
}

.link-btn-featured .link-btn-title { color: var(--white); }
.link-btn-featured .link-btn-sub { color: rgba(255,255,255,0.85); }

.link-btn-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-blue);
}

.link-btn-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--mid-blue);
  margin-top: 4px;
}

.links-footer {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--mid-blue);
  margin-top: 32px;
}

.links-footer a {
  color: var(--mid-blue);
  text-decoration: none;
}

.links-footer a:hover { color: var(--dusty-rose); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-blue);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(244,239,234,0.15);
  }

  .nav-links.open { display: flex; }

  .site-header { position: relative; }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .hero-photo img {
    width: 240px;
    height: 300px;
  }

  .hero h1 { font-size: 32px; }

  .hero { padding: 48px 0 40px; }

  .featured-product h2,
  .product-ladder h2,
  .assessment-section h2,
  .about-section h2 {
    font-size: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-product,
  .product-ladder,
  .assessment-section,
  .about-section {
    padding: 48px 0;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .page-header h1 { font-size: 32px; }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .inside-grid {
    grid-template-columns: 1fr;
  }

  .signup-form form {
    flex-direction: column;
  }

  .brand-bar-inner {
    font-size: 12px;
    gap: 10px;
  }

  .guidance-section { padding: 48px 0; }
  .signup-section { padding: 48px 0; }
  .whats-inside-section { padding: 48px 0; }
  .for-you-section { padding: 48px 0; }
  .why-now-section { padding: 48px 0; }
  .final-cta { padding: 48px 0; }
  .coming-hero { padding: 48px 0; }

  .price-main { font-size: 28px; }

  .btn-lg {
    font-size: 16px;
    padding: 16px 32px;
  }

  .faq-content { padding: 0 0 48px; }
  .faq-section-heading { font-size: 20px; margin-top: 32px; }

  .truths-section { padding: 48px 0; }
  .truths-list li { font-size: 17px; padding: 14px 0; }
  .pull-quote-block { padding: 28px 24px 28px 20px; }
  .pull-quote-block h2 { font-size: 24px; }

  .credentials-inner { font-size: 12px; gap: 6px 12px; }

  .built-grid { grid-template-columns: 1fr; }

  .product-card-full { padding: 40px 0; }
  .product-card-full h3 { font-size: 24px; }
  .product-card-full .hook { font-size: 18px; }
}
