: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;
  --ease-out: cubic-bezier(0.16, 0.8, 0.24, 1);
  --dur-fast: 0.35s;
  --dur-med: 0.5s;
  --dur-slow: 0.9s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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: 250px 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: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  min-width: 220px;
  justify-self: start;
}

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

.brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  margin-top: -1px;
  color: var(--plum);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.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 var(--dur-fast) var(--ease-out);
}

.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 var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.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);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.motion-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal-d1.in {
  transition-delay: 0.08s;
}

.motion-ready .reveal-d2.in {
  transition-delay: 0.16s;
}

.motion-ready .reveal-d3.in {
  transition-delay: 0.24s;
}

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

.hero-photo img {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--max)) / 2));
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--hero) 0%, var(--hero) 38%, rgba(36, 21, 43, 0.94) 46%, rgba(36, 21, 43, 0.5) 57%, 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;
}

.section-heading > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.section-heading.centered > .eyebrow {
  justify-content: center;
}

.section-heading > .eyebrow::before,
.section-heading > .eyebrow::after {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
  content: "";
}

.section-heading > .eyebrow::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.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;
  transition:
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.delivery-row span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.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-primary,
.button-green,
.button-white {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.button-green::after,
.button-white::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.button-primary:hover::after,
.button-primary:focus-visible::after,
.button-green:hover::after,
.button-green:focus-visible::after,
.button-white:hover::after,
.button-white:focus-visible::after {
  transform: translateX(120%);
}

.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);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(140, 71, 153, 0.35);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(140, 71, 153, 0);
  }
}

.hero-actions .button-primary,
.final-cta .button-white {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.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 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.contrast-grid article,
.modality-grid article,
.testimonial-grid blockquote {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.contrast-grid article::before,
.modality-grid article::before,
.testimonial-grid blockquote::before,
.pricing-card::before,
.trust-grid article::before,
.related-links a::before,
.faq-list details::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.contrast-grid article:hover,
.contrast-grid article:focus-within,
.modality-grid article:hover,
.modality-grid article:focus-within,
.testimonial-grid blockquote:hover,
.testimonial-grid blockquote:focus-within,
.pricing-card:hover,
.pricing-card:focus-within,
.trust-grid article:hover,
.trust-grid article:focus-within,
.related-links a:hover,
.related-links a:focus-visible,
.faq-list details:hover,
.faq-list details:focus-within {
  transform: translateY(-8px);
  border-color: rgba(140, 71, 153, 0.38);
  box-shadow: 0 28px 56px -24px rgba(36, 21, 43, 0.24);
}

.contrast-grid article:hover::before,
.contrast-grid article:focus-within::before,
.modality-grid article:hover::before,
.modality-grid article:focus-within::before,
.testimonial-grid blockquote:hover::before,
.testimonial-grid blockquote:focus-within::before,
.pricing-card:hover::before,
.pricing-card:focus-within::before,
.trust-grid article:hover::before,
.trust-grid article:focus-within::before,
.related-links a:hover::before,
.related-links a:focus-visible::before,
.faq-list details:hover::before,
.faq-list details:focus-within::before {
  transform: scaleX(1);
}

.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 {
  position: relative;
  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;
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.journey-grid li:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 92, 64, 0.28);
  box-shadow: 0 22px 48px -28px rgba(32, 92, 64, 0.34);
}

.journey-grid > li > span,
.signal-grid > article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--plum);
  background: rgba(140, 71, 153, 0.08);
  border: 1px solid rgba(140, 71, 153, 0.2);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.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;
}

.learning-design-layout,
.included-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.learning-design-intro {
  position: sticky;
  top: 116px;
}

.learning-design-intro .eyebrow {
  margin-bottom: 14px;
}

.learning-design-intro h2 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.06;
}

.learning-design-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.learning-design-intro aside {
  margin-top: 30px;
  padding: 20px 0 20px 24px;
  color: var(--green-deep);
  border-left: 3px solid var(--green);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.35;
}

.learning-principles,
.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.learning-principles {
  border-top: 1px solid var(--line);
}

.learning-principles li,
.included-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.learning-principles li {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.learning-principles > li > span,
.included-list > li > span {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
}

.learning-principles > li > span {
  color: var(--plum);
}

.learning-principles h3,
.included-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.28;
}

.learning-principles p,
.included-list p {
  margin-bottom: 0;
}

.learning-principles p {
  color: var(--muted);
}

.research-source {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.5;
}

.research-source a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(32, 92, 64, 0.34);
  text-underline-offset: 3px;
}

.learning-boundary {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
}

.included-layout .section-heading {
  margin-bottom: 0;
}

.included-layout .section-heading p:not(.eyebrow) {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.74);
}

.included-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.included-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.included-list > li > span {
  color: var(--plum-soft);
}

.included-list h3 {
  color: var(--white);
}

.included-list p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.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 {
  position: relative;
  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);
  transition:
    background var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out);
}

.signal-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

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

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

.fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.fit-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

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

.modality-grid svg {
  box-sizing: content-box;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  padding: 9px;
  fill: none;
  background: var(--green-soft);
  border: 1px solid rgba(32, 92, 64, 0.18);
  border-radius: 16px;
  stroke: var(--green-deep);
  stroke-width: 1.5;
  transition: transform 0.45s var(--ease-out);
}

.modality-grid article:hover svg,
.modality-grid article:focus-within svg {
  transform: scale(1.08) rotate(-4deg);
}

.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: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.currency-toolbar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(32, 92, 64, 0.18);
  border-radius: 999px;
}

.currency-toolbar label {
  padding-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.currency-toolbar select {
  min-height: 40px;
  padding: 0 36px 0 14px;
  color: var(--green-deep);
  background: var(--white);
  border: 1px solid rgba(32, 92, 64, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.exchange-rate-badge {
  min-height: 30px;
  padding: 7px 10px;
  color: var(--quiet);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.exchange-rate-badge[hidden] {
  display: none;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 0 34px 34px;
  background: var(--white);
  border: 1px solid rgba(140, 71, 153, 0.28);
  border-radius: 8px;
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

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

.pricing-card-head {
  min-height: 168px;
  margin: 0 -34px 30px;
  padding: 30px 34px 28px;
  color: var(--white);
  background: var(--plum);
  border-bottom: 1px solid rgba(36, 21, 43, 0.16);
}

.pricing-featured .pricing-card-head {
  background: var(--green-deep);
}

.pricing-card-head .mini-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card-head h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 0;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge-regular {
  color: rgba(255, 255, 255, 0.86);
}

.price-primary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price-primary > span {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-primary strong {
  grid-row: span 2;
  color: var(--ink);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 500;
  line-height: 0.95;
  text-align: right;
  white-space: nowrap;
}

.price-primary small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-primary s {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--quiet);
  font-size: 12px;
}

.fx-estimate {
  display: block;
  min-height: 20px;
  color: var(--plum);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.3;
  white-space: nowrap;
}

.fx-estimate:not(.is-visible) {
  visibility: hidden;
}

.fx-estimate-primary {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 8px;
  font-size: 15px;
}

.payment-options {
  margin-bottom: 24px;
}

.payment-options > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.price-list {
  margin-bottom: 0;
}

.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-value {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: max-content;
}

.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: 0 0 24px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  font-size: 13px;
}

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

.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;
}

.pricing-note p {
  margin-bottom: 5px;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.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;
}

.trust-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 8px;
}

.trust-grid article:nth-child(2) {
  border-top-color: var(--plum);
}

.trust-grid h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
}

.trust-grid p:not(.mini-label) {
  color: var(--muted);
  font-size: 15px;
}

.trust-grid .text-link {
  display: inline-block;
  margin-top: 8px;
}

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

.google-review-proof {
  background: #eef4f0;
  border-top: 1px solid rgba(32, 92, 64, 0.16);
  border-bottom: 1px solid rgba(32, 92, 64, 0.16);
}

.google-review-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 56px;
  align-items: start;
}

.google-score-panel {
  padding: 34px;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid rgba(32, 92, 64, 0.28);
  border-radius: 8px;
}

.google-score-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.google-score-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(32px, 3.2vw, 48px);
}

.google-score-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.google-score-panel .button {
  width: 100%;
  margin-top: 10px;
  color: var(--green-deep);
  background: var(--white);
  border-color: var(--white);
  text-align: center;
}

.google-score-panel small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.google-score > strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 68px;
  font-weight: 500;
  line-height: 0.85;
}

.google-score p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.google-stars {
  color: #dfc9e4;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.google-review-excerpts {
  min-width: 0;
}

.google-review-context {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.google-review-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 92, 64, 0.18);
  border-top: 3px solid var(--plum);
  border-radius: 8px;
}

.google-review-card-head {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
}

.google-review-card-head > span:last-child {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-review-card > p {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.38;
}

.google-review-card footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  color: var(--green-deep);
  font-size: 13px;
}

.google-review-card footer span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.google-review-boundary {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.testimonial-grid blockquote {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border-top: 3px solid var(--plum-soft);
}

.testimonial-grid blockquote::before {
  background: var(--plum);
}

.testimonial-card-head {
  display: flex;
  min-height: 54px;
  margin-bottom: 22px;
  align-items: flex-start;
  gap: 14px;
}

.testimonial-number {
  flex: 0 0 auto;
  color: var(--plum);
  font-family: var(--display);
  font-size: 36px;
  line-height: 0.9;
}

.testimonial-card-head .mini-label {
  margin: 1px 0 0;
  line-height: 1.35;
}

.testimonial-grid .testimonial-quote {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.testimonial-grid .testimonial-highlight {
  margin: auto 0 26px;
  padding-top: 20px;
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.28;
  border-top: 1px solid var(--line);
}

.testimonial-grid footer {
  display: grid;
  gap: 3px;
  color: var(--green-deep);
  font-size: 14px;
}

.testimonial-grid footer strong {
  font-size: 15px;
}

.testimonial-grid footer span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  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 {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.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 var(--dur-fast) var(--ease-out);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  animation: fadeUp 0.4s var(--ease-out) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.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 {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background var(--dur-med) var(--ease-out),
    color var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
}

.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: 22px;
  bottom: 22px;
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 11px;
  min-width: 164px;
  min-height: 58px;
  padding: 7px 16px 7px 7px;
  color: var(--green-deep);
  background: rgba(248, 246, 249, 0.96);
  border: 1px solid rgba(32, 92, 64, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(36, 21, 43, 0.12), 0 4px 14px rgba(32, 92, 64, 0.12);
  backdrop-filter: blur(12px);
  animation: whatsappPulse 3.4s ease-in-out infinite;
  transition:
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 92, 64, 0.42);
  box-shadow: 0 22px 52px rgba(36, 21, 43, 0.16), 0 6px 18px rgba(32, 92, 64, 0.16);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(36, 21, 43, 0.12), 0 4px 14px rgba(32, 92, 64, 0.12), 0 0 0 0 rgba(32, 92, 64, 0.26);
  }

  50% {
    box-shadow: 0 18px 42px rgba(36, 21, 43, 0.12), 0 4px 14px rgba(32, 92, 64, 0.12), 0 0 0 12px rgba(32, 92, 64, 0);
  }
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

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

.whatsapp-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.1;
}

.whatsapp-copy strong {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

@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: -4%;
  }

  .hero-shade {
    background: linear-gradient(90deg, var(--hero) 0%, var(--hero) 40%, rgba(36, 21, 43, 0.92) 49%, rgba(36, 21, 43, 0.48) 61%, rgba(36, 21, 43, 0) 72%);
  }

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

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

  .learning-design-layout,
  .included-layout {
    gap: 48px;
  }

  .google-review-layout {
    grid-template-columns: 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;
  }

  .brand {
    min-width: 210px;
  }

  .brand span {
    min-width: 142px;
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }

  .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: 0;
    right: -18%;
    height: 100%;
    opacity: 1;
  }

  .hero-shade {
    background: linear-gradient(90deg, var(--hero) 0%, rgba(36, 21, 43, 0.94) 46%, rgba(36, 21, 43, 0.52) 64%, rgba(36, 21, 43, 0.08) 82%);
  }

  .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,
  .learning-design-intro h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

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

  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .prose-grid {
    gap: 20px;
  }

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

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

  .learning-design-intro {
    position: static;
  }

  .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;
  }

  .brand {
    min-width: 184px;
  }

  .brand span {
    min-width: 128px;
    font-size: 8.5px;
    letter-spacing: 0.06em;
  }

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

  .hero {
    min-height: 980px;
  }

  .hero-photo img {
    top: 0;
    right: 0;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-photo {
    height: 430px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(36, 21, 43, 0) 0%, rgba(36, 21, 43, 0.04) 23%, rgba(36, 21, 43, 0.84) 39%, var(--hero) 48%, var(--hero) 100%);
  }

  .hero-inner {
    padding-top: 390px;
  }

  .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,
  .learning-design-intro h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 35px;
  }

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

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

  .testimonial-card-head {
    min-height: 0;
  }

  .testimonial-number {
    font-size: 31px;
  }

  .testimonial-grid .testimonial-highlight {
    font-size: 20px;
  }

  .pricing-card {
    padding: 0 24px 24px;
  }

  .currency-toolbar {
    width: 100%;
    border-radius: 8px;
  }

  .currency-toolbar select {
    flex: 1;
  }

  .pricing-card-head {
    min-height: 0;
    margin: 0 -24px 24px;
    padding: 24px;
  }

  .price-primary strong {
    font-size: 44px;
  }

  .pricing-card .price-row {
    padding-right: 42px;
  }

  .trust-grid article {
    padding: 24px;
  }

  .price-row {
    gap: 12px;
  }

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

  .price-row-value {
    min-width: 118px;
  }

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

  .signal-grid,
  .fit-list,
  .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;
    grid-template-columns: 44px;
    min-width: 54px;
    min-height: 54px;
    padding: 5px;
  }

  .whatsapp-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-actions .button-primary,
  .final-cta .button-white,
  .whatsapp-float,
  .faq-list details p {
    animation: none;
  }

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