/* Self-hosted Inter Variable (supports weights 100-900 incl. 430/450/520/650) */
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter Variable";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #11161c;
  --muted: #42484f;
  --gold: #ffde70;
  --green: #2dd56b;
  --deep: #0f1218;
  --blue: #0b2744;
  --site-border: #40464c30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Lenis Smooth Scroll Setup */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Global Scroll Reveal Animations
   Elements are only hidden when JS is confirmed (html.js), so content
   is never invisible if a script fails to load. */
@keyframes framerRevealAnim {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

html.js .framer-reveal {
  opacity: 0;
}

html.js .framer-reveal.is-visible {
  opacity: 1;
  animation: framerRevealAnim 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes framerFadeAnim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

html.js .framer-fade {
  opacity: 0;
}

html.js .framer-fade.is-visible {
  opacity: 1;
  animation: framerFadeAnim 0.9s ease-out both;
}

:focus-visible {
  outline: 3px solid #168a49;
  outline-offset: 4px;
}

/* Skip link: hidden until keyboard-focused */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 18px;
  border-radius: 8px;
  background: #11161a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-offset: 2px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

#main-content,
footer {
  transform-origin: 50% 20%;
  animation: page-arrive 460ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition:
    opacity 220ms cubic-bezier(0.4, 0, 1, 1),
    transform 220ms cubic-bezier(0.4, 0, 1, 1),
    filter 220ms cubic-bezier(0.4, 0, 1, 1);
}

@keyframes page-arrive {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.995);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

html.page-is-leaving #main-content,
html.page-is-leaving footer {
  opacity: 0;
  transform: translateY(-5px) scale(0.997);
  filter: blur(1.5px);
  pointer-events: none;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  min-height: 43px;
  display: grid;
  place-items: center;
  padding: 7px 18px 9px;
  background: var(--gold);
  color: #050505;
  font-size: clamp(15px, 1.45vw, 21px);
  line-height: 1.25;
  text-align: center;
}

main {
  overflow-x: clip;
  overflow-y: visible;
}

.hero {
  width: min(980px, calc(100% - 32px));
  margin: 39px auto 0;
  text-align: center;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  font-size: clamp(13px, 1.05vw, 15px);
  color: #050505;
}

.avatar-stack {
  display: flex;
  padding-left: 11px;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: -11px;
  background: #ddd;
}

.social-proof-copy {
  display: grid;
  justify-items: start;
  gap: 1px;
  line-height: 1.08;
  white-space: nowrap;
}

.stars {
  color: #ffb62e;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

h1 {
  margin: 28px auto 25px;
  max-width: 920px;
  color: #10151b;
  font-size: clamp(38px, 4vw, 59px);
  line-height: 1.26;
  font-weight: 480;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  font-weight: 800;
  white-space: nowrap;
}

#hero-title {
  display: block;
}

.hero-title-line {
  display: inline;
}

.hero-title-context {
  display: contents;
}

#hero-title .hero-title-muted,
#hero-title .hero-title-focus {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

#hero-title .hero-title-revenue {
  padding: 0 0.08em;
  border-radius: 5px;
  background: #FFDE6A;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.04em;
  display: inline-block;
  transform: skewX(-6deg);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3F464C;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: center;
}

.benefits li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.benefit-check {
  width: 19px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent url("assets/Checkicon.svg") center / contain no-repeat;
  color: #3F464C;
  font-size: 0;
}

.cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta:hover,
.cta:focus-visible {
  transform: none;
}

.cta:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 90ms;
}

.cta--primary {
  width: 312px;
  max-width: 100%;
  padding: 13px 15px 14px 25px;
  background: #11161a;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.33), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.32), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.3), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.25), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.11), 0px 0px 0px 1px rgb(84, 84, 84);
}

.cta--primary:hover,
.cta--primary:focus-visible {
  background: #1b2228;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.16), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.16), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.15), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.12), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.05), 0px 0px 0px 1px rgba(84, 84, 84, 0.5);
}

.cta--primary:active {
  box-shadow: none;
}

.cta--whatsapp {
  width: 312px;
  max-width: 100%;
  min-width: 0;
  gap: 14px;
  margin-top: 0;
  padding: 13px 14px 13px 20px;
  background: var(--green);
  font-weight: 600;
  box-shadow: none;
}

.cta--whatsapp:hover,
.cta--whatsapp:focus-visible {
  background: #24c963;
  box-shadow: none;
}

.cta--whatsapp:active {
  box-shadow: none;
}

.cta-box {
  display: inline-flex;
  padding: 13px;
  border-radius: 20px;
  background: transparent;
  transition: border 300ms ease;
  border: 1px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-box:hover {
  border: 1px solid var(--site-border);
}

.cta-box--yellow:hover {
  border-color: rgba(255, 222, 106, 0.4);
}

.cta-box--green:hover {
  border-color: rgba(45, 213, 107, 0.4);
}

/* Class-based spacing (no :has() dependency for older browsers) */
.cta-box--dark,
.cta-box--yellow {
  margin-top: 25px;
}



.cta-box--green {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .cta-box {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .cta {
    width: 100% !important;
    max-width: none !important;
  }
}

.cta .cta-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}

.cta--primary .cta-arrow {
  background: var(--gold);
  color: #10151a;
}

.cta--whatsapp .cta-arrow {
  background: #fff;
  color: #168a49;
}

.cta .cta-arrow-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cta .cta-arrow-glyph+.cta-arrow-glyph {
  transform: translate(-115%, 115%);
}

.cta:hover .cta-arrow-glyph:first-child,
.cta:focus-visible .cta-arrow-glyph:first-child {
  transform: translate(115%, -115%);
}

.cta:hover .cta-arrow-glyph+.cta-arrow-glyph,
.cta:focus-visible .cta-arrow-glyph+.cta-arrow-glyph {
  transform: translate(0, 0);
}

.cta .cta-arrow--down .cta-arrow-glyph+.cta-arrow-glyph {
  transform: translate(0, -115%);
}

.cta:hover .cta-arrow--down .cta-arrow-glyph:first-child,
.cta:focus-visible .cta-arrow--down .cta-arrow-glyph:first-child {
  transform: translate(0, 115%);
}

.cta:hover .cta-arrow--down .cta-arrow-glyph+.cta-arrow-glyph,
.cta:focus-visible .cta-arrow--down .cta-arrow-glyph+.cta-arrow-glyph {
  transform: translate(0, 0);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cta-wrapper .cta-box {
  order: 1;
}

.hero-cta-wrapper .cta-microcopy {
  order: 2;
  margin-top: 14px;
}

.hero-cta-wrapper .trustpilot {
  order: 3;
}

@media (max-width: 520px) {
  .hero-cta-wrapper .trustpilot {
    order: 2;
    margin: 20px 0 16px;
  }

  .hero-cta-wrapper .cta-microcopy {
    order: 3;
    margin: 0;
    margin-bottom: 40px;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

.trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0 52px;
  color: #201e1e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.trustpilot-stars {
  display: block;
  width: 106px;
  height: 23px;
  overflow: hidden;
}

.trustpilot-stars img {
  display: block;
  width: 379px;
  max-width: none;
  height: 23px;
}

.trustpilot-copy {
  white-space: nowrap;
}

.proof-board {
  position: relative;
  width: min(1006px, calc(100% - 40px));
  min-height: 405px;
  margin: 0 auto;
  padding: 42px 28px 28px;
  border-radius: 30px;
  background-color: #0f1218;
  background-image: url(assets/banner-image.webp);
  background-position: top center;
  background-size: var(--proof-bg-size, 100%) auto;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.proof-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.13), transparent 32%);
  opacity: 0.55;
  pointer-events: none;
}

.metrics,
.testimonials {
  position: relative;
  z-index: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
}

.metric {
  min-height: 98px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric img {
  max-width: 150px;
  height: 31px;
  object-fit: contain;
  margin-bottom: 14px;
  transform: translateY(-5px);
}

.metric:nth-child(4) img {
  max-width: 190px;
  height: 46px;
  margin-top: -7px;
  margin-bottom: 8px;
}

.metric strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none !important;
  box-shadow: none !important;
  color: #fff;
  font-size: clamp(17px, 1.12vw, 22px);
  font-weight: 800;
  line-height: 1;
}

.metric-up {
  color: #19c941;
  font-size: 0.8em;
  line-height: 1;
  transform: translateY(-1px);
}

.metric>span {
  font-size: 15px;
  line-height: 1.25;
  opacity: 0.7;
  letter-spacing: 0.6px;
}

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

.testimonial {
  min-width: 0;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 17px;
  border-radius: 12px;
  background: #fff;
  color: #1f3a60;
  text-align: left;
  overflow: hidden;
}

.reviewer {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.reviewer>div {
  min-width: 0;
}

.reviewer>img:first-child {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 54, 91, 0.1);
  border-radius: 50%;
  object-fit: cover;
}

.reviewer h3 {
  margin: 3px 0 3px;
  color: #18365b;
  font-size: 14.5px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  font-weight: 500;
}

.reviewer p {
  margin: 0;
  color: #607292;
  font-size: 11px;
  line-height: 1.2;
}

.reviewer-followers {
  display: block;
  margin-top: 5px;
  color: #8392aa;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.1;
}

.proof-linkedin {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 4px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Invisible 44x44 hit area for touch without changing layout */
.proof-linkedin::after {
  content: "";
  position: absolute;
  inset: -10px;
}

.proof-linkedin:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.proof-linkedin img {
  width: 22px;
  height: 22px;
  display: block;
}

.testimonial-copy {
  margin: 18px 0 16px;
  color: #18365b;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 54, 91, 0.1);
  color: #577096;
}

.review-brand-mark {
  display: block;
  width: auto;
  max-width: 96px;
  height: 24px;
  flex: 0 1 auto;
  object-fit: contain;
  filter: brightness(0);
}

.review-meta strong {
  min-width: 0;
  flex: 1 1 125px;
  color: #577096;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  overflow-wrap: anywhere;
}

.review-meta small {
  min-width: 0;
  font-size: 10px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.review-meta--link {
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.review-meta--link:hover,
.review-meta--link:focus-visible {
  border-color: rgba(24, 54, 91, 0.32);
  transform: translateY(-1px);
}

.review-meta--link strong {
  font-weight: 600;
}

.case-study {
  width: min(1006px, calc(100% - 40px));
  margin: 106px auto 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(17, 22, 28, 0.05);
  border-radius: 30px;
  background: #f7f6f2;
  /* Matches the theme warm background */
  color: var(--ink);
  scroll-margin-top: 24px;
}

.case-study-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 4vw, 54px);
}

.case-study-intro {
  min-width: 0;
}

.case-study-eyebrow {
  width: fit-content;
  margin: 0 0 19px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-study-brand {
  width: min(190px, 50%);
  height: 44px;
  display: block;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
}

.case-study h2 {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.case-study-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.58;
}

.case-study-goal {
  padding: 24px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}

.case-study-goal>span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-goal>p {
  margin: 13px 0 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.38;
}

.case-study-goal dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.case-study-goal dl>div {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.case-study-goal dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-goal dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.case-study-results-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
}

.case-study-results-heading p {
  margin: 0 0 3px;
  color: #78828b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-results-heading h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.case-study-result {
  min-width: 0;
  min-height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 19px;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 14px;
  background: #fff;
}

.case-study-result>span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-result strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.case-study-result strong b {
  color: var(--green);
  font-weight: 700;
}

.case-study-result small {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.case-study-context {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.case-study-takeaway {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--deep);
  color: #fff;
}

.case-study-takeaway p {
  margin: 0;
  color: var(--gold);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.case-study-takeaway small {
  color: #c0c8ce;
  font-size: 12px;
  line-height: 1.5;
}

.case-study-takeaway strong {
  color: #fff;
}

.case-study-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 22px;
  margin-top: 38px;
}

.case-study-story,
.case-study-evidence {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.case-study-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 14px;
  background: #fff;
}

.case-study-step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-study-step h3 {
  margin: 3px 0 9px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.case-study-step p,
.case-study-step ul,
.case-study-step ol {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.case-study-step ul,
.case-study-step ol {
  display: grid;
  gap: 7px;
  padding-left: 18px;
}

.case-study-step li::marker {
  color: var(--green);
}

.case-study-step--timeline {
  background: rgba(255, 222, 112, 0.1);
  border-color: rgba(255, 222, 112, 0.4);
}

.case-study-step--timeline .case-study-step-number {
  background: var(--gold);
  color: var(--ink);
}

.case-study-figure {
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.case-study-figure-label {
  width: fit-content;
  margin: 2px 2px 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(17, 22, 28, 0.05);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-study-figure-label--after {
  background: rgba(45, 213, 107, 0.15);
  color: #13884f;
}

.case-study-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(17, 22, 28, 0.08);
  border-radius: 9px;
  background: #fff;
}

.case-study-figure figcaption {
  padding: 10px 3px 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.case-study-speed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-study-speed .case-study-figure img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: top center;
}

.case-study-testimonial {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px dashed rgba(17, 22, 28, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.case-study-testimonial>img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(17, 22, 28, 0.1);
  border-radius: 50%;
  object-fit: cover;
}

.case-study-testimonial span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-testimonial h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.case-study-testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.case-study-testimonial>a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-underline-offset: 3px;
}

.case-study-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 22, 28, 0.1);
}

.case-study-footer>p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.case-study-cta {
  flex: 0 0 auto;
  margin-top: 0;
}

.receive-section {
  width: min(1006px, calc(100% - 40px));
  margin: 106px auto 0;
  text-align: center;
}

.receive-heading h2 {
  margin: 0;
  color: #101418;
  font-size: clamp(38px, 3.15vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.receive-benefits {
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 23px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.receive-benefits li {
  min-height: 0;
  gap: 8px;
  padding: 0 10px;
  white-space: nowrap;
}


.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  margin-top: 46px;
}

.receive-card {
  position: relative;
  min-width: 0;
  min-height: 298px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 22px;
  border: 1.7px solid rgb(210 211 211 / 33%);
  border-radius: 16px;
  background: #fff;
  color: #111;
  text-align: left;
  outline: none;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.receive-card::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid transparent;
  border-radius: 31px;
  transition: border-color 300ms ease;
  pointer-events: none;
}

.receive-card:hover {
  box-shadow: 0px 25px 10px rgba(125, 125, 125, 0.01),
    0px 14px 9px rgba(125, 125, 125, 0.05),
    0px 6px 6px rgba(125, 125, 125, 0.09),
    0px 2px 3px rgba(125, 125, 125, 0.10);
  border-color: #E6E6E6;
}

.receive-card:hover::after {
  border-color: #E6E6E6;
}

.receive-card:focus-visible {
  outline: 3px solid #168a49;
  outline-offset: 4px;
}

.receive-grid:hover .receive-card:not(:hover) {
  border-color: transparent;
}

.receive-visual {
  min-height: 174px;
  display: grid;
  place-items: center;
}

.receive-svg {
  width: auto;
  max-width: min(100%, 270px);
  height: auto;
  max-height: 145px;
  display: block;
  pointer-events: none;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.receive-card:hover .receive-svg {
  transform: scale(1.06) translateY(-4px);
}

.receive-svg--wide {
  width: min(100%, 270px);
}

.receive-copy {
  min-width: 0;
  flex: 1;
  padding-top: 16px;
  border-top: 1px solid #e7e7e7;
}

.receive-copy h3 {
  margin: 0 0 8px;
  color: #0c0c0c;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.receive-copy p {
  margin: 0;
  color: #414141;
  font-size: clamp(13px, 0.85vw, 14px);
  line-height: 1.42;
}

.receive-logos-wrap {
  width: 100vw;
  min-height: 84px;
  position: relative;
  left: 50%;
  margin: 62px 0 0 -50vw;
  padding: 8px 0;
  overflow: visible;
  isolation: isolate;
}

.receive-logos {
  width: 100%;
  min-height: 68px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.receive-logos-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: receive-logo-loop 28s linear infinite;
}

.receive-logos-set {
  min-height: 68px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(34px, 3.4vw, 68px);
  padding-right: clamp(34px, 3.4vw, 68px);
}

.receive-logo {
  width: clamp(112px, 9.5vw, 174px);
  height: 43px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes receive-logo-loop {
  to {
    transform: translateX(-50%);
  }
}

.receive-cta {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
}

.receive-trust {
  margin: 32px 0 50px;
  font-size: clamp(16px, 1.2vw, 21px);
}

/* Qualification & FAQ Section */
.qual-faq-section {
  width: min(800px, calc(100% - 40px));
  margin: 106px auto 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 40px;
}

.section-italic-label {
  display: block;
  font-size: clamp(20px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: #101418;
  margin-bottom: 8px;
}

.section-header-centered h2 {
  margin: 0;
  color: #101418;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.faq-accordion-centered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: start;
}

.faq-item-clean {
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item-clean:hover {
  border-color: #9ca3af;
}

.faq-item-clean summary {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #111827;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2.5px;
}

/* Vertical line */
.faq-icon::after {
  width: 2.5px;
  height: 14px;
}

/* Open state (- icon) */
.faq-item-clean[open] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item-clean[open] .faq-icon::before {
  transform: rotate(180deg);
}

.faq-answer-clean {
  padding: 0 24px 24px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

/* Scroll Animations */
.qual-faq-animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.qual-faq-animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Details Expand Animation */
.faq-item-clean[open] .faq-answer-clean {
  animation: faqFadeDown 0.3s ease-out forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item-clean summary {
  transition: color 0.2s ease;
}

.faq-item-clean summary:hover {
  color: #000;
}

/* Smooth open AND close where the browser supports animating details
   (Chrome 129+, Edge 129+). Others keep the fade above. */
@supports (interpolate-size: allow-keywords) {
  .faq-item-clean {
    interpolate-size: allow-keywords;
  }

  .faq-item-clean::details-content {
    height: 0;
    overflow: clip;
    opacity: 0;
    transition:
      height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease,
      content-visibility 0.32s allow-discrete;
  }

  .faq-item-clean[open]::details-content {
    height: auto;
    opacity: 1;
  }

  .faq-item-clean[open] .faq-answer-clean {
    animation: none;
  }
}

.book-flow {
  width: 100%;
  margin: 120px auto 0;
  padding: 0;
  background: #fff;
  text-align: center;
}

.down-arrow {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 11px;
}

.whatsapp-logo {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.blinking-dot-wrapper {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.blinking-dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.cta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  margin-left: 2px;
}

.whatsapp-microcopy {
  margin: 5px 0 0;
  color: #636363;
  font-size: 16px;
  text-align: center;
}

.whatsapp-microcopy strong {
  color: #11161c;
  font-weight: 500;
}

.calendar-frame {
  width: 100%;
  height: 640px;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  border-radius: 22px 22px 0 0;
  background: #ebf3fe;
  box-shadow: none;
  overflow: hidden;
}

.calendar-frame iframe {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
}

.calendar-frame iframe {
  display: block;
  min-width: 100% !important;
  border-radius: 22px 22px 0 0;
}

.cal-inline-embed {
  width: 100%;
  height: 100%;
  overflow: auto;
  border-radius: 22px 22px 0 0;
  background: #ebf3fe;
}

.calendar-fallback,
.calendar-noscript {
  display: none;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(17, 22, 28, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.calendar-fallback a,
.calendar-noscript a {
  color: #0b5fc0;
  font-weight: 700;
  text-underline-offset: 3px;
}

noscript .calendar-noscript {
  display: block;
}

#skeleton-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

footer {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 42px max(32px, calc((100% - 1180px) / 2)) 16px;
  background: #ebf3fe;
  color: #999;
  font-size: 14px;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

footer nav a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #999;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

footer nav a:hover {
  background: #7f7f7f;
  transform: translateY(-2px);
}

footer .youtube {
  border-radius: 6px;
  background: #999;
}

footer .social-icon {
  width: 21px;
  height: 21px;
  display: block;
  object-fit: contain;
}

footer .youtube .social-icon {
  filter: invert(1);
}

footer p a {
  text-underline-offset: 5px;
}

.contact-body,
.contact-main,
.contact-calendar {
  background: #ebf3fe;
}

.contact-main {
  overflow: hidden;
}

.contact-hero {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 50px;
  text-align: center;
}

.contact-progress {
  --progress-main: #1fc65c;
  --progress-muted: #d7d9d5;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: auto minmax(38px, 1fr) auto minmax(38px, 1fr) auto;
  align-items: start;
  margin: 0 auto;
}

.contact-step {
  min-width: 94px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #757a72;
}

.contact-step>span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--progress-muted);
  color: #292c27;
  font-size: 20px;
  line-height: 1;
}

.contact-step strong {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.1px;
  font-weight: 400;
}

.contact-step.is-complete>span {
  background: var(--progress-main);
  color: #fff;
  font-size: 23px;
  animation: contact-progress-pop 440ms ease-out both;
}

.contact-step.is-active {
  color: var(--ink);
}

.contact-step.is-active>span {
  background: var(--progress-main);
  color: #fff;
  animation: contact-progress-pop 440ms 620ms ease-out both;
}

.contact-track {
  position: relative;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--progress-muted);
  overflow: hidden;
}

.contact-track.is-complete {
  background: var(--progress-main);
  transform-origin: left;
  animation: contact-progress-fill 560ms 160ms ease-out both;
}

.contact-track.is-active {
  background: var(--progress-muted);
}

.contact-track.is-active::before {
  content: "";
  position: absolute;
  width: 58%;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: var(--progress-main);
  transform-origin: left;
  animation: contact-progress-fill 560ms 760ms ease-out both;
}

@keyframes contact-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes contact-progress-pop {
  from {
    opacity: 0.45;
    transform: scale(0.78);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-copy {
  max-width: 1000px;
  margin: 54px auto 0;
}

.contact-kicker {
  margin: 0 0 14px;
  color: #5c6259;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-copy h1 {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(17, 22, 28, 0.46);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.contact-copy h1 em {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-title-soft {
  color: rgba(17, 22, 28, 0.46);
  font-weight: 400;
}

.contact-title-line {
  display: inline;
}

.shopify-title-mark {
  position: relative;
  width: 1.04em;
  height: 1.04em;
  display: inline-block;
  margin: 0 0.07em;
  border-radius: 0.2em;
  vertical-align: -0.12em;
  overflow: hidden;
  transform: rotate(-7deg);
  transform-origin: center;
  filter: drop-shadow(0 5px 5px rgba(17, 24, 14, 0.18));
}

.shopify-title-logo {
  position: absolute;
  width: 160%;
  height: 160%;
  max-width: none;
  inset: -30%;
  display: block;
  object-fit: cover;
}

.contact-copy .benefits {
  margin: 28px auto 0;
}

.contact-copy .cta-box--green {
  margin: 38px auto 0;
}

.contact-calendar,
.cal-embed-section {
  width: 100%;
  max-width: 100%;
}

.cal-embed-section {
  height: 480px;
  padding: 0;
  background: #ebf3fe;
}

#my-cal-inline-discovery-call {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 3px;
  border-radius: 22px 22px 0 0;
  background: #ebf3fe;
}

body.cal-widget-failed .calendar-frame,
body.cal-widget-failed .cal-embed-section {
  height: auto;
  min-height: 0;
}

body.cal-widget-failed #my-cal-inline-discovery-call {
  display: none;
  height: auto !important;
  min-height: 0;
}

body.cal-widget-failed #skeleton-container {
  display: none;
}

body.cal-widget-failed .calendar-fallback {
  display: block;
  margin-block: 32px;
}

.error-page {
  min-height: calc(100vh - 104px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: #ebf3fe;
  text-align: center;
}

.error-card {
  width: min(560px, 100%);
  padding: 48px 28px;
  border-radius: 22px;
  background: #fff;
}

.error-code {
  margin: 0;
  color: #168a49;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 14px auto 12px;
  font-size: clamp(34px, 7vw, 54px);
  line-height: 1.05;
}

.error-card>p:not(.error-code) {
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.6;
}

.error-card .cta {
  margin-top: 0;
}

@media (max-width: 860px) {
  .hero {
    margin-top: 30px;
  }

  h1 {
    font-size: clamp(32px, 6vw, 44px);
    line-height: 1.14;
  }

  .benefits {
    gap: 8px;
  }

  .benefits li {
    white-space: normal;
  }

  .proof-board {
    padding: 30px 18px 20px;
    border-radius: 22px;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
    margin-bottom: 34px;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

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

  .testimonial {
    min-height: 0;
  }

  .case-study {
    margin-top: 84px;
    padding: 32px 24px;
  }

  .case-study-header,
  .case-study-body {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    align-items: stretch;
  }

  .case-study-goal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: 18px 28px;
  }

  .case-study-goal>span {
    grid-column: 1 / -1;
  }

  .case-study-goal>p {
    margin: 0;
  }

  .case-study-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-body {
    gap: 18px;
  }

  .receive-benefits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    font-size: 16px;
  }

  .receive-benefits li {
    padding: 0;
    white-space: nowrap;
  }

  .receive-benefits li+li {
    border-left: none;
  }

  .receive-section {
    margin-top: 84px;
  }

  .receive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receive-logos-wrap {
    margin-top: 52px;
  }

  .receive-trust {
    margin-top: 38px;
  }

  .cta--whatsapp {
    margin-bottom: 0px;
  }

  footer {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    gap: 14px;
    margin: 0;
    padding: 26px 16px 10px;
    text-align: center;
    font-size: 13px;
  }

  footer p:last-child {
    text-align: center;
  }

  .contact-hero {
    padding-top: 36px;
  }

  .contact-copy {
    margin-top: 46px;
  }

  .contact-copy h1 {
    max-width: 760px;
    font-size: clamp(34px, 6.4vw, 48px);
  }

}

@media (max-width: 767px) {
  .top-strip {
    display: none;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  #hero-title {
    margin: 28px auto 25px;
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.26;
    letter-spacing: -0.04em;
  }
}

@media (max-width: 600px) {
  #hero-title {
    display: grid;
    justify-items: center;
    gap: 0;
    font-size: clamp(31px, 8.6vw, 37px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .hero-title-line,
  .hero-title-context {
    display: block;
  }

  .hero-title-break {
    display: none;
  }

  #hero-title .hero-title-context,
  #hero-title .hero-title-context .hero-title-muted,
  #hero-title .hero-title-context .hero-title-focus {
    color: #8d8f92;
    font-size: 1em;
    font-weight: 400;
  }

  #hero-title .hero-title-context .hero-title-muted,
  #hero-title .hero-title-context .hero-title-focus {
    font-size: inherit;
  }

  #hero-title>.hero-title-focus {
    color: var(--ink);
    font-weight: 500;
    font-style: italic;
  }

  #hero-title .hero-title-revenue {
    padding: 0 0.08em;
    border-radius: 5px;
    background: #FFDE6A;
    color: var(--ink);
    font-size: 1.1em;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
    transform: skewX(-6deg);
  }

  .contact-copy h1 {
    font-size: clamp(29px, 7.5vw, 38px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.12;
  }

  .contact-copy h1 em {
    font-weight: 600;
  }

  .contact-title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {

  .hero,
  .proof-board,
  .case-study {
    width: calc(100% - 24px);
  }

  .book-flow {
    width: 100%;
    margin-top: 80px;
  }

  .social-proof {
    gap: 9px;
    min-height: 36px;
    font-size: 12px;
  }

  .avatar-stack {
    padding-left: 9px;
  }

  .avatar-stack img {
    width: 31px;
    height: 31px;
    margin-left: -9px;
  }

  .stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  h1 {
    margin-top: 22px;
    font-size: clamp(31px, 8.6vw, 37px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .benefits {
    justify-content: center;
    gap: 2px;
    max-width: 340px;
    margin: 0 auto;
  }

  .benefits li {
    width: 100%;
    min-height: 26px;
  }

  .cta--primary {
    width: min(calc(100%)) !important;
    min-height: 60px;
    gap: 10px;
    margin-top: 0px;
    padding: 11px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .cta .cta-arrow {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }

  .cta--whatsapp {
    min-height: 60px;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
    white-space: nowrap;
  }

  .receive-cta .cta--primary {
    min-height: 70px;
    font-size: 18px;
    padding: 15px 16px;
    width: 100%;
  }

  .whatsapp-logo {
    width: 21px;
    height: 21px;
  }

  .trustpilot {
    flex-direction: column;
    gap: 8px;
    margin: 23px 0 35px;
    font-size: 16px;
  }

  .trustpilot-stars {
    width: 106px;
  }

  .proof-board {
    border-radius: 18px;
  }

  .case-study {
    margin-top: 68px;
    padding: 24px 16px;
    border-radius: 18px;
  }

  .case-study-eyebrow {
    margin-bottom: 16px;
  }

  .case-study-brand {
    width: 150px;
    height: 38px;
    margin-bottom: 18px;
  }

  .case-study h2 {
    font-size: clamp(33px, 10vw, 42px);
    line-height: 1.01;
  }

  .case-study-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.52;
  }

  .case-study-goal {
    display: block;
    padding: 19px;
    border-radius: 14px;
  }

  .case-study-goal>p {
    margin: 12px 0 20px;
    font-size: 15px;
  }

  .case-study-results {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 14px;
  }

  .case-study-results-heading {
    margin-top: 30px;
  }

  .case-study-results-heading h3 {
    font-size: 22px;
  }

  .case-study-result {
    min-height: 112px;
    padding: 16px;
  }

  .case-study-result strong {
    font-size: 19px;
  }

  .case-study-takeaway {
    padding: 18px;
  }

  .case-study-takeaway p {
    font-size: 21px;
  }

  .case-study-body {
    margin-top: 28px;
  }

  .case-study-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .case-study-step-number {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .case-study-step h3 {
    margin-top: 2px;
    font-size: 18px;
  }

  .case-study-speed {
    grid-template-columns: 1fr;
  }

  .case-study-testimonial {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    padding: 18px;
  }

  .case-study-testimonial>img {
    width: 48px;
    height: 48px;
  }

  .case-study-testimonial>a {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .case-study-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .case-study-cta {
    width: 100%;
    margin-top: 0;
  }

  .receive-section {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    margin-top: 68px;
  }

  .receive-heading h2 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .receive-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px 14px;
    margin: 24px auto 0;
    padding: 0;

    display: flex !important;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 13px;
  }

  .receive-benefits li {
    width: auto;
    min-height: 0;
    padding: 0;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .receive-benefits li+li {
    border-left: none;
  }

  .receive-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .receive-card {
    min-height: 278px;
    padding: 17px 20px 20px;
    border-radius: 16px;
  }

  .receive-visual {
    min-height: 156px;
  }

  .receive-copy {
    padding-top: 15px;
  }

  .receive-copy h3 {
    font-size: 21px;
  }

  .receive-copy p {
    font-size: 13px;
  }

  .receive-logos-wrap {
    display: contents;
  }

  .receive-cta {
    position: static;
    order: 3;
    width: 100%;
    align-self: center;
    margin: 32px 0 24px;
    transform: none;
  }

  .receive-trust {
    order: 4;
    margin: 0 0 24px;
  }

  .receive-logos {
    order: 5;
    width: 100vw;
    position: relative;
    left: 50%;
    margin: 0 0 42px -50vw;
  }

  .receive-logos-set {
    gap: 18px;
    padding-right: 18px;
  }

  .receive-logo {
    width: 83px;
    height: 25px;
  }

  .deliverable-header {
    margin-bottom: 16px;
  }

  .deliverable-icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
    font-size: 15px;
  }

  .deliverable-icon--days {
    font-size: 10px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .metric {
    min-height: 0;
    align-content: start;
    gap: 8px;
    padding: 0 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:nth-child(n + 3) {
    border-bottom: 0;
    padding-top: 16px;
  }

  .metric:nth-child(3),
  .metric:last-child {
    padding-bottom: 0;
  }

  .metric img {
    width: 100%;
    max-width: 126px;
    height: 31px;
    margin-bottom: 10px;
  }

  .metric:nth-child(4) img {
    max-width: 142px;
    height: 38px;
    margin-top: -3px;
    margin-bottom: 2px;
  }

  .metric strong {
    min-height: 0;
    gap: 6px;
    font-size: 19px;
  }

  .metric:nth-child(3) strong {
    font-size: 17px;
  }

  .metric-up {
    font-size: 0.66em;
  }

  .metric>span {
    font-size: 12px;
  }

  .testimonial {
    padding: 18px 16px 16px;
  }

  .reviewer {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .reviewer>img:first-child {
    width: 44px;
    height: 44px;
  }

  .proof-linkedin {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
  }

  .review-meta {
    gap: 8px 10px;
  }

  .review-brand-mark {
    max-width: 88px;
    height: 22px;
  }

  .review-meta strong {
    flex-basis: 115px;
    font-size: 10px;
  }

  .calendar-frame {
    border-radius: 16px 16px 0 0;
  }

  .calendar-frame iframe,
  .cal-inline-embed,
  #skeleton-container {
    border-radius: 16px 16px 0 0;
  }

  footer {
    width: 100%;
  }

  footer nav a {
    width: 30px;
    height: 30px;
    font-size: 21px;
  }

  .contact-hero {
    width: calc(100% - 24px);
    padding: 28px 0 46px;
  }

  .contact-progress {
    grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
  }

  .contact-step {
    min-width: 62px;
    gap: 6px;
  }

  .contact-step>span {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .contact-step.is-complete>span {
    font-size: 18px;
  }

  .contact-step strong {
    font-size: 8px;
  }

  .contact-track {
    height: 3px;
    margin-top: 15px;
  }

  .contact-copy {
    margin-top: 36px;
  }

  .contact-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .contact-copy h1 {
    max-width: 440px;
    font-size: clamp(29px, 7.5vw, 38px);
    line-height: 1.1;
  }

  .contact-copy .benefits {
    margin-top: 23px;
  }

  .contact-copy .cta-box--green {
    margin-top: 29px;
  }

}

@media (max-width: 360px) {
  .metrics {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(n + 3) {
    min-height: 112px;
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metric:first-child {
    padding-top: 0;
  }

  .metric:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .metric strong,
  .metric:nth-child(3) strong {
    font-size: 19px;
  }
}

@media (min-width: 521px) and (max-width: 1024px) {
  .calendar-frame {
    height: 680px;
  }

  .cal-embed-section {
    height: 680px;
  }
}

@media (max-width: 767px) {
  .calendar-frame {
    height: 900px;
    margin-top: 18px;
    margin-bottom: 0;
  }

  .cal-embed-section {
    height: 900px;
  }
}

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

  #main-content,
  footer {
    animation: none;
    transition: none;
  }

  html.page-is-leaving #main-content,
  html.page-is-leaving footer {
    opacity: 1;
    transform: none;
    filter: none;
  }

  html.js .framer-reveal,
  html.js .framer-fade {
    opacity: 1;
  }

  .framer-reveal.is-visible,
  .framer-fade.is-visible,
  .floating-whatsapp,
  .faq-item-clean[open] .faq-answer-clean {
    animation: none;
  }

  .receive-card,
  .receive-svg,
  .floating-whatsapp,
  .faq-item-clean summary,
  .faq-icon::before,
  .faq-icon::after,
  .skip-link {
    transition: none;
  }

  .receive-card:hover,
  .receive-card:hover .receive-svg,
  .floating-whatsapp:hover,
  .cta:hover,
  .cta:focus-visible,
  .cta:active {
    transform: none;
  }

  /* This CTA relies on translateX for centering — keep it. */
  .receive-cta:hover,
  .receive-cta:focus-visible,
  .receive-cta:active {
    transform: translateX(-50%);
  }

  .contact-step.is-complete>span,
  .contact-step.is-active>span,
  .contact-track.is-complete,
  .contact-track.is-active::before {
    animation: none;
  }

  .cta,
  .cta .cta-arrow-glyph,
  footer nav a {
    transition: none;
  }

  .cta:hover .cta-arrow-glyph:first-child,
  .cta:focus-visible .cta-arrow-glyph:first-child,
  .cta:hover .cta-arrow-glyph+.cta-arrow-glyph,
  .cta:focus-visible .cta-arrow-glyph+.cta-arrow-glyph {
    transform: none;
  }

  .cta .cta-arrow-glyph+.cta-arrow-glyph {
    display: none;
  }

  .receive-logos-track {
    animation: none;
  }
}

/* -----------------------------
   DARK CASE STUDY SECTION
----------------------------- */
.dark-case-study {
  width: min(1006px, calc(100% - 40px));
  margin: 60px auto 100px;
  background-color: #0f1218;
  background-image:
    linear-gradient(90deg, rgb(8 12 18 / 0%), rgb(8 12 18 / 0%) 50%, rgb(8 12 18 / 0%)), url(assets/banner-image.webp);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  border-radius: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.dcs-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.dcs-hero {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.dcs-stats {
  position: relative;
  z-index: 1;
}

.dcs-stat h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 5px;
}

.dcs-section {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.dcs-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dcs-card--text p {
  font-size: 22px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 900px;
  margin: 0;
}

.dcs-card--text p.dcs-small-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

.dcs-small-footnote {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 32px auto 0;
  max-width: 800px;
  text-align: center;
  font-style: italic;
}

.dcs-card-content ul {
  padding-left: 20px;
}

.dcs-card-content li {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .dcs-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .dcs-stat:nth-child(2)::after {
    display: none;
  }

  .dcs-card--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dcs-header {
    flex-direction: column;
    gap: 15px;
  }

  .dcs-result-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dcs-result-stat:not(:last-child)::after {
    display: none;
  }

  .dcs-result-footer {
    font-size: 13px;
    padding: 20px;
  }

  .dcs-rf-sep {
    display: none;
  }

  .dcs-result-footer span.dcs-rf-sep {
    display: block;
    height: 1px;
    background: rgba(17, 22, 28, 0.1);
    margin: 10px 0;
    color: transparent;
  }
}

/* -----------------------------
   DARK CASE STUDY RESULTS
----------------------------- */
.dcs-result-card {
  background: #fff;
  border-radius: 24px;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dcs-rs-label {
  margin-bottom: 8px;
}

.dcs-rs-value {
  margin-bottom: 8px;
}

.dcs-final-cta {
  position: relative;
  z-index: 1;
  background-color: #0e1118;
}

.dcs-cta-btn .cta-arrow {
  align-items: center;
  justify-content: center;
}

/* Palazzo flagship case study — matched to New Section.svg (1005 × 1775). */
.dark-case-study {
  isolation: isolate;
  width: min(1005px, calc(100% - 40px));
  min-height: 1775px;
  margin: 106px auto 0;
  padding: 17px 0 55px;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 32px;
  background-color: #0e1118;
  background-image: url("assets/banner-image.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 489px;
  color: #fff;
  scroll-margin-top: 24px;
}

.dark-case-study::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 24, 0.03) 0, #0e1118 34%);
  opacity: 1;
  pointer-events: none;
}

.dcs-header,
.dcs-hero,
.dcs-stats,
.dcs-section,
.dcs-final-cta {
  position: relative;
  z-index: 1;
}

.dcs-header {
  width: calc(100% - 116px);
  height: 66px;
  display: grid;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.dcs-header span {
  color: #ffffffb3;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
  white-space: nowrap;
}

.dcs-header span:last-child {
  text-align: right;
}

.dcs-logo {
  width: 229px;
  height: 66px;
  display: block;
  object-fit: contain;
}

.dcs-hero {
  margin: 32px auto 0;
  text-align: center;
}

.dcs-hero h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.dcs-hero p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
  font-style: italic;
  font-weight: 450;
  line-height: 1.4;
}

.dcs-stats {
  max-width: calc(100% - 48px);
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 35px auto 0;
}

.dcs-stat {
  min-width: 0;
  position: relative;
  text-align: center;
}

.dcs-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: 23px;
  background: rgba(255, 255, 255, 0.34);
}

.dcs-stat>strong {
  display: block;
  margin: 0 0 5px;
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.dcs-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10.5px;
  font-weight: 450;
  line-height: 1.25;
}

.dcs-section {
  margin: 48px auto 0;
}

.dcs-stats+.dcs-section {
  margin-top: 50px;
}

.dcs-section--result {
  margin-top: 43.2px;
}

.dcs-section--fixed {
  margin-top: 46.8px;
}

.dcs-section-title {
  margin: 0 0 11px;
  color: #fff;
  font-size: 27px;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.018em;
  text-align: center;
}

.dcs-section--result .dcs-section-title {
  margin-bottom: 12.5px;
}

.dcs-card {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.33);
  border-radius: 25px;
  background: #0e1118;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: none;
}

.dcs-card:hover {
  border-color: rgba(255, 255, 255, 0.33);
  background: #0e1118;
  transform: none;
}

.dcs-card--text {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.45;
  text-align: center;
}

.dcs-card--split {
  min-height: 247px;
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  align-items: center;
  gap: 19px;
  padding: 20px 21px 20px 22px;
}

.dcs-card-image {
  width: 275px;
  height: 203px;
  display: block;
  border: 0;
  border-radius: 8px;
  background: #f1f3f4;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.dcs-section--found .dcs-card-image {
  object-position: 7% center;
}

.dcs-section--fixed .dcs-card-image {
  padding: 3px 9px;
  object-position: center;
}

.dcs-card-content {
  min-width: 0;
}

.dcs-card-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.dcs-card-content li {
  margin: 0;
  padding-left: 2px;
}

.dcs-card-content li::marker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75em;
}

.dcs-result-card {
  width: 100%;
  min-height: 218px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background: #fff;
  color: #0e1118;
  box-shadow: none;
  transition: none;
}

.dcs-result-card:hover {
  transform: none;
  box-shadow: none;
}

.dcs-result-stats {
  min-height: 156px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 26px 27px 22px;
}

.dcs-result-stat {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.dcs-result-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 24px;
  background: rgba(14, 17, 24, 0.18);
  transform: translateY(-10%);
}

.dcs-rs-label {
  min-height: 26px;
  margin: 0 0 7px;
  color: #31353a;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.dcs-rs-value {
  margin: 0 0 13px;
  color: #000;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.dcs-rs-sub {
  color: #32373c;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.dcs-result-footer {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-top: 1px solid rgba(14, 17, 24, 0.14);
  color: #41464c;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.35;
  text-align: center;
}

.dcs-rf-sep {
  margin: 0 6px;
  color: rgba(14, 17, 24, 0.28);
  font-weight: 400;
}

.dcs-final-cta {
  margin: 56px auto 0;
  text-align: center;
}

.dcs-cta-btn {
  width: 311px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 9px;
  background: #ffde6a;
  color: #0e1118;
  box-shadow: none;
  font-size: 16px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.dcs-cta-btn:hover {
  background: #ffe487;
  box-shadow: none;
  transform: none;
}

.dcs-cta-btn:focus-visible {
  outline-color: #ffde6a;
}

.dcs-cta-btn .cta-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 27px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #0e1118;
  color: #ffde6a;
}

.dcs-cta-btn .cta-arrow-glyph {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.dcs-disclaimer {
  margin: 57px auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  .dark-case-study {
    width: min(100% - 24px, 720px);
    min-height: 0;
    margin-top: 72px;
    padding: 24px 24px 56px;
    border-radius: 26px;
    background-size: auto 450px;
  }

  .dcs-header {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 172px 1fr;
    gap: 14px;
  }

  .dcs-header span {
    font-size: 11px;
    white-space: normal;
  }

  .dcs-logo {
    width: 172px;
    height: 50px;
  }

  .dcs-hero {
    margin-top: 34px;
  }

  .dcs-hero h2 {
    font-size: clamp(30px, 5.3vw, 38px);
  }

  .dcs-stats {
    width: min(610px, 100%);
    max-width: 100%;
  }

  .dcs-section,
  .dcs-section--result {
    width: min(652px, 100%);
    max-width: 100%;
  }

  .dcs-card--split {
    grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  }

  .dcs-card-image {
    width: 100%;
  }

  .dcs-result-stats {
    padding-inline: 18px;
  }

  .dcs-rs-value {
    font-size: clamp(25px, 4vw, 31px);
  }

  .dcs-rs-sub {
    font-size: 8.5px;
  }
}

@media (max-width: 600px) {
  .dark-case-study {
    width: calc(100% - 16px);
    margin-top: 58px;
    padding: 22px 16px 44px;
    border-radius: 22px;
    background-position: 50% 0;
    background-size: auto 420px;
  }



  .dcs-header {
    grid-template-columns: 1fr 132px;
    align-items: center;
    gap: 8px 14px;
  }

  .dcs-header span:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .dcs-logo {
    width: 132px;
    height: 42px;
    grid-column: 2;
    grid-row: 1;
  }

  .dcs-header span:last-child {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }

  .dcs-hero {
    margin-top: 32px;
  }

  .dcs-hero h2 {
    font-size: clamp(27px, 8.1vw, 34px);
    line-height: 1.08;
  }

  .dcs-hero p {
    margin-top: 8px;
    font-size: 15px;
  }

  .dcs-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
    margin-top: 34px;
  }

  .dcs-stat:nth-child(2)::after {
    display: none;
  }

  .dcs-stat>strong {
    font-size: 29px;
  }

  .dcs-section,
  .dcs-stats+.dcs-section,
  .dcs-section--result {
    margin-top: 70px;
  }

  .dcs-section-title {
    margin-bottom: 14px;
    font-size: 25px;
  }

  .dcs-card {
    border-radius: 20px;
    height: auto;
    min-height: 0;
    padding: 30px 20px;
  }

  .dcs-card--text {
    padding: 26px 20px;
  }

  .dcs-card--text p {
    font-size: 18px;
    line-height: 1.55;
  }

  .dcs-card--text p.dcs-small-text {
    font-size: 14px;
  }

  .dcs-small-footnote {
    margin-top: 18px;
    font-size: 13px;
  }

  .dcs-card--split {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px;
  }

  .dcs-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .dcs-section--fixed .dcs-card-image {
    padding: 0;
  }

  .dcs-card-content ul {
    gap: 16px;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .dcs-result-card {
    min-height: 0;
    border-width: 4px;
    border-radius: 23px;
  }

  .dcs-result-stats {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 22px 12px;
  }

  .dcs-result-stat {
    min-height: 116px;
    padding: 12px 5px;
  }

  .dcs-result-stat:nth-child(2)::after {
    display: none;
  }

  .dcs-result-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(14, 17, 24, 0.12);
  }

  .dcs-rs-label {
    min-height: 25px;
    font-size: 10px;
  }

  .dcs-rs-value {
    font-size: 28px;
  }

  .dcs-rs-sub {
    max-width: 100%;
    font-size: 8.5px;
    white-space: normal;
  }

  .dcs-result-footer {
    display: block;
    padding: 18px 16px;
    font-size: 12px;
  }

  .dcs-rf-sep,
  .dcs-result-footer span.dcs-rf-sep {
    display: inline;
    height: auto;
    margin: 0 3px;
    background: transparent;
    color: rgba(14, 17, 24, 0.28);
  }

  .dcs-final-cta {
    margin-top: 46px;
  }

  .dcs-cta-btn {
    width: min(311px, 100%);
    font-size: 15px;
  }

  .dcs-disclaimer {
    width: 100%;
    margin-top: 38px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .dcs-hero h2 {
    font-size: 26px;
  }

  .dcs-stat>strong,
  .dcs-rs-value {
    font-size: 25px;
  }

  .dcs-cta-btn {
    gap: 9px;
    padding-inline: 14px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dcs-cta-btn {
    transition: none;
  }
}

/* Palazzo case-study refinements from the scroll review. */
.dcs-logo {
  width: 190px;
  height: 55px;
}

.dcs-header {
  grid-template-columns: 1fr 190px 1fr;
}

.dcs-stats {
  width: 700px;
}

.dcs-section {
  width: 800px;
  max-width: calc(100% - 72px);
}

.dcs-stage-stack {
  width: 100%;
  margin-top: 0px;
  position: relative;
}

.dcs-stage-stack .dcs-section:first-child {
  margin-top: 0;
}

.dcs-section--result {
  width: 806px;
}

.dcs-card--text {
  padding-inline: 62px;
}

.dcs-final-cta {
  margin-top: 0;
  padding-top: 20px;
}

.dcs-final-cta .dcs-cta {
  margin-top: 0;
  border: none;
  background: #ffde6a;
  color: #0e1118;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.33), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.32), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.3), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.25), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.11);
}

.dcs-final-cta .dcs-cta:hover,
.dcs-final-cta .dcs-cta:focus-visible {
  background: #ffe487;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.16), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.16), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.15), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.12), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.05);
}

.dcs-final-cta .dcs-cta .cta-arrow {
  background: #0e1118;
  color: #ffde6a;
}

.dcs-final-cta .dcs-cta:focus-visible {
  outline-color: #ffde6a;
}

.dcs-disclaimer {
  width: min(880px, calc(100% - 64px));
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 430;
  line-height: 1.45;
  padding: 0px 30px 0px 30px;
}

@media (min-width: 601px) {
  .dark-case-study {
    overflow: visible;
  }

  .dcs-section {
    position: sticky;
    top: 18px;
    padding-top: 10px;
    padding-bottom: 1px;
    border-radius: 26px;
    background: #0e1118;
  }

  .dcs-section--situation {
    z-index: 2;
  }

  .dcs-section--found {
    z-index: 3;
  }

  .dcs-section--fixed {
    z-index: 4;
  }

  .dcs-section--result {
    z-index: 5;
  }

  .dcs-final-cta {
    z-index: 1;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .dcs-header {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
  }

  .dcs-header span,
  .dcs-header span:first-child,
  .dcs-header span:last-child,
  .dcs-logo {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }

  .dcs-logo {
    width: 142px;
    height: 41px;
  }

  .dcs-hero {
    margin-top: 25px;
  }

  .dcs-stats,
  .dcs-stage-stack,
  .dcs-section,
  .dcs-section--result {
    width: 100%;
    max-width: 100%;
  }

  .dcs-card--text {
    padding-inline: 34px;
  }

  .dcs-disclaimer {
    width: min(560px, 100%);
    margin-top: 20px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .dcs-logo {
    width: 120px;
    height: 35px;
  }

  .dcs-header {
    gap: 6px;
  }

  .dcs-card--text {
    padding-inline: 20px;
  }

  .dcs-final-cta {
    padding-top: 46px;
  }

  .dcs-final-cta .dcs-cta {
    width: min(312px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dcs-final-cta .dcs-cta {
    transition: none;
  }
}

/* Keep the case summary visible while only the stage cards collapse. */
.dcs-scroll-story,
.dcs-summary {
  position: relative;
}

@media (min-width: 601px) {
  .dark-case-study {
    --dcs-summary-height: 180px;
    --dcs-stage-title-height: 56px;
  }

  .dcs-scroll-story {
    position: relative;
  }

  .dcs-summary {
    height: var(--dcs-summary-height);
    position: sticky;
    z-index: 20;
    top: 0;
    margin-top: -17px;
    padding-top: 17px;
    padding-bottom: 20px;
    border-radius: 32px 32px 0 0;
    background: #0e1118 url("assets/banner-image.webp") top center / 100% 489px no-repeat;
  }

  .dcs-stage-stack {
    margin-top: 0;
    padding-top: 0px;
  }

  .dcs-section,
  .dcs-section--situation,
  .dcs-section--found,
  .dcs-section--fixed,
  .dcs-section--result {
    width: auto;
    max-width: none;
    display: contents;
    position: static;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .dcs-section-title {
    width: min(800px, calc(100% - 72px));
    min-height: var(--dcs-stage-title-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: var(--dcs-summary-height);
    margin: 48px auto 0;
    padding: 9px 0 11px;
    border: 0;
    border-radius: 0;
    background: #0e1118;
  }

  .dcs-section--situation .dcs-section-title {
    z-index: 2;
    margin-top: 0;
  }

  .dcs-section--found .dcs-section-title {
    z-index: 4;
  }

  .dcs-section--fixed .dcs-section-title {
    z-index: 6;
  }

  .dcs-section--result .dcs-section-title {
    z-index: 8;
    margin-bottom: 0;
  }

  .dcs-card,
  .dcs-result-card {
    width: min(800px, calc(100% - 72px));
    max-width: none;
    position: sticky;
    top: calc(var(--dcs-summary-height) + var(--dcs-stage-title-height));
    margin: 0 auto;
  }

  .dcs-section--situation .dcs-card {
    z-index: 1;
  }

  .dcs-section--found .dcs-card {
    z-index: 3;
  }

  .dcs-section--fixed .dcs-card {
    z-index: 5;
  }

  .dcs-section--result .dcs-result-card {
    width: min(806px, calc(100% - 66px));
    z-index: 7;
  }

  .dcs-final-cta {
    position: relative;
    z-index: 30;
    background: #0e1118;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .dark-case-study {
    --dcs-summary-height: 190px;
  }

  .dcs-summary {
    margin: -24px -24px 0;
    padding: 24px 24px 20px;
    border-radius: 26px 26px 0 0;
    background-size: auto 450px;
  }

  .dcs-section-title,
  .dcs-card,
  .dcs-result-card,
  .dcs-section--result .dcs-result-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .dcs-summary {
    position: relative;
  }
}

.dcs-active-stage-title {
  display: none;
}

@media (min-width: 601px) {
  .dcs-active-stage-title {
    width: min(800px, calc(100% - 72px));
    min-height: var(--dcs-stage-title-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    z-index: 0;
    top: var(--dcs-summary-height);
    margin: 0 auto;
    padding: 9px 0 11px;
    background: #0e1118;
    color: #fff;
    font-size: 27px;
    font-weight: 450;
    line-height: 1.25;
    letter-spacing: -0.018em;
    text-align: center;
  }

  .dcs-section-title {
    display: none;
  }

  .dcs-card,
  .dcs-result-card {
    margin-top: 80px;
    padding-bottom: 20px;
  }

  .dcs-section--situation .dcs-card {
    margin-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .dcs-active-stage-title {
    width: 100%;
    max-width: 100%;
  }
}

/* Final case-study handoff: keep the overview, then let the result card replace it. */
@media (min-width: 601px) {
  .dark-case-study {
    --dcs-summary-height: 200px;
    --dcs-stage-title-height: 70px;
    --dcs-viewport-inset: -185px;
    min-height: 0;
    overflow: clip;
    padding-bottom: 80px;
  }

  .dcs-summary {
    display: contents;
  }

  .dcs-header {
    position: relative;
    z-index: 1;
  }

  .dcs-overview {
    height: var(--dcs-summary-height);
    position: sticky;
    z-index: 20;
    top: var(--dcs-viewport-inset);
    margin-top: 0;
    margin-inline: 0;
    padding-inline: 0;
    padding-top: 30px;
    padding-bottom: 20px;
    border-radius: 32px 32px 0 0;
    transform: translateY(var(--dcs-release-offset, 0px));
    will-change: transform;
  }

  .dcs-overview .dcs-hero {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .dcs-overview .dcs-stats {
    margin-top: 15px;
  }

  .dcs-stage-stack {
    padding-top: 35px;
  }

  .dcs-scroll-story {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dcs-stage-stack {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dcs-active-stage-title {
    top: calc(var(--dcs-viewport-inset) + var(--dcs-summary-height));
  }

  .dcs-card,
  .dcs-result-card {
    top: calc(var(--dcs-viewport-inset) + var(--dcs-summary-height) + var(--dcs-stage-title-height));
  }

  .dcs-section--situation .dcs-card {
    --dcs-stack-offset: 0px;
    top: calc(var(--dcs-viewport-inset) + var(--dcs-summary-height) + var(--dcs-stage-title-height));
  }

  .dcs-section--found .dcs-card {
    --dcs-stack-offset: 14px;
    top: calc(var(--dcs-viewport-inset) + var(--dcs-summary-height) + var(--dcs-stage-title-height) + 14px);
  }

  .dcs-section--fixed .dcs-card {
    --dcs-stack-offset: 28px;
    top: calc(var(--dcs-viewport-inset) + var(--dcs-summary-height) + var(--dcs-stage-title-height) + 28px);
  }

  /* ─── Solid card backgrounds for visible peek slivers ─── */
  .dcs-card {
    background: rgba(18, 23, 32, 0.97);
  }

}

@media (min-width: 601px) and (max-width: 768px) {
  .dark-case-study {
    --dcs-summary-height: 190px;
  }

  .dcs-overview {
    margin-inline: -24px;
    padding-inline: 24px;
    border-radius: 26px 26px 0 0;
    background-size: auto 450px;
  }

  .dcs-section--result .dcs-result-card {
    width: 100%;
    max-width: 100%;
    padding: 7px 0PX 7px 0px;
  }
}

@media (max-width: 600px) {
  .dcs-overview {
    position: relative;
  }
}

/* Traffic-to-Revenue process */
.process-section {
  width: min(1006px, calc(100% - 40px));
  margin: 106px auto 0;
  padding: clamp(36px, 4.5vw, 60px);
  border: 1px solid #dfe3e5;
  border-radius: 28px;
  background: #f5f7f8;
  color: #101418;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 48px;
}

.process-eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffde6a;
  color: #101418;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-intro h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.process-lead {
  max-width: 410px;
  margin: 0 0 2px auto;
  color: #515a61;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-width: 0;
  min-height: 226px;
  position: relative;
  padding: 22px 20px 24px;
  border: 1px solid #d6dadd;
  border-radius: 18px;
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: #bcc3c8;
  box-shadow: 0 16px 34px rgba(16, 20, 24, 0.08);
}

.process-step:not(:last-child)::after {
  content: "→";
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -21px;
  border: 4px solid #f5f7f8;
  border-radius: 50%;
  background: #11161a;
  color: #ffde6a;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
}

.process-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 35px;
}

.process-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #11161a;
  color: #ffde6a;
  font-size: 12px;
  font-weight: 700;
}

.process-status {
  color: #87929a;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 10px;
  color: #101418;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.process-step p {
  margin: 0;
  color: #515a61;
  font-size: 13.5px;
  line-height: 1.48;
}

.process-footnote {
  margin: 28px 0 0;
  color: #68737b;
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.015em;
  text-align: center;
}

.process-footnote span {
  margin: 0 10px;
  color: #11161a;
}

@media (max-width: 900px) {
  .process-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-lead {
    max-width: 620px;
    margin-left: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-section {
    margin-top: 72px;
    padding: 30px 20px 24px;
    border-radius: 24px;
  }

  .process-intro h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .process-step {
    min-height: 0;
    padding: 19px 18px 21px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step-head {
    margin-bottom: 23px;
  }

  .process-footnote {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step {
    transition: none;
  }
}

/* Scroll-driven Traffic-to-Revenue timeline */
.process-section.process-section {
  --process-progress: 0px;
  width: min(1006px, calc(100% - 40px));
  margin: 106px auto 0;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 40px) clamp(50px, 6vw, 70px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background-color: #ebf3fe;
  background-image: none;
  color: #101418;
}

.process-section.process-section::before {
  display: none;
}

.process-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.process-header {
  text-align: center;
}

.process-header h2 {
  max-width: none;
  margin: 0;
  color: #101418;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.052em;
}

.process-benefits {
  margin-top: 50px;
  justify-content: center;
}

.process-benefits li {
  font-weight: 500;
  color: #555d66;
  font-size: clamp(14px, 1.4vw, 15px);
}

.process-kicker {
  display: block;
  margin-top: 14px;
  color: #5c6259;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-timeline-wrap {
  position: relative;
  margin: clamp(40px, 5vw, 60px) auto 0;
  max-width: 720px;
}

.process-path,
.process-path-fill {
  width: 2px;
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 24px;
  border-radius: 999px;
  pointer-events: none;
}

.process-path {
  bottom: 24px;
  background: rgba(17, 22, 28, 0.1);
}

.process-path-fill {
  height: var(--process-progress);
  max-height: calc(100% - 48px);
  background: #11161a;
  transition: height 90ms linear;
}

.process-path-fill::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  right: 50%;
  bottom: -4px;
  border: 2px solid #ebf3fe;
  border-radius: 50%;
  background: #ffcf3f;
  opacity: 0;
  transform: translateX(50%) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.process-section.has-started .process-path-fill::after {
  opacity: 1;
  transform: translateX(50%) scale(1);
}

.process-timeline {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step.process-step {
  min-height: 120px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(24px, 4vw, 40px);
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.process-step.process-step:last-child {
  min-height: 48px;
}

.process-step.process-step::after {
  display: none;
}

.process-step.process-step:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.process-marker {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  border: 2px solid #11161a;
  border-radius: 50%;
  background: #f9fbfe;
  color: #11161a;
  box-shadow: 0 0 0 4px #ebf3fe;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.06em;
  transition: color 320ms ease, background-color 320ms ease, border-color 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-reached .process-marker {
  border-color: #d8aa19;
  background: #ffde6a;
}

.process-step.is-current .process-marker {
  border-color: #ffcf3f;
  background: #11161a;
  color: #fff;
  box-shadow: 0 0 0 6px #ebf3fe, 0 0 0 7px rgba(255, 222, 106, 0.4);
  transform: scale(1.05);
}

.process-copy {
  max-width: 650px;
  padding-top: 2px;
  opacity: 0.45;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-reached .process-copy,
.process-step.is-current .process-copy {
  opacity: 1;
  transform: translateY(0);
}


.process-copy h3 {
  margin: 0 0 8px;
  color: #101418;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.03em;
}

.process-copy p {
  max-width: 640px;
  margin: 0;
  color: #3e4850;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.5;
}

.process-copy strong {
  color: #11161a;
  font-weight: 800;
}

@media (max-width: 700px) {
  .process-section.process-section {
    width: calc(100% - 16px);
    margin-top: 72px;
    padding: 48px 20px 58px;
    border-radius: 22px;
  }

  .process-section.process-section::before {
    display: none;
  }

  .process-header h2 {
    font-size: clamp(28px, 9vw, 40px);
  }


  .process-timeline-wrap {
    margin-top: 48px;
  }

  .process-path,
  .process-path-fill {
    top: 24px;
    left: 24px;
  }

  .process-path {
    bottom: 24px;
  }

  .process-path-fill {
    max-height: calc(100% - 48px);
  }

  .process-step.process-step {
    min-height: 184px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 20px;
  }

  .process-step.process-step:last-child {
    min-height: 48px;
  }

  .process-marker {
    width: 48px;
    height: 48px;
    border-width: 1.5px;
    box-shadow: 0 0 0 4px #ebf3fe;
    font-size: 15px;
  }

  .process-copy {
    padding-top: 1px;
  }


  .process-copy h3 {
    margin-bottom: 9px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .process-copy p {
    font-size: clamp(12.5px, 3.7vw, 15px);
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {

  .process-path-fill,
  .process-path-fill::after,
  .process-marker,
  .process-copy {
    transition: none;
  }

  .process-copy {
    opacity: 1;
    transform: none;
  }
}

/* Horizontal, scroll-driven process cards (Process Section V2). */
.process-section.process-section {
  --process-connector-progress: 0%;
  --process-sticky-top: 80px;
  width: 100%;
  overflow: visible;
  margin: 106px auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.process-section .process-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.process-scroll-track {
  width: min(1006px, calc(100% - 40px));
  min-height: 1750px;
  height: 220vh;
  position: relative;
  margin: 0 auto;
}

.process-sticky-panel {
  position: sticky;
  top: var(--process-sticky-top);
  padding: clamp(44px, 5vw, 60px) clamp(24px, 4vw, 40px) 60px;
  border-radius: 24px;
  background: #ebf3fe;
}

.process-cards-viewport {
  overflow: visible;
  margin-top: clamp(34px, 4vw, 48px);
  padding: 14px 14px 28px;
}

.process-cards-rail {
  --process-mobile-offset: 0px;
  position: relative;
  transform: translateX(var(--process-mobile-offset));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 156px));
  justify-content: space-between;
  gap: clamp(14px, 3vw, 42px);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-connector {
  height: 2px;
  position: absolute;
  z-index: 0;
  top: 58px;
  left: 10%;
  right: 10%;
  border-radius: 999px;
  background: rgba(17, 22, 26, 0.12);
  pointer-events: none;
}

.process-connector-fill {
  width: var(--process-connector-progress);
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: #11161a;
  transition: width 80ms linear;
}

.process-connector-fill::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: -4px;
  border-radius: 50%;
  background: #ffde6a;
  box-shadow: 0 0 0 3px #ebf3fe;
  transform: translateY(-50%);
}

.process-card {
  min-width: 0;
  position: relative;
  color: #898e97;
  text-align: center;
  transition: color 320ms ease;
}

.process-card-visual {
  min-height: 116px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1.7px solid rgb(210 211 211 / 33%);
  border-radius: 20px;
  background: #fff;
  transition:
    background-color 320ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.process-card-visual::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid transparent;
  border-radius: 35px;
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease;
  pointer-events: none;
}

.process-card-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  color: #11161a;
  box-shadow: 0 0 0 4px #ebf3fe;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 320ms ease, background-color 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-card-icon {
  width: 40px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: #050505;
  stroke-width: 2.30883;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin: 18px 0 8px;
  color: inherit;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.process-card p {
  max-width: 176px;
  margin: 0 auto;
  color: #7d848b;
  font-size: 11.5px;
  line-height: 1.45;
  transition: color 320ms ease, opacity 320ms ease;
}

.process-card p strong {
  color: inherit;
  font-weight: 760;
}

.process-card.is-reached,
.process-card.is-current {
  color: #101418;
}

.process-card.is-reached .process-card-visual {
  background: #ffde6a;
}

.process-card.is-reached .process-card-number {
  background: #ffde6a;
}

.process-card.is-current .process-card-number {
  background: #11161a;
  color: #fff;
  transform: scale(1.06);
}

.process-card.is-reached p,
.process-card.is-current p {
  color: #3e4850;
}

.process-card.is-current .process-card-visual::before {
  border-color: #e6e6e6;
  opacity: 1;
  transform: scale(1);
}

.process-card:hover .process-card-visual {
  border-color: #e6e6e6;
  box-shadow:
    0 25px 10px rgba(125, 125, 125, 0.01),
    0 14px 9px rgba(125, 125, 125, 0.05),
    0 6px 6px rgba(125, 125, 125, 0.09),
    0 2px 3px rgba(125, 125, 125, 0.1);
}

.process-card:hover .process-card-visual::before {
  border-color: #e6e6e6;
  opacity: 1;
  transform: scale(1);
}

.process-card.is-current:hover .process-card-visual::before {
  border-color: #e6e6e6;
}

.process-card-list:hover .process-card:not(:hover) .process-card-visual {
  border-color: transparent;
  box-shadow: none;
}

.process-card-list:hover .process-card:not(:hover) .process-card-visual::before {
  border-color: transparent;
  opacity: 0;
}

@media (max-width: 700px) {
  .process-section.process-section {
    overflow: visible;
    margin-top: 72px;
    padding: 0;
  }

  .process-scroll-track {
    width: calc(100% - 16px);
    min-height: 1550px;
    height: 235vh;
    margin: 0 auto;
  }

  .process-sticky-panel {
    top: var(--process-sticky-top);
    padding: 42px 20px 60px;
    border-radius: 22px;
  }

  .process-cards-viewport {
    width: calc(100% + 40px);
    margin: 32px 0 0 -20px;
    overflow: hidden;
    padding: 14px 20px 30px;
  }

  .process-cards-rail {
    width: max-content;
  }

  .process-card-list {
    --process-card-width: min(56vw, 200px);
    display: flex;
    width: max-content;
    gap: 26px;
  }

  .process-card {
    width: var(--process-card-width);
    flex: 0 0 var(--process-card-width);
  }

  .process-connector {
    top: 58px;
    left: calc(var(--process-card-width) / 2);
    right: calc(var(--process-card-width) / 2);
  }

  .process-card-visual {
    min-height: 116px;
    border-radius: 20px;
  }

  .process-card-visual::before {
    inset: -15px;
    border-radius: 35px;
  }

  .process-card h3 {
    margin-top: 20px;
    font-size: 21px;
  }

  .process-card p {
    max-width: 210px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-cards-rail,
  .process-connector-fill,
  .process-card,
  .process-card-visual,
  .process-card-visual::before,
  .process-card p {
    transition: none;
  }
}

.palazzo-logo-adjust {
  margin-bottom: 3px;
  height: 44px;
  margin-top: -3px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 52px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 16px;
  gap: 12px;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.33), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.32), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.3), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.25), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.11);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: floatingReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: 1.5s;
  text-decoration: none;
  color: #11161a;
  font-weight: 500;
  font-size: 15px;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid transparent;
  border-radius: 9999px;
  transition: border-color 300ms ease;
  pointer-events: none;
}

.floating-whatsapp:hover::before {
  border-color: rgba(45, 213, 107, 0.4);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: none;
  box-shadow: 0px 0.7409732186279143px 0.7409732186279143px -0.75px rgba(0, 0, 0, 0.16), 0px 2.0178668455264415px 2.0178668455264415px -1.5px rgba(0, 0, 0, 0.16), 0px 4.430505261661892px 4.430505261661892px -2.25px rgba(0, 0, 0, 0.15), 0px 9.834710084098335px 9.834710084098335px -3px rgba(0, 0, 0, 0.12), 0px 25px 25px -3.75px rgba(0, 0, 0, 0.05);
  border-color: #d1d5db;
  outline: none;
}

.fw-status {
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.fw-dot {
  width: 10px;
  height: 10px;
  background: var(--green, #25D366);
  border-radius: 50%;
}

.fw-text {
  padding-right: 4px;
}

.fw-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@keyframes floatingReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Compact avatar-only pill on small screens so it doesn't cover content */
@media (max-width: 540px) {
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 0 5px;
    gap: 0;
  }

  .floating-whatsapp .fw-text,
  .floating-whatsapp .fw-status {
    display: none;
  }
}

/* CTA Microcopy */
.cta-microcopy {
  margin: 23px 0 0;
  font-size: 15px;
  color: #4b5563;
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* How I Work Section */
.how-i-work {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  text-align: center;
}

.section-italic-label {
  display: block;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.how-i-work h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0 0 48px;
  color: #111827;
  letter-spacing: -0.02em;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.hiw-card {
  padding: 0 24px;
  position: relative;
}

.hiw-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background-color: #d1d5db;
}

.hiw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
  color: #111827;
}

.hiw-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hiw-card h3 {
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.01em;
}

.hiw-card p {
  margin: 0 auto;
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 280px;
}

@media (max-width: 900px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .hiw-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .hiw-card::after {
    display: none !important;
  }
}

/* Audit Component */
.audit-section {
  width: min(100%, 858px);
  margin: 0 auto 20px;
  text-align: center;
}

.audit-card {
  width: min(100%, 690px);
  margin-inline: auto;
  padding: 16px 16px 18px;
  border-radius: 40px;
  background: #111518;
  position: relative;
}

.audit-card:hover::after {
  border-color: rgb(230, 230, 230);
}

.audit-card::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  pointer-events: none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 55px;
  transition: border-color 300ms;
}

.audit-title {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.audit-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 36px 15px;
  border-radius: 30px;
  background: #ffffff;
  transform: rotate(-0.12deg);
}

.audit-panel .cta-box {
  margin-top: 5px;
}

.audit-list {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 15px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.audit-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #0b0d0f;
}

.audit-list li:last-child {
  margin-bottom: 0;
}

.audit-check-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  margin-top: -1px;
}

.audit-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.audit-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: #d9d9d9;
}

.audit-note {
  margin: 35px auto 0;
  color: rgba(40, 49, 55, 0.75);
  font-size: clamp(14px, 2.4vw, 17px);
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 700px) {
  .audit-section {
    padding-inline: 14px;
  }

  .audit-card {
    padding: 16px;
    border-radius: 34px;
  }

  .audit-card::after {
    border-radius: 49px;
  }

  .audit-title {
    margin-bottom: 25px;
  }

  .audit-panel {
    min-height: unset;
    padding: 36px 27px 25px;
    border-radius: 27px;
  }

  .audit-list {
    margin-bottom: 31px;
  }

  .audit-list li {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
  }

  .audit-check-icon {
    width: 25px;
    height: 25px;
    margin-top: 2px;
    font-size: 16px;
  }

  .audit-note {
    margin-top: 27px;
  }
}

@media (max-width: 450px) {
  .audit-panel {
    padding-inline: 20px;
  }

  .audit-list li {
    font-size: 17px;
    letter-spacing: -0.3px;
  }

  .audit-underline {
    white-space: normal;
  }

  .audit-underline::after {
    bottom: 0px;
  }
}

/* Contact Intro */
.contact-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin: 20px auto 32px;
  max-width: 720px;
}

/* First-view composition and scroll-expanding client results. */
.proof-board {
  margin-top: 5px;
}

@media (min-width: 521px) {
  .hero {
    margin-top: clamp(47px, calc(7svh - 5px), 73px);
  }

  .hero-cta-wrapper .cta-microcopy {
    margin-top: 10px;
  }

  .hero-cta-wrapper .trustpilot {
    margin-top: 10px;
    margin-bottom: 76px;
  }
}

@media (max-width: 520px) {
  .hero {
    margin-top: clamp(37px, calc(6svh - 5px), 53px);
  }
}

.js .proof-board.proof-board--scroll {
  min-height: 0;
  height: var(--proof-height);
  will-change: height;
}

.js .proof-board.proof-board--scroll .metrics {
  transform: translateY(var(--proof-metrics-shift, 0));
  will-change: transform;
}

.js .proof-board.proof-board--scroll .metric {
  gap: var(--proof-metric-gap, 8px);
}

.js .proof-board.proof-board--scroll .metric img {
  margin-bottom: var(--proof-metric-image-gap, 14px);
}

.js .proof-board.proof-board--scroll .metric:nth-child(4) img {
  margin-bottom: var(--proof-metric-fourth-image-gap, 8px);
}

.js .proof-board.proof-board--scroll .metric strong,
.js .proof-board.proof-board--scroll .metric > span {
  scale: var(--proof-metric-copy-scale, 1);
  transform-origin: center top;
}

.js .proof-board.proof-board--scroll .testimonials {
  transform: translateY(var(--proof-details-shift, 24px));
  will-change: transform;
}

.js .proof-board.proof-board--scroll .testimonial {
  opacity: var(--proof-card-opacity, 0);
  transform:
    translateY(var(--proof-card-shift, 18px))
    scale(var(--proof-card-scale, 0.985));
  transform-origin: center top;
  will-change: opacity, transform;
}

@media (max-width: 520px) {
  .hero-cta-wrapper .cta--primary {
    font-size: 15px;
    font-weight: 600;
  }

  .receive-cta .cta--primary {
    font-size: 16px;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .proof-board.proof-board--scroll,
  .js .proof-board.proof-board--scroll .metrics,
  .js .proof-board.proof-board--scroll .testimonials,
  .js .proof-board.proof-board--scroll .testimonial {
    height: auto;
    opacity: 1;
    transform: none;
  }
}

/* Search-oriented site navigation and editorial pages */
.site-nav {
  z-index: 1000;
  position: fixed;
  top: 24px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px;
  border: 1px solid rgba(18, 24, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow:
    0 1px 2px rgba(13, 19, 24, 0.04),
    0 8px 28px rgba(13, 19, 24, 0.09);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
  transform: translateX(-50%);
  transition:
    top 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    gap 440ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: site-nav-arrive 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-page .site-nav {
  top: 56px;
}

.site-nav.is-scrolled {
  top: 12px;
  border-color: rgba(18, 24, 30, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 4px rgba(13, 19, 24, 0.05),
    0 12px 36px rgba(13, 19, 24, 0.12);
}

.site-nav:hover {
  transform: translateX(-50%) translateY(-2px);
}

@keyframes site-nav-arrive {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.site-nav a {
  text-decoration: none;
}

.site-nav__brand {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 2px;
  border-radius: 999px;
}

.site-nav__brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 9px rgba(13, 19, 24, 0.14);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__brand:hover img {
  transform: scale(1.06);
}

.site-nav__identity {
  display: grid;
  gap: 1px;
  line-height: 1.08;
}

.site-nav__identity strong {
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.site-nav__identity > span {
  color: #676d73;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav__links {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav__links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 260ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__links a:not(.site-nav__cta):hover {
  background: rgba(18, 24, 30, 0.06);
  transform: translateY(-1px);
}

.site-nav__links a[aria-current="page"]:not(.site-nav__cta) {
  background: rgba(18, 24, 30, 0.075);
  color: #11683f;
}

.site-nav__cta {
  gap: 8px;
  margin-left: 4px;
  padding-inline: 14px !important;
  border: 1px solid rgba(18, 24, 30, 0.11);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow:
    0 1px 2px rgba(13, 19, 24, 0.05),
    0 5px 14px rgba(13, 19, 24, 0.08);
}

.site-nav__cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

.site-nav__pulse {
  width: 8px;
  height: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #24a957;
}

.site-nav__pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: rgba(36, 169, 87, 0.24);
  transform: scale(0.45);
  animation: site-nav-pulse 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes site-nav-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.45);
  }

  65%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.site-nav__toggle {
  order: 3;
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 24, 30, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.site-nav__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.site-nav__dots i {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav.is-open .site-nav__dots i:first-child {
  transform: translateY(6px);
}

.site-nav.is-open .site-nav__dots i:last-child {
  transform: translateY(-6px);
}

.site-nav :focus-visible {
  outline: 3px solid rgba(22, 138, 73, 0.28);
  outline-offset: 2px;
}

.home-page .hero {
  margin-top: 118px;
}

.content-page .content-hero {
  padding-top: max(142px, 10vw);
}

.contact-body .contact-hero {
  padding-top: 138px;
}

.seo-summary {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--site-border);
  border-radius: 28px;
  background: #f7f9fb;
}

.seo-summary__intro {
  max-width: 820px;
}

.seo-summary h2,
.content-page h1,
.content-page h2 {
  letter-spacing: -0.045em;
}

.seo-summary h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.seo-summary__intro p,
.seo-summary__grid p,
.seo-summary__learn {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.seo-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.seo-summary__grid article {
  padding: 24px;
  border: 1px solid var(--site-border);
  border-radius: 18px;
  background: #fff;
}

.seo-summary__grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.seo-summary__grid p {
  margin: 0 0 14px;
  font-size: 15px;
}

.seo-summary__grid a,
.seo-summary__learn a,
.content-page a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.seo-summary__learn {
  margin: 26px 0 0;
}

.seo-summary--collapsible {
  padding: 0;
  overflow: hidden;
}

.seo-summary__disclosure > summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 34px);
  cursor: pointer;
  list-style: none;
}

.seo-summary__disclosure > summary::-webkit-details-marker {
  display: none;
}

.seo-summary__summary-label {
  color: #167346;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-summary__disclosure > summary strong {
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: -0.02em;
}

.seo-summary__summary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.seo-summary__summary-action span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.seo-summary__disclosure[open] .seo-summary__summary-action span {
  transform: rotate(45deg);
}

.seo-summary__content {
  padding: clamp(30px, 5vw, 58px);
  border-top: 1px solid var(--site-border);
}

.content-page {
  background: #fff;
}

.content-page main {
  overflow: clip visible;
}

.content-hero,
.content-section,
.content-cta {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.content-hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(56px, 8vw, 96px);
}

.content-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #167346;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.96;
}

.content-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.content-button--secondary {
  background: #fff;
  color: var(--ink);
}

.content-section {
  padding: clamp(48px, 7vw, 82px) 0;
  border-top: 1px solid var(--site-border);
}

.content-section h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.content-section h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.content-section > p,
.content-section li,
.content-card p,
.answer-block p,
.content-section dd {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content-section > p {
  max-width: 780px;
}

.answer-block {
  max-width: 820px;
  padding: 26px 28px;
  border-left: 5px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: #f1faf5;
}

.answer-block p {
  margin: 0;
  color: var(--ink);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.content-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.content-card {
  padding: 26px;
  border: 1px solid var(--site-border);
  border-radius: 18px;
  background: #f8fafc;
}

.content-card p {
  margin: 0;
  font-size: 15px;
}

.content-list {
  max-width: 820px;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 24px;
}

.content-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.content-stat {
  padding: 24px 18px;
  border-radius: 16px;
  background: var(--deep);
  color: #fff;
}

.content-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 46px);
}

.content-stat span {
  color: #d8dce2;
  font-size: 14px;
}

.content-faq {
  max-width: 820px;
  margin: 26px 0 0;
}

.content-faq details {
  padding: 18px 0;
  border-top: 1px solid var(--site-border);
}

.content-faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
}

.content-faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.content-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
}

.content-profile img {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  object-fit: cover;
}

.content-cta {
  margin-bottom: 80px;
  padding: clamp(34px, 6vw, 66px);
  border-radius: 26px;
  background: var(--gold);
}

.content-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.content-cta p {
  max-width: 680px;
  color: #353535;
  font-size: 17px;
  line-height: 1.6;
}

footer {
  grid-template-columns: auto minmax(300px, 1fr) auto auto;
}

footer .footer-nav {
  flex-wrap: wrap;
  gap: 10px 18px;
}

footer .footer-nav a {
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  color: #686f77;
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer .footer-nav a:hover {
  background: transparent;
  color: var(--ink);
  transform: none;
}

@media (min-width: 761px) {
  .site-nav__toggle {
    display: grid;
  }

  .site-nav.is-open {
    gap: 30px;
  }

  .site-nav__links {
    max-width: 520px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: 50% 50%;
    transition:
      max-width 480ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 230ms ease 120ms,
      visibility 0s linear,
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .site-nav:not(.is-open) .site-nav__links {
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-width 420ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 160ms ease,
      visibility 0s linear 420ms,
      transform 220ms ease;
  }

  .site-nav__links > a {
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav:not(.is-open) .site-nav__links > a {
    opacity: 0;
    transform: translateY(-7px);
    transition-delay: 0s;
  }

  .site-nav.is-open .site-nav__links > a:nth-child(1) {
    transition-delay: 100ms;
  }

  .site-nav.is-open .site-nav__links > a:nth-child(2) {
    transition-delay: 150ms;
  }

  .site-nav.is-open .site-nav__links > a:nth-child(3) {
    transition-delay: 200ms;
  }

  .site-nav.is-open .site-nav__links > a:nth-child(4) {
    transition-delay: 250ms;
  }

  .site-nav.is-open .site-nav__links > a:nth-child(5) {
    transition-delay: 300ms;
  }

  .site-nav.is-open .site-nav__toggle {
    background: rgba(18, 24, 30, 0.035);
  }
}

@media (max-width: 760px) {
  .site-nav,
  .home-page .site-nav {
    top: 12px;
    width: min(460px, calc(100% - 24px));
    justify-content: space-between;
    gap: 12px;
    border-radius: 30px;
  }

  .site-nav.is-scrolled {
    top: 8px;
  }

  .site-nav:hover {
    transform: translateX(-50%);
  }

  .site-nav__toggle {
    display: grid;
  }

  .site-nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    gap: 3px;
    padding: 8px;
    border: 1px solid rgba(18, 24, 30, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      0 2px 4px rgba(13, 19, 24, 0.04),
      0 18px 42px rgba(13, 19, 24, 0.14);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: 50% 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open .site-nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav__links a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding-inline: 15px;
  }

  .site-nav__links a[aria-current="page"]:not(.site-nav__cta) {
    background: rgba(18, 24, 30, 0.065);
  }

  .site-nav__cta {
    justify-content: center !important;
    margin: 3px 0 0;
  }

  .home-page .hero {
    margin-top: 104px;
  }

  .content-page .content-hero {
    padding-top: 122px;
  }

  .contact-body .contact-hero {
    padding-top: 122px;
  }
}

@media (max-width: 420px) {
  .site-nav__identity > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav__brand img,
  .site-nav__links,
  .site-nav__links a,
  .site-nav__dots i {
    animation: none;
    transition: none;
  }

  .site-nav__pulse,
  .site-nav__pulse::after {
    animation: none;
  }
}

@media (max-width: 900px) {
  .seo-summary__grid,
  .content-grid,
  .content-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .seo-summary__grid,
  .content-grid,
  .content-grid--two,
  .content-stats {
    grid-template-columns: 1fr;
  }

  .seo-summary__disclosure > summary {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
  }

  .seo-summary__summary-label {
    grid-column: 1 / -1;
  }

  .seo-summary__summary-action {
    font-size: 0;
  }

  .content-profile {
    grid-template-columns: 1fr;
  }

  .content-profile img {
    width: 160px;
    height: 160px;
  }
}
