:root {
  --bg: #eaf6f1;
  --page: #eaf6f1;
  --text: #1f2a24;
  --button: #254020;
  --button-text: #ffffff;
  --button-hover: #2c4327;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--page);
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.page-book {
  background: var(--page);
}

.page-services {
  background: var(--page);
}

.page-blog {
  background: var(--page);
}

.hero-block {
  background: var(--bg);
  width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px 12px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
}

.brand {
  letter-spacing: 0.01em;
  font-size: 50px;
  color: #254020;
}

.brand:visited {
  color: #254020;
}

.brand:hover,
.brand:focus {
  color: #2c4327;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mobile-sandwich {
  display: none;
  padding: 10px 20px 22px;
  background: var(--bg);
}

.sandwich-stack {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.sandwich-card {
  display: block;
  padding: 16px 20px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #f7fff5;
  color: var(--text);
  border: 1px solid rgba(44, 67, 39, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  text-decoration: none;
}

.sandwich-card + .sandwich-card {
  margin-top: -8px;
}

.sandwich-card:nth-child(2) {
  background: #d8fce1;
  transform: translateY(-6px);
}

.sandwich-card:nth-child(3) {
  background: #254020;
  color: #f7fff5;
  transform: translateY(-12px);
}

.sandwich-link {
  display: inline-block;
  font-weight: 600;
  color: #254020;
  padding: 6px 4px;
  text-decoration: none;
}

.sandwich-link + .sandwich-card {
  margin-top: 12px;
}

.sandwich-card + .sandwich-link {
  display: block;
  margin-top: 12px;
}

.sandwich-link:hover {
  color: #2c4327;
}

.nav-link {
  color: #254020;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: #2c4327;
}

.article-link {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

a {
  text-decoration: none;
}

.pill {
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.pill.primary {
  background: #254020;
  color: #fff;
  padding: 14px 22px;
}

.pill.secondary {
  background: var(--button);
  color: #ffffff;
  border: 2px solid var(--button);
  padding: 16px 26px;
  margin-top: 28px;
  box-shadow: none;
}

.pill.tertiary {
  background: #254020;
  color: var(--button-text);
  padding: 12px 22px;
  margin-top: 30px;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pill:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pill.primary:hover,
.pill.tertiary:hover {
  background: #2c4327;
}

.pill.secondary:hover {
  background: var(--button-hover);
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 40px 64px 64px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.page-home .hero {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 24px;
  padding-bottom: 72px;
}

.page-home .hero-copy {
  max-width: 780px;
  text-align: center;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
}

.subhead {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.hero-copy .subhead {
  margin-bottom: 24px;
}

.hero-copy .pill.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 628px;
  width: 100%;
  height: auto;
  display: block;
}

.services {
  position: relative;
  padding: 40px 0 90px;
  background: var(--page);
}

.services-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.services-content h2 {
  margin: 0 0 22px;
  font-size: 72px;
  line-height: 1.08;
  font-weight: 600;
}

.services .subhead {
  margin-bottom: 14px;
  font-size: 18px;
}

.service-card {
  padding: 10px 32px 60px;
  background: var(--page);
}

.card-inner {
  max-width: 1380px;
  margin: 0 auto;
  background: #d8fce1;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 48px 54px;
  gap: 32px;
}

.card-inner.alt .card-visual {
  order: 2;
}

.card-inner.alt .card-copy {
  order: 1;
}

.card-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-visual img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
}

.card-copy h3 {
  margin: 0 0 20px;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
}

.card-desc {
  margin: 0 0 32px;
  font-size: 19px;
  line-height: 1.4;
  max-width: 520px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #f7fff5;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.service-top {
  background: var(--bg);
  width: 100%;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
}

.services-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  padding: 70px 64px 80px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.services-hero-copy h1 {
  margin: 16px 0 20px;
  font-size: 84px;
  line-height: 1.05;
  font-weight: 600;
}

.services-hero .subhead {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.services-hero-copy .pill.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.services-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero-visual img {
  width: 100%;
  max-width: 1487px;
  height: auto;
  display: block;
  transform: translateX(-24px);
}

.book-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 32px 48px;
  background: var(--bg);
}

.blog-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 64px 90px;
}

.blog-copy {
  max-width: 760px;
}

.blog-copy h1 {
  margin: 0 0 22px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.blog-copy p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.6;
}

.blog-copy p:last-child {
  margin-bottom: 0;
}

.book-copy {
  max-width: 760px;
}

.book-copy h1 {
  margin: 0 0 16px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.book-copy .subhead {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.book-pill {
  display: inline-block;
  padding: 12px 24px;
}

.book-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.book-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.book-details {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.book-details p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
}

.book-details h2 {
  font-size: 28px;
  margin: 12px 0 10px;
}

.book-details ul {
  margin: 0 0 28px;
  padding-left: 18px;
  line-height: 1.5;
}

.onboarding {
  padding: 40px 64px 12px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: var(--text);
}

.onboarding-header {
  margin-bottom: 32px;
}

.onboarding-header h2 {
  margin: 10px 0 8px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.onboarding-header .subhead {
  margin: 0;
}

.onboarding-step {
  display: grid;
  grid-template-columns: 0.4fr 0.9fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 24px 0 12px;
}

.step-number {
  font-size: 130px;
  line-height: 1;
  font-weight: 400;
  color: rgba(44, 67, 39, 0.8);
}

.step-copy h3 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
}

.step-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  max-width: 520px;
}

.step-sublead {
  font-weight: 600;
  margin-bottom: 12px;
}

.step-list {
  margin: 0;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.55;
}

.step-list li + li {
  margin-top: 6px;
}

.step-visual {
  justify-self: end;
  width: 100%;
  max-width: 520px;
  background: var(--bg);
  border-radius: 22px;
  padding: 14px;
}

.step-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.step-visual.bg-soft {
  background: var(--bg);
}

.compliance-feature {
  padding: 12px 64px 80px;
  background: var(--page);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.compliance-feature .step-number {
  color: rgba(44, 67, 39, 0.8);
}

.philosophy {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 80px;
  text-align: center;
}

.philosophy .center {
  text-align: center;
}

.philosophy-title {
  margin: 12px 0 32px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.belief-card {
  background: #d8fce1;
  border-radius: 24px;
  padding: 42px 36px 48px;
  margin: 0 auto 20px;
  max-width: 1200px;
}

.belief-index {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.belief-text {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: var(--text);
}

.cta-calc {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.cta-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.cta-calc-copy h2 {
  margin: 0 0 28px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.cta-calc-copy .pill {
  padding: 16px 32px;
  font-size: 15px;
}

.cta-calc-visual {
  background: var(--bg);
  border-radius: 26px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-calc-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.footer {
  background: #2c4327;
  color: #e4f5e7;
  padding: 18px 32px 28px;
}

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

.footer-brand {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
  color: #e4f5e7;
}

.footer-brand:visited {
  color: #e4f5e7;
}

.footer-brand:hover,
.footer-brand:focus {
  color: #f7fff5;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  justify-content: flex-end;
}

.footer-link {
  color: #e4f5e7;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-pill {
  background: #f7fff5;
  color: #254020;
  padding: 10px 18px;
  font-size: 14px;
  box-shadow: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
}

.footer-sub {
  font-size: 13px;
  margin-top: 2px;
}

.footer-rights {
  font-size: 13px;
}
.audiences {
  background: var(--page);
  padding: 60px 40px 80px;
  color: var(--text);
}

.audience-header {
  max-width: 1180px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.audience-header h2 {
  margin: 0;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
}

.audience-header p {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.45;
}

.audience-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.audience-card {
  padding: 10px 28px 12px;
  border-left: 1px solid rgba(44, 67, 39, 0.25);
}

.audience-card:first-child {
  border-left: none;
}

.audience-card h4 {
  margin: 10px 0 10px;
  font-size: 28px;
  font-weight: 600;
}

.audience-sub {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
}

.audience-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  max-width: 360px;
}

.featured-blog {
  background: var(--page);
  padding: 20px 32px 70px;
}

.featured-blog-header {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.featured-blog-header h2 {
  margin: 0 0 14px;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
}

.featured-blog-header p:last-child {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.5;
}

.featured-blog-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.featured-blog-card {
  background: #f7fff5;
  border: 1px solid rgba(44, 67, 39, 0.14);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 12px 28px rgba(19, 33, 27, 0.06);
}

.featured-blog-card.alt {
  background: #d8fce1;
}

.featured-blog-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #254020;
}

.featured-blog-card h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
}

.featured-blog-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.featured-blog-card h3 a:hover {
  color: #254020;
}

.featured-blog-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.5;
}

.featured-blog-link {
  color: #254020;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.featured-blog-footer {
  max-width: 1180px;
  margin: 28px auto 0;
}

.icon {
  width: 32px;
  height: 24px;
  position: relative;
  margin-bottom: 12px;
}

.icon-folder {
  background: var(--text);
  border-radius: 3px;
}

.icon-folder::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 2px;
  width: 16px;
  height: 8px;
  background: var(--text);
  border-radius: 2px 2px 0 0;
}

.icon-bell {
  width: 26px;
  height: 26px;
  background: var(--text);
  border-radius: 50% 50% 45% 45%;
}

.icon-bell::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 8px;
  width: 10px;
  height: 6px;
  background: var(--text);
  border-radius: 0 0 6px 6px;
}

.icon-calc {
  width: 28px;
  height: 32px;
  background: var(--text);
  border-radius: 4px;
}

.icon-calc::before,
.icon-calc::after {
  content: '';
  position: absolute;
  background: var(--page);
}

.icon-calc::before {
  top: 4px;
  left: 5px;
  width: 18px;
  height: 6px;
  border-radius: 2px;
}

.icon-calc::after {
  top: 14px;
  left: 5px;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow:
    0 0 0 0 var(--page),
    6px 0 0 0 var(--page),
    12px 0 0 0 var(--page),
    0 6px 0 0 var(--page),
    6px 6px 0 0 var(--page),
    12px 6px 0 0 var(--page);
}

.plan-split {
  background: var(--page);
  padding: 30px 32px 60px;
}

.plan-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.plan-card {
  background: #254020;
  color: #f7fff5;
  border-radius: 18px;
  padding: 46px 42px;
}

.plan-card h3 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
}

.plan-card p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.45;
}

.pill.ghost {
  background: #f7fff5;
  color: var(--text);
  padding: 10px 18px;
  box-shadow: none;
}

.plan-visual {
  background: #d8fce1;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.cta-final {
  background: var(--page);
  padding: 70px 20px 100px;
  text-align: center;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-final h2 {
  margin: 0 0 36px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

.cta-btn {
  padding: 16px 28px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-header {
    padding: 24px 32px 12px;
  }

  .hero {
    padding: 32px 32px 56px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-visual {
    margin-top: 16px;
  }

  .blog-hero {
    padding: 56px 32px 70px;
  }

  .blog-copy h1 {
    font-size: 52px;
  }

  .services-content h2 {
    font-size: 58px;
  }

  .card-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-inner.alt .card-visual,
  .card-inner.alt .card-copy {
    order: unset;
  }

  .card-copy h3 {
    font-size: 46px;
  }

  .card-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .tag-row {
    justify-content: center;
  }

  .audience-header {
    grid-template-columns: 1fr;
  }

  .audience-header h2 {
    font-size: 56px;
  }

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

  .featured-blog-header h2 {
    font-size: 46px;
  }

  .featured-blog-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    border-left: none;
    border-top: 1px solid rgba(44, 67, 39, 0.25);
    padding-top: 22px;
  }

  .audience-card:first-child {
    border-top: none;
  }

  .plan-inner {
    grid-template-columns: 1fr;
  }

  .plan-card h3 {
    font-size: 36px;
  }

  .cta-final h2 {
    font-size: 48px;
  }

  .service-header {
    padding: 16px 32px;
  }

  .services-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 32px 64px;
  }

  .services-hero-copy h1 {
    font-size: 62px;
  }

  .onboarding {
    padding: 32px 32px 64px;
  }

  .onboarding-header h2 {
    font-size: 48px;
  }

  .onboarding-step {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .step-number {
    font-size: 100px;
  }

  .step-copy h3 {
    font-size: 38px;
  }

  .step-copy p {
    max-width: 620px;
  }

  .step-visual {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav-actions {
    display: none;
  }

  .mobile-sandwich {
    display: block;
  }

  .pill.primary {
    padding: 12px 18px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .subhead {
    font-size: 16px;
  }

  .pill.secondary {
    width: 100%;
    justify-content: center;
  }

  .services-content h2 {
    font-size: 40px;
  }

  .card-inner {
    padding: 32px 24px;
  }

  .card-copy h3 {
    font-size: 36px;
  }

  .card-desc {
    font-size: 17px;
  }

  .audience-header h2 {
    font-size: 40px;
  }

  .audience-header p {
    font-size: 15px;
  }

  .audience-card h4 {
    font-size: 24px;
  }

  .audience-body {
    font-size: 15px;
  }

  .featured-blog {
    padding: 20px 20px 56px;
  }

  .featured-blog-header h2 {
    font-size: 34px;
  }

  .featured-blog-header p:last-child,
  .featured-blog-card p {
    font-size: 16px;
  }

  .featured-blog-card {
    padding: 26px 22px;
  }

  .featured-blog-card h3 {
    font-size: 28px;
  }

  .plan-card {
    padding: 32px 26px;
  }

  .plan-card h3 {
    font-size: 30px;
  }

  .cta-final h2 {
    font-size: 34px;
  }

  .service-header {
    padding: 14px 20px;
  }

  .blog-hero {
    padding: 42px 20px 54px;
  }

  .blog-copy h1 {
    font-size: 36px;
  }

  .blog-copy p {
    font-size: 16px;
  }

  .services-hero {
    padding: 38px 24px 52px;
  }

  .services-hero-copy h1 {
    font-size: 42px;
  }

  .services-hero .subhead {
    font-size: 16px;
  }

  .book-hero {
    padding: 42px 20px 32px;
  }

  .book-copy h1 {
    font-size: 36px;
  }

  .book-copy .subhead {
    font-size: 16px;
  }

  .book-actions {
    gap: 8px;
  }

  .book-pill {
    padding: 10px 18px;
    font-size: 13px;
  }

  .onboarding {
    padding: 28px 20px 48px;
  }

  .onboarding-header h2 {
    font-size: 34px;
  }

  .step-number {
    font-size: 80px;
  }

  .step-copy h3 {
    font-size: 30px;
  }

  .step-copy p {
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-number {
    font-size: 120px;
  }

  .feature-copy h2 {
    font-size: 40px;
  }

  .feature-sublead,
  .feature-list {
    font-size: 16px;
  }

  .feature-visual {
    margin-top: 12px;
  }

  .philosophy-title {
    font-size: 44px;
  }

  .belief-card {
    padding: 32px 22px 36px;
  }

  .belief-text {
    font-size: 22px;
  }

  .cta-calc-grid {
    grid-template-columns: 1fr;
  }

  .cta-calc-copy h2 {
    font-size: 44px;
    text-align: center;
  }

  .cta-calc-copy {
    text-align: center;
  }

  .cta-calc-visual {
    margin-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
