@font-face {
  font-family: "Bender";
  src: url("assets/fonts/bender-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prime";
  src: url("assets/fonts/prime-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #398860;
  --green-strong: #337d57;
  --green-light: #9acc77;
  --black: #080808;
  --ink: #18231d;
  --muted: #65706a;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #dfe7dd;
  --max-width: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Prime", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

p,
li,
.tool-chip,
.service-card,
.persona-copy {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(290px, 56vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.linkedin-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-nav-link {
  color: var(--ink);
  font-family: "Bender", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.header-nav-link:hover,
.header-nav-link[aria-current="page"] {
  color: var(--green-strong);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-strong);
  border: 2px solid var(--green-strong);
  border-radius: var(--radius);
  font-family: "Bender", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link:hover {
  color: var(--black);
  background: var(--green-light);
  border-color: var(--black);
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 56px) clamp(36px, 5vw, 64px);
}

.hero-layout {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 9px 12px;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  font-family: "Bender", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.comic-strip4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: clamp(32px, 5vw, 56px);
  align-items: start;
}

.comic-quad {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  cursor: zoom-in;
  aspect-ratio: 1.82;
  transform-origin: center bottom;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.comic-quad:first-child {
  transform-origin: left bottom;
}

.comic-quad:last-child {
  transform-origin: right bottom;
}

.comic-quad:hover {
  z-index: 5;
  transform: scale(1.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.comic-quad img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-family: "Prime", "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  text-wrap: balance;
}

.eyebrow-light {
  color: var(--green-light);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bender", "Segoe UI", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 3.7rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 30px;
}

.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  font-family: "Bender", "Segoe UI", sans-serif;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  color: var(--black);
  background: var(--green-light);
  border-color: var(--black);
}

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

.button-secondary:hover {
  color: var(--black);
  background: var(--green-light);
  border-color: var(--black);
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--green-strong);
  font-family: "Bender", "Segoe UI", sans-serif;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.problem-section {
  color: var(--white);
  background: var(--black);
  padding: clamp(52px, 7vw, 92px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  font-weight: 700;
}

.problem-list p:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.persona-section {
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--white);
}

.persona-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 52px);
  align-items: center;
  max-width: 1080px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--paper);
  border-left: 8px solid var(--green-strong);
  border-radius: var(--radius);
}

.profile-portrait {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 320px);
  min-width: 220px;
  margin: 0;
  align-self: start;
  padding: clamp(10px, 2vw, 18px);
  background: var(--white);
  border: 4px solid var(--black);
}

.profile-portrait img {
  width: 100%;
  height: auto;
}

.persona-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  min-width: 0;
}

.persona-copy h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.35rem);
}

.persona-copy > p:not(.eyebrow):not(.pull-quote) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pull-quote {
  max-width: 520px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--black);
  border-left: 5px solid var(--green-light);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.persona-traits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.persona-traits span {
  position: relative;
  min-width: 0;
  padding: 14px 14px 14px 46px;
  color: var(--black);
  background: var(--paper);
  border: 3px solid var(--black);
  font-weight: 800;
  line-height: 1.22;
}

.persona-traits span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 10px;
  border-left: 4px solid var(--green-strong);
  border-bottom: 4px solid var(--green-strong);
  transform: translateY(-60%) rotate(-45deg);
  content: "";
}

.services-section {
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 54px);
  min-width: 0;
}

.service-card {
  min-width: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green-strong);
  border-radius: 6px;
  font-family: "Bender", "Segoe UI", sans-serif;
  font-size: 0.86rem;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 5vw, 48px);
}

.pricing-hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(44px, 6vw, 72px);
  background: var(--paper);
}

.pricing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
  max-width: var(--max-width);
}

.pricing-hero h1 {
  max-width: 760px;
}

.pricing-hero-copy {
  min-width: 0;
}

.pricing-hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pricing-subtitle {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.pricing-intro {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 700;
}

.pricing-intro p,
.method-summary p {
  margin: 0;
}

.offer-section {
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--paper);
}

.method-section {
  padding: clamp(42px, 6vw, 68px) 0;
  background: var(--white);
}

.service-detail-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail-card p,
.service-detail-card li {
  color: var(--muted);
}

.method-summary {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-top: clamp(20px, 4vw, 32px);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  font-weight: 700;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-card h4 {
  margin: 22px 0 10px;
  font-family: "Bender", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.price-tag {
  margin-top: 22px;
  color: var(--green-strong);
  font-weight: 900;
}

.pricing-cta {
  padding: clamp(54px, 7vw, 92px) 0;
  color: var(--white);
  background: var(--black);
}

.pricing-cta-inner {
  max-width: 820px;
}

.pricing-cta .eyebrow {
  color: var(--green-light);
}

.pricing-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-cta .button {
  margin-top: 12px;
}

.tools-section {
  overflow: hidden;
  padding: clamp(46px, 7vw, 82px) 0 clamp(58px, 8vw, 104px);
  background: var(--white);
  contain: inline-size;
}

.tools-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.tools-heading p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.tools-marquee {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tools-track {
  display: flex;
  width: max-content;
  animation: tools-scroll 72s linear infinite;
}

.tools-marquee:hover .tools-track {
  animation-play-state: paused;
}

.tools-row {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  height: 58px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.04);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.tool-chip img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.tool-chip-logo-only {
  padding-inline: 18px;
}

.tool-chip-logo-only img {
  width: auto;
  max-width: 118px;
  height: 30px;
}

@keyframes tools-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.style-section {
  color: var(--white);
  background: var(--green-strong);
  padding: clamp(58px, 8vw, 104px) 0;
}

.style-section .section-inner {
  max-width: 1080px;
}

.style-section .eyebrow-light {
  color: var(--white);
}

.work-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 42px);
}

.work-method article {
  min-width: 0;
  padding: 22px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
}

.work-method span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-light);
  font-family: "Bender", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.work-method h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.work-method p {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}

.request-section {
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--paper);
}

.plain-list {
  display: grid;
  gap: 14px;
}

.plain-list p {
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green-strong);
  border-radius: var(--radius);
  font-weight: 700;
}

.fit-section {
  padding: clamp(58px, 8vw, 104px) 0;
  color: var(--white);
  background: var(--black);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 54px);
}

.fit-grid p {
  min-width: 0;
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-weight: 700;
}

.final-cta {
  padding: clamp(54px, 8vw, 96px) 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.final-cta p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .eyebrow {
  color: var(--green-light);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px 32px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--green-strong);
}

.footer-block {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.footer-block:nth-of-type(2) {
  justify-self: center;
  text-align: center;
}

.site-footer p,
.footer-block span {
  margin: 0;
  font-family: "Bender", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.site-footer address {
  margin: 0;
  font-style: normal;
  line-height: 1.45;
}

.site-footer a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.footer-social .linkedin-icon {
  width: 20px;
  height: 20px;
}

.service-sub {
  margin: 6px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: italic;
}

.feature-section {
  background: var(--black);
  padding: clamp(48px, 7vw, 84px) 0;
}

.services-standalone {
  margin: 0 auto;
  max-width: 900px;
}

.services-standalone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.clients-section {
  background: var(--black);
  color: var(--white);
  padding: clamp(50px, 7vw, 82px) 0;
  text-align: center;
}

.clients-section h2,
.clients-section p {
  color: var(--white);
}

.clients-section .eyebrow-light {
  color: var(--green-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: clamp(32px, 5vw, 48px) auto;
  max-width: 920px;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Bender", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

a.client-card:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(154, 204, 119, 0.55);
}

.client-card img {
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
  display: block;
  opacity: 0.96;
  transition: opacity 160ms ease;
}

a.client-card:hover img {
  opacity: 1;
}

.clients-quote {
  max-width: 640px;
  margin: 0 auto clamp(20px, 3vw, 32px);
  font-family: "Bender", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.clients-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 clamp(24px, 4vw, 36px);
}

@media (max-width: 760px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    max-width: 760px;
  }

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

  .pricing-hero-visual {
    max-width: 620px;
  }

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

  .comic-quad {
    cursor: auto;
    transform: none;
  }

  .comic-quad:hover {
    transform: none;
    box-shadow: none;
    z-index: 1;
  }

  .persona-panel {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    max-width: 360px;
  }

  .profile-portrait img {
    max-height: 380px;
  }

  .work-method {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    width: min(215px, 56vw);
  }

  .header-link {
    padding: 9px 11px;
    font-size: 0.75rem;
  }

  .header-actions {
    flex-wrap: wrap;
    min-width: 0;
  }

  .header-nav-link,
  .header-link {
    font-size: 0.75rem;
  }

  .hero {
    padding: 34px 16px 36px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: calc(100% - 44px);
  }

  .split,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .section-actions {
    justify-content: stretch;
  }

  .pricing-hero h1,
  .method-section h2,
  .offer-section h2,
  .pricing-cta h2,
  .pricing-intro,
  .method-summary,
  .service-detail-card {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pricing-hero h1,
  .method-section h2,
  .offer-section h2,
  .pricing-cta h2 {
    width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.12rem);
    text-wrap: auto;
    hyphens: auto;
  }

  .pricing-intro,
  .method-summary {
    font-size: 1rem;
  }

  .pricing-hero {
    overflow: hidden;
  }

  .pricing-hero .button,
  .section-actions .button,
  .pricing-cta .button {
    max-width: 100%;
  }

  .tools-section {
    padding: 44px 0 64px;
  }

  .tools-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .tool-chip {
    height: 52px;
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .tool-chip img {
    width: 25px;
    height: 25px;
  }

  .tool-chip-logo-only {
    padding-inline: 14px;
  }

  .tool-chip-logo-only img {
    width: auto;
    max-width: 96px;
    height: 26px;
  }

  .service-card p,
  .tools-heading p:last-child {
    max-width: calc(100vw - 78px);
  }

  .service-card {
    padding: 20px;
  }

  .profile-portrait {
    border-width: 4px;
  }

  .comic-strip4 {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: min(100%, 300px);
    min-width: 0;
  }

  .persona-traits {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
  }

  .footer-block:nth-of-type(2) {
    justify-self: start;
    text-align: left;
  }

  .footer-social {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-actions {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }
}

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

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

  .tools-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .tools-track {
    animation: none;
  }

  .tools-row[aria-hidden="true"] {
    display: none;
  }
}
