:root {
    color-scheme: light;
    --bg: #fcfaf6;
    --bg-strong: #f5eee5;
    --surface: rgba(255, 255, 255, 0.74);
    --surface-solid: #fffdf9;
    --surface-dark: #26324b;
    --white: #ffffff;
    --ink: #26324b;
    --ink-soft: #616c80;
    --accent: #f17231;
    --accent-dark: #de6224;
    --line: rgba(38, 50, 75, 0.3);
    --line-soft: rgba(38, 50, 75, 0.14);
    --shadow: 0 0 0 rgba(0, 0, 0, 0);
    --shell: 1220px;
    --font-heading: "Montserrat", "Trebuchet MS", sans-serif;
    --font-body: "Onest", "Segoe UI", sans-serif;
    --header-offset: 108px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, #fffdfa 0%, #fbf8f2 28%, #fffcf8 100%);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 12%, rgba(241, 114, 49, 0.08), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(38, 50, 75, 0.06), transparent 24%);
    pointer-events: none;
}

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

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

p,
ul,
ol,
h1,
h2,
h3 {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

.shell {
    width: min(calc(100% - 64px), var(--shell));
    margin: 0 auto;
}

.landing {
    overflow: hidden;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding-top: 18px;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 108px;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.94) 0%, rgba(255, 253, 250, 0.82) 60%, rgba(255, 253, 250, 0) 100%);
    pointer-events: none;
}

.site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 58px;
}

.brandmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brandmark__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
}

.brandmark__wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2vw, 2.05rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.brandmark__wordmark span:first-child {
    color: var(--ink);
}

.brandmark__wordmark span:last-child {
    color: var(--accent);
}

.brandmark__wordmark--accent {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 52px;
}

.main-nav__link {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: rgba(38, 50, 75, 0.94);
    transition: color 180ms ease;
}

.main-nav__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
    color: var(--accent);
}

.main-nav__link:hover::after,
.main-nav__link:focus-visible::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 999px;
    background: var(--surface-dark);
}

.language-switcher__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease;
}

.language-switcher__item:hover,
.language-switcher__item:focus-visible {
    color: var(--white);
}

.language-switcher__item--active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.mesh-section {
    position: relative;
    isolation: isolate;
}

.mesh-section__backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../images/mesh-wave.svg") center / cover no-repeat;
    opacity: 0.28;
    pointer-events: none;
}

.section {
    position: relative;
    padding: 80px 0;
}

.section--mesh {
    isolation: isolate;
}

.section--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../images/mesh-wave.svg") center / cover no-repeat;
    opacity: 0.18;
    pointer-events: none;
}

.section--centered {
    text-align: center;
}

.section__label {
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.section__title {
    max-width: 1080px;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.9vw, 3.35rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.section__title--left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section__copy {
    max-width: 760px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 600;
}

.section__copy--center {
    margin: 0 auto;
    text-align: center;
    color: var(--ink-soft);
    font-size: 18px;
    font-weight: 600;
}

.section__note {
    max-width: 920px;
    margin: 22px auto 0;
    padding: 16px 22px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink-soft);
    font-size: 16px;
}

.section__note span {
    margin-right: 8px;
    color: var(--ink);
    font-weight: 800;
}

.hero {
    padding: var(--header-offset) 0 68px;
}

.hero__inner {
    padding-top: 18px;
}

.hero__headline {
    max-width: 860px;
}

.hero__eyebrow {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.85vw, 1.72rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.hero__title {
    max-width: 860px;
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 6.5vw, 5.35rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.03em;
    color: var(--surface-dark);
}

.hero__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 640px;
    margin-top: 24px;
}

.hero__lead {
    font-size: clamp(1.18rem, 1.8vw, 1.7rem);
    font-weight: 500;
    line-height: 1.42;
    color: var(--ink-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button__icon {
    font-size: 18px;
    line-height: 1;
}

.button--dark {
    background: var(--surface-dark);
    color: var(--white);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #1d2940;
}

.button--outline {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
    background: var(--surface-solid);
}

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

.button--accent:hover,
.button--accent:focus-visible {
    background: var(--accent-dark);
}

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

.hero-metrics__item {
    min-height: 210px;
    padding: 28px 24px 20px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: var(--shadow);
}

.hero-metrics__value {
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    color: var(--surface-dark);
}

.hero-metrics__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.38;
    color: var(--ink);
}

.hero__caption {
    display: none;
}

.challenge-list {
    max-width: 920px;
    margin: 40px auto 0;
    display: grid;
    gap: 12px;
}

.challenge-card {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--shadow);
}

.challenge-card__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-top: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
}

.challenge-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.challenge-card__body h3 {
    margin-bottom: 4px;
    font-size: clamp(1.04rem, 1.62vw, 1.4rem);
    font-weight: 800;
}

.challenge-card__body p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.42;
}

.services {
    padding-top: 88px;
}

.services__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    gap: 56px;
    align-items: start;
}

.section-intro--sticky {
    position: sticky;
    top: 112px;
}

.section-intro__copy {
    max-width: 380px;
    font-size: clamp(1.35rem, 2.1vw, 1.95rem);
    line-height: 1.4;
    color: var(--ink);
}

.services .section__label {
    display: none;
}

.section-intro__actions {
    margin-top: 24px;
}

.service-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.service-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.service-list__body h3 {
    margin-bottom: 8px;
    font-size: clamp(1.04rem, 1.54vw, 1.4rem);
    font-weight: 800;
    text-transform: uppercase;
}

.service-list__body p {
    color: var(--ink-soft);
    font-size: 18px;
}

.service-list__index {
    color: rgba(41, 54, 81, 0.44);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

#challenges .section__label,
#equipment .section__label,
#engagement .section__label,
.trust .section__label {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3.8vw, 3.05rem);
    letter-spacing: -0.02em;
}

#challenges .section__title,
#equipment .section__title,
#engagement .section__title,
.trust .section__title {
    max-width: 980px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.35vw, 2.12rem);
    letter-spacing: -0.02em;
    text-transform: none;
}

#challenges .section__copy--center {
    display: none;
}

.smart__lead {
    max-width: 980px;
    margin: 14px auto 0;
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    font-weight: 600;
    color: var(--ink);
}

.smart__lead span {
    color: var(--accent);
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 42px;
}

.feature-card,
.check-card,
.panel-block,
.results-card,
.audience-card,
.engagement-card,
.workflow-card,
.closing-band__contact {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 30px 28px;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/mesh-wave.svg") center / cover no-repeat;
    opacity: 0.22;
}

.feature-card > * {
    position: relative;
}

.feature-card h3 {
    max-width: 360px;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: clamp(1.31rem, 1.8vw, 1.76rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.feature-card p {
    max-width: 430px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.check-card {
    padding: 30px 28px;
}

.check-list {
    display: grid;
    gap: 18px;
}

.check-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    font-weight: 600;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    width: 22px;
    height: 22px;
    margin-top: 4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px rgba(239, 107, 44, 0.08);
}

.integration__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.panel-block {
    padding: 30px 26px;
}

.panel-block .section__title,
.results-card .section__title,
.audience-card .section__title {
    max-width: none;
    font-size: clamp(1.53rem, 2.7vw, 2.52rem);
}

.panel-block--accent {
    position: relative;
    overflow: hidden;
}

.panel-block--accent::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/mesh-wave.svg") center / cover no-repeat;
    opacity: 0.18;
}

.panel-block--accent > * {
    position: relative;
}

.pill-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.pill-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    font-weight: 600;
}

.pill-list li::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink-soft);
}

.panel-block__actions {
    margin-top: 20px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.engagement-card {
    padding: 26px 22px;
    text-align: center;
}

.engagement-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(239, 107, 44, 0.12);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.engagement-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.13rem, 1.44vw, 1.4rem);
    font-weight: 800;
}

.engagement-card p {
    color: var(--ink-soft);
    font-size: 17px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.workflow-card {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 160px;
    padding: 24px 22px;
    text-align: center;
}

.workflow-card__index {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 800;
    line-height: 0.9;
}

.workflow-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.results__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.results-card,
.audience-card {
    padding: 30px 26px;
}

.results-callout {
    margin: 22px 0 22px;
    padding: 18px 20px;
    border: 1px solid rgba(239, 107, 44, 0.18);
    border-radius: 22px;
    background: rgba(239, 107, 44, 0.08);
}

.results-callout__title {
    margin-bottom: 8px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-list {
    display: grid;
    gap: 16px;
}

.result-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 18px;
    font-weight: 600;
}

.result-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 6px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(41, 54, 81, 0.08);
}

.audience-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.audience-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 60px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    font-weight: 600;
}

.audience-list li::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 18px;
    color: var(--ink-soft);
}

.trust {
    padding-bottom: 64px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.trust-card {
    padding: 26px 22px 30px;
    border-radius: 26px;
    background: var(--accent);
    color: var(--white);
}

.trust-card__icon {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;
}

.trust-card__icon::before,
.trust-card__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
}

.trust-card__icon::before {
    width: 20px;
    height: 2px;
}

.trust-card__icon::after {
    width: 2px;
    height: 20px;
}

.trust-card p {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.section-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.closing-band {
    padding: 76px 0 28px;
}

.closing-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 28px;
    align-items: end;
}

.closing-band__title {
    max-width: 930px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.4vw, 4.78rem);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.closing-band__subtitle {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.closing-band__text {
    max-width: 620px;
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 600;
}

.closing-band__brandmark {
    margin-top: 28px;
}

.closing-band__contact {
    padding: 26px 24px;
}

.closing-band__contact-label {
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.closing-band__contact-link {
    display: inline-block;
    margin-bottom: 18px;
    padding: 14px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-weight: 800;
}

.closing-band__contact p {
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-size: 17px;
}

.site-footer {
    padding: 0 0 36px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    padding: 18px 22px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.72);
    box-shadow: var(--shadow);
}

.site-footer__summary {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.site-footer__nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.site-footer__rights {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1180px) {
    .services__layout,
    .feature-grid,
    .integration__grid,
    .results__layout,
    .closing-band__grid {
        grid-template-columns: 1fr;
    }

    .section-intro--sticky {
        position: static;
    }

    .hero__summary {
        max-width: 640px;
    }

    .hero__actions {
        justify-content: flex-start;
    }

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

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

    .site-header__inner {
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 18px 24px;
    }

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

    .challenge-card {
        grid-template-columns: 60px 1fr;
    }

    .challenge-card__body p,
    .service-list__body p,
    .workflow-card p,
    .result-list li,
    .audience-list li,
    .pill-list li {
        font-size: 18px;
    }

    .section__copy {
        font-size: 18px;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .site-header {
        padding-top: 12px;
    }

    .site-header__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
    }

    .language-switcher {
        justify-self: start;
    }

    .hero {
        padding-top: 92px;
        padding-bottom: 56px;
    }

    .hero__title {
        max-width: 320px;
        font-size: 2.52rem;
        line-height: 0.92;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero__eyebrow {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .hero__actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-metrics,
    .engagement-grid,
    .workflow-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .challenge-card,
    .service-list__item,
    .closing-band__grid {
        grid-template-columns: 1fr;
    }

    .challenge-card__icon {
        margin-top: 0;
    }

    .services__layout,
    .feature-grid,
    .integration__grid,
    .results__layout {
        gap: 22px;
    }

    .section {
        padding: 72px 0;
    }

    .section__title,
    .closing-band__title {
        font-size: clamp(2.16rem, 14.4vw, 3.6rem);
    }

    .section__copy,
    .section__copy--center,
    .hero__lead,
    .closing-band__text {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .main-nav__link {
        font-size: 16px;
    }

    .service-list__index {
        font-size: 24px;
    }

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

    .site-footer__nav {
        justify-content: center;
    }
}
