:root {
  --bg: #faf9fb;
  --paper: #f8f6f9;
  --ink: #353535;
  --muted: #625d66;
  --quiet: #918a95;
  --line: #e3dfe7;
  --soft: #f0edf3;
  --plum: #8c4799;
  --plum-soft: #c9b1d0;
  --green: #6fa287;
  --green-deep: #205c40;
  --green-soft: #e7f0eb;
  --hero: #24152b;
  --white: #ffffff;
  --max: 1200px;
  --section-space: 88px;
  --display: Georgia, "Times New Roman", serif;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--plum-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--plum);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: #f7f5f8;
  border-bottom: 1px solid #e8e2eb;
}

.brand {
  display: grid;
  gap: 2px;
  width: 240px;
}

.brand img {
  width: 220px;
  height: auto;
}

.brand span {
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #6d6670;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.site-footer a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--plum);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
  color: var(--green-deep);
  background: rgba(111, 162, 135, 0.28);
  border-color: rgba(111, 162, 135, 0.5);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  background: var(--hero);
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo img {
  position: absolute;
  top: -11%;
  right: 0;
  width: auto;
  max-width: none;
  height: 122%;
  object-fit: contain;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 43, 0.68);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 70px;
}

.hero-inner > * {
  max-width: 720px;
}

.eyebrow,
.mini-label {
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.light-heading .eyebrow,
.final-cta .eyebrow {
  color: #dfc9e4;
}

.hero h1 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 500;
  line-height: 0.98;
}

.hero-line {
  margin-bottom: 24px;
  color: #e8d6ec;
  font-family: var(--display);
  font-size: 38px;
  font-style: italic;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.65;
}

.delivery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.delivery-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-size: 13px;
}

.delivery-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #dfc9e4;
  stroke-width: 1.7;
}

.delivery-row b {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary {
  color: var(--white);
  background: var(--plum);
  border-color: #a65db2;
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.proof-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.proof-inner div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.proof-inner div:first-child {
  border-left: 1px solid var(--line);
}

.proof-inner strong {
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.proof-inner span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.band {
  width: 100%;
}

.band-inner {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.band-soft {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-green {
  color: var(--white);
  background: var(--green-deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.about-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.06;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.light-heading h2,
.light-heading p:not(.eyebrow) {
  color: var(--white);
}

.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  max-width: 980px;
}

.prose-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.plain-statement {
  max-width: 980px;
  margin-top: 40px;
  padding: 20px 0 20px 26px;
  color: var(--green-deep);
  border-left: 3px solid var(--green);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.35;
}

.contrast-grid,
.modality-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contrast-grid article,
.modality-grid article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contrast-grid h3,
.modality-grid h3,
.signal-grid h3,
.journey-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.contrast-grid ul,
.modality-grid ul,
.authority-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contrast-grid li,
.modality-grid li,
.authority-list li {
  position: relative;
  margin-top: 12px;
  padding-left: 22px;
  color: var(--muted);
}

.contrast-grid li::before,
.modality-grid li::before,
.authority-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.contrast-dark {
  color: var(--white);
  background: var(--hero) !important;
  border-color: var(--hero) !important;
}

.contrast-dark .mini-label {
  color: var(--plum-soft);
}

.contrast-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-grid li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  min-height: 164px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journey-grid > li > span,
.signal-grid > article > span {
  color: var(--plum);
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
}

.journey-grid p,
.signal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.journey-final {
  color: var(--white);
  background: var(--green-deep) !important;
  border-color: var(--green-deep) !important;
}

.journey-final p {
  color: rgba(255, 255, 255, 0.75);
}

.journey-final > span {
  color: #b8d1c4 !important;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.signal-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.signal-grid > article > span {
  color: var(--plum-soft);
}

.signal-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.modality-grid article {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.modality-grid svg {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 1.5;
}

.modality-grid .mini-label {
  margin-bottom: 8px;
}

.modality-grid .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.modality-featured {
  background: var(--green-soft) !important;
  border-color: rgba(32, 92, 64, 0.26) !important;
}

.pricing-band {
  background: #f4f2f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--plum-soft);
  border-top: 4px solid var(--plum);
  border-radius: 8px;
}

.pricing-featured {
  border-color: rgba(32, 92, 64, 0.32);
  border-top-color: var(--green-deep);
}

.pricing-card > .mini-label {
  margin-bottom: 8px;
}

.pricing-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid rgba(32, 92, 64, 0.22);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-list {
  margin-bottom: 25px;
  border-top: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span,
.price-row s {
  display: block;
}

.price-row span {
  font-size: 14px;
  font-weight: 750;
}

.price-row s {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 12px;
}

.price-row strong {
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.price-row strong small {
  display: block;
  margin-top: 3px;
  color: var(--quiet);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-schedule {
  margin: -4px 0 22px;
  padding-left: 14px;
  color: var(--muted);
  border-left: 2px solid var(--green);
  font-size: 13px;
}

.pricing-card .button {
  width: 100%;
}

.button-green {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.text-link {
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1.22fr;
  gap: 66px;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-photo img {
  width: 100%;
  height: auto;
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .about-lede {
  color: var(--green-deep);
  font-size: 20px;
  font-weight: 700;
}

.authority-list {
  margin-bottom: 26px;
}

.testimonial-grid blockquote {
  display: grid;
  align-content: space-between;
  min-height: 240px;
  border-top: 3px solid var(--plum-soft);
}

.testimonial-grid blockquote p {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.38;
}

.testimonial-grid footer {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1.35fr;
  gap: 70px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.faq-heading h2 {
  font-size: 43px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green-deep);
  font-size: 22px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-links a {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.related-links a:hover {
  color: var(--green-deep);
  background: var(--green-soft);
}

.related-links span {
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-links strong {
  font-size: 17px;
  line-height: 1.35;
}

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

.final-inner {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.75);
}

.button-white {
  color: var(--hero);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 44px 0;
  background: #f7f5f8;
  border-top: 1px solid #e8e2eb;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.footer-inner img {
  width: 220px;
  height: auto;
}

.footer-inner > div > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-inner .legal {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding-top: 20px;
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(32, 92, 64, 0.26);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 220px 1fr auto;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a:nth-child(5) {
    display: none;
  }

  .hero-photo img {
    right: -8%;
  }

  .hero-shade {
    background: rgba(36, 21, 43, 0.73);
  }

  .signal-grid,
  .related-links {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 780px) {
  :root {
    --section-space: 68px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 12px 24px;
  }

  .brand,
  .brand img {
    width: 210px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    gap: 5px;
    place-content: center;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 6px;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 20px;
    height: 1px;
    background: var(--muted);
  }

  .mobile-nav nav {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 48px));
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(36, 21, 43, 0.14);
  }

  .mobile-nav nav a {
    padding: 11px 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero-photo img {
    top: -4%;
    right: -24%;
    height: 108%;
    opacity: 0.68;
  }

  .hero-shade {
    background: rgba(36, 21, 43, 0.77);
  }

  .hero-inner {
    padding: 62px 0 54px;
  }

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

  .hero-line {
    font-size: 31px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 17px;
  }

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

  .proof-inner div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-inner div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .prose-grid,
  .contrast-grid,
  .modality-grid,
  .pricing-grid,
  .testimonial-grid,
  .about-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .prose-grid {
    gap: 20px;
  }

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

  .journey-grid li {
    min-height: 0;
  }

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

  .signal-grid article {
    min-height: 210px;
  }

  .about-grid {
    gap: 36px;
  }

  .about-photo {
    max-width: 520px;
    margin: 0 auto;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand,
  .brand img {
    width: 184px;
  }

  .section,
  .hero-inner,
  .proof-inner,
  .footer-inner,
  .final-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: 720px;
  }

  .hero-photo img {
    right: -56%;
    height: 103%;
  }

  .hero-shade {
    background: rgba(36, 21, 43, 0.82);
  }

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

  .hero-line {
    font-size: 28px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .delivery-row {
    display: grid;
  }

  .proof-inner {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .proof-inner div {
    min-height: 105px;
    padding: 16px;
  }

  .proof-inner div:first-child,
  .proof-inner div:nth-child(3) {
    border-left: 0;
  }

  .section-heading h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 35px;
  }

  .plain-statement {
    font-size: 24px;
  }

  .contrast-grid article,
  .modality-grid article,
  .pricing-card,
  .testimonial-grid blockquote {
    padding: 24px;
  }

  .price-row {
    gap: 12px;
  }

  .price-row strong {
    font-size: 24px;
  }

  .journey-grid li {
    grid-template-columns: 38px 1fr;
    padding: 22px;
  }

  .signal-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    min-height: 0;
  }

  .related-links a {
    min-height: 0;
  }

  .faq-list summary {
    padding: 19px;
  }

  .faq-list details p {
    padding: 0 19px 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
