@font-face {
    font-family: 'Libertinus Serif';
    src: url('./assets/fonts/LibertinusSerif-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

:root {
    /* Colors */
    --color-primary: #111827;
    --color-accent: #B93526;
    --color-bg-light: #FAFAFB;
    --color-bg-white: #FFFFFF;
    --color-text-main: #374151;
    --color-text-muted: #334155;
    --color-border: #E5E7EB;

    --font-primary: 'DM Sans', sans-serif;
    --font-serif: 'Libertinus Serif', serif;
    --color-bg-beige: #F9F8F6;
    --color-gold: #C5A070;

    --container-width: 1280px;
    --section-padding: 80px;
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-what-we-do {
    max-width: 1600px;
    margin:0 auto;
    padding: 0 0 0 40px;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
    color: #0F172A;
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}


.bg-light {
    background-color: #FAF8F5;
}

.bg-dark {
    background-color: var(--color-primary);
}

.text-white {
    color: var(--color-bg-white);
}

.text-accent {
    color: var(--color-accent);
}

.font-serif {
    font-family: var(--font-serif);
}

.italic {
    font-family: 'Libertinus Serif', serif;
}

.font-style-italic {
    font-style: italic;
}

.text-left {
    text-align: left !important;
}


h1,
h2,
h3,
h4 {
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    color: #0F172A;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5rem;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--color-bg-white);
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    text-align: center;
    margin: 0 auto 1.5rem;
}

.section-title-two {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1.8px;
    text-align: center;
    margin: 8px 0 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    width: fit-content;
}

.btn__arrow {
    margin-left: 8px;
    font-size: 1.2em;
    line-height: 1;
}

.btn--primary {
    background-color: #0F172A;
    color: var(--color-bg-white);
}

.btn--primary:hover {
    background-color: var(--color-accent);
}

.btn--secondary {
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    background: #F3F3F3;
}

.mandatory_star {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #FB2C36;
}

.btn--secondary--white {
    background-color: #F3F3F3;
    color: #1E293B;
    border: 1px solid #E2E8F0;
}

.bg-dark .btn--secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-bg-white);
    background: transparent;
}

.btn--secondary:hover {
    border-color: var(--color-primary);
}


.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: var(--color-bg-white);
    line-height: 16px;
}

.tag--dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-header__menu {
    display: flex;
    gap: 40px;
    color: #0F172A;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.site-header__menu a:hover {
    color: var(--color-accent);
}

.site-header__menu a.is-active {
    color: var(--color-accent);
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}


.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero__bg-circles {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/Hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__bg-circles_about {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/about_us.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__bg-circle_results {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/result_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__bg-circles_what_we_do {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/Hero_what_we_do.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero_bg_contact {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background-image: url("./assets/Talk\ to\ us.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1220px;
}

.hero__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    line-height: 16px;
    background-color: #F3F3F3;
    padding: 4px 11px;
    width: fit-content;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    gap: 5px;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.8px;
}

.hero__title .text-accent {
    margin-inline-end: 0.12em;
}

.hero__desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}


.features {
    padding: var(--section-padding) 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #EFE2E2;
    transition: var(--transition-smooth);
    box-shadow: 12px 12px 21px 0px #784E490D;

}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card__icon {
    margin-bottom: 11px;
}

.feature-card__title {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.feature-card__desc {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}


.stats {
    padding: 40px 0;
    text-align: center;
}

.stats__header {
    margin-bottom: 40px;
}

.stats__subtext {
    font-size: 19px;
    color: #bcbebf;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-weight: 400;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card__title {
    font-size: 1rem;
    margin-bottom: 1px;
}

.stat-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.text-banner {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #F8FAFC;
    opacity: 0.7;
}

.process {
    padding: var(--section-padding) 0;
}

.process__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.process__header .section-title {
    margin: 0;
    max-width: 600px;
}



.process-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step p {
    color: #0F172A;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.6px;
}

.process-track {

    height: 400vh;
    position: relative;
    background-color: var(--color-bg-light);
}

.process {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(50% 50% at 50% 50%, #FAF8F5 45.19%, rgba(255, 253, 251, 0) 100%);

}

.process__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.process__header .section-title {
    margin: 0;
    max-width: 600px;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid transparent;
    position: relative;
    padding-top: 2.8rem;
}

.process__grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: rgb(255 255 255 / 12%);
    z-index: 1;
}

.process__grid::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: var(--progress-width, 0%);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.01) 0%,
            rgba(207, 207, 207, 0.7) 40%,
            rgba(173, 173, 173, 0.95) 65%,
            rgba(17, 24, 39, 1) 100%);
    box-shadow: 0 0 10px rgba(17, 24, 39, 0.08);
    z-index: 2;
    transition: width 0.25s cubic-bezier(0.12, 1, 0.36, 1);
}

.process-step {
    position: relative;
    z-index: 3;
    opacity: 0.9;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.is-active {
    opacity: 1;
}

.process-step__num {
    position: absolute;
    top: -58px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: #1D1D20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: background 0.5s ease, transform 0.5s ease;
    border: 1px solid #EEEEF0;
}

.process-step.is-active .process-step__num {
    background: var(--color-primary);
    transform: scale(1.1);
    color: white;
    border: 1px solid #FAF8F5;
    box-shadow: 0px 0px 0px 4px #F6EEE3;
    z-index: 3;
}


.about-text {
    padding: 120px 0;
    text-align: center;
}

.about-text__content {
    max-width: 950px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.about-text__content p {
    margin-bottom: 1.5rem;
}


.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.flex-btn {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.ml-1 {
    margin-left: 8px
}

.contact__content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.custom-form {
    background: var(--color-bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 12px 12px 21px 0px #8D71711F;

}

.check_box_container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.custom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.form-row-gap {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    height: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    color: #0F172B;
    line-height: 20px;
    font-weight: 500;
}

.form-checkbox label a {
    text-decoration: underline;
    font-style: italic;
    font-size: 14px;
    color: #0F172B;
    line-height: 20px;
    font-weight: 500;
}


.site-footer {
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    max-width: 250px;
}

.footer-brand__badges {
    display: flex;
    align-items: center;
    gap:12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand__badge {
    display: block;
    width: auto;
    flex-shrink: 0;
}

.footer-brand__badge--hipaa {
    height: 37px;
}

.footer-brand__badge--soc {
    height: 57px;
}

.footer-brand__badge--iso {
    height: 50px;
}

.footer-brand__badge--ccpa {
    height: 57px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul a:hover,
.footer-contact a:hover {
    color: var(--color-bg-white);
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
    margin-left: 2rem;
    color: #B8B8B8;
    text-decoration: underline;
}


.reveal-fade {
    opacity: 0;
    transform: none;
    transition: opacity 0.85s ease-out;
}

.reveal-fade.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-pop-out {
    opacity: 0;
    transform: scale(0.84) translateZ(-120px);
    transform-origin: center center;
    transform-style: preserve-3d;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-pop-out.is-visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
    will-change: auto;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-160px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(160px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Split entrance — left and right converge (e.g. compliance section) */
.reveal-split-left,
.reveal-split-right {
    opacity: 0;
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-split-left {
    transform: translate3d(-100vw, 0, 0);
}

.reveal-split-right {
    transform: translate3d(100vw, 0, 0);
}

.reveal-split-left.is-visible,
.reveal-split-right.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* Slide from off-screen right — wrapper stays in layout for scroll detection */
.reveal-dock>* {
    opacity: 0;
    transform: translate3d(100vw, 0, 0);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-dock.is-visible>* {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* What We Do — scroll entrance (hero uses global .reveal-up, same as home) */

.page-what-we-do .rcm-block {
    gap: 20px;
}

.page-what-we-do .wwd-rcm {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    /* margin-top: -100px; */
    padding-top: 100px;
}

.page-what-we-do .cross-stage {
    overflow-x: clip;
}

.page-what-we-do .wwd-cta {
    overflow: hidden;
}

/* What We Do — capabilities + partnership sections (Figma) */

.cross-stage--capabilities {
    background-color: #0F172A;
    padding: 100px 0 112px;
}

.cross-stage--capabilities .cross-stage__title-zone {
    margin-bottom: 56px;
}

.cross-stage--capabilities .cross-stage__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.2;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cross-stage--capabilities .cross-stage__grid {
    gap: 48px;
    align-items: start;
}

.cross-stage--capabilities .cross-stage__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.cross-stage--capabilities .cross-stage__icon svg {
    width: 24px;
    height: 24px;
}

.cross-stage--capabilities .cross-stage__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.cross-stage--capabilities .cross-stage__item-desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
}

.wwd-cta--partnership {
    background-color: #fcfaf7;
    padding: 112px 0 120px;
    text-align: center;
}

.wwd-cta--partnership .wwd-cta__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-image: url("./assets/Talk\ to\ us\ about\ your\ revenue\ Cycle.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wwd-cta--partnership .wwd-cta__container {
    max-width: 970px;
}

.wwd-cta--partnership .wwd-cta__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.25;
    margin: 0 auto 24px;
    color: var(--color-primary);
}

.wwd-cta--partnership .wwd-cta__desc {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #64748b;
    margin: 0 auto 36px;
}

.wwd-cta--partnership .wwd-cta__actions {
    gap: 14px;
}

.wwd-cta--partnership .btn--pill {
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.wwd-cta--partnership .btn--primary {
    background-color: #111827;
    color: #fff;
}

.wwd-cta--partnership .btn--primary:hover {
    background-color: #1f2937;
}

.wwd-cta--partnership .btn--secondary {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: var(--color-primary);
}

.wwd-cta--partnership .btn--secondary:hover {
    background-color: #e5e7eb;
    border-color: #d1d5db;
}

@media (prefers-reduced-motion: reduce) {

    .reveal-fade,
    .reveal-pop-out,
    .reveal-split-left,
    .reveal-split-right,
    .reveal-up,
    .reveal-right,
    .reveal-left,
    .reveal-dock>*,
    .reveal-cross-title,
    .reveal-cross-item,
    .reveal-slide-bottom,
    .reveal-scale-up {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}


.page-hero {
    padding: 100px 0 100px;
}

.page-hero .hero__title {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero__desc {
    max-width: 720px;
    margin: 0 auto;
}

.page-what-we-do .page-hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: clamp(520px, 72vh, 520px);
    display: flex;
    align-items: center;
    /* padding-bottom: 120px; */
}

.page-what-we-do .page-hero .hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-what-we-do .hero__content {
    position: relative;
    text-align: center;
}

.page-what-we-do .page-hero .hero__title {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.page-what-we-do .page-hero .hero__desc {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
}

.reveal-slide-bottom--hero {
    --slide-travel: clamp(280px, 42vh, 520px);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-what-we-do .site-header,
.page-how-we-work .site-header,
.page-results .site-header,
.page-about .site-header,
.page-terms .site-header,
.page-privacy .site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.page-what-we-do .site-header.scrolled,
.page-how-we-work .site-header.scrolled,
.page-results .site-header.scrolled,
.page-about .site-header.scrolled,
.page-terms .site-header.scrolled,
.page-privacy .site-header.scrolled {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tag--accent {
    background: rgba(198, 78, 61, 0.08);
    border-color: rgba(198, 78, 61, 0.2);
    color: var(--color-accent);
    margin: 0 auto 20px;
    display: flex;
    width: fit-content;
}

.wwd-rcm {
    background: linear-gradient(360deg, rgba(246, 238, 227, 0) 0%, rgba(246, 238, 227, 0.24) 100%);
    padding: 48px 0 var(--section-padding);
}

.wwd-rcm__layout {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
}

.rcm-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
    color: #94A3B8;
}

.rcm-timeline.is-progressing {
    color: var(--color-accent);
}

.rcm-timeline__head {
    flex-shrink: 0;
    margin-bottom: 14px;
    z-index: 2;
}

.rcm-timeline__icon {
    display: block;
}

.rcm-timeline__rail {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 120px;
}

.rcm-timeline__track,
.rcm-timeline__fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    transform: translateX(-50%);
    border-radius: 1px;
}

.rcm-timeline__track {
    height: 100%;
    background: linear-gradient(180deg, rgba(236, 237, 240, 0) 0%, #ECEDF0 19.27%, #ECEDF0 79.17%, rgba(236, 237, 240, 0) 100%);
}

.rcm-timeline__fill {
    height: 0;
    z-index: 1;
    transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(180deg, rgba(185, 53, 38, 0) 0%, #B93526 86.46%, rgba(185, 53, 38, 0.5) 100%);

}

@media (prefers-reduced-motion: reduce) {
    .rcm-timeline__fill {
        transition: none;
    }
}

.wwd-rcm__stack {
    display: flex;
    flex-direction: column;
    gap: 56px;
    min-width: 0;
}

.rcm-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rcm-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid var(--color-border);
    padding: 28px 36px 36px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.rcm-card__title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rcm-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.rcm-card__subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
}

.rcm-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.rcm-card__pills li {
    padding: 6px 14px;
    border-radius: 999px;
    background: #F3F0EB;
    border: 1px solid #EDE9E4;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.25;
}

.rcm-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.rcm-card__col-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.rcm-card__col-title::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    min-width: 16px;
    background: #EBEBEB;
}

.text_bold {
    font-weight: 600 !important;
    color: #0F172A !important;
}

.rcm-card__col p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.rcm-card__col strong {
    color: var(--color-primary);
    font-weight: 600;
}

.rcm-section-intro {
    padding: 0;
}

.rcm-section-intro__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    margin: 0 0 6px;
    color: #0F172A;
}

.rcm-section-intro__subtitle {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -1.8px;
    margin: 0;
    font-weight: 400
}

.proof-point {
    background: var(--color-primary);
    border-radius: 16px;
    padding: 24px 22px;
    color: var(--color-bg-white);
    text-align: center;
}

.proof-point__label {
    display: block;
    font-size: 24px;
    color: #FCCE8F;
    font-weight: 400;
    margin-bottom: 12px;
}

.proof-point__number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 58PX;
    letter-spacing: -1.8px;
    margin-bottom: 4px;
}

.proof-point__desc {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.proof-point__desc strong {
    display: block;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-bottom: 2px;
}

.proof-point--split .proof-point__number {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.proof-point__stats {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.proof-point__stat {
    flex: 1;
    min-width: 0;
}

.proof-point__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Back-office RCM — Figma layout & challenge rail */

.rcm-block--back-office .rcm-card {
    border-radius: 16px;
    padding: 32px 36px 36px;
    border-color: #e8eaef;
}

.rcm-block--back-office .rcm-card__body {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.rcm-block--back-office .rcm-card__col--challenge {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.rcm-col-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding-top: 3px;
}

.rcm-col-rail__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.rcm-col-rail__line {
    position: relative;
    width: 1px;
    flex: 1;
    min-height: 80px;
    margin-top: 9px;
    background: #d8dee6;
    border-radius: 1px;
}

.rcm-col-rail__line-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: var(--color-accent);
    border-radius: 1px;
}

.rcm-block--back-office .rcm-card__col-inner .rcm-card__col-title {
    margin-bottom: 14px;
}

.rcm-block--back-office .rcm-card__col p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #64748b;
}

.rcm-block--back-office .proof-point--split {
    padding: 26px 20px 28px;
    display: flex;
    flex-direction: column;
}

.rcm-block--back-office .proof-point--split .proof-point__label {
    text-align: center;
    margin-bottom: 20px;
}

.rcm-block--back-office .proof-point--split .proof-point__stats {
    flex: 1;
    align-items: flex-start;
    gap: 14px;
}

.rcm-block--back-office .proof-point--split .proof-point__number {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.rcm-block--back-office .proof-point--split .proof-point__desc {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.cross-stage {
    --cross-title-travel: 320px;
    padding: var(--section-padding) 0;
    text-align: center;
    overflow: hidden;
}

.cross-stage__title-zone {
    position: relative;
    margin-bottom: 48px;
}

.cross-stage__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    margin: 0;
    color: var(--color-bg-white);
}

.reveal-cross-title {
    opacity: 0;
    transform: translate3d(0, var(--cross-title-travel), 0);
    transition:
        opacity 0.85s ease-out,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-cross-title.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.reveal-cross-item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.7s ease-out,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-cross-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.weight-400 {
    font-weight: 400
}

.leading-100 {
    line-height: 100%
}

.linkedin_img {
    width: 23px;
    height: 23px;
    margin-left: -1px;
}

.h-273 {
    height: 273px
}

.reveal-slide-bottom {
    --slide-travel: 4.5rem;
    opacity: 0;
    transform: translate3d(0, var(--slide-travel), 0);
    transition:
        opacity 0.85s ease-out,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-slide-bottom--sub {
    --slide-travel: 2rem;
}

.reveal-slide-bottom.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.cross-stage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.cross-stage__icon {
    color: var(--color-gold);
    margin-bottom: 16px;
}

.cross-stage__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-bg-white);
}

.cross-stage__item-desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.wwd-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wwd-cta__container {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.wwd-cta__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.wwd-cta__desc {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.wwd-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}


@media (max-width: 1024px) {
    .wwd-rcm__layout {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 28px;
    }

    .rcm-card__body {
        grid-template-columns: 1fr 1fr;
    }

    .rcm-card__body .proof-point {
        grid-column: 1 / -1;
    }

    .cross-stage__grid {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .site-header__inner {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 0;
        gap: 12px;
    }

    .site-header__nav {
        order: 3;
        width: 100%;
    }

    .site-header__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .page-hero {
        padding: 120px 0 64px;
    }

    .page-what-we-do .page-hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .page-what-we-do .wwd-rcm {
        margin-top: -48px;
        padding-top: calc(48px + 48px);
    }

    .page-how-we-work .page-hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .page-how-we-work .page-hero {
        padding: 120px 0 100px;
    }

    .page-how-we-work .engagement {
        margin-top: 0;
        padding-top: 0;
    }

    .page-hero--hww .hero__bg-circles::after {
        height: 50%;
    }

    .page-how-we-work .hero__title--hww {
        font-size: 2rem;
    }

    .page-how-we-work .hero__desc--hww {
        font-size: 16px;
        line-height: 26px;
    }

    .engagement__title.section-title {
        font-size: 1.5rem;
    }

    .stage-tab {
        padding: 14px 16px 18px;
    }

    .stage-panel {
        padding-top: 32px;
        gap: 32px;
    }

    .rhythm__title-zone,
    .compliance__title-zone {
        margin-bottom: 32px;
    }

    .reveal-slide-bottom--hero {
        --slide-travel: clamp(180px, 28vh, 320px);
    }

    .page-hero .hero__title {
        font-size: 2rem;
    }

    .wwd-rcm__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rcm-timeline {
        display: none;
    }

    .rcm-card {
        padding: 24px 20px;
    }

    .rcm-card__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rcm-block--back-office .rcm-card__col--challenge {
        grid-template-columns: 14px minmax(0, 1fr);
        gap: 16px;
    }

    .rcm-block--back-office .rcm-card__body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .proof-point__stats {
        flex-direction: column;
    }

    .proof-point__divider {
        width: 100%;
        height: 1px;
    }

    .cross-stage__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cross-stage__title-zone {
        margin-bottom: 32px;
    }

    .cross-stage__title {
        font-size: 1.5rem;
    }

    .cross-stage--capabilities {
        padding: 72px 0 80px;
    }

    .cross-stage--capabilities .cross-stage__title-zone {
        margin-bottom: 40px;
    }

    .cross-stage--capabilities .cross-stage__grid {
        gap: 36px;
    }

    .wwd-cta {
        padding: 80px 0;
    }

    .wwd-cta__title {
        font-size: 1.5rem;
    }

    .wwd-cta--partnership {
        padding: 80px 0 88px;
    }

    .wwd-cta--partnership .wwd-cta__title {
        font-size: 1.5rem;
        max-width: none;
    }

    .wwd-cta--partnership .wwd-cta__desc {
        font-size: 15px;
        line-height: 24px;
        max-width: none;
    }

    .wwd-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wwd-cta__actions .btn {
        width: 100%;
    }

    .wwd-cta--partnership .btn--pill {
        padding: 14px 22px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 0.75rem;
    }
}


/* —— How We Work page —— */

.page-how-we-work .page-hero {
    --hww-section-gap: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: auto;
    display: block;
    padding: 140px 0 var(--hww-section-gap);
}

.page-hero--hww {
    background-color: #fff;
    text-align: center;
}

.page-hero--hww .hero__bg-circles {
    /* top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    bottom: auto;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
    background-image: none; */
}

.page-hero--hww .hero__bg-circles img {
    display: block;
    width: 100%;
    min-width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

/* Soft fade so arcs blend into the white section below */
.page-hero--hww .hero__bg-circles::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 55%, #fff 100%);
    pointer-events: none;
}

.page-how-we-work .page-hero .hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-how-we-work .hero__content {
    position: relative;
}

.page-how-we-work .hero__title--hww {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 1.15;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.page-how-we-work .hero__title--hww strong {
    font-weight: 700;
    color: var(--color-primary);
}

.page-how-we-work .hero__desc--hww {
    max-width: 1120px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 0.2px;
}

.page-how-we-work .engagement.engagement--model {
    padding-top: 0;
    padding-bottom: 64px;
}

.page-how-we-work .engagement {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    background-color: #fff;
}

.page-how-we-work [data-hero-rise] {
    --slide-travel: clamp(280px, 42vh, 520px);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-how-we-work .automation {
    overflow-x: hidden;
}

.page-how-we-work .rhythm,
.page-how-we-work .compliance {
    overflow: hidden;
}

.page-how-we-work .wwd-cta {
    overflow: hidden;
}

.rhythm__title-zone,
.compliance__title-zone {
    position: relative;
    margin-bottom: 48px;
}

.rhythm .section-title.reveal-cross-title,
.compliance__title.reveal-cross-title {
    margin-bottom: 0;
}

.engagement {
    padding: var(--section-padding) 0 48px;
    text-align: center;
}

.engagement--model {
    padding-bottom: 64px;
}

.engagement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background-color: #F3F3F3;
    border: none;
    color: var(--color-text-main);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
}

.engagement-badge__icon {
    height: 12px;
    width: 12px
}

.engagement__title.section-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    font-weight: 500;
    line-height: 1.2;
}

.engagement .section-title {
    margin-bottom: 40px;
}

.stage-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
    text-align: left;
    position: relative;
}

.stage-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 24px 22px;
    background: none;
    border: none;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    margin-bottom: -1px;
    transition: border-color 0.25s ease;
}

.stage-tab.is-active {
    border-bottom-color: #90281C;
}

.stage-tab__label {
    font-size: 16px;
    color: #90281C;
    font-weight: 400;
    line-height: 100%;
}

.stage-tab__title {
    font-size: 20px;
    font-weight: 500;
    color: #1B1A1A;
    line-height: 28px;
}

.stage-tab__weeks {
    font-size: 12px;
    color: #0F172A;
    font-weight: 500;
    width: fit-content;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid #F6EEE3;
    background: white;
}

.engagement-tabs .tab-panels {
    margin-bottom: 40px;
}

.engagement-tabs .stage-tabs {
    margin-bottom: 0;
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.tab-panel.is-active.stage-panel {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 80px
}

.tab-panel.is-active.stage-panel:nth-child(1),
.tab-panel.is-active.stage-panel:nth-child(3) {
    flex-direction: row;
}

.tab-panel.is-active.stage-panel:nth-child(2),
.tab-panel.is-active.stage-panel:nth-child(4) {
    flex-direction: row-reverse;
}

.stage-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    text-align: left;
    padding-top: 48px;
}

.stage-panel__content p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 18px;
}

.stage-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stage-panel__tags li {
    padding: 6px 14px;
    border-radius: 999px;
    background: #F6EEE3;
    border: 1px solid #F6EEE3;
    font-size: 12px;
    font-weight: 500;
    color: #0F172A;
    line-height: 16px;
}

.stage-panel__visual {
    display: flex;
    width: fit-content;
    align-items: center;
    min-width: 198px;
}

.callout-dark {
    background: #0F172A;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: left;
}

.callout-dark__title {
    font-size: 24px;
    color: #FCCE8F;
    margin-bottom: 12px;
    font-weight: 400;
}

.callout-dark__label {
    display: block;
    font-size: 13px;
    margin-bottom: 12px;
}

.callout-dark p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #FFFFFFE5;
}

.rhythm {
    padding: var(--section-padding) 0;
}

.rhythm .section-title {
    margin-bottom: 48px;
}

.rhythm__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rhythm-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.rhythm-card__icon {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.rhythm-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.rhythm-card__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* How We Work — operating rhythm section (Figma) */

.rhythm--operating {
    position: relative;
    overflow: hidden;
    background: #FAF8F5;
    padding: 60px 0;
    text-align: center;
}

.rhythm--operating .rhythm__bg-glow {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: min(92vw, 960px);
    height: min(92vw, 960px);
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(210, 198, 180, 0.28) 0%,
            rgba(210, 198, 180, 0.1) 42%,
            rgba(253, 251, 247, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.rhythm--operating .rhythm__inner {
    position: relative;
    z-index: 1;
}

.rhythm--operating .rhythm__title-zone {
    margin-bottom: 56px;
}

.rhythm--operating .rhythm__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.2;
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-primary);
}

.rhythm--operating .rhythm__title strong {
    font-weight: 700;
}

.rhythm--operating .rhythm__title .text-accent {
    font-weight: 400;
}

.rhythm--operating .rhythm__grid {
    gap: 24px;
    text-align: left;
}

.rhythm--operating .rhythm-card {
    background: #fff;
    border: 1px solid #EFE2E2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 12px 12px 21px 0px #784E490D;

}

.rhythm--operating .rhythm-card__icon {
    margin-bottom: 11px;
    color: #111827;
}

.rhythm--operating .rhythm-card__icon svg {
    width: 24px;
    height: 24px;
}

.rhythm--operating .rhythm-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rhythm--operating .rhythm-card__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    margin: 0;
}

.automation {
    padding: var(--section-padding) 0;
    text-align: center;
}

.automation .section-title {
    margin-bottom: 20px;
}

.automation__intro {
    max-width: 100%;
    margin: 0 auto 32px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0;
}

.content-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 4px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    margin-bottom: -1px;
}

.content-tab__icon--yes {
    color: #10B981;
    font-size: 12px;
}

.content-tab__icon--no {
    color: var(--color-accent);
    font-size: 12px;
}

[data-tabs="automation"] .tab-panel.is-active .automation__cards {
    margin-bottom: 32px;
}

.stage-visual-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
    margin-left: auto;
}

.stage-visual-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.stage-visual-card__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.stage-visual-card__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stage-visual-card__rows span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #EDE9E4;
}

.stage-visual-card__rows span:nth-child(2) {
    width: 85%;
}

.stage-visual-card__rows span:nth-child(3) {
    width: 70%;
}

.stage-visual-card__bar {
    height: 8px;
    background: #EDE9E4;
    border-radius: 4px;
    overflow: hidden;
}

.stage-visual-card__bar span {
    display: block;
    height: 100%;
    background: var(--color-accent);
    border-radius: 4px;
}

.stage-roadmap {
    display: flex;
    align-items: center;
    gap: 0;
}

.stage-roadmap__step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.stage-roadmap__step.is-done {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.stage-roadmap__line {
    flex: 1;
    height: 2px;
    background: #E5E7EB;
    min-width: 12px;
}

.stage-roadmap__line.is-done {
    background: var(--color-accent);
}

.stage-monitor {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.stage-monitor__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 48px;
    flex: 1;
}

.stage-monitor__bars span {
    flex: 1;
    background: var(--color-accent);
    border-radius: 3px 3px 0 0;
    opacity: 0.85;
}

.stage-monitor__gauge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.content-tab.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

.automation__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: left;
}

.info-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.info-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.info-card p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.automation .callout-dark {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.operators {
    padding: var(--section-padding) 0;
    text-align: center;
}

.operators .section-title {
    margin-bottom: 20px;
}

.operators__intro {
    margin: 0 auto 48px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.operators__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
}

.operators__item {
    padding: 0 32px;
    border-right: 1px solid var(--color-border);
}

.operators__item:first-child {
    padding-left: 0;
}

.operators__item:last-child {
    padding-right: 0;
    border-right: none;
}

.operators__icon {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.operators__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.operators__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.compliance {
    padding: 88px 0;
    background: var(--color-bg-beige);
    overflow-x: clip;
}

.compliance__layout {
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.compliance__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.compliance__lead {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155 !important;
    margin: 0;
    max-width: 400px;
}

.compliance__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compliance__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.compliance__icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance__icon-wrap img {
    width: 40px;
    height: 40px;
    display: block;
}

.compliance__item-body {
    flex: 1;
    min-width: 0;
    padding-top: 6px;
}

.compliance__item-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 6px;
    color: var(--color-primary);
}

.compliance__item-desc {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #334155;
    margin: 0;
}

/* How We Work — automation, operators, compliance, CTA (Figma) */

.automation--scope {
    padding: 80px 0 80px 0;
    background: #fff;
    text-align: left;
}

.automation--scope .automation__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.25;
    /* max-width: 820px; */
    margin: 0 0 20px;
    color: var(--color-primary);
}

.automation--scope .automation__title strong {
    font-weight: 700;
}

.automation--scope .automation__intro {
    /* max-width: 640px; */
    margin: 0 0 40px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #475569;
}

.automation-tabs .content-tabs {
    justify-content: flex-start;
    gap: 48px;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.automation-tabs .content-tab {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    gap: 10px;
    margin-bottom: 0;
    padding: 24px 0;
    border: none;
    border-bottom: none;
    background: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #1B1A1A;
    cursor: pointer;
}

.automation-tabs .content-tab.is-active {
    color: #333333;
    font-weight: 500;
}

.automation-tabs .content-tab.is-active::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: -1px;
    height: 4px;
    background-color: #802010;
    border-radius: 2px 2px 0 0;
    z-index: 1;
}

.automation-tabs .content-tab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.automation-tabs .content-tab__icon--yes {
    color: #40a090;
    font-size: 15px;
}

.automation-tabs .content-tab__icon--no {
    color: #f08080;
    font-size: 14px;
    font-weight: 600;
}

.automation-tabs .automation-tab-panels {
    margin-top: 28px;
}

.automation-tabs .automation-tab-panels .tab-panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.automation--scope .automation__cards {
    max-width: none;
    margin: 0;
    gap: 20px;
}

.automation--scope .info-card {
    border-radius: 12px;
    padding: 24px;
    border-color: #EFE2E2;
    box-shadow: 12px 12px 21px 0px #8D71710D;
}

.automation--scope .info-card p {
    color: #475569;
}

.automation-proof {
    background: #0F172A;
    border-radius: 12px;
    padding: 18px 24px;
    color: #fff;
    text-align: left;
}

.automation-proof__label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #FCCE8F;
    margin-bottom: 12px;
    line-height: 100%;
}

.automation-proof p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #FFFFFFE5;
    margin: 0;
}

.operators--teams {
    position: relative;
    overflow: hidden;
    padding: 63px 0 63px 0;
    background: #FAF8F5;
    text-align: left;
    perspective: 1400px;
    perspective-origin: 50% 35%;
}

.operators--teams .operators__bg-glow {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1000px);
    height: min(95vw, 1000px);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(210, 200, 185, 0.25) 0%, rgba(251, 249, 246, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.text-accent-new {
    color: #90281C;
}

.operators--teams .operators__inner {
    position: relative;
    z-index: 1;
}

.operators--teams .operators__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.2;
    max-width: 720px;
    margin: 0 0 10px;
}

.operators--teams .operators__title strong {
    font-weight: 500;
    color: var(--color-primary);
}

.operators--teams .operators__intro {
    margin: 0 0 40px;
    font-size: 14px;
    line-height: 26px;
    color: #334155;
    font-weight: 500
}

.operators--teams .operators__grid {
    border-top: none;
}

.operators--teams .operators__item {
    border-right-color: #e8e4df;
    padding: 0 40px;
}

.operators--teams .operators__item:first-child {
    border-right-color: #e8e4df;
    padding: 0 40px 0 0;
}

.operators--teams .operators__icon {
    color: #9e4638;
    margin-bottom: 18px;
}

.operators--teams .operators__item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.operators--teams .operators__desc {
    color: #334155;
}

.compliance--standards {
    padding: 106px 0 106px 0;
    background: #f9f9f7;
    overflow-x: clip;
}

.compliance--standards .compliance__layout {
    gap: 64px 80px;
    align-items: start;
}

.compliance--standards .compliance__intro {
    position: relative;
}

.compliance--standards .compliance__intro-glow {
    position: absolute;
    left: -120px;
    top: 40%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 215, 205, 0.45) 0%, rgba(249, 249, 247, 0) 68%);
    pointer-events: none;
    z-index: 0;
}

.compliance--standards .compliance__title,
.compliance--standards .compliance__lead {
    position: relative;
    z-index: 1;
}

.compliance--standards .compliance__lead {
    max-width: 400px;
    color: #475569;
}

.compliance--standards .compliance__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
}

.compliance--standards .compliance__item-title {
    font-family: var(--font-primary);
    font-style: italic;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
}

.compliance--standards .compliance__icon-wrap {
    background: #e8e8e8;
    width: 52px;
    height: 52px;
}

.compliance--standards .compliance__item {
    gap: 16px;
}

.wwd-cta--calibrated {
    position: relative;
    overflow: hidden;
    padding: 0 0 112px;
    background: #fcfaf7;
    text-align: center;
    padding-top: 106px;
}

.wwd-cta--calibrated .wwd-cta__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wwd-cta--calibrated .wwd-cta__pattern::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 160vmax;
    height: 160vmax;
    transform: translate(-50%, -50%);
    background: repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 72px,
            rgba(180, 168, 150, 0.12) 72px,
            rgba(180, 168, 150, 0.12) 73px);
    mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 12%, transparent 70%);
}

.wwd-cta--calibrated .wwd-cta__container {
    position: relative;
    z-index: 1;
    max-width: 1110px;
}

.wwd-cta--calibrated .wwd-cta__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.25;
    margin: 0 auto 24px;
    /* max-width: 680px; */
    color: var(--color-primary);
}

.wwd-cta--calibrated .wwd-cta__title strong {
    font-weight: 700;
}

.wwd-cta--calibrated .wwd-cta__desc {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #334155;
    margin: 0 auto 24px;
    letter-spacing: -0.2px;
}

.wwd-cta--calibrated .wwd-cta__actions {
    gap: 14px;
}

.wwd-cta--calibrated .btn--pill {
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
}

.wwd-cta--calibrated .btn--primary {
    background: #111827;
    color: #fff;
}

.wwd-cta--calibrated .btn--secondary {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: var(--color-primary);
}


@media (max-width: 1024px) {
    .stage-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .stage-panel {
        grid-template-columns: 1fr;
    }

    .operators__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .operators__item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 32px;
    }

    .operators__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .compliance__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compliance--standards .compliance__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stage-tabs {
        grid-template-columns: 1fr;
    }

    .rhythm__grid {
        grid-template-columns: 1fr;
    }

    .rhythm--operating {
        padding: 72px 0 80px;
    }

    .rhythm--operating .rhythm__title {
        font-size: 1.5rem;
    }

    .rhythm--operating .rhythm__title-zone {
        margin-bottom: 40px;
    }

    .rhythm--operating .rhythm-card {
        padding: 28px 24px;
    }

    .rhythm--operating .rhythm__grid {
        gap: 20px;
    }

    .content-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .automation-tabs .content-tabs {
        gap: 0;
    }

    .automation-tabs .content-tab {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 8px 18px;
    }

    .automation-tabs .automation-tab-panels {
        margin-top: 20px;
        padding: 24px 20px;
    }

    .compliance__title {
        font-size: 1.5rem;
    }

    .compliance__lead {
        max-width: none;
    }

    .automation--scope {
        padding: 72px 0;
    }

    .automation--scope .automation__intro {
        margin-bottom: 56px;
    }

    .automation--scope .automation__title {
        font-size: 1.5rem;
    }

    .operators--teams {
        padding: 72px 0;
    }

    .operators--teams .operators__intro {
        margin-bottom: 56px;
    }

    .operators--teams .operators__title {
        font-size: 1.5rem;
    }

    .operators--teams .operators__item {
        padding: 0 0 32px;
    }

    .compliance--standards {
        padding: 72px 0 72px;
    }

    .compliance--standards .compliance__intro-glow {
        left: -60px;
        width: 280px;
        height: 280px;
    }

    .wwd-cta--calibrated .wwd-cta__title {
        font-size: 1.5rem;
    }

    .wwd-cta--calibrated .wwd-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wwd-cta--calibrated .btn--pill {
        width: 100%;
    }

    .case-study__grid {
        grid-template-columns: 1fr;
    }

    .case-study__aside {
        position: static;
    }

    .case-results__stats {
        flex-direction: column;
        gap: 24px;
    }

    .common-traits__grid {
        grid-template-columns: 1fr;
    }

    .common-traits__item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 32px;
    }

    .common-traits__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/* —— Results page —— */

.page-results .page-hero {
    overflow: hidden;
}

.page-results .results-metrics {
    overflow: hidden;
}

.results-metrics {
    padding: var(--section-padding) 0;
    text-align: center;
}

.results-metrics__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    color: var(--color-bg-white);
    margin-bottom: 48px;
}

.results-metrics .stats__grid {
    margin-bottom: 40px;
}

.results-metrics__footer {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.case-study {
    padding: var(--section-padding) 0;
    overflow: visible;
    background: linear-gradient(360deg, rgba(246, 238, 227, 0) 0%, rgba(246, 238, 227, 0.24) 100%);
    border-bottom: 1px solid #EFE2E2;
}

.case-study__header {
    margin-bottom: 24px;
}

.case-study__label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
}

.case-study__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -1.8px;
    margin-top: 10px;
    color: #0F172A;
    line-height: 100%;
}

.case-study__subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 26px;
}

.case-study__grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 24px;
}

.case-study__aside {
    position: sticky;
    top: 104px;
    align-self: start;
    height: fit-content;
}

.case-study__scroll {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.case-study__detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-card {
    background: #ffffff;
    border: 1px solid #EFE2E2;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
}

.case-card--context {
    background: #FAF5EF;
    border-color: #EFE2E2;
    box-shadow: 12px 12px 21px 0px #784E490D;
    max-width: 300px;
}

.case-card__icon {
    color: var(--color-accent);
    margin-bottom: 14px;
}

.case-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
    color: #0F172A;
}

.case-card p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
}

.case-results {
    background: #0F172A;
    border-radius: 12px;
    padding: 24px;
    color: #FFFFFF
}

.case-results__label {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #FCCE8F;
    margin-bottom: 16px;
    letter-spacing: -1.8px
}

.case-results__stats {
    display: flex;
    gap: 12 px;
    margin-bottom: 54px;
    justify-content: center;
}

.case-results__title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 100%;
    margin-bottom: 1px;
    letter-spacing: -0.2px;
}

.case-results__stat {
    max-width: 252px;
    width: 100%;
    text-align: center;
}

.case-results__number {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.case-results__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1px;
}

.case-results__desc {
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.section-title-dm {
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    color: #0F172A;
    letter-spacing: -1.8px;
    margin-bottom: 24px
}

.line-break {
    display: block;
}

.case-results__note {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #FFFFFF;
    background: #F6EEE31F;
    border-radius: 16px;
    padding: 16px
}

.common-traits {
    padding: var(--section-padding) 0;
    text-align: center;
}

.common-traits .section-title {
    margin-bottom: 48px;
}

.common-traits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
}

.common-traits__item {
    padding: 0 40px;
    border-right: 1px solid var(--color-border);
}

.common-traits__item:first-child {
    padding-left: 0;
}

.common-traits__item:last-child {
    padding-right: 0;
    border-right: none;
}

.common-traits__icon {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.common-traits__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.common-traits__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}


@media (max-width: 1024px) {
    .case-study__grid {
        grid-template-columns: 1fr;
    }

    .case-study__aside {
        position: static;
    }

    .common-traits__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .common-traits__item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 32px;
    }

    .common-traits__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/* —— About Us page —— */

.about-intro {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: var(--color-bg-white);
    text-align: center;
}

.about-intro__bg {
    opacity: 0.55;
}

.about-intro__inner {
    position: relative;
    z-index: 1;
}

.about-intro__hero {
    margin-bottom: 56px;
}

.about-intro__title {
    max-width: 720px;
    margin: 0 auto 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 58px;
    color: var(--color-primary);
}

.about-intro__desc {
    margin: 0 auto;
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #334155;
    letter-spacing: -0.2px;
}

.about-intro__vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.about-intro__coach {
    position: relative;
    text-align: left;
}

.coach__title {
    margin-top: 32px;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.vm-cards {
    padding: 0 0 var(--section-padding);
}

.vm-cards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    background: #FAF8F5;
    border: 1px solid #EFE2E2;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 12px 12px 21px 0px #784E490D;

}

.vm-card__icon {
    color: var(--color-accent);
    margin-bottom: 12px;
}

.vm-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 24px;
    color: #90281C;
}

.vm-card p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #334155;
}

.coach {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.coach__inner {
    position: relative;
}

.coach__watermark {
    position: absolute;
    top: 72%;
    left: 56%;
    transform: translate(-50%, -50%);
    font-size: clamp(5.5rem, 16vw, 13rem);
    font-weight: 700;
    letter-spacing: 0.455em;
    color: #B935260A;

    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 2;
}

.coach__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.coach-card {
    background: #FFFFFF;
    border: 1px solid #EFE2E2;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    max-height: 268px;
    min-height: 268px;
}

.coach-card__icon {
    color: var(--color-accent);
    margin-bottom: 14px;
}

.coach-card__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0F172A;
}

.coach-card p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.about-content {
    padding: var(--section-padding) 0;
    text-align: center;
    background: #FAF8F5;
}

.about-content__inner {

    margin: 0 auto;
}

.about-content .section-title {
    margin-bottom: 28px;
    max-width: 550px;
}

.about-content p {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #0F172A;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.team {
    padding: 20px 0 100px 0;
    text-align: center;
    background: #FAF8F5;
}

.team .section-title {
    margin-bottom: 48px;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-bottom: 48px;
}

.team-card {
    text-align: left;
    background: #FFFFFF;
    border: 1px solid #EFE2E2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 12px 12px 21px 0px #784E490D;

}

.team__banner_container {
    background-color: #F6EEE3;
    padding: 24px;
    border-radius: 20px;
    color: #90281C;
    max-width: calc(var(--container-width) - 80px);
    margin: 0 auto;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.8%;
    text-align: left;
    font-family: Libertinus Serif;
}

.team-card__photo {
    position: relative;
    overflow: hidden;
    background: #E5E7EB;
    border-radius: 12px;
    margin-bottom: 16px;
    max-height: 154px;
}

.team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__social {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(15, 23, 42, 0.58);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card__photo:hover .team-card__social,
.team-card__photo:focus-within .team-card__social {
    opacity: 1;
}

.team-card__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.team-card__social-link:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.12);
}

.team-card__social-link svg {
    display: block;
}

.team-card__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0F172A;
    line-height: 24px;
}

.team-card__role {
    font-size: 16px;
    margin-bottom: 10px;
    color: #90281C;
    letter-spacing: -1px;
}

.team-card__bio {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
}



.scale {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.reveal-scale-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-scale-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

[data-stagger-reveal] .reveal-scale-up:nth-child(3) {
    transition-delay: 0s;
}

[data-stagger-reveal] .reveal-scale-up:nth-child(2) {
    transition-delay: 0.18s;
}

[data-stagger-reveal] .reveal-scale-up:nth-child(1) {
    transition-delay: 0.36s;
}

.scale .section-title {
    margin-bottom: 48px;
}

.scale__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
}

.scale__item {
    padding: 0 40px;
    border-right: 1px solid #B9352666;
}

.scale__item:first-child {
    padding-left: 0;
}

.scale__item:last-child {
    padding-right: 0;
    border-right: none;
}

.scale__metric {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1.8px;
    color: #0F172A;
    margin-bottom: 4px;
    line-height: 58px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.scale__metric-label {
    font-size: 14px;
    font-weight: 400;
    color: #0F172A;
    margin-bottom: 26px;
    text-align: center;
}

.scale__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0F172A;
    text-align: center;
}

.font-20 {
    font-size: 20px;
    font-weight: 600;
    color: #90281C;
    line-height: 100%;
    letter-spacing: -1.8px;
    font-family: Libertinus Serif;
}

.scale__desc {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #334155;
    text-align: center;
}

.philosophy {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.philosophy .section-title {
    margin-bottom: 24px;
}

.philosophy p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.philosophy p:last-child {
    margin-bottom: 0;
}

.page-about .wwd-cta {
    padding: 80px 0;
    text-align: center;
}


@media (max-width: 1024px) {
    .about-intro__vm {
        grid-template-columns: 1fr;
    }

    .coach__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scale__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .scale__item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 32px;
    }

    .scale__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 100px 0 72px;
    }

    .about-intro__hero {
        margin-bottom: 40px;
    }

    .about-intro__title {
        font-size: 1.75rem;
        letter-spacing: -0.8px;
        line-height: 32px;
    }

    .about-intro__desc {
        font-size: 15px;
        line-height: 26px;
    }

    .vm-cards__grid {
        grid-template-columns: 1fr;
    }

    .coach__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }
}

/* —— Terms of Use / Privacy Policy (legal pages) —— */

.terms-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 72px;
    text-align: center;
    background: var(--color-bg-white);
}

.terms-hero__bg {
    opacity: 0.45;
    background-position: top right;
}

.terms-hero__inner {
    position: relative;
    z-index: 1;
}

.terms-hero__title {
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.15;
    color: var(--color-primary);
}

.terms-hero__intro {
    margin: 0 auto;
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #334155;
    letter-spacing: -0.2px;
}

.terms-body {
    padding: 80px 0 100px;
    background: #FAF8F5
}

.terms-content {
    margin: 0 auto;
    text-align: left;
}

.terms-block {
    margin-bottom: 48px;
}

#do-not-sell {
    scroll-margin-top: 88px;
}

.terms-block:last-of-type {
    margin-bottom: 40px;
}

.terms-block__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #0F172A;
    letter-spacing: -1.8px;
    margin-bottom: 8px;
}

.terms-block p,
.terms-content__closing {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #0F172A;
    letter-spacing: -0.2px;
}

.terms-content__closing {
    margin-top: 8px;
}

.terms-section-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 32px;
}

.terms-divider {
    border: 0;
    border-top: 1px solid #0000001F;
    margin: 32px 0;
}

.terms-list {
    margin: 0;
    padding: 0;
    list-style: decimal;
    padding-left: 32px;
    list-style-position: inside;
    margin-top: 32px
}

.terms-list li {
    font-size: 19px;
    line-height: 32px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.terms-list.terms-list--bullets li {
    font-weight: 400;
}

.terms-list.terms-list--bullets {
    margin-top: 0;
}

.margin-bottom-8 {
    margin-bottom: 32px;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list--bullets {
    padding-left: 20px;
    list-style: disc;
}

.terms-list--bullets li {
    margin-bottom: 8px;
}

.terms-list__title {
    font-weight: 700;
}

.terms-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-link:hover {
    color: #90281C;
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 120px 0 56px;
    }

    .terms-hero__title {
        font-size: 2rem;
        letter-spacing: -0.8px;
    }

    .terms-hero__intro {
        font-size: 15px;
        line-height: 26px;
    }

    .terms-body {
        padding: 56px 0 72px;
    }

    .terms-block {
        margin-bottom: 36px;
    }
}

/* —— Talk to us modal —— */

.talk-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.talk-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.talk-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    border: 0;
    cursor: pointer;
}

.talk-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 12px 12px 21px 0px #8D71711F;
    background: #FAF8F5;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.talk-modal.is-open .talk-modal__dialog {
    transform: translateY(0) scale(1);
}

.talk-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #64748B;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.talk-modal__close:hover {
    color: var(--color-primary);
}

.talk-modal__header {
    padding-right: 40px;
    margin-bottom: 24px;
}

.talk-modal__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 100%;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.talk-modal__desc {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #0F172A;
    letter-spacing: -0.2px;
}

.talk-modal__form-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 12px 12px 21px 0px #B9352614;
    border: 1px solid #F3F3F3;

}

.talk-modal__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.talk-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.talk-modal__message {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.talk-modal__message textarea {
    flex: 1;
    min-height: 100%;
}

.talk-modal__footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.talk-modal__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.talk-modal__consent input {
    margin-top: 4px;
    flex-shrink: 0;
}

.talk-modal__consent label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #0F172B;
}

.talk-modal__consent a {
    color: #0F172B;
    text-decoration: underline;
}

body.talk-modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}

body.talk-modal-open .site-header {
    padding-right: var(--scrollbar-width, 0px);
}

html.talk-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .talk-modal {
        padding: 16px;
        align-items: flex-end;
    }

    .talk-modal__dialog {
        padding: 32px 24px 28px;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
    }

    .talk-modal__header {
        padding-right: 32px;
        margin-bottom: 24px;
    }

    .talk-modal__form-card {
        padding: 24px 20px;
    }

    .talk-modal__form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .talk-modal__message textarea {
        min-height: 140px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .talk-modal,
    .talk-modal__dialog {
        transition: none;
    }
}

.new-bg {
    background: radial-gradient(50% 50% at 50% 50%, #FAF8F5 45.19%, rgba(255, 253, 251, 0) 100%) !important;
}

.padding-top-40 {
    padding-top: 40px;
}

.margin-bottom-17 {
    margin-bottom: 18px;
    margin-top: 17px;
}

.padding-top-110 {
    padding-top: 110px;
    background-color: white;
}

.case-study-new-label {
    font-size: 18px;
    font-weight: 600;
    color: #90281C;
    line-height: 24px;
    letter-spacing: 0;
}

span.error {
    display: block;
    margin-top: 6px;
    color: rgb(220, 53, 69);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}