:root {
    --brand: #351750;
    --brand-950: #170725;
    --brand-900: #220b38;
    --brand-850: #2a1042;
    --brand-700: #4f2771;
    --brand-600: #623082;
    --mint: #CDF7B7;
    --mint-800: #3b7c2e;
    --mint-700: #5b9d42;
    --mint-300: #dffbd0;
    --mint-100: #effbe7;
    --mint-50: #f7fff2;
    --clinical-teal: #0f766e;
    --clinical-teal-soft: #e7f6f3;
    --paper: #fbfaf7;
    --paper-2: #f6f1f8;
    --paper-3: #fffdf9;
    --paper-4: #f9fff4;
    --surface: #ffffff;
    --ink: #21152c;
    --muted: #695f72;
    --line: rgba(53, 23, 80, 0.14);
    --line-strong: rgba(53, 23, 80, 0.24);
    --gold: #c5a45f;
    --gold-soft: #f7efd9;
    --shadow-soft: 0 18px 45px rgba(53, 23, 80, 0.10);
    --shadow-lift: 0 24px 60px rgba(53, 23, 80, 0.16);
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.82) inset, 0 18px 48px rgba(53, 23, 80, 0.09);
    --shadow-premium: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 28px 70px rgba(53, 23, 80, 0.16);
    --shadow-deep: 0 32px 90px rgba(23, 7, 37, 0.18);
    --shadow-interactive: 0 22px 54px rgba(53, 23, 80, 0.18);
    --radius-card: 8px;
    --radius-sm: 8px;
    --radius-button: 999px;
    --container: min(1180px, calc(100% - 32px));
    --ease: 240ms ease;
    --cr-white: #ffffff;
    --cr-muted: var(--muted);
    --cr-primary: var(--brand);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper-3);
    color: var(--ink);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.65rem;
    color: var(--brand-900);
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    font-size: 3.55rem;
}

h2 {
    font-size: 2.45rem;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

::selection {
    background: var(--mint);
    color: var(--brand-900);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-main {
    background: var(--paper);
}

.skip-link {
    position: absolute;
    top: auto;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    top: 1rem;
    left: 1rem;
    z-index: 1200;
    width: auto;
    height: auto;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-card);
    background: var(--mint);
    color: var(--brand-900);
    font-weight: 700;
}

.top-notice {
    position: relative;
    z-index: 1001;
    background: var(--brand-950);
    color: #ffffff;
    border-bottom: 1px solid rgba(205, 247, 183, 0.22);
}

.top-notice p {
    min-height: 32px;
    margin: 0;
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
}

.top-notice-text {
    transition: opacity var(--ease), transform var(--ease), filter var(--ease);
}

.top-notice-text.is-fade-out {
    opacity: 0;
    transform: translateY(-5px);
    filter: blur(1px);
}

.top-notice-text.is-fade-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(53, 23, 80, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(53, 23, 80, 0.16);
    box-shadow: 0 14px 35px rgba(53, 23, 80, 0.10);
}

.site-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-branding,
.header-logo-link,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.header-logo-link {
    transition: transform var(--ease), opacity var(--ease);
}

.header-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.header-logo {
    width: auto;
    height: 54px;
    max-width: 280px;
    object-fit: contain;
}

.site-title {
    color: var(--brand-900);
    font-size: 1.35rem;
    font-weight: 800;
}

.custom-logo {
    width: auto;
    max-height: 54px;
}

.primary-nav {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0.2rem 0.35rem;
    border: 1px solid rgba(53, 23, 80, 0.08);
    border-radius: var(--radius-button);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 30px rgba(53, 23, 80, 0.06);
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 0.16rem;
}

.main-menu a,
.main-menu-more-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.68rem;
    border: 1px solid transparent;
    border-radius: var(--radius-button);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform var(--ease), color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.main-menu a::after,
.main-menu-more-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mint), rgba(53, 23, 80, 0.72));
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity var(--ease), transform var(--ease);
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu-more.is-open > .main-menu-more-toggle,
.main-menu-more-toggle:hover {
    color: var(--brand-900);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: translateY(-1px);
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after,
.main-menu-more.is-open > .main-menu-more-toggle::after,
.main-menu-more-toggle:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-menu-more {
    position: relative;
}

.main-menu-more-toggle {
    gap: 0.35rem;
}

.main-menu-more-toggle i {
    font-size: 0.72rem;
    transition: transform var(--ease);
}

.main-menu-more.is-open .main-menu-more-toggle i {
    transform: rotate(180deg);
}

.main-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.72rem);
    right: 0;
    width: 190px;
    display: grid;
    gap: 0.25rem;
    padding: 0.45rem;
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}

.main-menu-dropdown a {
    min-height: 40px;
    justify-content: flex-start;
    padding: 0 0.72rem;
    border-radius: calc(var(--radius-card) - 2px);
    color: var(--brand-900);
}

.main-menu-dropdown a::after {
    right: 0.72rem;
    bottom: 6px;
    left: 0.72rem;
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal));
}

.main-menu-dropdown a:hover {
    border-color: transparent;
    background: transparent;
    color: var(--brand);
    box-shadow: none;
}

.main-menu-more.is-open .main-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-right,
.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.header-chip {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    background: #ffffff;
    color: var(--brand-900);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(53, 23, 80, 0.08);
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.header-chip:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: 0 14px 32px rgba(53, 23, 80, 0.14);
}

.header-chip-solid,
.site-header .header-chip-solid {
    border-color: var(--brand);
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(53, 23, 80, 0.20);
}

.header-chip-solid:hover,
.site-header .header-chip-solid:hover {
    border-color: var(--brand-900);
    background: var(--brand-900);
    color: #ffffff;
}

.site-header .header-actions :is(a, button, .button, input[type="submit"]) {
    min-width: 104px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.12rem;
    border: 1px solid var(--brand) !important;
    border-radius: var(--radius-button);
    background: var(--brand) !important;
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 16px 36px rgba(53, 23, 80, 0.22);
    transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header .header-actions :is(a, button, .button, input[type="submit"]):hover {
    transform: translateY(-2px);
    border-color: var(--brand-900) !important;
    background: var(--brand-900) !important;
    color: #ffffff !important;
    box-shadow: var(--shadow-interactive);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-900);
    transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section {
    padding: 5.4rem 0;
}

.section-blue {
    background: var(--paper-2);
}

.section-soft {
    background: var(--mint-50);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 2.35rem;
}

.section-heading h1,
.section-heading h2 {
    margin-bottom: 0.85rem;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.split-heading {
    margin-bottom: 1.45rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    min-height: 34px;
    margin: 0 0 1rem;
    padding: 0.35rem 0.74rem;
    border: 1px solid rgba(53, 23, 80, 0.10);
    border-radius: var(--radius-button);
    background: var(--mint-300);
    color: var(--brand-900);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    min-height: 48px;
    padding: 0.84rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius-button);
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

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

.btn i {
    flex: 0 0 auto;
    font-size: 1rem;
    transition: transform var(--ease);
}

.btn:hover i {
    transform: translateX(2px);
}

.btn:focus-visible,
.header-chip:focus-visible,
.main-menu-more-toggle:focus-visible,
.menu-toggle:focus-visible,
.hero-arrow:focus-visible,
.hero-dot:focus-visible,
.faq-list summary:focus-visible {
    outline: 3px solid rgba(205, 247, 183, 0.9);
    outline-offset: 3px;
}

.btn-primary {
    overflow: hidden;
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 15px 34px rgba(53, 23, 80, 0.23);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: inherit;
    pointer-events: none;
}

.btn-primary:hover {
    border-color: var(--mint);
    background: var(--brand-900);
    color: #ffffff;
    box-shadow: 0 20px 44px rgba(53, 23, 80, 0.30);
}

.btn-light {
    border-color: var(--line-strong);
    background: #ffffff;
    color: var(--brand-900);
}

.btn-light:hover {
    border-color: var(--brand);
    background: var(--mint-100);
    color: var(--brand-900);
}

.section-action-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    background: var(--brand-950);
}

.hero-media {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(23, 7, 37, 0.86) 0%, rgba(35, 12, 55, 0.62) 42%, rgba(35, 12, 55, 0.14) 100%),
        linear-gradient(0deg, rgba(23, 7, 37, 0.38), rgba(23, 7, 37, 0.04));
    pointer-events: none;
}

.hero-media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 1px;
    background: rgba(205, 247, 183, 0.36);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 760ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding: 5.6rem 0 6.4rem;
}

.hero-content {
    width: min(720px, 100%);
    color: #ffffff;
}

.hero-content h1 {
    max-width: 13ch;
    margin-bottom: 1.05rem;
    color: #ffffff;
    font-size: 3.85rem;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.26);
}

.hero-content p {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(205, 247, 183, 0.28);
    border-radius: var(--radius-button);
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero-trust-row i {
    color: var(--mint);
}

.hero-content .eyebrow {
    border-color: rgba(255, 255, 255, 0.20);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.78rem;
    margin-top: 1.55rem;
}

.hero-proof-rail {
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
    border: 1px solid rgba(205, 247, 183, 0.24);
    border-radius: var(--radius-card);
    background: rgba(23, 7, 37, 0.28);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.hero-proof-rail span {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
    padding: 0.8rem 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-proof-rail span + span {
    border-left: 1px solid rgba(205, 247, 183, 0.20);
}

.hero-proof-rail strong {
    color: var(--mint);
    font-size: 1rem;
    line-height: 1.1;
}

.hero-actions .btn {
    min-width: 168px;
}

.hero-content .btn-primary,
.contact-section .btn-light,
.cr-cond-cta .btn-light {
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero-content .btn-primary:hover,
.contact-section .btn-light:hover,
.cr-cond-cta .btn-light:hover {
    background: #ffffff;
    color: var(--brand-900);
}

.hero-content .btn-light {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-content .btn-light:hover {
    background: #ffffff;
    color: var(--brand-900);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: background var(--ease), color var(--ease), transform var(--ease);
}

.hero-arrow:hover {
    background: var(--mint);
    color: var(--brand-900);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
    left: max(20px, calc((100vw - 1180px) / 2 - 64px));
}

.hero-arrow-next {
    right: max(20px, calc((100vw - 1180px) / 2 - 64px));
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hero-dots {
    display: inline-flex;
    gap: 0.45rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(23, 7, 37, 0.42);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
    transition: width var(--ease), background var(--ease);
}

.hero-dot.is-active {
    width: 28px;
    background: var(--mint);
}

.home .section {
    position: relative;
    padding: 5.2rem 0;
    overflow: hidden;
}

.home .section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(53, 23, 80, 0.08);
}

.home .section > .container {
    position: relative;
    z-index: 1;
}

.home #who-for,
.home #process,
.home #faq {
    background: var(--paper-3);
}

.home #about,
.home #conditions,
.home #reviews {
    background: var(--paper-2);
}

.home #pricing,
.home #transfer {
    background: var(--paper-4);
}

.survey-grid,
.who-for-grid,
.contact-grid,
.cr-cond-hero-grid,
.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 3.2rem;
    align-items: center;
}

.survey-copy {
    max-width: 660px;
}

.survey-copy h2 {
    margin-bottom: 1rem;
    font-size: 2.65rem;
}

.survey-copy h2 span {
    display: block;
    color: var(--brand);
    font-size: 4rem;
}

.survey-copy p,
.cr-cond-narrow p,
.entry-content p {
    color: var(--muted);
}

.survey-proof-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.survey-proof-grid span {
    min-width: 158px;
    display: grid;
    gap: 0.08rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(53, 23, 80, 0.10);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(53, 23, 80, 0.08);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.survey-proof-grid strong {
    color: var(--brand);
    font-size: 1.18rem;
    line-height: 1.1;
}

.survey-divider {
    width: 86px;
    height: 4px;
    margin: 1.25rem 0 1.35rem;
    border-radius: 999px;
    background: var(--mint);
}

.survey-frame,
.who-for-image,
.who-for-product-image,
.how-step-visual,
.pp-split,
.single-thumb,
.post-thumb {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.survey-frame {
    aspect-ratio: 4 / 3;
    padding: 0.55rem;
    border: 1px solid rgba(53, 23, 80, 0.10);
    background: #ffffff;
    box-shadow: var(--shadow-deep);
}

.survey-image,
.who-for-image,
.pp-split-media,
.single-thumb img,
.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.survey-image {
    border-radius: calc(var(--radius-card) - 2px);
}

.who-for-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.promise-grid,
.condition-grid,
.pricing-grid,
.transfer-grid,
.cr-cond-stats,
.cr-cond-articles,
.cr-cond-stories,
.conditions-cards,
.transfer-steps-grid,
.transfer-reasons-grid,
.pricing-panel-grid,
.post-grid,
.contact-page-cards {
    display: grid;
    gap: 1rem;
}

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

.promise-card,
.condition-card,
.pricing-card,
.tp-review-card,
.faq-group,
.contact-panel,
.cr-card,
.cr-cond-stat,
.cr-cond-article,
.cr-cond-story,
.cr-cond-list-block,
.about-founder-card,
.about-promise-item,
.conditions-card,
.transfer-step-card,
.transfer-reason-card,
.contact-page-card,
.post-card,
.single-content,
.cr-amelia-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, #ffffff 0%, var(--paper-3) 100%);
    box-shadow: var(--shadow-card);
}

.promise-card,
.condition-card,
.pricing-card,
.tp-review-card,
.cr-cond-article,
.cr-cond-story,
.about-promise-item,
.conditions-card,
.transfer-step-card,
.transfer-reason-card,
.contact-page-card,
.post-card {
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.promise-card,
.condition-card,
.tp-review-card,
.conditions-card,
.transfer-step-card,
.transfer-reason-card,
.post-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.promise-card::before,
.condition-card::before,
.tp-review-card::before,
.conditions-card::before,
.transfer-step-card::before,
.transfer-reason-card::before,
.post-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--mint);
}

.promise-card:hover,
.condition-card:hover,
.pricing-card:hover,
.tp-review-card:hover,
.cr-cond-article:hover,
.cr-cond-story:hover,
.conditions-card:hover,
.transfer-step-card:hover,
.transfer-reason-card:hover,
.contact-page-card:hover,
.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(205, 247, 183, 0.72);
    box-shadow: var(--shadow-premium);
}

.promise-card h3,
.condition-card h4,
.pricing-card h3,
.process-step h3,
.tp-review-card h3 {
    transition: color var(--ease);
}

.promise-card:hover h3,
.condition-card:hover h4,
.pricing-card:hover h3,
.process-step:hover h3,
.tp-review-card:hover h3 {
    color: var(--brand);
}

.promise-card {
    min-height: 166px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem;
}

.icon-pill,
.conditions-card-icon,
.about-promise-icon,
.faq-hub-icon,
.transfer-step-visual,
.transfer-reason-visual,
.process-icon,
.cr-cond-doctor-avatar,
.about-founder-photo,
.tp-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    color: var(--brand-900);
}

.icon-pill {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(53, 23, 80, 0.08);
    box-shadow: 0 10px 24px rgba(205, 247, 183, 0.38);
    font-size: 1.25rem;
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.promise-card:hover .icon-pill,
.conditions-card:hover .conditions-card-icon,
.process-step:hover .process-icon {
    transform: translateY(-2px);
    background: var(--brand);
    color: #ffffff;
}

.promise-card h3,
.condition-card h4,
.pricing-card h3,
.conditions-card h4,
.transfer-step-card h3,
.post-card h2 {
    font-size: 1.06rem;
}

.promise-card p,
.condition-card p,
.pricing-card p,
.conditions-card p,
.transfer-step-card p,
.transfer-reason-card p,
.post-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.who-for-visual {
    position: relative;
    min-height: 560px;
}

.who-for-image {
    height: 540px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-premium);
}

.who-for-product-image {
    position: absolute;
    right: 28px;
    bottom: -30px;
    width: min(72%, 440px);
    max-height: 238px;
    object-fit: contain;
    padding: 1.15rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(16px);
}

.condition-groups,
.conditions-section-stack {
    display: grid;
    gap: 2.4rem;
}

.condition-group {
    padding-top: 0.4rem;
}

.condition-group > h3,
.conditions-group > h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    font-size: 1.35rem;
}

.condition-group > h3::before,
.conditions-group > h3::before {
    content: "";
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: var(--mint);
}

.condition-grid,
.conditions-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: condition-card;
}

.condition-card,
.conditions-card {
    min-height: 170px;
    padding: 1.25rem;
}

.condition-card {
    counter-increment: condition-card;
    padding-right: 3.15rem;
}

.condition-card::after {
    content: counter(condition-card, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(53, 23, 80, 0.16);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.condition-card h4 {
    padding-top: 0.2rem;
}

.conditions-card {
    display: grid;
    gap: 0.8rem;
}

.conditions-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
}

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

#pricing .pricing-grid {
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.55rem;
    overflow: hidden;
}

.pricing-card:nth-child(2) {
    border-color: rgba(205, 247, 183, 0.82);
    background: linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
    box-shadow: var(--shadow-premium);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--mint);
}

.pricing-badge {
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.36rem 0.7rem;
    border-radius: var(--radius-button);
    border: 1px solid rgba(53, 23, 80, 0.12);
    background: var(--mint-100);
    color: var(--brand-900);
    font-size: 0.78rem;
    font-weight: 800;
}

.price-tag,
.pp-card-price {
    color: var(--brand);
    font-size: 1.35rem;
    font-weight: 800;
}

.pricing-features {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.pricing-note-bar {
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.pricing-note-bar span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(53, 23, 80, 0.10);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-900);
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(53, 23, 80, 0.07);
}

.pricing-note-bar i {
    color: var(--mint-700);
}

.pricing-features li,
.how-step-list li,
.contact-page-notes li,
.cr-cond-conditions li,
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    min-width: 0;
}

.pricing-features i,
.how-step-list i,
.contact-page-notes i,
.cr-cond-conditions i {
    color: var(--mint-700);
    flex: 0 0 auto;
}

.process-stack,
.transfer-grid {
    counter-reset: cr-step;
    display: grid;
    gap: 1.05rem;
}

.process-step {
    position: relative;
    counter-increment: cr-step;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, #ffffff 0%, var(--paper-3) 100%);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--mint);
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(205, 247, 183, 0.72);
    box-shadow: var(--shadow-premium);
}

.process-step summary {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 26px;
    gap: 1.05rem;
    align-items: center;
    min-height: 98px;
    padding: 1.1rem 1.1rem 1.1rem 1.25rem;
    list-style: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.72);
    transition: background var(--ease);
}

.process-step summary::-webkit-details-marker {
    display: none;
}

.process-step summary:hover,
.process-step[open] summary {
    background: rgba(205, 247, 183, 0.16);
}

.process-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(53, 23, 80, 0.08);
    overflow: hidden;
}

.process-icon::after {
    content: counter(cr-step);
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step h3 {
    margin: 0;
}

.process-step p {
    margin: -0.3rem 1.1rem 1.2rem 6.25rem;
    color: var(--muted);
}

.process-step-chevron {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mint-100);
    color: var(--brand);
    transition: transform var(--ease), background var(--ease);
}

.process-step[open] .process-step-chevron {
    background: var(--mint);
    transform: rotate(180deg);
}

.process-layout,
.transfer-shell {
    max-width: 1060px;
}

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

.transfer-grid .process-step {
    height: 100%;
}

.transfer-grid .process-step summary {
    grid-template-columns: 60px minmax(0, 1fr) 26px;
    align-items: start;
}

.transfer-grid .process-step p {
    margin: -0.35rem 1.1rem 1.2rem 6.15rem;
}

.tp-brandline,
.trustpilot-footer-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-900);
}

.tp-brandline {
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--muted);
    font-weight: 700;
}

.tp-brandline strong {
    color: var(--brand-900);
}

.tp-brand-star {
    color: #00b67a;
}

.tp-review-slider {
    overflow: hidden;
    margin-inline: -0.75rem;
    padding: 0.7rem 0.75rem 1.55rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tp-review-track {
    display: flex;
    gap: 1.1rem;
    align-items: stretch;
    will-change: transform;
}

.tp-review-slider.is-static .tp-review-track {
    transform: none;
}

.tp-review-card {
    flex: 0 0 410px;
    min-height: 330px;
    padding: 1.35rem;
}

.tp-card-head,
.tp-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tp-card-head {
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.tp-avatar {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(53, 23, 80, 0.08);
    font-weight: 800;
}

.tp-user-meta strong,
.tp-user-meta span {
    display: block;
}

.tp-user-meta span,
.tp-date {
    color: var(--muted);
    font-size: 0.82rem;
}

.tp-stars {
    display: inline-flex;
    gap: 0.12rem;
    color: #00b67a;
}

.tp-stars span {
    color: transparent;
    background: linear-gradient(90deg, #00b67a var(--star-fill, 100%), rgba(53, 23, 80, 0.18) var(--star-fill, 100%));
    -webkit-background-clip: text;
    background-clip: text;
}

.tp-review-card h3 {
    margin-top: 0.6rem;
    font-size: 1.18rem;
}

.faq-grid-layout,
.faq-hub-layout,
.transfer-faq-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 2.35rem;
    align-items: start;
}

.faq-sidebar,
.faq-hub-nav,
.transfer-faq-intro {
    position: sticky;
    top: 112px;
}

.faq-sidebar h2,
.faq-hub-nav h2,
.transfer-faq-intro h2 {
    font-size: 1.8rem;
}

.faq-sidebar {
    padding: 1.2rem;
    border: 1px solid rgba(53, 23, 80, 0.10);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.faq-sidebar ul,
.faq-hub-nav-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.faq-sidebar a,
.faq-hub-nav-list a,
.category-pills a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.74rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #ffffff;
    color: var(--brand-900);
    font-weight: 700;
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.faq-sidebar a:hover,
.faq-hub-nav-list a:hover,
.faq-hub-nav-list a.is-active,
.category-pills a:hover {
    border-color: var(--brand);
    background: var(--mint-100);
    transform: translateY(-2px);
}

.faq-hub-icon {
    width: 34px;
    height: 34px;
}

.faq-groups-wrap,
.faq-list,
.faq-hub-content,
.faq-hub-accordion,
.transfer-faq-list {
    display: grid;
    gap: 1rem;
}

.faq-group,
.faq-hub-section {
    padding: 1.3rem;
}

.faq-group h3,
.faq-hub-section h2 {
    margin-bottom: 1rem;
}

.faq-list details,
.faq-hub-accordion details,
.transfer-faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(53, 23, 80, 0.04);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-list details:hover,
.faq-hub-accordion details:hover,
.transfer-faq-list details:hover {
    border-color: rgba(205, 247, 183, 0.72);
    box-shadow: 0 14px 34px rgba(53, 23, 80, 0.08);
}

.faq-list summary,
.faq-hub-accordion summary,
.transfer-faq-list summary {
    position: relative;
    padding: 1rem 3rem 1rem 1rem;
    color: var(--brand-900);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    transition: background var(--ease), color var(--ease);
}

.faq-list summary::-webkit-details-marker,
.faq-hub-accordion summary::-webkit-details-marker,
.transfer-faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after,
.faq-hub-accordion summary::after,
.transfer-faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: var(--brand-900);
    transform: translateY(-50%);
}

.faq-list details[open] summary::after,
.faq-hub-accordion details[open] summary::after,
.transfer-faq-list details[open] summary::after {
    content: "-";
}

.faq-list summary:hover,
.faq-list details[open] summary,
.faq-hub-accordion summary:hover,
.faq-hub-accordion details[open] summary,
.transfer-faq-list summary:hover,
.transfer-faq-list details[open] summary {
    background: var(--mint-50);
    color: var(--brand);
}

.faq-list details p,
.faq-hub-accordion details p,
.transfer-faq-list details p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(53, 23, 80, 0.96), rgba(23, 7, 37, 1)),
        var(--brand-950);
    color: #ffffff;
}

.contact-section::before {
    background: rgba(205, 247, 183, 0.16);
}

.contact-section h2,
.contact-section .eyebrow,
.cr-cond-cta h2,
.cr-cond-cta p {
    color: #ffffff;
}

.contact-section .eyebrow,
.cr-cond-cta .eyebrow,
.cr-cond-quote-card .eyebrow {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(205, 247, 183, 0.16);
    color: var(--mint);
}

.contact-section p,
.contact-list,
.contact-list a {
    color: rgba(255, 255, 255, 0.82);
}

.contact-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.contact-list li {
    width: fit-content;
    padding: 0.48rem 0.65rem;
    border: 1px solid rgba(205, 247, 183, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.06);
}

.contact-list strong {
    color: #ffffff;
}

.contact-panel {
    padding: 1.55rem;
    background: #ffffff;
    box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.contact-form {
    display: grid;
    gap: 0.95rem;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--brand-900);
    font-size: 0.88rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.82rem 0.9rem;
    border: 1px solid rgba(53, 23, 80, 0.18);
    border-radius: var(--radius-card);
    background: #ffffff;
    color: var(--ink);
    outline: 0;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(205, 247, 183, 0.62);
}

.contact-form-notice {
    margin-bottom: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-card);
    font-weight: 700;
}

.contact-form-notice.is-success {
    background: var(--mint-100);
    color: var(--brand-900);
}

.contact-form-notice.is-error {
    background: #fff1ee;
    color: #8d241c;
}

.site-footer {
    position: relative;
    padding: 3.35rem 0 1.55rem;
    background:
        linear-gradient(180deg, var(--brand-900) 0%, var(--brand-950) 42%, #100419 100%);
    color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: rgba(205, 247, 183, 0.42);
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 3rem;
    padding: 1.05rem 1.12rem 1.05rem 1.25rem;
    border: 1px solid rgba(205, 247, 183, 0.22);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.footer-cta-strip span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.footer-cta-strip h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.55rem;
}

.footer-cta-strip .btn-primary {
    flex: 0 0 auto;
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.footer-cta-strip .btn-primary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--brand-900);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(180px, 0.52fr) minmax(230px, 0.62fr);
    gap: 3.2rem;
    align-items: start;
}

.footer-logo {
    width: min(340px, 100%);
    height: auto;
    color: #ffffff;
}

.footer-logo path,
.footer-logo rect,
.footer-logo [style] {
    fill: currentColor !important;
}

.footer-text {
    max-width: 38ch;
    margin-top: 1.1rem;
}

.footer-micro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: 520px;
    margin-top: 1.1rem;
}

.footer-micro-grid span {
    min-width: 0;
    padding: 0.65rem 0.7rem;
    border: 1px solid rgba(205, 247, 183, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
}

.footer-micro-grid strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--mint);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.95rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: background var(--ease), color var(--ease), transform var(--ease);
}

.footer-social a:hover {
    background: var(--mint);
    color: var(--brand-900);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 1.02rem;
}

.footer-contact-block .footer-links {
    margin-bottom: 0.75rem;
}

.footer-opening-hours {
    margin: 0;
    padding-top: 0.82rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    line-height: 1.45;
}

.footer-links {
    display: grid;
    gap: 0.62rem;
}

.footer-links a {
    width: fit-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--ease), transform var(--ease), padding-left var(--ease);
}

.footer-links a:hover {
    color: var(--mint);
    padding-left: 0.15rem;
}

.footer-trust,
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-trust,
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-trust {
    padding: 1.2rem;
    border: 1px solid rgba(205, 247, 183, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.045);
}

.trustpilot-footer {
    display: grid;
    gap: 0.65rem;
}

.trustpilot-footer-head,
.trustpilot-footer p {
    color: #ffffff;
}

.trustpilot-footer-head {
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    line-height: 1;
}

.trustpilot-footer .tp-brand-star {
    color: #00b67a;
    font-size: 1.08rem;
}

.trustpilot-footer p {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
}

.trustpilot-footer-stars {
    display: flex;
    align-items: center;
    gap: 0.18rem;
}

.trustpilot-footer-stars span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 2px;
    background: #00b67a;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1;
}

.trustpilot-footer-stars .is-half {
    color: #ffffff;
    background: linear-gradient(90deg, #00b67a 50%, #d7d2dc 50%);
}

.trustpilot-footer span:not(.tp-brand-star),
.footer-disclaimer,
.footer-copy,
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.68);
}

.compliance-badges {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-end;
}

.compliance-badge-logo {
    padding: 0.5rem;
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.compliance-badge-logo img {
    width: 84px;
    height: auto;
}

.footer-disclaimer {
    margin-bottom: 1rem;
    font-size: 0.86rem;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a:hover {
    color: var(--mint);
}

.how-process,
.about-promise,
.conditions-overview,
.transfer-steps-section,
.contact-page-main,
.faq-hub,
.pricing-panel-section {
    background: var(--paper);
}

.how-step-stack,
.about-promise-list {
    display: grid;
    gap: 1.4rem;
}

.how-step-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 2rem;
    align-items: center;
    padding: 1.25rem 0;
}

.how-step-row.is-reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.how-step-row.is-reverse .how-step-copy {
    order: 2;
}

.how-step-copy h2 {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.how-step-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-size: 1rem;
}

.how-step-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.how-step-list li {
    color: var(--muted);
}

.how-step-meta {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.how-step-visual {
    min-height: 340px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background-color: var(--paper-2);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.how-step-visual.has-image {
    min-height: 390px;
}

.how-visual-inner {
    display: flex;
    gap: 1rem;
    color: var(--brand);
    font-size: 3rem;
}

.how-bottom-cta,
.conditions-intro,
.cr-cond-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    margin-top: 1.5rem;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.how-bottom-cta p,
.conditions-intro p {
    max-width: 72ch;
    margin: 0;
    color: var(--muted);
}

.about-mission {
    background: var(--paper-2);
}

.about-mission-wrap {
    max-width: 980px;
}

.about-mission-wrap > h2 {
    max-width: 850px;
}

.about-mission-wrap > h2 span,
.accent-highlight {
    color: var(--mint-700);
}

.about-mission-wrap > p,
.about-mission-copy p {
    max-width: 78ch;
    color: var(--muted);
}

.about-founder-panel {
    margin: 2rem 0;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.about-founders {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-founder-card {
    padding: 1rem;
    text-align: center;
}

.about-founder-photo {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.7rem;
    font-size: 1.55rem;
}

.about-founder-card p {
    margin: 0;
    color: var(--muted);
}

.about-founder-panel blockquote {
    margin: 0;
    padding: 1rem;
    border-left: 4px solid var(--mint);
    color: var(--brand-900);
    font-size: 1.08rem;
    font-weight: 600;
}

.about-promise-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2.4rem;
    align-items: start;
}

.about-promise-intro p {
    color: var(--muted);
}

.about-promise-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1rem;
}

.about-promise-icon {
    width: 42px;
    height: 42px;
}

.about-promise-item p {
    margin: 0;
    color: var(--muted);
}

.conditions-intro {
    margin: 0 0 2rem;
}

.conditions-discover {
    margin-bottom: 2rem;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.conditions-outro {
    max-width: 78ch;
    margin: 2rem auto 0;
    color: var(--muted);
    text-align: center;
}

.transfer-page,
.pricing-page,
.contact-page,
.faq-page,
.cr-condition-page {
    background: var(--paper);
}

.transfer-section-heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.transfer-section-heading-left {
    margin-inline: 0;
    text-align: left;
}

.transfer-section-heading p {
    color: var(--muted);
}

.transfer-steps-grid,
.transfer-reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.transfer-step-card,
.transfer-reason-card {
    overflow: hidden;
}

.transfer-step-visual,
.transfer-reason-visual {
    width: 100%;
    height: 132px;
    border-radius: 0;
    font-size: 2.35rem;
}

.transfer-step-body,
.transfer-reason-body {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1.1rem;
}

.transfer-step-count {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-weight: 800;
}

.transfer-why-section {
    background: var(--mint-100);
}

.transfer-faq-section {
    background: var(--paper-2);
}

.contact-page-hero {
    background: var(--brand-900);
    color: #ffffff;
}

.contact-page-hero-shell {
    max-width: 850px;
}

.contact-page-hero h1,
.contact-page-hero p {
    color: #ffffff;
}

.contact-page-hero > .container > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.contact-page-hero .btn-light {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.contact-page-hero .btn-light:hover {
    background: #ffffff;
    color: var(--brand-900);
}

.contact-page-layout {
    align-items: start;
}

.contact-page-copy h2 {
    margin-bottom: 0.8rem;
}

.contact-page-copy > p {
    color: var(--muted);
}

.contact-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.4rem 0;
}

.contact-page-card {
    padding: 1rem;
}

.contact-page-card a {
    color: var(--brand);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-page-card p {
    margin-bottom: 0.4rem;
}

.contact-page-notes {
    display: grid;
    gap: 0.75rem;
}

.contact-page-notes li {
    color: var(--muted);
}

.faq-hub-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.pricing-offer-bar {
    background: var(--brand);
    color: #ffffff;
}

.pricing-offer-bar .container {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    text-align: center;
}

.pob-label {
    padding: 0.32rem 0.66rem;
    border-radius: var(--radius-button);
    background: var(--mint);
    color: var(--brand-900);
    font-weight: 800;
}

.pob-text {
    font-weight: 700;
}

.pob-btn {
    min-height: 38px;
    padding: 0.58rem 0.9rem;
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.pob-btn:hover {
    background: #ffffff;
    color: var(--brand-900);
}

.pricing-panel {
    padding: 2rem;
    border-radius: var(--radius-card);
    background: var(--brand-900);
    color: #ffffff;
    box-shadow: var(--shadow-lift);
}

.pricing-panel-head {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.pricing-panel h2,
.pricing-panel h3,
.pricing-panel p {
    color: #ffffff;
}

.pricing-panel-head p,
.pp-card p,
.pricing-money-back {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pp-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.07);
}

.pp-card-top {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.pp-card-top .bi,
.pp-card-num {
    color: var(--mint);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.pp-card-spacer {
    flex: 1;
}

.pp-card-note {
    font-size: 0.88rem;
}

.pricing-money-back {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 1.35rem 0 0;
    font-weight: 700;
}

.pricing-money-back i {
    color: var(--mint);
}

.pp-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.pp-split.is-reverse {
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1fr);
}

.pp-split-copy {
    display: grid;
    align-items: center;
    padding: 2rem;
}

.pp-split-copy p {
    color: var(--muted);
}

.pp-split-media {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.cr-cond-hero {
    padding: 4.8rem 0;
    background: var(--brand-900);
    color: #ffffff;
}

.cr-cond-hero-copy h1,
.cr-cond-hero-copy p {
    color: #ffffff;
}

.cr-cond-hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.cr-cond-hero-visual {
    position: relative;
}

.cr-cond-hero-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.cr-cond-hero-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 220px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-900);
    box-shadow: var(--shadow-soft);
}

.cr-cond-hero-num,
.cr-cond-stat-num {
    display: block;
    color: var(--brand);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.cr-cond-narrow {
    max-width: 860px;
}

.cr-cond-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cr-cond-stat {
    padding: 1.2rem;
    text-align: center;
}

.cr-cond-stat p {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.cr-cond-articles,
.cr-cond-stories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cr-cond-article,
.cr-cond-story {
    padding: 1.2rem;
}

.cr-cond-article-date {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.cr-readmore,
.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand);
    font-weight: 800;
}

.cr-readmore:hover,
.inline-link:hover {
    color: var(--mint-700);
}

.cr-cond-story-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.cr-cond-story-meta span {
    color: var(--muted);
    font-size: 0.86rem;
}

.cr-cond-story-meta strong {
    display: block;
    color: var(--brand-900);
}

.cr-cond-quote-shell {
    max-width: 980px;
}

.cr-cond-quote-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    background: var(--brand-900);
    color: #ffffff;
    box-shadow: var(--shadow-lift);
}

.cr-cond-quote-card h2,
.cr-cond-quote-card blockquote {
    color: #ffffff;
}

.cr-cond-quote-card blockquote {
    margin: 1rem 0 1.3rem;
    font-size: 1.12rem;
}

.cr-cond-doctor {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cr-cond-doctor-avatar {
    width: 48px;
    height: 48px;
}

.cr-cond-doctor strong,
.cr-cond-doctor span {
    display: block;
}

.cr-cond-doctor span {
    color: rgba(255, 255, 255, 0.72);
}

.cr-cond-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.cr-cond-list-block {
    padding: 1.3rem;
}

.cr-cond-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.cr-cond-chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.48rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    background: var(--mint-100);
    color: var(--brand-900);
    font-weight: 700;
}

.cr-cond-conditions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.cr-cond-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.cr-cond-cta {
    background: var(--brand-900);
    color: #ffffff;
}

.cr-booking-section {
    background: var(--paper-2);
}

.cr-booking-shell {
    max-width: 1040px;
}

.cr-booking-head {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.cr-booking-head .eyebrow {
    margin-inline: auto;
}

.cr-booking-sub {
    color: var(--muted);
    font-size: 1.05rem;
}

.cr-amelia-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.4rem;
    --amelia-primary-900: #170725;
    --amelia-primary-800: #220b38;
    --amelia-primary-700: #351750;
    --amelia-primary-600: #4f2771;
    --amelia-primary-500: #351750;
    --amelia-primary-400: #6b3f96;
    --amelia-primary-300: #8c60ad;
    --amelia-primary-200: #bda8d2;
    --amelia-primary-100: #f0e8f8;
    --amelia-primary-50: #fbf7ff;
}

.cr-amelia-fallback {
    padding: 2.4rem 1.4rem;
    text-align: center;
    background: var(--paper-2);
}

.cr-amelia-fallback p {
    max-width: 48ch;
    margin-inline: auto;
    color: var(--muted);
}

.post-shell {
    max-width: 1060px;
}

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

.post-card {
    overflow: hidden;
}

.post-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.post-card-content {
    padding: 1.15rem;
}

.single-content {
    padding: 1.6rem;
}

.single-thumb {
    aspect-ratio: 16 / 9;
    margin-bottom: 1.4rem;
}

.entry-content {
    color: var(--muted);
}

.entry-content > * + * {
    margin-top: 1rem;
}

.pagination-wrap {
    margin-top: 2rem;
}

.pagination-wrap .nav-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination-wrap a,
.pagination-wrap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    background: #ffffff;
    color: var(--brand-900);
    font-weight: 700;
}

.pagination-wrap .current {
    background: var(--brand);
    color: #ffffff;
}

#cr-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    width: 0;
    height: 3px;
    background: var(--mint);
    box-shadow: 0 0 18px rgba(205, 247, 183, 0.8);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.is-visible .promise-card,
.reveal-on-scroll.is-visible .condition-card,
.reveal-on-scroll.is-visible .pricing-card,
.reveal-on-scroll.is-visible .process-step,
.reveal-on-scroll.is-visible .process-flow-step,
.reveal-on-scroll.is-visible .transfer-flow-step,
.reveal-on-scroll.is-visible .conditions-card,
.reveal-on-scroll.is-visible .transfer-step-card,
.reveal-on-scroll.is-visible .transfer-reason-card,
.reveal-on-scroll.is-visible .cr-cond-article,
.reveal-on-scroll.is-visible .cr-cond-stat {
    animation: card-rise 520ms ease both;
    animation-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible .process-flow-step:nth-child(2),
.reveal-on-scroll.is-visible .transfer-flow-step:nth-child(2) {
    --reveal-delay: 90ms;
}

.reveal-on-scroll.is-visible .process-flow-step:nth-child(3),
.reveal-on-scroll.is-visible .transfer-flow-step:nth-child(3) {
    --reveal-delay: 180ms;
}

.reveal-on-scroll.is-visible .process-flow-step:nth-child(4) {
    --reveal-delay: 270ms;
}

@keyframes card-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cr-flow-shimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes transfer-dot-pulse {
    0%,
    100% {
        transform: translateX(50%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateX(50%) scale(1.18);
        opacity: 1;
    }
}

@keyframes transfer-node-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes transfer-ambient-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(22px, -18px, 0) scale(1.06);
    }
}

@keyframes transfer-line-glow {
    0%,
    100% {
        opacity: 0.55;
        filter: saturate(0.9);
    }
    50% {
        opacity: 1;
        filter: saturate(1.18);
    }
}

@media (max-width: 1180px) {
    .primary-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 0.9rem;
        border: 1px solid var(--line);
        border-radius: var(--radius-card);
        background: #ffffff;
        box-shadow: var(--shadow-lift);
    }

    .primary-nav.is-open {
        display: block;
    }

    .main-menu {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.2rem 0.65rem;
    }

    .main-menu a {
        min-height: 42px;
        justify-content: center;
        padding: 0 0.4rem;
        border-radius: var(--radius-card);
    }

    .main-menu-more {
        display: grid;
        gap: 0.25rem;
    }

    .main-menu-more-toggle {
        min-height: 42px;
        justify-content: center;
        padding: 0 0.4rem;
        border-radius: var(--radius-card);
    }

    .main-menu a::after,
    .main-menu-more-toggle::after {
        display: none;
    }

    .main-menu a:hover,
    .main-menu-more-toggle:hover,
    .main-menu-more.is-open > .main-menu-more-toggle {
        border-color: rgba(53, 23, 80, 0.12);
        background: linear-gradient(180deg, rgba(205, 247, 183, 0.36), rgba(255, 255, 255, 0.92));
        box-shadow: 0 10px 24px rgba(53, 23, 80, 0.07);
    }

    .main-menu-dropdown {
        position: static;
        width: 100%;
        display: none;
        margin-top: 0.15rem;
        padding: 0.35rem;
        background: var(--mint-50);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-menu-more.is-open .main-menu-dropdown {
        display: grid;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .section,
    .home .section {
        padding: 4rem 0;
    }

    .hero-media {
        min-height: 570px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .survey-grid,
    .who-for-grid,
    .contact-grid,
    .cr-cond-hero-grid,
    .contact-page-layout,
    .about-promise-grid,
    .faq-grid-layout,
    .faq-hub-layout,
    .transfer-faq-layout,
    .how-step-row,
    .how-step-row.is-reverse,
    .pp-split,
    .pp-split.is-reverse {
        grid-template-columns: 1fr;
    }

    .how-step-row.is-reverse .how-step-copy {
        order: 0;
    }

    .faq-sidebar,
    .faq-hub-nav,
    .transfer-faq-intro {
        position: static;
    }

    .condition-grid,
    .conditions-cards,
    .pricing-grid,
    .pricing-note-bar,
    .transfer-grid,
    .pricing-panel-grid,
    .transfer-steps-grid,
    .transfer-reasons-grid,
    .cr-cond-articles,
    .cr-cond-stories,
    .post-grid,
    .contact-page-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .who-for-visual {
        min-height: auto;
    }

    .who-for-image {
        height: 420px;
    }

    .who-for-product-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.82rem;
    }

    h3 {
        font-size: 1.18rem;
    }

    .container {
        width: min(100% - 24px, 1180px);
    }

    .site-header-inner {
        min-height: 68px;
    }

    .header-logo {
        height: 48px;
        max-width: 210px;
    }

    .header-actions {
        display: none;
    }

    .primary-nav {
        right: 12px;
        left: 12px;
    }

    .main-menu {
        grid-template-columns: 1fr;
    }

    .main-menu a {
        justify-content: flex-start;
        padding: 0 0.7rem;
    }

    .main-menu-more-toggle {
        justify-content: flex-start;
        padding: 0 0.7rem;
    }

    .section,
    .home .section {
        padding: 3.2rem 0;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .hero-media {
        min-height: 560px;
    }

    .hero-media::before {
        background:
            linear-gradient(180deg, rgba(23, 7, 37, 0.26) 0%, rgba(23, 7, 37, 0.78) 100%),
            linear-gradient(90deg, rgba(23, 7, 37, 0.52), rgba(23, 7, 37, 0.30));
    }

    .hero-slide {
        background-image: var(--hero-img-mobile, var(--hero-img));
        background-position: center;
    }

    .hero-content-wrap {
        align-items: end;
        padding: 4.4rem 0 5.1rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        max-width: 13ch;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-proof-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-proof-rail span {
        padding: 0.58rem 0.54rem;
        font-size: 0.7rem;
    }

    .hero-proof-rail span + span {
        border-top: 0;
        border-left: 1px solid rgba(205, 247, 183, 0.20);
    }

    .hero-proof-rail strong {
        font-size: 0.84rem;
    }

    .hero-trust-row {
        gap: 0.5rem;
    }

    .hero-trust-row span {
        min-height: 36px;
        padding: 0.42rem 0.62rem;
    }

    .hero-actions,
    .section-action-center,
    .how-bottom-cta,
    .conditions-intro,
    .cr-cond-cta,
    .pricing-offer-bar .container {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .section-action-center .btn,
    .how-bottom-cta .btn,
    .conditions-intro .btn,
    .cr-cond-cta .btn,
    .pricing-offer-bar .btn {
        width: 100%;
    }

    .hero-arrow {
        top: auto;
        bottom: 26px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: scale(1.04);
    }

    .hero-arrow-prev {
        left: 16px;
    }

    .hero-arrow-next {
        right: 16px;
    }

    .hero-controls {
        bottom: 34px;
    }

    .survey-copy h2 {
        font-size: 2rem;
    }

    .survey-copy h2 span {
        font-size: 3rem;
    }

    .promise-grid,
    .condition-grid,
    .conditions-cards,
    .pricing-grid,
    .pricing-note-bar,
    .transfer-grid,
    .pricing-panel-grid,
    .transfer-steps-grid,
    .transfer-reasons-grid,
    .cr-cond-stats,
    .cr-cond-articles,
    .cr-cond-stories,
    .cr-cond-lists,
    .post-grid,
    .contact-page-cards {
        grid-template-columns: 1fr;
    }

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

    .promise-card,
    .process-step summary,
    .about-promise-item,
    .transfer-step-body,
    .transfer-reason-body {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .process-step summary {
        grid-template-columns: 54px minmax(0, 1fr) 20px;
        gap: 0.75rem;
    }

    .transfer-grid .process-step summary {
        grid-template-columns: 54px minmax(0, 1fr) 20px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
    }

    .icon-pill {
        width: 46px;
        height: 46px;
    }

    .process-step p {
        margin: -0.2rem 1rem 1rem;
    }

    .transfer-grid .process-step p {
        margin: -0.2rem 1rem 1rem;
    }

    .tp-review-card {
        flex-basis: 82vw;
        min-height: 300px;
    }

    .tp-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-panel,
    .pricing-panel,
    .cr-cond-quote-card,
    .single-content {
        padding: 1.1rem;
    }

    .footer-top,
    .footer-trust,
    .footer-bottom-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-cta-strip {
        margin-bottom: 2.1rem;
        padding: 1rem;
    }

    .footer-cta-strip .btn {
        width: 100%;
    }

    .footer-micro-grid {
        grid-template-columns: 1fr;
    }

    .footer-trust {
        align-items: start;
    }

    .compliance-badges {
        justify-content: flex-start;
    }

    .footer-legal-links {
        display: grid;
        gap: 0.4rem;
    }

    .how-step-visual,
    .how-step-visual.has-image,
    .pp-split-media,
    .cr-cond-hero-visual img {
        min-height: 280px;
    }

    .pp-split-copy {
        padding: 1.2rem;
    }

    .cr-cond-hero {
        padding: 3.3rem 0;
    }

    .cr-cond-hero-badge {
        position: static;
        max-width: none;
        margin-top: 0.85rem;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .header-logo {
        max-width: 178px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-media {
        min-height: 540px;
    }

    .hero-dots {
        max-width: calc(100vw - 118px);
        overflow-x: auto;
    }

    .promise-card,
    .about-promise-item {
        grid-template-columns: 1fr;
    }

    .icon-pill,
    .about-promise-icon {
        margin-bottom: 0.2rem;
    }
}

.generic-info-page .contact-page-hero {
    border-bottom: 1px solid rgba(53, 23, 80, 0.1);
}

.generic-info-stack {
    background:
        linear-gradient(180deg, rgba(205, 247, 183, 0.16), rgba(255, 255, 255, 0) 24rem),
        var(--cr-white);
}

.generic-info-section {
    max-width: 1180px;
}

.generic-prose {
    max-width: 880px;
    color: var(--cr-muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.generic-prose p + p {
    margin-top: 1rem;
}

.generic-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.generic-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    max-width: 980px;
}

.generic-check-list li {
    display: flex;
    gap: 0.72rem;
    align-items: flex-start;
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    padding: 1rem 1.1rem;
    color: var(--cr-muted);
    line-height: 1.55;
}

.generic-check-list i {
    color: var(--cr-primary);
    margin-top: 0.12rem;
}

.generic-faq-list {
    max-width: 980px;
    margin-top: 1.5rem;
}

.generic-contact-panel {
    max-width: 720px;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .generic-card-grid,
    .generic-check-list {
        grid-template-columns: 1fr;
    }
}

/* Premium brand refresh */
.site-main {
    background:
        linear-gradient(180deg, #fffdf9 0%, #fbfaf7 38%, #f8fbf4 100%);
}

.top-notice {
    background: linear-gradient(90deg, var(--brand-950), var(--brand), var(--brand-950));
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(53, 23, 80, 0.08);
}

.site-header-inner {
    min-height: 82px;
}

.primary-nav {
    padding: 0.28rem;
    border-color: rgba(53, 23, 80, 0.10);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 42px rgba(53, 23, 80, 0.08);
}

.main-menu a,
.main-menu-more-toggle {
    min-height: 42px;
    padding-inline: 0.78rem;
}

.site-header .header-actions :is(a, button, .button, input[type="submit"]),
.btn-primary {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-900) 100%) !important;
    color: #ffffff !important;
}

.site-header .header-actions :is(a, button, .button, input[type="submit"]):hover,
.btn-primary:hover {
    border-color: var(--mint) !important;
    background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-950) 100%) !important;
}

.eyebrow {
    border-color: rgba(15, 118, 110, 0.16);
    background: var(--clinical-teal-soft);
    color: var(--clinical-teal);
}

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

.section-heading h2 {
    font-size: 2.6rem;
}

.home .section {
    padding: 6.25rem 0;
}

.home #about,
.home #conditions,
.home #reviews {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(246, 241, 248, 0.9)),
        var(--paper-2);
}

.home #pricing,
.home #transfer {
    background:
        linear-gradient(180deg, rgba(205, 247, 183, 0.20), rgba(255, 255, 255, 0.74)),
        var(--paper-4);
}

.hero-media {
    min-height: 660px;
}

.hero-media::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(18, 6, 30, 0.92) 0%, rgba(35, 12, 55, 0.80) 34%, rgba(35, 12, 55, 0.42) 62%, rgba(35, 12, 55, 0.14) 100%),
        linear-gradient(180deg, rgba(18, 6, 30, 0.18) 0%, rgba(18, 6, 30, 0.48) 100%);
}

.hero-media::after {
    z-index: 1;
    height: 56px;
    background:
        linear-gradient(180deg, rgba(23, 7, 37, 0) 0%, rgba(23, 7, 37, 0.18) 72%, rgba(23, 7, 37, 0.34) 100%);
}

.hero-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 372px);
    gap: 3rem;
    align-items: center;
    padding: 3.6rem 0 4.2rem;
}

.hero-content {
    width: 100%;
    max-width: 780px;
}

.hero-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    margin: 0 0 1.05rem;
    padding: 0.46rem 0.78rem;
    border: 1px solid rgba(205, 247, 183, 0.34);
    border-radius: var(--radius-button);
    background: rgba(205, 247, 183, 0.14);
    color: var(--mint);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(14px);
}

.hero-content h1 {
    max-width: 20ch;
    margin-bottom: 0.8rem;
    font-size: 4.25rem;
    line-height: 1.03;
}

.hero-content p:not(.hero-eyebrow) {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    margin-bottom: 0;
}

.hero-trust-row {
    margin-top: 0.95rem;
}

.hero-trust-row span {
    border-color: rgba(205, 247, 183, 0.30);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.hero-actions {
    margin-top: 1rem;
}

.hero-actions .btn {
    min-width: 176px;
    min-height: 52px;
}

.hero-content .btn-primary {
    border-color: rgba(205, 247, 183, 0.72) !important;
    background: var(--mint) !important;
    color: var(--brand-900) !important;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.hero-content .btn-primary:hover {
    background: #ffffff !important;
    color: var(--brand-900) !important;
}

.hero-content .btn-light {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
}

.hero-proof-rail {
    margin-top: 0.85rem;
    border-color: rgba(205, 247, 183, 0.28);
    background: rgba(23, 7, 37, 0.38);
}

.hero-care-panel {
    position: relative;
    z-index: 2;
    align-self: center;
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
    border: 1px solid rgba(205, 247, 183, 0.26);
    border-radius: var(--radius-card);
    background: rgba(23, 7, 37, 0.54);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.hero-panel-label {
    width: fit-content;
    padding: 0.34rem 0.62rem;
    border: 1px solid rgba(205, 247, 183, 0.26);
    border-radius: var(--radius-button);
    background: rgba(205, 247, 183, 0.14);
    color: var(--mint);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hero-panel-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.78rem;
    align-items: center;
    min-height: 72px;
    padding: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.075);
}

.hero-panel-step i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: var(--brand-900);
    font-size: 1.12rem;
}

.hero-panel-step strong,
.hero-panel-step small {
    display: block;
}

.hero-panel-step strong {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.25;
}

.hero-panel-step small {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.35;
}

.hero-panel-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.78rem 0.82rem;
    border-radius: var(--radius-card);
    background: rgba(205, 247, 183, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}

.hero-panel-note i {
    color: var(--mint);
}

.survey-copy h2 {
    font-size: 2.8rem;
}

.survey-copy h2 span {
    color: var(--clinical-teal);
}

.survey-divider {
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal));
}

.survey-proof-grid span,
.pricing-note-bar span,
.faq-sidebar {
    background: rgba(255, 255, 255, 0.86);
}

.survey-frame {
    padding: 0.66rem;
    border-color: rgba(53, 23, 80, 0.12);
    background: linear-gradient(180deg, #ffffff, #f7fff2);
    box-shadow: var(--shadow-premium);
}

.who-for-visual::before {
    content: "";
    position: absolute;
    inset: 42px 0 58px 58px;
    z-index: 0;
    border: 1px solid rgba(53, 23, 80, 0.10);
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(205, 247, 183, 0.30), rgba(255, 255, 255, 0.72));
}

.who-for-image,
.who-for-product-image {
    position: relative;
    z-index: 1;
}

.who-for-product-image {
    background: rgba(255, 255, 255, 0.96);
}

.promise-card,
.condition-card,
.pricing-card,
.process-step,
.tp-review-card,
.faq-group,
.contact-panel {
    border-color: rgba(53, 23, 80, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 20px 52px rgba(53, 23, 80, 0.09);
}

.promise-card::before,
.condition-card::before,
.tp-review-card::before {
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal));
}

.promise-card {
    min-height: 180px;
    padding: 1.35rem;
}

.icon-pill {
    background: var(--clinical-teal-soft);
    color: var(--clinical-teal);
}

.promise-card:hover .icon-pill,
.conditions-card:hover .conditions-card-icon,
.process-step:hover .process-icon {
    background: var(--brand);
    color: #ffffff;
}

.condition-card,
.conditions-card {
    min-height: 184px;
}

.condition-card::after {
    color: rgba(53, 23, 80, 0.18);
}

#pricing .section-heading {
    margin-inline: auto;
    text-align: center;
}

#pricing .pricing-grid,
.pricing-note-bar {
    width: min(980px, 100%);
    margin-inline: auto;
}

#pricing .pricing-card {
    padding: 1.85rem;
}

#pricing .pricing-card:first-child {
    border-color: rgba(53, 23, 80, 0.18);
}

#pricing .pricing-card:nth-child(2) {
    border-color: rgba(15, 118, 110, 0.26);
    background: linear-gradient(180deg, #ffffff 0%, #f4fff0 100%);
}

.price-tag,
.pp-card-price {
    color: var(--clinical-teal);
    font-size: 1.52rem;
}

.pricing-features i,
.pricing-note-bar i,
.how-step-list i,
.contact-page-notes i,
.cr-cond-conditions i {
    color: var(--clinical-teal);
}

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

.process-step::before {
    background: linear-gradient(180deg, var(--mint), var(--clinical-teal));
}

.process-step summary {
    min-height: 108px;
    background: rgba(255, 255, 255, 0.82);
}

.process-step p {
    margin: -0.25rem 1.15rem 1.25rem 6.35rem;
}

.process-icon {
    background: var(--mint);
}

.process-icon::after {
    background: var(--clinical-teal);
}

.tp-review-slider {
    padding-top: 0.95rem;
}

.tp-review-card {
    min-height: 315px;
}

.faq-sidebar {
    padding: 1.35rem;
}

.faq-list summary::after,
.faq-hub-accordion summary::after,
.transfer-faq-list summary::after {
    background: var(--mint);
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(53, 23, 80, 0.98), rgba(23, 7, 37, 1) 68%),
        var(--brand-950);
}

.contact-section .eyebrow,
.cr-cond-cta .eyebrow,
.cr-cond-quote-card .eyebrow {
    border-color: rgba(205, 247, 183, 0.24);
    background: rgba(205, 247, 183, 0.13);
    color: var(--mint);
}

.contact-panel {
    box-shadow: 0 38px 96px rgba(0, 0, 0, 0.32);
}

.generic-prose {
    font-size: 1.06rem;
}

@media (max-width: 1180px) {
    .site-header-inner {
        min-height: 76px;
    }

    .primary-nav {
        background: rgba(255, 255, 255, 0.98);
    }
}

@media (max-width: 1024px) {
    .section-heading h2 {
        font-size: 2.18rem;
    }

    .home .section {
        padding: 4.35rem 0;
    }

    .hero-media {
        min-height: 650px;
    }

    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        align-content: center;
        padding: 3.8rem 0 4.6rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .hero-care-panel {
        width: min(520px, 100%);
    }

    #process .process-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header-inner {
        min-height: 68px;
    }

    .section-heading h2 {
        font-size: 1.86rem;
    }

    .hero-media {
        min-height: 690px;
    }

    .hero-media::before {
        background:
            linear-gradient(180deg, rgba(23, 7, 37, 0.20) 0%, rgba(23, 7, 37, 0.86) 74%, rgba(23, 7, 37, 0.94) 100%),
            linear-gradient(90deg, rgba(23, 7, 37, 0.48), rgba(23, 7, 37, 0.24));
    }

    .hero-content-wrap {
        align-content: end;
        padding: 4.6rem 0 5.6rem;
    }

    .hero-content {
        max-width: 100%;
        min-width: 0;
    }

    .hero-care-panel {
        display: none;
    }

    .hero-eyebrow {
        min-height: 34px;
        font-size: 0.76rem;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: 2.08rem;
        line-height: 1.04;
        overflow-wrap: break-word;
    }

    .hero-content p:not(.hero-eyebrow) {
        max-width: 100%;
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .hero-actions .btn {
        min-height: 50px;
    }

    .hero-content .hero-actions .btn-light {
        display: none;
    }

    .hero-trust-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.32rem;
    }

    .hero-trust-row span {
        width: auto;
        min-width: 0;
        min-height: 30px;
        flex: 1 1 0;
        justify-content: center;
        gap: 0;
        padding: 0.34rem 0.28rem;
        font-size: 0.61rem;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }

    .hero-trust-row i {
        display: none;
    }

    .hero-proof-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-proof-rail span {
        display: grid;
        gap: 0.08rem;
        place-items: center;
        min-height: 54px;
        padding: 0.5rem 0.26rem;
        font-size: 0.58rem;
        line-height: 1.12;
        text-align: center;
    }

    .hero-proof-rail span + span {
        border-top: 0;
        border-left: 1px solid rgba(205, 247, 183, 0.20);
    }

    .hero-proof-rail strong {
        font-size: 0.72rem;
    }

    .survey-copy h2 {
        font-size: 2.08rem;
    }

    .survey-copy h2 span {
        font-size: 3rem;
    }

    .who-for-visual::before {
        inset: 28px 0 36px 24px;
    }

    .promise-card {
        min-height: auto;
    }
}

@media (max-width: 420px) {
    .hero-media {
        min-height: 670px;
    }

    .hero-content h1 {
        font-size: 2.02rem;
    }
}

@media (max-width: 520px) {
    .hero-content-wrap {
        width: min(calc(100% - 24px), 366px);
        margin-left: 12px;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust-row,
    .hero-proof-rail {
        width: 100%;
    }
}

/* Clean header hover and mobile hero alignment */
.main-menu a,
.main-menu-more-toggle {
    overflow: visible;
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu-more.is-open > .main-menu-more-toggle,
.main-menu-more-toggle:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.main-menu a::after,
.main-menu-more-toggle::after {
    right: 0.68rem;
    bottom: 2px;
    left: 0.68rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--mint) 12%, var(--clinical-teal) 50%, var(--mint) 88%, transparent 100%);
}

.main-menu-dropdown a:hover {
    background: transparent;
}

@media (max-width: 760px) {
    .hero-media {
        min-height: 620px;
    }

    .hero-content-wrap {
        width: min(calc(100% - 28px), 390px);
        margin-right: auto;
        margin-left: auto;
        align-content: center;
        padding: 2.65rem 0 5.15rem;
    }

    .hero-content {
        display: grid;
        width: 100%;
        align-self: center;
    }

    .hero-eyebrow,
    .hero-trust-row {
        display: none;
    }

    .hero-content h1 {
        max-width: 100%;
        margin-bottom: 0.86rem;
        font-size: clamp(1.9rem, 7.2vw, 2.12rem);
        line-height: 1.07;
        text-wrap: balance;
    }

    .hero-content p:not(.hero-eyebrow) {
        max-width: 34rem;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero-actions {
        width: 100%;
        margin-top: 1.22rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 54px;
        border-radius: var(--radius-button);
    }

    .hero-proof-rail {
        width: 100%;
        margin-top: 0.92rem;
        border-color: rgba(205, 247, 183, 0.34);
        background: rgba(23, 7, 37, 0.48);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
        overflow: hidden;
    }

    .hero-proof-rail span {
        min-height: 58px;
        padding: 0.58rem 0.26rem;
        font-size: 0.62rem;
        line-height: 1.12;
    }

    .hero-proof-rail strong {
        font-size: 0.78rem;
    }
}

@media (max-width: 420px) {
    .hero-media {
        min-height: 600px;
    }

    .hero-content-wrap {
        width: min(calc(100% - 24px), 372px);
        padding-top: 2.35rem;
        padding-bottom: 4.85rem;
    }

    .hero-content h1 {
        font-size: clamp(1.82rem, 8.15vw, 1.98rem);
    }
}

/* Homepage premium section unification */
.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) {
    position: relative;
    isolation: isolate;
    border-top: 1px solid rgba(53, 23, 80, 0.08);
    border-bottom: 1px solid rgba(53, 23, 80, 0.05);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 248, 0.72)),
        var(--paper-3);
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 10%, rgba(205, 247, 183, 0.36), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(15, 118, 110, 0.10), transparent 28%),
        linear-gradient(90deg, rgba(53, 23, 80, 0.035), transparent 36%, rgba(205, 247, 183, 0.10));
}

.home #about,
.home #reviews,
.home #faq {
    background:
        linear-gradient(180deg, #fffdf9 0%, #f8f3fb 100%),
        var(--paper-2);
}

.home #who-for,
.home #conditions {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbf7ff 48%, #fffdf9 100%),
        var(--paper-3);
}

.home #pricing,
.home #process,
.home #transfer {
    background:
        linear-gradient(180deg, rgba(205, 247, 183, 0.22) 0%, #fffdf9 44%, #f8f3fb 100%),
        var(--paper-4);
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) > .container {
    position: relative;
    z-index: 1;
}

.home :is(.section-heading, .survey-copy, .who-for-copy) {
    position: relative;
}

.home :is(.section-heading h2, .survey-copy h2, .split-heading h2) {
    color: var(--brand-900);
    text-wrap: balance;
}

.home :is(.section-heading .eyebrow, .split-heading .eyebrow) {
    border-color: rgba(15, 118, 110, 0.16);
    background: linear-gradient(180deg, rgba(231, 246, 243, 0.96), rgba(205, 247, 183, 0.18));
    color: var(--clinical-teal);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.08);
}

.home :is(.section-heading p:not(.eyebrow), .split-heading > p, .survey-copy p) {
    color: var(--muted);
}

.home :is(.survey-frame, .who-for-image, .who-for-product-image) {
    border: 1px solid rgba(53, 23, 80, 0.12);
    box-shadow: 0 28px 80px rgba(53, 23, 80, 0.15);
}

.home .survey-frame {
    background: linear-gradient(180deg, #ffffff 0%, #f7fff2 100%);
}

.home .survey-proof-grid span,
.home .pricing-note-bar span {
    border-color: rgba(53, 23, 80, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 44px rgba(53, 23, 80, 0.10);
}

.home :is(.promise-card, .condition-card, .pricing-card, .tp-review-card, .faq-group) {
    border-color: rgba(53, 23, 80, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 249, 0.96) 66%, rgba(249, 255, 244, 0.88) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 22px 58px rgba(53, 23, 80, 0.11);
}

.home :is(.promise-card, .condition-card, .pricing-card, .tp-review-card):hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, 0.26);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.94) inset, 0 34px 82px rgba(53, 23, 80, 0.17);
}

.home :is(.promise-card, .condition-card, .tp-review-card)::before {
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal), var(--brand));
}

.home .promise-card {
    align-items: start;
}

.home .promise-card .icon-pill,
.home .tp-avatar,
.home .process-icon {
    background: linear-gradient(180deg, var(--mint) 0%, #f4ffe9 100%);
    color: var(--brand-900);
    box-shadow: 0 12px 28px rgba(205, 247, 183, 0.36);
}

.home .promise-card:hover .icon-pill,
.home .process-step:hover .process-icon {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-900) 100%);
    color: #ffffff;
}

.home .condition-group > h3 {
    color: var(--brand-900);
}

.home .condition-group > h3::before {
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal));
}

.home .condition-card {
    min-height: 188px;
    padding: 1.3rem 3.2rem 1.3rem 1.35rem;
}

.home .condition-card::after {
    color: rgba(53, 23, 80, 0.13);
    font-size: 0.9rem;
}

.home #pricing .pricing-card {
    border-color: rgba(53, 23, 80, 0.13);
}

.home #pricing .pricing-card::before {
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--clinical-teal));
}

.home #pricing .pricing-card:nth-child(2) {
    border-color: rgba(205, 247, 183, 0.76);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fff2 100%);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.92) inset, 0 34px 86px rgba(53, 23, 80, 0.16);
}

.home .pricing-badge {
    border-color: rgba(15, 118, 110, 0.18);
    background: var(--clinical-teal-soft);
    color: var(--clinical-teal);
}

.home .price-tag {
    color: var(--brand);
}

.home .process-step {
    border-color: rgba(53, 23, 80, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 249, 0.94) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 22px 58px rgba(53, 23, 80, 0.11);
}

.home .process-step::before {
    width: 5px;
    background: linear-gradient(180deg, var(--mint), var(--clinical-teal), var(--brand));
}

.home .process-step summary {
    background: linear-gradient(180deg, rgba(249, 255, 244, 0.86), rgba(255, 255, 255, 0.76));
}

.home .process-step summary:hover,
.home .process-step[open] summary {
    background: linear-gradient(180deg, rgba(205, 247, 183, 0.28), rgba(255, 255, 255, 0.88));
}

.home .transfer-grid .process-step {
    min-height: 206px;
}

.home .tp-review-slider {
    margin-inline: -0.35rem;
    padding-inline: 0.35rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.home .tp-review-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
}

.home .tp-card-head {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(53, 23, 80, 0.08);
}

.home .tp-stars,
.home .tp-brand-star {
    color: var(--clinical-teal);
}

.home .tp-stars span {
    background: linear-gradient(90deg, var(--clinical-teal) var(--star-fill, 100%), rgba(53, 23, 80, 0.16) var(--star-fill, 100%));
    -webkit-background-clip: text;
    background-clip: text;
}

.home .faq-sidebar,
.home .faq-group,
.home .faq-list details {
    border-color: rgba(53, 23, 80, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 48px rgba(53, 23, 80, 0.09);
}

.home .contact-section {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 18%, rgba(205, 247, 183, 0.15), transparent 29%),
        radial-gradient(circle at 86% 14%, rgba(15, 118, 110, 0.14), transparent 26%),
        linear-gradient(135deg, var(--brand) 0%, var(--brand-900) 42%, var(--brand-950) 100%);
}

.home .contact-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.home .contact-grid {
    position: relative;
    z-index: 1;
}

.home .contact-copy h2 {
    max-width: 12ch;
    color: #ffffff;
    text-wrap: balance;
}

.home .contact-copy > p:not(.eyebrow) {
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.78);
}

.home .contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home .contact-list li {
    width: auto;
    padding: 0.74rem 0.9rem;
    border-color: rgba(205, 247, 183, 0.20);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.home .contact-panel {
    border-color: rgba(205, 247, 183, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.34);
}

.home .contact-form {
    gap: 1rem;
}

.home .contact-form input,
.home .contact-form textarea {
    border-color: rgba(53, 23, 80, 0.14);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(53, 23, 80, 0.04);
}

.home .contact-form input:focus,
.home .contact-form textarea:focus {
    border-color: var(--clinical-teal);
    box-shadow: 0 0 0 4px rgba(205, 247, 183, 0.56);
}

.home .contact-form .btn-primary {
    min-height: 54px;
}

@media (max-width: 1024px) {
    .home :is(.condition-grid, .conditions-cards) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home .contact-copy h2 {
        max-width: 15ch;
    }
}

@media (max-width: 760px) {
    .home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq, #contact) {
        padding-top: 3.55rem;
        padding-bottom: 3.55rem;
    }

    .home :is(.section-heading h2, .survey-copy h2, .split-heading h2) {
        font-size: 1.92rem;
        line-height: 1.12;
    }

    .home :is(.survey-grid, .who-for-grid, .contact-grid) {
        gap: 2rem;
    }

    .home :is(.condition-grid, .conditions-cards, .pricing-grid, #pricing .pricing-grid, .transfer-grid) {
        grid-template-columns: 1fr;
    }

    .home .pricing-note-bar {
        grid-template-columns: 1fr;
    }

    .home .promise-card,
    .home .condition-card,
    .home .pricing-card,
    .home .tp-review-card,
    .home .contact-panel {
        box-shadow: 0 18px 46px rgba(53, 23, 80, 0.10);
    }

    .home .tp-review-card {
        flex-basis: min(86vw, 360px);
        min-height: 300px;
    }

    .home .contact-copy h2 {
        max-width: 100%;
    }

    .home .contact-list {
        display: grid;
    }

    .home .contact-list li {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .home .promise-grid {
        grid-template-columns: 1fr;
    }

    .home .process-step summary {
        grid-template-columns: 54px minmax(0, 1fr) 24px;
        min-height: 92px;
        padding: 0.9rem;
    }

    .home .process-step p,
    .home .transfer-grid .process-step p {
        margin: -0.1rem 0.9rem 1rem 5.35rem;
    }

    .home .contact-panel {
        padding: 1.12rem;
    }
}

/* Premium homepage section redesign */
@media (max-width: 760px) {
    .header-actions {
        display: inline-flex;
    }

    .header-right {
        gap: 0.5rem;
    }

    .site-header .header-actions :is(a, button, .button, input[type="submit"]) {
        min-width: 74px;
        min-height: 42px;
        padding: 0.68rem 0.92rem;
        font-size: 0.78rem;
        box-shadow: 0 12px 28px rgba(53, 23, 80, 0.20);
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 520px) {
    .site-header-inner {
        gap: 0.5rem;
    }

    .header-logo {
        height: 44px;
        max-width: 170px;
    }

    .site-header .header-actions :is(a, button, .button, input[type="submit"]) {
        min-width: 68px;
        min-height: 40px;
        padding: 0.62rem 0.76rem;
        font-size: 0.74rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 370px) {
    .header-logo {
        max-width: 150px;
    }

    .site-header .header-actions :is(a, button, .button, input[type="submit"]) {
        min-width: 62px;
        padding-inline: 0.62rem;
    }
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq)::after {
    display: none;
}

.home #about {
    background: var(--brand);
    color: #ffffff;
}

.home #about :is(h2, h2 span, p) {
    color: #ffffff;
}

.home #about .survey-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.home #about .survey-copy h2 span,
.home #about .survey-proof-grid strong {
    color: var(--mint);
}

.home #about .survey-divider {
    background: var(--mint);
}

.home #about .survey-proof-grid span {
    border-color: rgba(205, 247, 183, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.home #about .survey-frame {
    border-color: rgba(205, 247, 183, 0.34);
    background: #ffffff;
    box-shadow: 0 32px 88px rgba(0, 0, 0, 0.28);
}

.home #who-for,
.home #reviews {
    background: var(--paper-3);
}

.home #who-for .who-for-visual::before {
    inset: 34px -18px 76px 48px;
    border: 0;
    background: var(--brand);
    box-shadow: 0 32px 78px rgba(53, 23, 80, 0.18);
}

.home #who-for .who-for-image,
.home #who-for .who-for-product-image {
    border-color: rgba(53, 23, 80, 0.14);
    background: #ffffff;
}

.home #who-for .promise-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    min-height: 206px;
    border-color: rgba(53, 23, 80, 0.12);
    border-top: 4px solid var(--brand);
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(53, 23, 80, 0.10);
}

.home #who-for .promise-card::before {
    display: none;
}

.home #who-for .icon-pill,
.home #reviews .tp-avatar {
    background: var(--mint);
    color: var(--brand-900);
}

.home #conditions,
.home #pricing,
.home #faq {
    background: var(--paper-2);
}

.home #conditions .condition-grid {
    gap: 1.1rem;
}

.home #conditions .condition-card {
    min-height: 158px;
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    border-color: rgba(53, 23, 80, 0.12);
    border-top: 4px solid var(--brand);
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(53, 23, 80, 0.09);
}

.home #conditions .condition-card::before {
    display: none;
}

.home #conditions .condition-group > h3::before {
    background: var(--mint);
}

.home #pricing .pricing-card {
    border-color: rgba(53, 23, 80, 0.12);
    border-top: 4px solid var(--brand);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(53, 23, 80, 0.10);
}

.home #pricing .pricing-card::before {
    display: none;
}

.home #pricing .pricing-card:nth-child(2) {
    border-color: rgba(53, 23, 80, 0.12);
    background: #ffffff;
}

.home #pricing .pricing-badge {
    border-color: rgba(53, 23, 80, 0.12);
    background: var(--mint);
    color: var(--brand-900);
}

.home #pricing .price-tag {
    color: var(--brand);
}

.home #pricing .pricing-note-bar span {
    border-color: rgba(53, 23, 80, 0.10);
    background: #ffffff;
}

.home #process {
    background: var(--brand-950);
    color: #ffffff;
}

.home #process :is(h2, h3),
.home #process .section-heading p:not(.eyebrow) {
    color: #ffffff;
}

.home #process .eyebrow {
    border-color: rgba(205, 247, 183, 0.24);
    background: rgba(205, 247, 183, 0.12);
    color: var(--mint);
}

.home #process .process-step {
    border-color: rgba(205, 247, 183, 0.22);
    background: #ffffff;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.22);
}

.home #process .process-step::before {
    background: var(--mint);
}

.home #process .process-step summary {
    background: #ffffff;
}

.home #process .process-step h3 {
    color: var(--brand-900);
}

.home #process .process-step p {
    color: var(--muted);
}

.home #process .btn-primary {
    border-color: var(--mint) !important;
    background: var(--mint) !important;
    color: var(--brand-900) !important;
}

.home #transfer {
    background: var(--mint);
}

.home #transfer :is(h2, h3),
.home #transfer .section-heading p:not(.eyebrow) {
    color: var(--brand-900);
}

.home #transfer .eyebrow {
    border-color: rgba(53, 23, 80, 0.14);
    background: rgba(255, 255, 255, 0.66);
    color: var(--brand);
}

.home #transfer .process-step {
    border-color: rgba(53, 23, 80, 0.13);
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(53, 23, 80, 0.13);
}

.home #transfer .process-step::before {
    background: var(--brand);
}

.home #transfer .process-step summary {
    background: #ffffff;
}

.home #reviews .tp-review-card {
    border-color: rgba(53, 23, 80, 0.12);
    border-top: 4px solid var(--brand);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(53, 23, 80, 0.10);
}

.home #reviews .tp-review-card::before {
    display: none;
}

.home #reviews .tp-brandline strong,
.home #reviews .tp-review-card h3 {
    color: var(--brand-900);
}

.home #faq .faq-sidebar {
    border-color: rgba(53, 23, 80, 0.16);
    background: var(--brand);
    box-shadow: 0 28px 72px rgba(53, 23, 80, 0.18);
}

.home #faq .faq-sidebar h2,
.home #faq .faq-sidebar .eyebrow {
    color: #ffffff;
}

.home #faq .faq-sidebar .eyebrow {
    border-color: rgba(205, 247, 183, 0.22);
    background: rgba(205, 247, 183, 0.13);
    color: var(--mint);
}

.home #faq .faq-sidebar a {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.home #faq .faq-sidebar a:hover {
    border-color: var(--mint);
    background: rgba(205, 247, 183, 0.14);
}

.home #faq .faq-group {
    border-color: rgba(53, 23, 80, 0.12);
    border-top: 4px solid var(--brand);
    background: #ffffff;
}

.home #faq .faq-list details {
    background: var(--paper-3);
}

@media (max-width: 1024px) {
    .home #who-for .who-for-visual::before {
        inset: 28px 0 58px 28px;
    }

    .home #who-for .promise-card {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .home #about .survey-proof-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home #who-for .promise-card,
    .home #conditions .condition-card,
    .home #pricing .pricing-card,
    .home #process .process-step,
    .home #transfer .process-step,
    .home #reviews .tp-review-card,
    .home #faq .faq-group {
        box-shadow: 0 18px 44px rgba(53, 23, 80, 0.10);
    }
}

/* Homepage consistency pass */
.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) {
    padding: clamp(4.8rem, 6vw, 6.4rem) 0;
    border-top: 1px solid rgba(53, 23, 80, 0.08);
    border-bottom: 1px solid rgba(53, 23, 80, 0.05);
    background: var(--paper-3);
    color: var(--ink);
}

.home :is(#conditions, #process, #reviews) {
    background: var(--paper-3);
}

.home :is(#who-for, #pricing, #transfer, #faq) {
    background: var(--paper-2);
}

.home #about {
    background: var(--brand);
    color: #ffffff;
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq)::after,
.home #who-for .who-for-visual::before {
    display: none;
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) :is(h2, h3, h4) {
    color: var(--brand-900);
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) :is(p, .section-heading p:not(.eyebrow), .split-heading > p) {
    color: var(--muted);
}

.home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) .eyebrow {
    border-color: rgba(53, 23, 80, 0.12);
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 12px 28px rgba(53, 23, 80, 0.07);
}

.home :is(.section-heading, .split-heading) {
    margin-bottom: 2rem;
}

.home :is(.survey-grid, .who-for-grid) {
    gap: clamp(2.3rem, 5vw, 4.6rem);
}

.home #about .survey-copy h2,
.home #about .survey-copy h2 span {
    color: #ffffff;
}

.home #about .survey-copy h2 span,
.home #about .survey-proof-grid strong {
    color: var(--mint);
}

.home #about .survey-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.home :is(.survey-frame, .who-for-image, .who-for-product-image) {
    border: 1px solid rgba(53, 23, 80, 0.12);
    background: #ffffff;
    box-shadow: 0 28px 76px rgba(53, 23, 80, 0.14);
}

.home #about .survey-frame {
    border-color: rgba(205, 247, 183, 0.28);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.26);
}

.home .survey-copy h2 span {
    color: var(--brand-900);
}

.home #about .survey-copy h2 span {
    color: var(--mint);
}

.home .survey-divider,
.home .condition-group > h3::before,
.home .conditions-group > h3::before {
    background: var(--mint);
}

.home .survey-proof-grid span,
.home .pricing-note-bar span,
.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card, .faq-group) {
    border: 1px solid rgba(53, 23, 80, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(53, 23, 80, 0.09);
}

.home #about .survey-proof-grid span {
    border-color: rgba(205, 247, 183, 0.26);
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.home #about.survey-section .survey-copy > p {
    color: rgba(255, 255, 255, 0.86) !important;
}

.home #about.survey-section .survey-proof-grid span {
    color: rgba(255, 255, 255, 0.82) !important;
}

.home #about.survey-section .survey-proof-grid strong {
    color: var(--mint) !important;
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card, .faq-group) {
    border-top: 4px solid var(--brand);
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card, .faq-group)::before,
.home #pricing .pricing-card::before,
.home :is(#process, #transfer) .process-step::before {
    display: none;
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card):hover {
    transform: translateY(-4px);
    border-color: rgba(53, 23, 80, 0.18);
    box-shadow: 0 30px 76px rgba(53, 23, 80, 0.14);
}

.home :is(.icon-pill, .process-icon, .tp-avatar, .process-step-chevron) {
    background: var(--mint);
    color: var(--brand-900);
}

.home :is(.faq-list, .faq-hub-accordion, .transfer-faq-list) summary::after {
    background: var(--mint);
    color: var(--brand-900);
}

.home .survey-proof-grid strong,
.home .price-tag {
    color: var(--brand);
}

.home #who-for .promise-card {
    min-height: 188px;
}

.home #who-for .who-for-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
    align-items: start;
}

.home #who-for .who-for-copy {
    align-self: start;
    padding-top: 0;
}

.home #who-for .who-for-card-eyebrow {
    width: fit-content;
    margin: 0 0 1.2rem;
}

.home #who-for .promise-grid {
    align-items: stretch;
    gap: 1.05rem;
}

.home #who-for .promise-card {
    min-height: 210px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-content: start;
    align-items: start;
    gap: 1rem;
    padding: 1.45rem;
}

.home #who-for .promise-card .icon-pill {
    width: 52px;
    height: 52px;
}

.home #who-for .promise-card h3 {
    margin: 0 0 0.42rem;
    font-size: 1.02rem;
    line-height: 1.16;
}

.home #who-for .promise-card p {
    max-width: 32ch;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.52;
}

.home #who-for .who-for-heading {
    max-width: 720px;
    margin: 0 0 1.35rem;
}

.home #who-for .who-for-heading h2 {
    max-width: 12.2ch;
    margin-bottom: 0.8rem;
    font-size: clamp(2.45rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.home #who-for .who-for-heading > p:not(.eyebrow) {
    max-width: 60ch;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.62;
}

@media (min-width: 761px) {
    .home #who-for .who-for-grid {
        align-items: start;
    }

    .home #who-for .who-for-visual {
        position: relative;
        align-self: start;
        min-height: 0;
        display: grid;
        gap: 0;
    }

    .home #who-for .who-for-image {
        position: relative;
        top: auto;
        width: 100%;
        height: min(640px, 52vw);
        min-height: 520px;
        object-position: center center;
    }
}

.home #who-for .who-for-product-image {
    display: none;
}

.home #conditions .condition-card {
    min-height: 158px;
}

@media (min-width: 1025px) {
    .home #conditions .section-heading {
        max-width: none;
    }

    .home #conditions .section-heading h2 {
        max-width: none;
        white-space: nowrap;
        font-size: clamp(2.5rem, 3.7vw, 3.35rem);
    }

    .home #reviews .section-heading {
        max-width: none;
    }

    .home #reviews .section-heading h2 {
        max-width: none;
        white-space: nowrap;
        font-size: clamp(2.45rem, 3.55vw, 3.25rem);
    }
}

.home #pricing .pricing-card,
.home #pricing .pricing-card:nth-child(2) {
    background: #ffffff;
    border-color: rgba(53, 23, 80, 0.12);
    border-top-color: var(--brand);
}

.home #pricing .pricing-badge {
    border-color: rgba(53, 23, 80, 0.12);
    background: var(--mint);
    color: var(--brand-900);
}

.home :is(#process, #transfer) .process-stack,
.home :is(#process, #transfer) .transfer-grid {
    gap: 1.15rem;
}

.home :is(#process, #transfer) .process-step {
    min-height: 100%;
    overflow: hidden;
}

.home :is(#process, #transfer) .process-step summary {
    grid-template-columns: 64px minmax(0, 1fr);
    background: #ffffff;
    cursor: default;
    pointer-events: none;
}

.home :is(#process, #transfer) .process-step > p {
    display: block;
    margin: -0.15rem 1.2rem 1.25rem 6.45rem;
    color: var(--muted);
}

.home :is(#process, #transfer) .process-step-chevron {
    display: none;
}

.home :is(#process, #transfer) .section-action-center .btn-primary {
    border-color: var(--brand) !important;
    background: var(--brand) !important;
    color: #ffffff !important;
}

.home .tp-review-slider {
    margin-inline: -0.75rem;
    padding: 0.7rem 0.75rem 1.55rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.home .tp-review-track {
    display: flex;
    gap: 1.1rem;
    align-items: stretch;
    will-change: transform;
}

.home .tp-review-card {
    flex: 0 0 clamp(320px, 31vw, 410px);
    min-width: clamp(320px, 31vw, 410px);
    min-height: 330px;
}

.home #reviews .tp-review-card,
.home #reviews .tp-review-card:hover {
    box-shadow: none;
}

.home .tp-stars,
.home .tp-brand-star {
    color: var(--brand);
}

.home #faq .faq-sidebar {
    position: sticky;
    top: clamp(112px, 14vh, 150px);
    border-color: rgba(53, 23, 80, 0.12);
    background: var(--brand);
    box-shadow: 0 28px 72px rgba(53, 23, 80, 0.18);
}

.home #faq .faq-grid-layout {
    align-items: stretch;
}

.home #faq .faq-sidebar-sticky {
    position: relative;
    align-self: stretch;
    min-height: 100%;
}

.home #faq .faq-sidebar :is(h2, .eyebrow) {
    color: #ffffff;
}

.home #faq .faq-sidebar .eyebrow {
    border-color: rgba(205, 247, 183, 0.22);
    background: rgba(205, 247, 183, 0.14);
    color: var(--mint);
}

.home #faq .faq-sidebar a {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.home #faq .faq-sidebar a:hover {
    border-color: var(--mint);
    background: rgba(205, 247, 183, 0.14);
}

.home #faq .faq-list details {
    background: var(--paper-3);
}

@media (max-width: 1024px) {
    .home .tp-review-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home :is(#about, #who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) {
        padding: 3.8rem 0;
    }

    .home .tp-review-track {
        display: flex;
    }

    .home .tp-review-card {
        flex-basis: min(84vw, 360px);
        min-width: min(84vw, 360px);
    }

    .home #who-for .who-for-visual,
    .home #faq .faq-sidebar,
    .home #faq .faq-sidebar-sticky {
        position: static;
        min-height: 0;
    }

    .home #who-for .who-for-image {
        height: 360px;
        min-height: 0;
    }

    .home #who-for .who-for-grid {
        grid-template-columns: 1fr;
    }

    .home #who-for .who-for-copy {
        order: 2;
    }

    .home #who-for .who-for-visual {
        order: 1;
        display: grid;
        gap: 1.2rem;
    }

    .home #who-for .promise-card {
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 0;
        padding: 1.2rem;
    }

    .home #who-for .who-for-heading {
        margin-bottom: 0;
    }

    .home #who-for .who-for-heading h2 {
        max-width: 12.2ch;
        font-size: 2.35rem;
    }

    .home :is(#process, #transfer) .process-step summary {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .home :is(#process, #transfer) .process-step > p {
        margin: -0.1rem 1rem 1.05rem 5.5rem;
    }
}

/* Solid brand-section polish */
.home {
    --cr-solid-paper: #fffdf9;
    --cr-solid-soft: #f6f1f8;
    --cr-solid-mint: #CDF7B7;
    --cr-solid-brand: #351750;
}

.home :is(#who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) {
    overflow-x: clip;
    overflow-y: visible;
    background-image: none !important;
}

.home :is(#conditions, #process, #reviews) {
    background: var(--cr-solid-paper) !important;
}

.home :is(#who-for, #pricing, #faq) {
    background: var(--cr-solid-soft) !important;
}

.home #transfer {
    background: var(--cr-solid-mint) !important;
}

.home :is(#who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) > .container {
    width: min(1180px, calc(100% - 64px));
}

.home :is(#conditions, #pricing, #process, #transfer, #reviews) .section-heading {
    max-width: 900px;
    margin-bottom: clamp(1.8rem, 3vw, 2.55rem);
}

.home #pricing .section-heading {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.home #process .section-heading,
.home #transfer .section-heading {
    max-width: 820px;
}

.home #conditions .section-heading,
.home #reviews .section-heading {
    max-width: 100%;
}

.home :is(#conditions, #pricing, #process, #transfer, #reviews) .section-heading h2 {
    max-width: 100%;
    margin-bottom: 0;
    color: var(--cr-solid-brand);
    line-height: 1.08;
    text-wrap: balance;
}

.home :is(#conditions, #pricing, #process, #transfer, #reviews) .eyebrow,
.home #who-for .who-for-card-eyebrow {
    border-color: rgba(53, 23, 80, 0.14);
    background: var(--cr-solid-mint);
    color: var(--cr-solid-brand);
    box-shadow: none;
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card, .faq-group, .pricing-note-bar span) {
    background: #ffffff !important;
    background-image: none !important;
    border: 1px solid rgba(53, 23, 80, 0.14);
    border-top: 3px solid var(--cr-solid-brand);
    box-shadow: 0 16px 34px rgba(53, 23, 80, 0.055);
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step, .tp-review-card, .faq-group)::before {
    display: none !important;
}

.home :is(.promise-card, .condition-card, .pricing-card, .process-step):hover {
    border-color: rgba(53, 23, 80, 0.22);
    box-shadow: 0 20px 42px rgba(53, 23, 80, 0.08);
}

.home #reviews .tp-review-card,
.home #reviews .tp-review-card:hover {
    box-shadow: none;
}

.home .condition-group {
    margin-top: 0;
}

.home .condition-groups {
    gap: clamp(2.2rem, 4vw, 3.4rem);
}

.home .condition-group > h3 {
    margin-bottom: 1rem;
    color: var(--cr-solid-brand);
}

.home .condition-grid {
    gap: 1.05rem;
}

.home #conditions .condition-card {
    min-height: 148px;
    padding: 1.25rem;
}

.home #pricing .pricing-grid {
    max-width: 900px;
    margin-inline: auto;
}

.home :is(#process, #transfer) .process-stack,
.home :is(#process, #transfer) .transfer-grid {
    align-items: stretch;
    gap: 1.15rem;
}

.home :is(#process, #transfer) .process-step summary {
    min-height: 92px;
    padding: 1.15rem 1.2rem;
}

.home :is(#process, #transfer) .process-step > p {
    margin: -0.05rem 1.2rem 1.2rem 6.35rem;
    line-height: 1.58;
}

.home #faq .faq-group {
    padding: 1.25rem;
}

@media (min-width: 1025px) {
    .home #conditions .section-heading h2,
    .home #reviews .section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2rem, 2.3vw, 2.35rem);
    }

    .home #process .section-heading h2,
    .home #transfer .section-heading h2 {
        font-size: clamp(2.35rem, 3vw, 3.05rem);
    }
}

@media (max-width: 1024px) {
    .home :is(#who-for, #conditions, #pricing, #process, #transfer, #reviews, #faq) > .container {
        width: min(100% - 32px, 760px);
    }

    .home #conditions .section-heading h2,
    .home #reviews .section-heading h2 {
        white-space: normal;
    }
}

/* Final requested layout fixes */
.home #who-for .who-for-title {
    max-width: none;
}

.home #who-for .who-for-title span {
    display: block;
}

.home #pricing .pricing-note-bar {
    display: none !important;
}

.home #process {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf9 0%, #f6f1f8 54%, #effbe7 100%) !important;
    color: var(--brand-900);
}

.home #process .process-layout {
    max-width: 1140px;
}

.home #process .section-heading {
    max-width: 930px;
    margin-inline: auto;
    text-align: center;
}

.home #process .section-heading h2 {
    color: var(--brand-900);
}

.home #process .eyebrow {
    border-color: rgba(53, 23, 80, 0.14);
    background: var(--mint);
    color: var(--brand);
}

.home #process .process-stack.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 1080px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    counter-reset: none;
}

.home #process .process-flow-step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1rem;
    min-width: 0;
    padding: 0 0.95rem;
    text-align: center;
}

.home #process .process-flow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 66px;
    left: calc(50% + 72px);
    z-index: 0;
    width: calc(100% - 116px);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), #6b3f96, var(--mint));
    background-size: 180% 100%;
    opacity: 0.8;
    animation: cr-flow-shimmer 4.2s ease-in-out infinite;
}

.home #process .process-flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 60px;
    right: -6px;
    z-index: 1;
    width: 15px;
    height: 15px;
    border-top: 4px solid var(--brand);
    border-right: 4px solid var(--brand);
    transform: rotate(45deg);
}

.home #process .process-flow-node {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(205, 247, 183, 0.34);
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 251, 231, 0.92)),
        var(--mint-100);
    box-shadow: 0 22px 54px rgba(53, 23, 80, 0.14);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.home #process .process-flow-node::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.home #process .process-flow-step:hover .process-flow-node {
    transform: translateY(-7px) scale(1.02);
    border-color: rgba(205, 247, 183, 0.9);
    box-shadow: 0 30px 74px rgba(53, 23, 80, 0.18);
}

.home #process .process-flow-node img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.home #process .process-flow-node i {
    color: var(--brand);
    font-size: 3rem;
}

.home #process .process-flow-node span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(53, 23, 80, 0.22);
}

.home #process .process-flow-copy {
    display: grid;
    gap: 0.45rem;
}

.home #process .process-flow-copy h3 {
    margin: 0;
    color: var(--brand-900);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    line-height: 1.14;
}

.home #process .process-flow-copy p {
    max-width: 24ch;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.home #process .section-action-center {
    justify-content: center;
    margin-top: clamp(2rem, 3vw, 2.6rem);
}

.home #process .section-action-center .btn-primary {
    min-width: min(100%, 330px);
    border-color: var(--brand) !important;
    background: var(--brand) !important;
    color: #ffffff !important;
}

.home #process .section-action-center .btn-primary:hover {
    border-color: var(--mint) !important;
    background: var(--brand-900) !important;
}

.home #transfer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255, 253, 249, 0.98) 0%, rgba(246, 241, 248, 0.94) 54%, rgba(239, 251, 231, 0.9) 100%),
        var(--paper-3) !important;
    color: var(--brand-900);
}

.home #transfer .transfer-shell {
    max-width: 980px;
}

.home #transfer .section-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.home #transfer .section-heading h2 {
    max-width: 11ch;
    margin: 0 auto;
    color: var(--brand-900);
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.95;
    text-wrap: balance;
}

.home #transfer .section-heading h2 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--brand) 0%, #7b57d6 52%, var(--mint-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.home #transfer .eyebrow {
    border-color: rgba(53, 23, 80, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand);
    box-shadow: 0 14px 34px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-section-kicker {
    display: grid;
    gap: 0.1rem;
    margin: 1.2rem auto 0;
    color: rgba(53, 23, 80, 0.62);
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    font-weight: 600;
    line-height: 1.16;
}

.home #transfer .transfer-section-kicker strong {
    color: var(--mint-700);
    font-weight: 800;
}

.home #transfer .transfer-grid.transfer-flow {
    position: relative;
    display: grid;
    gap: 1.05rem;
    max-width: 940px;
    margin: clamp(2.2rem, 4.5vw, 3.4rem) auto 0;
    counter-reset: none;
}

.home #transfer .transfer-grid.transfer-flow::before {
    content: "";
    position: absolute;
    top: 64px;
    bottom: 64px;
    left: 48px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(91, 157, 66, 0.45), rgba(53, 23, 80, 0.22), rgba(91, 157, 66, 0.45));
    opacity: 0.9;
}

.home #transfer .transfer-flow-step {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 150px;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    min-width: 0;
    min-height: 150px;
    padding: 1.05rem clamp(1rem, 2.4vw, 1.5rem);
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: var(--radius-card);
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 54%, rgba(239, 251, 231, 0.82) 100%);
    box-shadow: 0 20px 52px rgba(53, 23, 80, 0.09);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.home #transfer .transfer-flow-step::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -42%;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    transition: left 680ms ease, opacity 220ms ease;
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 247, 183, 0.8);
    box-shadow: 0 28px 72px rgba(53, 23, 80, 0.14);
}

.home #transfer .transfer-flow-step:hover::after {
    left: 116%;
    opacity: 1;
}

.home #transfer .transfer-flow-step:nth-child(2) {
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 241, 248, 0.88) 54%, rgba(243, 238, 255, 0.82) 100%);
}

.home #transfer .transfer-flow-step:nth-child(3) {
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 255, 244, 0.9) 54%, rgba(239, 251, 231, 0.88) 100%);
}

.home #transfer .transfer-step-number {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(205, 247, 183, 0.56);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--mint-700);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-step-number::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -28px;
    width: 12px;
    height: 12px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--mint-700);
    transform: translateX(50%);
    box-shadow: 0 0 0 6px rgba(205, 247, 183, 0.3);
    animation: transfer-dot-pulse 2.6s ease-in-out infinite;
}

.home #transfer .transfer-flow-step:last-child .transfer-step-number::after {
    display: none;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    border-color: rgba(123, 87, 214, 0.28);
    color: #5a38c7;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    background: #7b57d6;
    box-shadow: 0 0 0 6px rgba(123, 87, 214, 0.16);
}

.home #transfer .transfer-flow-node {
    position: relative;
    z-index: 2;
    width: 124px;
    height: 124px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 248, 0.88)),
        #ffffff;
    box-shadow: 0 18px 42px rgba(53, 23, 80, 0.12);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    justify-self: end;
    animation: transfer-node-float 5.2s ease-in-out infinite;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node {
    animation-delay: 0.45s;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before {
    border-color: rgba(123, 87, 214, 0.28);
}

.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node {
    animation-delay: 0.9s;
}

.home #transfer .transfer-flow-node::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(205, 247, 183, 0.72);
    border-radius: inherit;
    pointer-events: none;
}

.home #transfer .transfer-flow-step:hover .transfer-flow-node {
    animation: none;
    transform: translateY(-5px) rotate(2deg);
    border-color: rgba(205, 247, 183, 0.9);
    box-shadow: 0 26px 62px rgba(53, 23, 80, 0.17);
}

.home #transfer .transfer-flow-node img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.home #transfer .transfer-flow-node i {
    color: var(--brand);
    font-size: 3rem;
}

.home #transfer .transfer-flow-copy {
    display: grid;
    gap: 0.45rem;
}

.home #transfer .transfer-flow-copy h3 {
    margin: 0;
    color: var(--brand-900);
    font-size: clamp(1.16rem, 2vw, 1.46rem);
    line-height: 1.12;
    text-align: left;
}

.home #transfer .transfer-flow-copy p {
    max-width: 34ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.45vw, 1.08rem);
    line-height: 1.5;
    text-align: left;
}

/* Transfer clinic final premium pass */
.home #transfer {
    background:
        radial-gradient(circle at 18% 8%, rgba(205, 247, 183, 0.26), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(53, 23, 80, 0.10), transparent 32%),
        linear-gradient(180deg, #fffdf9 0%, #f8f4fb 52%, #fffdf9 100%) !important;
}

.home #transfer::before,
.home #transfer::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.42;
}

.home #transfer::before {
    top: 9%;
    left: -10%;
    width: 280px;
    height: 280px;
    background: rgba(205, 247, 183, 0.54);
    animation: transfer-ambient-drift 9s ease-in-out infinite;
}

.home #transfer::after {
    right: -12%;
    bottom: 12%;
    width: 320px;
    height: 320px;
    background: rgba(53, 23, 80, 0.14);
    animation: transfer-ambient-drift 11s ease-in-out infinite reverse;
}

.home #transfer > .container {
    position: relative;
    z-index: 1;
}

.home #transfer .section-heading {
    max-width: 820px;
}

.home #transfer .section-heading h2 {
    max-width: 12ch;
    color: var(--brand-900);
    font-size: clamp(2.65rem, 5.6vw, 4.85rem);
    line-height: 1;
}

.home #transfer .section-heading h2 span {
    color: var(--brand);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: 0 14px 34px rgba(53, 23, 80, 0.10);
}

.home #transfer .eyebrow {
    border-color: rgba(205, 247, 183, 0.72);
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 12px 30px rgba(205, 247, 183, 0.22);
}

.home #transfer .transfer-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.05rem;
    color: rgba(53, 23, 80, 0.66);
    font-size: clamp(1.12rem, 2.15vw, 1.55rem);
}

.home #transfer .transfer-section-kicker strong {
    padding: 0.18rem 0.62rem;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(53, 23, 80, 0.16);
}

.home #transfer .transfer-grid.transfer-flow {
    gap: 1rem;
    max-width: 900px;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.home #transfer .transfer-grid.transfer-flow::before {
    left: 46px;
    background: linear-gradient(180deg, rgba(53, 23, 80, 0), rgba(53, 23, 80, 0.26), rgba(205, 247, 183, 0.78), rgba(53, 23, 80, 0.18), rgba(53, 23, 80, 0));
    animation: transfer-line-glow 3.8s ease-in-out infinite;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    grid-template-columns: 92px minmax(0, 1fr) 132px;
    min-height: 142px;
    border-color: rgba(53, 23, 80, 0.11);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(239, 251, 231, 0.72) 100%);
    box-shadow: 0 18px 44px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(53, 23, 80, 0.18);
    box-shadow: 0 26px 62px rgba(53, 23, 80, 0.13);
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    width: 78px;
    height: 78px;
    border-color: rgba(205, 247, 183, 0.78);
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 16px 34px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-step-number::after,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(205, 247, 183, 0.32);
}

.home #transfer .transfer-flow-node {
    width: 112px;
    height: 112px;
    border-color: rgba(205, 247, 183, 0.5);
    background: linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
    box-shadow: 0 16px 38px rgba(53, 23, 80, 0.10);
}

.home #transfer .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before {
    border-color: rgba(205, 247, 183, 0.7);
}

.home #transfer .transfer-flow-copy h3 {
    color: var(--brand-900);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.home #transfer .transfer-flow-copy p {
    max-width: 38ch;
    color: rgba(33, 21, 44, 0.68);
    font-size: clamp(0.9rem, 1.25vw, 1rem);
}

.home #faq .faq-mobile-heading {
    display: none;
}

.home #contact .contact-grid {
    max-width: 860px;
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    align-items: start;
    gap: 1.45rem;
}

.home #contact .contact-copy {
    text-align: center;
}

.home #contact .contact-copy h2 {
    max-width: none;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(2.45rem, 4.6vw, 4.1rem);
    line-height: 1.04;
}

.home #contact .contact-panel {
    width: 100%;
    margin-inline: auto;
    padding: clamp(1.35rem, 2.4vw, 2.05rem);
    border: 1px solid rgba(205, 247, 183, 0.22);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.footer-cta-strip {
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer-cta-strip .btn-primary {
    min-width: min(100%, 320px);
    justify-content: center;
    margin-inline: auto;
    border-color: var(--mint);
    background: var(--mint);
    color: var(--brand-900);
}

.trustpilot-footer .tp-brand-star,
.home .trustpilot-footer .tp-brand-star {
    color: #00b67a;
}

.footer-trust {
    flex-wrap: nowrap;
}

.compliance-badges {
    margin: 0;
    padding: 0;
}

@media (min-width: 1025px) {
    .home #reviews .section-heading h2 {
        font-size: clamp(1.55rem, 1.95vw, 2rem);
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .home #process .section-heading {
        margin-bottom: 1.4rem;
        text-align: center;
    }

    .home #process .section-heading h2 {
        font-size: clamp(2.05rem, 8vw, 2.65rem);
        line-height: 1.08;
    }

    .home #process .process-stack.process-flow {
        display: flex;
        gap: 0.72rem;
        max-width: none;
        margin-top: 1.45rem;
        overflow-x: auto;
        padding: 0.25rem 0.15rem 0.8rem;
        scroll-padding-inline: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .home #process .process-stack.process-flow::-webkit-scrollbar {
        display: none;
    }

    .home #process .process-flow-step {
        flex: 0 0 144px;
        gap: 0.72rem;
        padding: 0;
        scroll-snap-align: center;
    }

    .home #process .process-flow-step:not(:last-child)::before {
        top: 43px;
        left: calc(50% + 50px);
        width: calc(100% - 70px);
        height: 3px;
    }

    .home #process .process-flow-step:not(:last-child)::after {
        top: 38px;
        right: -6px;
        width: 11px;
        height: 11px;
        border-width: 3px;
    }

    .home #process .process-flow-node {
        width: 88px;
        height: 88px;
        box-shadow: 0 15px 34px rgba(53, 23, 80, 0.14);
    }

    .home #process .process-flow-node::before {
        inset: 6px;
    }

    .home #process .process-flow-node span {
        right: 4px;
        bottom: 4px;
        width: 24px;
        height: 24px;
        border-width: 2px;
        font-size: 0.7rem;
    }

    .home #process .process-flow-copy h3 {
        font-size: 0.88rem;
        line-height: 1.16;
    }

    .home #process .process-flow-copy p {
        display: none;
    }

    .home #process .section-action-center {
        align-items: center;
        margin-top: 1.35rem;
    }

    .home #process .section-action-center .btn-primary {
        width: min(100%, 310px);
    }

    .home #transfer .section-heading {
        margin-bottom: 1.4rem;
        text-align: center;
    }

    .home #transfer .section-heading h2 {
        max-width: 10ch;
        font-size: clamp(3rem, 15vw, 4.35rem);
        line-height: 0.92;
    }

    .home #transfer .transfer-section-kicker {
        margin-top: 1rem;
        font-size: clamp(1.25rem, 6vw, 1.7rem);
    }

    .home #transfer .transfer-grid.transfer-flow {
        display: grid;
        gap: 0.9rem;
        max-width: 560px;
        margin-top: 1.8rem;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        top: 42px;
        bottom: 42px;
        left: 31px;
        width: 2px;
    }

    .home #transfer .transfer-flow-step {
        grid-template-columns: 62px minmax(0, 1fr) 78px;
        gap: 0.78rem;
        min-height: 116px;
        padding: 0.82rem;
        scroll-snap-align: unset;
        text-align: left;
    }

    .home #transfer .transfer-flow-step::after {
        width: 52%;
    }

    .home #transfer .transfer-flow-node {
        width: 74px;
        height: 74px;
        box-shadow: 0 14px 30px rgba(53, 23, 80, 0.12);
    }

    .home #transfer .transfer-flow-node::before {
        inset: 5px;
    }

    .home #transfer .transfer-step-number {
        width: 56px;
        height: 56px;
        font-size: 1.08rem;
    }

    .home #transfer .transfer-step-number::after {
        bottom: -24px;
        width: 10px;
        height: 10px;
        border-width: 2px;
        box-shadow: 0 0 0 5px rgba(205, 247, 183, 0.26);
    }

    .home #transfer .transfer-flow-copy h3 {
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .home #transfer .transfer-flow-copy p {
        display: block;
        font-size: 0.78rem;
        line-height: 1.42;
    }

    .home #transfer::before {
        top: 5%;
        left: -34%;
        width: 220px;
        height: 220px;
    }

    .home #transfer::after {
        right: -36%;
        bottom: 22%;
        width: 240px;
        height: 240px;
    }

    .home #transfer .eyebrow {
        margin-inline: auto;
    }

    .home #transfer .section-heading h2 {
        max-width: 9.5ch;
        font-size: clamp(2.55rem, 12vw, 3.55rem);
        line-height: 0.98;
    }

    .home #transfer .transfer-section-kicker {
        display: grid;
        gap: 0.32rem;
        font-size: clamp(1.05rem, 5vw, 1.35rem);
    }

    .home #transfer .transfer-section-kicker strong {
        width: fit-content;
        margin-inline: auto;
    }

    .home #transfer .transfer-grid.transfer-flow {
        gap: 0.72rem;
        margin-top: 1.45rem;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        left: 29px;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 56px minmax(0, 1fr) 68px;
        gap: 0.68rem;
        min-height: 104px;
        padding: 0.74rem;
        border-color: rgba(53, 23, 80, 0.10);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 14px 30px rgba(53, 23, 80, 0.075);
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        width: 50px;
        height: 50px;
        font-size: 0.98rem;
    }

    .home #transfer .transfer-step-number::after,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
        bottom: -21px;
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 4px rgba(205, 247, 183, 0.28);
    }

    .home #transfer .transfer-flow-node {
        width: 64px;
        height: 64px;
        animation-duration: 6s;
    }

    .home #transfer .transfer-flow-copy {
        gap: 0.28rem;
    }

    .home #transfer .transfer-flow-copy h3 {
        font-size: 0.92rem;
    }

    .home #transfer .transfer-flow-copy p {
        color: rgba(33, 21, 44, 0.66);
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .home #reviews .section-heading {
        margin-bottom: 1.1rem;
    }

    .home #reviews .section-heading h2 {
        font-size: 1.9rem;
        line-height: 1.05;
        white-space: nowrap;
    }

    .home #reviews .tp-review-slider {
        margin-inline: -0.35rem;
        padding: 0.35rem 0.35rem 1rem;
    }

    .home #reviews .tp-review-track {
        gap: 0.7rem;
    }

    .home #reviews .tp-review-card {
        flex: 0 0 min(72vw, 275px);
        min-width: min(72vw, 275px);
        min-height: 245px;
        padding: 0.95rem;
    }

    .home #reviews .tp-card-head {
        gap: 0.55rem;
        margin-bottom: 0.5rem;
    }

    .home #reviews .tp-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .home #reviews .tp-user-meta strong,
    .home #reviews .tp-review-card h3 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .home #reviews .tp-user-meta span,
    .home #reviews .tp-date,
    .home #reviews .tp-review-card p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .home #reviews .tp-stars {
        font-size: 0.9rem;
    }

    .home #who-for .who-for-heading h2 {
        max-width: none;
        font-size: clamp(2.25rem, 9vw, 3.05rem);
        line-height: 1.06;
    }

    .home #faq .faq-mobile-heading {
        display: block;
        width: min(100% - 32px, 760px);
        margin: 0 auto 1.25rem;
        text-align: center;
    }

    .home #faq .faq-mobile-heading h2 {
        margin: 0;
        color: var(--cr-solid-brand);
        font-size: clamp(1.5rem, 6vw, 1.82rem);
        line-height: 1.05;
        white-space: nowrap;
    }

    .home #faq .faq-sidebar,
    .home #faq .faq-sidebar-sticky {
        display: none !important;
    }

    .home #faq .faq-grid-layout {
        display: block;
        width: min(100% - 32px, 760px);
    }

    .home #faq .faq-groups-wrap {
        display: grid;
        gap: 0.7rem;
    }

    .home #faq .faq-group {
        display: grid;
        gap: 0.7rem;
        padding: 0;
        border: 0;
        background: transparent !important;
        box-shadow: none;
    }

    .home #faq .faq-group h3 {
        display: none;
    }

    .home #faq .faq-list {
        display: grid;
        gap: 0.7rem;
    }

    .home #faq .faq-list details {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(53, 23, 80, 0.12);
        border-radius: 12px;
        background: #ffffff !important;
        box-shadow: 0 14px 30px rgba(53, 23, 80, 0.07);
        transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .home #faq .faq-list details:hover {
        transform: translateY(-2px);
        border-color: rgba(205, 247, 183, 0.72);
        box-shadow: 0 18px 34px rgba(53, 23, 80, 0.10);
    }

    .home #faq .faq-list details[open] {
        border-color: rgba(53, 23, 80, 0.24);
        box-shadow: 0 20px 38px rgba(53, 23, 80, 0.11);
    }

    .home #faq .faq-list details::details-content {
        interpolate-size: allow-keywords;
        block-size: 0;
        overflow: hidden;
        transition: block-size 220ms ease;
    }

    .home #faq .faq-list details[open]::details-content {
        block-size: auto;
    }

    .home #faq .faq-list summary {
        min-height: 64px;
        padding: 1rem 3.45rem 1rem 1.05rem;
        color: var(--cr-solid-brand);
        font-size: 0.98rem;
        line-height: 1.25;
    }

    .home #faq .faq-list summary::after {
        right: 0.85rem;
        width: 30px;
        height: 30px;
        background: var(--cr-solid-mint);
        color: var(--cr-solid-brand);
        box-shadow: 0 8px 18px rgba(205, 247, 183, 0.42);
        transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .home #faq .faq-list details[open] summary::after {
        transform: translateY(-50%) rotate(45deg);
        background: var(--cr-solid-brand);
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(53, 23, 80, 0.22);
    }

    .home #faq .faq-list details p {
        padding: 0 1.05rem 1.05rem;
        color: #665a6f;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .home #contact .contact-copy h2 {
        max-width: none;
        margin-inline: auto;
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        line-height: 1.06;
    }

    .footer-cta-strip {
        margin-bottom: 1.6rem;
    }

    .footer-cta-strip .btn-primary {
        min-height: 52px;
        width: min(100%, 300px);
        border-radius: 999px;
        font-size: 0.98rem;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 1.35rem 1rem;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: min(255px, 100%);
    }

    .footer-text {
        max-width: 34ch;
        margin: 0.8rem 0 0;
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .footer-micro-grid {
        display: flex;
        gap: 0.34rem;
        max-width: 100%;
        margin-top: 0.85rem;
    }

    .footer-micro-grid span {
        flex: 1 1 0;
        padding: 0.48rem 0.34rem;
        border-radius: 8px;
        font-size: clamp(0.56rem, 1.95vw, 0.68rem);
        line-height: 1.08;
        text-align: center;
    }

    .footer-micro-grid strong {
        margin: 0 0 0.08rem;
        font-size: clamp(0.66rem, 2.2vw, 0.78rem);
        line-height: 1.05;
        white-space: nowrap;
    }

    .footer-top > div:not(.footer-brand-block) {
        min-width: 0;
    }

    .footer-subtitle {
        margin-bottom: 0.55rem;
        font-size: 0.98rem;
    }

    .footer-links {
        gap: 0.42rem;
    }

    .footer-links a,
    .footer-opening-hours {
        font-size: 0.78rem;
        line-height: 1.28;
    }

    .footer-opening-hours {
        padding-top: 0.58rem;
        white-space: nowrap;
    }

    .footer-social {
        gap: 0.42rem;
        margin-top: 0.65rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
    }

    .footer-trust {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.7rem;
        padding: 0.85rem;
    }

    .trustpilot-footer {
        min-width: 0;
        gap: 0.42rem;
    }

    .trustpilot-footer-head strong {
        font-size: 0.95rem;
    }

    .trustpilot-footer .tp-brand-star {
        font-size: 0.96rem;
    }

    .trustpilot-footer-stars span {
        width: 22px;
        height: 22px;
        font-size: 0.78rem;
    }

    .trustpilot-footer p {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .trustpilot-footer span:not(.tp-brand-star) {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .compliance-badges {
        flex: 0 0 auto;
        justify-content: flex-end;
        margin-left: auto;
    }

    .compliance-badge-logo {
        padding: 0.34rem;
        border-radius: 7px;
    }

    .compliance-badge-logo img {
        width: 72px;
    }

    .footer-bottom {
        margin-top: 1.45rem;
        padding-top: 1.1rem;
    }

    .footer-disclaimer {
        margin-bottom: 0.8rem;
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .footer-bottom-row {
        align-items: center;
        justify-items: center;
        gap: 0.62rem;
        text-align: center;
    }

    .footer-copy {
        width: 100%;
        font-size: 0.76rem;
    }

    .footer-legal-links {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .footer-legal-links a {
        font-size: clamp(0.61rem, 2.25vw, 0.72rem);
        line-height: 1.1;
        white-space: nowrap;
    }
}

/* Conditions premium coverflow */
.home #conditions {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf9 0%, #fbf7fc 48%, #f8fff4 100%) !important;
}

.home #conditions .container {
    position: relative;
    z-index: 1;
}

.home #conditions .section-heading {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.home #conditions .section-heading .eyebrow {
    margin-inline: auto;
    border-color: rgba(53, 23, 80, 0.12);
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 14px 34px rgba(53, 23, 80, 0.07);
}

.home #conditions .section-heading h2 {
    max-width: 980px;
    margin-inline: auto;
    color: var(--brand-900);
    font-size: 3.25rem;
    line-height: 1.05;
}

.home #conditions .condition-carousel {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
}

.home #conditions .condition-carousel-stage {
    position: relative;
    height: 430px;
    margin-inline: auto;
    overflow: hidden;
    perspective: 1200px;
    transform-style: preserve-3d;
    touch-action: pan-y;
}

.home #conditions .condition-carousel-stage::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 42px;
    left: 8%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(53, 23, 80, 0), rgba(53, 23, 80, 0.22), rgba(205, 247, 183, 0.9), rgba(53, 23, 80, 0.18), rgba(53, 23, 80, 0));
    opacity: 0.75;
    animation: condition-line-breathe 3.8s ease-in-out infinite;
}

.home #conditions .condition-card.condition-carousel-card {
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(100%, 420px);
    min-height: 300px;
    display: grid;
    align-content: start;
    gap: 0.72rem;
    padding: 1.35rem;
    border: 1px solid rgba(53, 23, 80, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%),
        #ffffff;
    box-shadow: 0 24px 70px rgba(53, 23, 80, 0.14);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(0.76);
    transform-style: preserve-3d;
    transition:
        transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 420ms ease,
        filter 420ms ease,
        box-shadow 420ms ease,
        border-color 420ms ease;
    will-change: transform, opacity;
}

.home #conditions .condition-card.condition-carousel-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--brand), var(--mint));
    opacity: 1;
}

.home #conditions .condition-card.condition-carousel-card::after {
    display: none;
}

.home #conditions .condition-carousel-card[data-position="-2"] {
    z-index: 1;
    opacity: 0.38;
    visibility: visible;
    filter: saturate(0.85) blur(0.2px);
    transform: translate3d(calc(-50% - 430px), -50%, -170px) rotateY(22deg) scale(0.62);
}

.home #conditions .condition-carousel-card[data-position="-1"] {
    z-index: 2;
    opacity: 0.72;
    visibility: visible;
    pointer-events: auto;
    filter: saturate(0.9);
    transform: translate3d(calc(-50% - 245px), -50%, -80px) rotateY(14deg) scale(0.82);
}

.home #conditions .condition-carousel-card[data-position="0"] {
    z-index: 5;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: none;
    border-color: rgba(205, 247, 183, 0.72);
    box-shadow: 0 30px 90px rgba(53, 23, 80, 0.18);
    transform: translate3d(-50%, -50%, 80px) rotateY(0) scale(1);
}

.home #conditions .condition-carousel-card[data-position="1"] {
    z-index: 2;
    opacity: 0.72;
    visibility: visible;
    pointer-events: auto;
    filter: saturate(0.9);
    transform: translate3d(calc(-50% + 245px), -50%, -80px) rotateY(-14deg) scale(0.82);
}

.home #conditions .condition-carousel-card[data-position="2"] {
    z-index: 1;
    opacity: 0.38;
    visibility: visible;
    filter: saturate(0.85) blur(0.2px);
    transform: translate3d(calc(-50% + 430px), -50%, -170px) rotateY(-22deg) scale(0.62);
}

.home #conditions .condition-carousel-card[data-position="hidden"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.home #conditions .condition-carousel-card[data-position="0"]:hover {
    border-color: rgba(205, 247, 183, 0.96);
    box-shadow: 0 34px 96px rgba(53, 23, 80, 0.22);
    transform: translate3d(-50%, calc(-50% - 6px), 90px) rotateY(0) scale(1.02);
}

.home #conditions .condition-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home #conditions .condition-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(205, 247, 183, 0.75);
    border-radius: 50%;
    background: var(--mint-50);
    color: var(--brand);
    font-size: 1.35rem;
    box-shadow: 0 14px 30px rgba(53, 23, 80, 0.08);
}

.home #conditions .condition-card-count {
    color: rgba(53, 23, 80, 0.2);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

.home #conditions .condition-card-kicker {
    width: fit-content;
    padding: 0.28rem 0.58rem;
    border: 1px solid rgba(53, 23, 80, 0.1);
    border-radius: 999px;
    background: rgba(205, 247, 183, 0.54);
    color: rgba(53, 23, 80, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.home #conditions .condition-carousel-card h3 {
    margin: 0;
    color: var(--brand-900);
    font-size: 1.62rem;
    line-height: 1.08;
}

.home #conditions .condition-carousel-card p {
    margin: 0;
    color: rgba(33, 21, 44, 0.68);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.48;
}

.home #conditions .condition-carousel-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    max-width: 720px;
    margin: -0.5rem auto 0;
}

.home #conditions .condition-carousel-meta {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    color: rgba(53, 23, 80, 0.48);
    font-size: 0.95rem;
    font-weight: 800;
}

.home #conditions .condition-carousel-meta strong {
    min-width: 0;
    overflow: hidden;
    color: var(--brand-900);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home #conditions .condition-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.home #conditions .condition-carousel-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53, 23, 80, 0.16);
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-900);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 14px 30px rgba(53, 23, 80, 0.1);
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.home #conditions .condition-carousel-button-next {
    border-color: var(--brand);
    background: var(--brand);
    color: #ffffff;
}

.home #conditions .condition-carousel-button:hover {
    transform: translateY(-3px);
    border-color: var(--mint);
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 18px 40px rgba(53, 23, 80, 0.16);
}

.reveal-on-scroll.is-visible .condition-carousel-card {
    animation: none;
}

@keyframes condition-line-breathe {
    0%,
    100% {
        opacity: 0.44;
        transform: scaleX(0.82);
    }
    50% {
        opacity: 0.95;
        transform: scaleX(1);
    }
}

@media (max-width: 900px) {
    .home #conditions .section-heading h2 {
        font-size: 2.45rem;
    }

    .home #conditions .condition-carousel-stage {
        height: 390px;
        margin-inline: -1rem;
    }

    .home #conditions .condition-card.condition-carousel-card {
        width: min(78vw, 330px);
        min-height: 272px;
        padding: 1.08rem;
    }

    .home #conditions .condition-carousel-card[data-position="-2"] {
        opacity: 0;
        transform: translate3d(calc(-50% - 260px), -50%, -180px) rotateY(20deg) scale(0.55);
    }

    .home #conditions .condition-carousel-card[data-position="-1"] {
        opacity: 0.56;
        transform: translate3d(calc(-50% - 154px), -50%, -90px) rotateY(12deg) scale(0.76);
    }

    .home #conditions .condition-carousel-card[data-position="1"] {
        opacity: 0.56;
        transform: translate3d(calc(-50% + 154px), -50%, -90px) rotateY(-12deg) scale(0.76);
    }

    .home #conditions .condition-carousel-card[data-position="2"] {
        opacity: 0;
        transform: translate3d(calc(-50% + 260px), -50%, -180px) rotateY(-20deg) scale(0.55);
    }

    .home #conditions .condition-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.12rem;
    }

    .home #conditions .condition-card-count {
        font-size: 1.85rem;
    }

    .home #conditions .condition-carousel-card h3 {
        font-size: 1.3rem;
    }

    .home #conditions .condition-carousel-card p {
        font-size: 0.88rem;
        line-height: 1.42;
    }

    .home #conditions .condition-carousel-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        margin-top: -0.3rem;
        text-align: center;
    }

    .home #conditions .condition-carousel-meta {
        justify-content: center;
        width: min(100%, 320px);
    }
}

@media (max-width: 420px) {
    .home #conditions .section-heading h2 {
        font-size: 2rem;
    }

    .home #conditions .condition-carousel-stage {
        height: 360px;
    }

    .home #conditions .condition-card.condition-carousel-card {
        width: min(80vw, 292px);
        min-height: 248px;
        gap: 0.56rem;
        padding: 0.92rem;
    }

    .home #conditions .condition-carousel-card[data-position="-1"] {
        opacity: 0.42;
        transform: translate3d(calc(-50% - 128px), -50%, -90px) rotateY(12deg) scale(0.72);
    }

    .home #conditions .condition-carousel-card[data-position="1"] {
        opacity: 0.42;
        transform: translate3d(calc(-50% + 128px), -50%, -90px) rotateY(-12deg) scale(0.72);
    }

    .home #conditions .condition-card-kicker {
        max-width: 100%;
        overflow: hidden;
        font-size: 0.64rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home #conditions .condition-carousel-card h3 {
        font-size: 1.12rem;
    }

    .home #conditions .condition-carousel-card p {
        font-size: 0.8rem;
    }

    .home #conditions .condition-carousel-button {
        width: 42px;
        height: 42px;
    }
}

/* Transfer clinic final layout correction */
.home #transfer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdfb 0%, #fbf7fc 54%, #f8fff4 100%) !important;
}

.home #transfer::before,
.home #transfer::after {
    display: none !important;
}

.home #transfer .transfer-shell {
    max-width: 1120px;
}

.home #transfer .section-heading {
    max-width: 1080px;
    margin-inline: auto;
    text-align: center;
}

.home #transfer .eyebrow {
    border-color: rgba(53, 23, 80, 0.12);
    background: #ffffff;
    color: rgba(53, 23, 80, 0.72);
    box-shadow: 0 14px 32px rgba(53, 23, 80, 0.07);
}

.home #transfer .section-heading h2 {
    max-width: none !important;
    margin-inline: auto;
    color: var(--brand-900);
    font-size: 4.35rem;
    line-height: 1.02;
    white-space: nowrap;
}

.home #transfer .section-heading h2 .transfer-title-line {
    display: inline !important;
    color: inherit;
    background: none !important;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    text-shadow: 0 14px 34px rgba(53, 23, 80, 0.09);
}

.home #transfer .transfer-section-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.05rem;
    color: rgba(53, 23, 80, 0.64);
    font-size: 1.34rem;
    line-height: 1.2;
}

.home #transfer .transfer-section-kicker strong {
    display: inline-grid;
    place-items: center;
    min-height: 2.1rem;
    padding: 0.16rem 0.7rem;
    border: 1px solid rgba(205, 247, 183, 0.75);
    border-radius: 999px;
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 14px 30px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-grid.transfer-flow {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem;
    max-width: 920px;
    margin: clamp(2rem, 3.4vw, 3rem) auto 0;
    padding: 0;
    overflow: visible;
}

.home #transfer .transfer-grid.transfer-flow::before {
    top: 56px;
    bottom: 56px;
    left: 48px;
    width: 2px;
    background: linear-gradient(180deg, rgba(53, 23, 80, 0), rgba(53, 23, 80, 0.24), rgba(91, 157, 66, 0.72), rgba(53, 23, 80, 0));
    animation: transfer-line-glow 4.2s ease-in-out infinite;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    grid-template-columns: 88px minmax(0, 1fr) 118px !important;
    min-height: 132px;
    gap: clamp(0.9rem, 2vw, 1.5rem);
    padding: 1rem 1.15rem;
    border: 1px solid rgba(53, 23, 80, 0.1);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 58%, rgba(248, 255, 244, 0.88) 100%);
    box-shadow: 0 18px 44px rgba(53, 23, 80, 0.08);
    transform: translateZ(0);
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 157, 66, 0.25);
    box-shadow: 0 26px 62px rgba(53, 23, 80, 0.13);
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    width: 76px;
    height: 76px;
    border-color: rgba(205, 247, 183, 0.84);
    background: #ffffff;
    color: var(--mint-700);
    font-size: 1.36rem;
    box-shadow: 0 16px 34px rgba(53, 23, 80, 0.08);
}

.home #transfer .transfer-step-number::after,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    background: var(--mint-700);
    box-shadow: 0 0 0 6px rgba(205, 247, 183, 0.3);
}

.home #transfer .transfer-flow-node {
    width: 104px;
    height: 104px;
    border-color: rgba(205, 247, 183, 0.62);
    background: linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
    box-shadow: 0 16px 38px rgba(53, 23, 80, 0.1);
    animation: transfer-node-float 6s ease-in-out infinite;
}

.home #transfer .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before {
    border-color: rgba(205, 247, 183, 0.72);
}

.home #transfer .transfer-flow-copy {
    gap: 0.35rem;
    min-width: 0;
}

.home #transfer .transfer-flow-copy h3 {
    color: var(--brand-900);
    font-size: 1.22rem;
    line-height: 1.12;
}

.home #transfer .transfer-flow-copy p {
    max-width: 46ch;
    color: rgba(33, 21, 44, 0.66);
    font-size: 0.96rem;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .home #transfer .transfer-shell {
        max-width: 100%;
    }

    .home #transfer .section-heading h2 {
        max-width: none !important;
        font-size: 2.12rem;
        line-height: 1.02;
        white-space: normal;
    }

    .home #transfer .section-heading h2 .transfer-title-line {
        display: block !important;
        white-space: nowrap;
    }

    .home #transfer .transfer-section-kicker {
        display: grid;
        gap: 0.36rem;
        font-size: 1.05rem;
    }

    .home #transfer .transfer-section-kicker strong {
        width: fit-content;
        min-height: 1.95rem;
        margin-inline: auto;
        padding-inline: 0.62rem;
    }

    .home #transfer .transfer-grid.transfer-flow {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.72rem;
        max-width: 560px;
        margin-top: 1.45rem;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        top: 40px;
        bottom: 40px;
        left: 29px;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 54px minmax(0, 1fr) 60px !important;
        min-height: 104px;
        gap: 0.62rem;
        padding: 0.72rem;
        border-radius: 8px;
        box-shadow: 0 14px 30px rgba(53, 23, 80, 0.075);
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        width: 50px;
        height: 50px;
        font-size: 0.98rem;
    }

    .home #transfer .transfer-step-number::after,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
        bottom: -21px;
        width: 9px;
        height: 9px;
        border-width: 2px;
        box-shadow: 0 0 0 4px rgba(205, 247, 183, 0.28);
    }

    .home #transfer .transfer-flow-node {
        width: 58px;
        height: 58px;
    }

    .home #transfer .transfer-flow-node::before {
        inset: 5px;
    }

    .home #transfer .transfer-flow-copy h3 {
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .home #transfer .transfer-flow-copy p {
        max-width: none;
        font-size: 0.73rem;
        line-height: 1.35;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .home #transfer .section-heading h2 {
        font-size: 3.35rem;
    }
}

@media (min-width: 761px) and (max-width: 899px) {
    .home #transfer .section-heading h2 {
        font-size: 2.55rem;
    }
}

@media (max-width: 380px) {
    .home #transfer .section-heading h2 {
        font-size: 1.85rem;
    }
}

/* Final visual polish for transfer and conditions */
.home #transfer {
    padding-block: 4.4rem;
}

.home #transfer .section-heading {
    max-width: 980px;
}

.home #transfer .section-heading h2 {
    font-size: 3.55rem;
    line-height: 1.04;
}

.home #transfer .transfer-section-kicker {
    margin-top: 0.72rem;
    font-size: 1.16rem;
}

.home #transfer .transfer-grid.transfer-flow {
    max-width: 820px;
    gap: 0.78rem;
    margin-top: 2.15rem;
}

.home #transfer .transfer-grid.transfer-flow::before {
    left: 38px;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    grid-template-columns: 72px minmax(0, 1fr) 92px !important;
    min-height: 112px;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 66%, var(--mint-50) 100%);
    box-shadow: 0 16px 38px rgba(53, 23, 80, 0.075);
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    width: 62px;
    height: 62px;
    font-size: 1.08rem;
}

.home #transfer .transfer-step-number::after,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    bottom: -23px;
}

.home #transfer .transfer-flow-node {
    width: 82px;
    height: 82px;
}

.home #transfer .transfer-flow-copy h3 {
    font-size: 1.1rem;
}

.home #transfer .transfer-flow-copy p {
    max-width: 40ch;
    font-size: 0.9rem;
    line-height: 1.42;
}

.home #conditions {
    padding-block: 4.6rem;
}

.home #conditions .section-heading {
    max-width: 900px;
    margin-bottom: 1.6rem;
    padding-inline: 1rem;
}

.home #conditions .section-heading h2 {
    max-width: 820px !important;
    font-size: 2.6rem;
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
}

.home #conditions .condition-carousel {
    max-width: 920px;
}

.home #conditions .condition-carousel-stage {
    height: 346px;
    overflow: hidden;
    perspective: 1000px;
}

.home #conditions .condition-carousel-stage::before {
    right: 18%;
    bottom: 30px;
    left: 18%;
    opacity: 0.38;
}

.home #conditions .condition-card.condition-carousel-card {
    top: 50%;
    width: 360px;
    min-height: 238px;
    gap: 0.56rem;
    padding: 1.05rem;
    border-color: rgba(53, 23, 80, 0.12);
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(53, 23, 80, 0.12);
}

.home #conditions .condition-card.condition-carousel-card::before {
    height: 4px;
    background: var(--brand);
}

.home #conditions .condition-carousel-card[data-position="-2"] {
    opacity: 0.16;
    filter: saturate(0.75);
    transform: translate3d(calc(-50% - 360px), -50%, -150px) rotateY(18deg) scale(0.58);
}

.home #conditions .condition-carousel-card[data-position="-1"] {
    opacity: 0.42;
    filter: saturate(0.82);
    transform: translate3d(calc(-50% - 205px), -50%, -70px) rotateY(10deg) scale(0.78);
}

.home #conditions .condition-carousel-card[data-position="0"] {
    border-color: rgba(53, 23, 80, 0.18);
    box-shadow: 0 28px 74px rgba(53, 23, 80, 0.16);
    transform: translate3d(-50%, -50%, 70px) rotateY(0) scale(1);
}

.home #conditions .condition-carousel-card[data-position="1"] {
    opacity: 0.42;
    filter: saturate(0.82);
    transform: translate3d(calc(-50% + 205px), -50%, -70px) rotateY(-10deg) scale(0.78);
}

.home #conditions .condition-carousel-card[data-position="2"] {
    opacity: 0.16;
    filter: saturate(0.75);
    transform: translate3d(calc(-50% + 360px), -50%, -150px) rotateY(-18deg) scale(0.58);
}

.home #conditions .condition-carousel-card[data-position="0"]:hover {
    transform: translate3d(-50%, calc(-50% - 4px), 80px) rotateY(0) scale(1.01);
}

.home #conditions .condition-card-icon {
    width: 46px;
    height: 46px;
    color: var(--brand-900);
    font-size: 1.12rem;
}

.home #conditions .condition-card-count {
    color: rgba(53, 23, 80, 0.14);
    font-size: 1.95rem;
}

.home #conditions .condition-card-kicker {
    max-width: 100%;
    background: var(--mint-100);
    color: rgba(53, 23, 80, 0.72);
    font-size: 0.66rem;
}

.home #conditions .condition-carousel-card h3 {
    font-size: 1.32rem;
    line-height: 1.12;
}

.home #conditions .condition-carousel-card p {
    font-size: 0.9rem;
    line-height: 1.42;
}

.home #conditions .condition-carousel-footer {
    max-width: 580px;
    margin-top: 0.25rem;
}

@media (min-width: 1280px) {
    .home #conditions .section-heading h2 {
        font-size: 2.85rem;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .home #transfer .section-heading h2 {
        font-size: 2.85rem;
    }

    .home #conditions .section-heading h2 {
        font-size: 2.35rem;
    }
}

@media (max-width: 760px) {
    .home #transfer {
        padding-block: 3.4rem;
    }

    .home #transfer .section-heading h2 {
        font-size: 2rem;
        line-height: 1.04;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        left: 27px;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 52px minmax(0, 1fr) 56px !important;
        min-height: 96px;
        gap: 0.58rem;
    }

    .home #transfer .transfer-flow-node {
        width: 54px;
        height: 54px;
    }

    .home #conditions {
        padding-block: 3.35rem;
    }

    .home #conditions .section-heading {
        margin-bottom: 1.2rem;
        padding-inline: 0;
    }

    .home #conditions .section-heading h2 {
        max-width: 11ch !important;
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .home #conditions .condition-carousel-stage {
        height: 318px;
        margin-inline: -0.75rem;
    }

    .home #conditions .condition-card.condition-carousel-card {
        width: min(76vw, 286px);
        min-height: 218px;
        padding: 0.9rem;
    }

    .home #conditions .condition-carousel-card[data-position="-1"] {
        opacity: 0.2;
        transform: translate3d(calc(-50% - 116px), -50%, -80px) rotateY(10deg) scale(0.72);
    }

    .home #conditions .condition-carousel-card[data-position="1"] {
        opacity: 0.2;
        transform: translate3d(calc(-50% + 116px), -50%, -80px) rotateY(-10deg) scale(0.72);
    }

    .home #conditions .condition-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .home #conditions .condition-card-count {
        font-size: 1.55rem;
    }

    .home #conditions .condition-carousel-card h3 {
        font-size: 1.02rem;
    }

    .home #conditions .condition-carousel-card p {
        font-size: 0.76rem;
        line-height: 1.36;
    }

    .home #conditions .condition-carousel-footer {
        margin-top: 0;
    }
}

/* Conditions final organization pass */
.home #conditions .conditions-title {
    max-width: none !important;
}

.home #conditions .conditions-title-line {
    display: block;
    white-space: nowrap;
}

.home #conditions .condition-carousel-stage {
    height: 332px;
}

.home #conditions .condition-card.condition-carousel-card {
    width: 348px;
    min-height: 226px;
    gap: 0.5rem;
    padding: 1rem;
}

.home #conditions .condition-carousel-card[data-position="-1"],
.home #conditions .condition-carousel-card[data-position="1"] {
    opacity: 0.34;
    border-color: rgba(53, 23, 80, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, var(--paper-2) 100%);
    filter: none;
}

.home #conditions .condition-carousel-card[data-position="-2"],
.home #conditions .condition-carousel-card[data-position="2"] {
    opacity: 0.08;
    filter: none;
}

.home #conditions .condition-carousel-card[data-position="0"] {
    border-color: rgba(205, 247, 183, 0.85);
    background:
        linear-gradient(135deg, rgba(34, 11, 56, 0.98) 0%, rgba(53, 23, 80, 0.98) 62%, rgba(91, 157, 66, 0.92) 100%);
    color: #ffffff;
    box-shadow: 0 30px 82px rgba(53, 23, 80, 0.24);
}

.home #conditions .condition-carousel-card[data-position="0"]::before {
    background: var(--mint);
}

.home #conditions .condition-carousel-card[data-position="0"] .condition-card-icon {
    border-color: rgba(205, 247, 183, 0.8);
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-900);
}

.home #conditions .condition-carousel-card[data-position="0"] .condition-card-count {
    color: rgba(255, 255, 255, 0.22);
}

.home #conditions .condition-carousel-card[data-position="0"] .condition-card-kicker {
    border-color: rgba(205, 247, 183, 0.38);
    background: var(--mint);
    color: var(--brand-900);
}

.home #conditions .condition-carousel-card[data-position="0"] h3,
.home #conditions .condition-carousel-card[data-position="0"] p {
    color: #ffffff;
}

.home #conditions .condition-carousel-card[data-position="0"] p {
    color: rgba(255, 255, 255, 0.86);
}

.home #conditions .condition-card-top {
    margin-bottom: 0.25rem;
}

.home #conditions .condition-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.home #conditions .condition-card-count {
    font-size: 1.7rem;
}

.home #conditions .condition-card-kicker {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home #conditions .condition-carousel-card h3 {
    font-size: 1.24rem;
}

.home #conditions .condition-carousel-card p {
    font-size: 0.86rem;
    line-height: 1.4;
}

.home #conditions .condition-carousel-footer {
    margin-top: 0.1rem;
}

@media (max-width: 760px) {
    .home #conditions .section-heading h2.conditions-title {
        max-width: none !important;
        font-size: 1.7rem;
        line-height: 1.08;
    }

    .home #conditions .conditions-title-line {
        display: block;
        white-space: nowrap;
    }

    .home #conditions .condition-carousel-stage {
        height: 292px;
        margin-inline: -0.5rem;
    }

    .home #conditions .condition-card.condition-carousel-card {
        width: min(82vw, 304px);
        min-height: 210px;
        padding: 0.86rem;
    }

    .home #conditions .condition-carousel-card[data-position="-1"] {
        opacity: 0.16;
        transform: translate3d(calc(-50% - 104px), -50%, -70px) rotateY(8deg) scale(0.72);
    }

    .home #conditions .condition-carousel-card[data-position="1"] {
        opacity: 0.16;
        transform: translate3d(calc(-50% + 104px), -50%, -70px) rotateY(-8deg) scale(0.72);
    }

    .home #conditions .condition-carousel-card[data-position="-2"],
    .home #conditions .condition-carousel-card[data-position="2"] {
        opacity: 0;
    }

    .home #conditions .condition-card-icon {
        width: 38px;
        height: 38px;
        font-size: 0.92rem;
    }

    .home #conditions .condition-card-count {
        font-size: 1.35rem;
    }

    .home #conditions .condition-card-kicker {
        font-size: 0.6rem;
    }

    .home #conditions .condition-carousel-card h3 {
        font-size: 0.98rem;
        line-height: 1.12;
    }

    .home #conditions .condition-carousel-card p {
        font-size: 0.74rem;
        line-height: 1.34;
    }

    .home #conditions .condition-carousel-meta {
        font-size: 0.86rem;
    }
}

@media (max-width: 380px) {
    .home #conditions .section-heading h2.conditions-title {
        font-size: 1.5rem;
    }

    .home #conditions .condition-card.condition-carousel-card {
        width: min(84vw, 282px);
    }
}

/* Conditions active card brand-color correction */
.home #conditions .condition-card.condition-carousel-card {
    box-shadow: none !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"],
.home #conditions .condition-card.condition-carousel-card.is-active {
    border-color: var(--brand) !important;
    background: var(--brand) !important;
    background-image: linear-gradient(180deg, var(--brand) 0%, var(--brand-900) 100%) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"]::before,
.home #conditions .condition-card.condition-carousel-card.is-active::before {
    background: var(--mint) !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"] :is(h3, p, .condition-card-kicker, .condition-card-count, .condition-card-icon, .condition-card-icon i),
.home #conditions .condition-card.condition-carousel-card.is-active :is(h3, p, .condition-card-kicker, .condition-card-count, .condition-card-icon, .condition-card-icon i) {
    color: #ffffff !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"] .condition-card-icon,
.home #conditions .condition-card.condition-carousel-card.is-active .condition-card-icon {
    border-color: rgba(255, 255, 255, 0.44) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"] .condition-card-kicker,
.home #conditions .condition-card.condition-carousel-card.is-active .condition-card-kicker {
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.home #conditions .condition-card.condition-carousel-card[data-position="0"] .condition-card-count,
.home #conditions .condition-card.condition-carousel-card.is-active .condition-card-count {
    opacity: 0.42;
}

/* Who-for premium alternating scroll timeline */
.home #who-for.cr-who-luxe {
    --cr-who-purple: #351750;
    --cr-who-purple-deep: #08020f;
    --cr-who-purple-mid: #1a0a27;
    --cr-who-purple-soft: #5b3180;
    --cr-who-mint: #CDF7B7;
    --cr-who-white: #fffdf8;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(3.2rem, 6.2vw, 6.4rem) 0;
    background:
        linear-gradient(180deg, rgba(8, 2, 15, 0.95), rgba(18, 7, 28, 0.98)),
        radial-gradient(circle at 18% 18%, rgba(205, 247, 183, 0.16), transparent 30%),
        var(--cr-who-purple-deep);
    color: var(--cr-who-white);
}

.home #who-for.cr-who-luxe::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, transparent 0 49.86%, rgba(205, 247, 183, 0.12) 49.94% 50.06%, transparent 50.14%),
        linear-gradient(115deg, transparent 0 24%, rgba(205, 247, 183, 0.08) 24.2%, transparent 27%),
        linear-gradient(245deg, transparent 0 66%, rgba(255, 255, 255, 0.07) 66.2%, transparent 69%);
    opacity: 0.88;
}

.home #who-for.cr-who-luxe::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, transparent 0%, rgba(205, 247, 183, 0.08) 45%, transparent 60%);
    opacity: 0.35;
    transform: translateX(-80%);
    animation: cr-who-sweep 9s ease-in-out infinite;
}

.cr-who-luxe__aura {
    position: absolute;
    z-index: -1;
    width: min(760px, 76vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 247, 183, 0.68), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.cr-who-luxe__aura--top {
    top: 8%;
    left: -11%;
    transform: rotate(-10deg);
}

.cr-who-luxe__aura--bottom {
    right: -10%;
    bottom: 12%;
    transform: rotate(-10deg);
}

.home #who-for.cr-who-luxe > .cr-who-luxe__shell {
    width: min(1180px, calc(100% - 32px));
}

.cr-who-luxe__shell {
    position: relative;
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
}

.cr-who-luxe__intro {
    max-width: 1050px;
    display: grid;
    gap: 0.95rem;
    margin-inline: auto;
    text-align: center;
}

.home #who-for.cr-who-luxe .cr-who-luxe__eyebrow {
    width: fit-content;
    margin: 0 auto;
    padding: 0.46rem 0.78rem;
    border: 1px solid rgba(205, 247, 183, 0.42);
    border-radius: 999px;
    background: rgba(205, 247, 183, 0.14);
    color: var(--cr-who-mint);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home #who-for.cr-who-luxe .cr-who-luxe__title {
    margin: 0;
    color: var(--cr-who-white);
    font-size: clamp(1.2rem, 4.4vw, 3.15rem);
    font-weight: 900;
    line-height: 1.04;
}

.home #who-for.cr-who-luxe .cr-who-luxe__title span {
    display: block;
    white-space: nowrap;
}

.home #who-for.cr-who-luxe .cr-who-luxe__title span:last-child {
    color: var(--cr-who-mint);
    text-shadow: 0 0 30px rgba(205, 247, 183, 0.2);
}

.cr-who-luxe__timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.cr-who-luxe__spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(205, 247, 183, 0.72) 12%, rgba(205, 247, 183, 0.12) 50%, rgba(205, 247, 183, 0.58) 88%, transparent);
    box-shadow: 0 0 20px rgba(205, 247, 183, 0.28);
    transform: translateX(-50%);
}

.cr-who-luxe__moment {
    position: relative;
    min-height: clamp(310px, 46vh, 520px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 170px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 3.2vw, 3.2rem);
    opacity: 0.34;
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
    will-change: opacity, transform;
}

.cr-who-luxe__moment--left {
    transform: translateX(-24px);
}

.cr-who-luxe__moment--right {
    transform: translateX(24px);
}

.cr-who-luxe__moment.is-inview {
    opacity: 1;
    transform: translateX(0);
}

.cr-who-luxe__number {
    position: relative;
    z-index: 2;
    grid-column: 2;
    display: grid;
    justify-items: center;
    color: var(--cr-who-white);
    text-align: center;
}

.cr-who-luxe__number::before,
.cr-who-luxe__number::after {
    content: "";
    width: 1px;
    height: clamp(58px, 10vh, 130px);
    display: block;
    background: linear-gradient(180deg, transparent, rgba(205, 247, 183, 0.5), transparent);
    opacity: 0.72;
}

.cr-who-luxe__number span {
    display: block;
    padding: 0.18rem 0;
    color: #ffffff;
    font-size: clamp(4.2rem, 8.1vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    text-shadow: 0 0 34px rgba(205, 247, 183, 0.22);
}

.cr-who-luxe__content {
    position: relative;
    width: min(100%, 470px);
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 1.7vw, 1.28rem);
    border: 1px solid rgba(205, 247, 183, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(53, 23, 80, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cr-who-luxe__content::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cr-who-mint), rgba(205, 247, 183, 0.08));
}

.cr-who-luxe__moment--left .cr-who-luxe__content {
    grid-column: 1;
    justify-self: end;
}

.cr-who-luxe__moment--right .cr-who-luxe__content {
    grid-column: 3;
    justify-self: start;
}

.cr-who-luxe__moment--left .cr-who-luxe__content::before {
    right: 0.75rem;
}

.cr-who-luxe__moment--right .cr-who-luxe__content::before {
    left: 0.75rem;
}

.home #who-for.cr-who-luxe .cr-who-luxe__tag {
    width: fit-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 0.46rem;
    margin: 0;
    padding: 0.42rem 0.68rem;
    border: 1px solid rgba(205, 247, 183, 0.32);
    border-radius: 999px;
    background: rgba(205, 247, 183, 0.11);
    color: var(--cr-who-mint);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.home #who-for.cr-who-luxe .cr-who-luxe__tag i {
    font-size: 0.92rem;
}

.home #who-for.cr-who-luxe .cr-who-luxe__content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.6vw, 2.55rem);
    line-height: 1.04;
}

.home #who-for.cr-who-luxe .cr-who-luxe__content p {
    max-width: 36ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    font-weight: 650;
    line-height: 1.58;
}

.cr-who-luxe__mini-cta {
    width: fit-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(205, 247, 183, 0.56);
    border-radius: 999px;
    background: var(--cr-who-mint);
    color: var(--cr-who-purple);
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(205, 247, 183, 0.14);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.cr-who-luxe__mini-cta i {
    transition: transform var(--ease);
}

@media (hover: hover) and (pointer: fine) {
    .cr-who-luxe__content:hover {
        border-color: rgba(205, 247, 183, 0.42);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.115), rgba(205, 247, 183, 0.04)),
            rgba(53, 23, 80, 0.22);
    }

    .cr-who-luxe__mini-cta:hover {
        background: #dcffd0;
        box-shadow: 0 18px 42px rgba(205, 247, 183, 0.2);
        transform: translateY(-2px);
    }

    .cr-who-luxe__mini-cta:hover i {
        transform: translateX(3px);
    }
}

@media (max-width: 1200px) {
    .home #who-for.cr-who-luxe .cr-who-luxe__title {
        font-size: clamp(1.16rem, 4.18vw, 2.82rem);
    }

    .cr-who-luxe__moment {
        grid-template-columns: minmax(0, 1fr) minmax(96px, 140px) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 820px) {
    .home #who-for.cr-who-luxe {
        padding: 3rem 0;
    }

    .home #who-for.cr-who-luxe > .cr-who-luxe__shell {
        width: min(100% - 28px, 720px);
    }

    .home #who-for.cr-who-luxe::before {
        background:
            linear-gradient(90deg, transparent 0 25px, rgba(205, 247, 183, 0.2) 26px 27px, transparent 28px),
            linear-gradient(180deg, rgba(205, 247, 183, 0.08), transparent 40%);
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__title {
        font-size: clamp(1.15rem, 4.55vw, 2.08rem);
    }

    .cr-who-luxe__timeline {
        gap: 1.05rem;
    }

    .cr-who-luxe__spine {
        left: 30px;
        transform: none;
    }

    .cr-who-luxe__moment,
    .cr-who-luxe__moment--left,
    .cr-who-luxe__moment--right {
        min-height: 0;
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 0.85rem;
        align-items: start;
        opacity: 1;
        transform: none;
    }

    .cr-who-luxe__number {
        grid-column: 1;
        align-self: start;
        justify-items: center;
        padding-top: 0.35rem;
    }

    .cr-who-luxe__number::before,
    .cr-who-luxe__number::after {
        display: none;
    }

    .cr-who-luxe__number span {
        width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(205, 247, 183, 0.38);
        border-radius: 50%;
        background: rgba(53, 23, 80, 0.68);
        color: var(--cr-who-mint);
        font-size: 1.15rem;
        line-height: 1;
        box-shadow: 0 0 0 8px rgba(205, 247, 183, 0.06);
    }

    .cr-who-luxe__moment--left .cr-who-luxe__content,
    .cr-who-luxe__moment--right .cr-who-luxe__content {
        grid-column: 2;
        justify-self: stretch;
    }

    .cr-who-luxe__moment--left .cr-who-luxe__content::before,
    .cr-who-luxe__moment--right .cr-who-luxe__content::before {
        right: auto;
        left: 0.7rem;
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__content h3 {
        font-size: clamp(1.16rem, 5.2vw, 1.6rem);
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__content p {
        font-size: 0.84rem;
        line-height: 1.48;
    }
}

@media (max-width: 430px) {
    .home #who-for.cr-who-luxe {
        padding: 2.5rem 0;
    }

    .home #who-for.cr-who-luxe > .cr-who-luxe__shell {
        width: min(100% - 24px, 410px);
    }

    .cr-who-luxe__shell {
        gap: 1.6rem;
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__eyebrow {
        font-size: 0.64rem;
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__title {
        font-size: clamp(1.03rem, 4.7vw, 1.3rem);
    }

    .cr-who-luxe__content {
        gap: 0.72rem;
        padding: 0.88rem 0.88rem 0.92rem 1.05rem;
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__tag {
        min-height: 30px;
        padding: 0.36rem 0.56rem;
        font-size: 0.62rem;
    }

    .cr-who-luxe__mini-cta {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        font-size: 0.82rem;
    }
}

@media (max-width: 390px) {
    .home #who-for.cr-who-luxe .cr-who-luxe__title {
        font-size: 1.08rem;
    }

    .cr-who-luxe__moment,
    .cr-who-luxe__moment--left,
    .cr-who-luxe__moment--right {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 0.7rem;
    }

    .cr-who-luxe__spine {
        left: 26px;
    }

    .cr-who-luxe__number span {
        width: 48px;
        height: 48px;
        font-size: 1.02rem;
    }
}

@media (max-width: 375px) {
    .home #who-for.cr-who-luxe .cr-who-luxe__title {
        font-size: 1.03rem;
    }
}

@keyframes cr-who-sweep {
    0%,
    35% {
        transform: translateX(-82%);
    }
    70%,
    100% {
        transform: translateX(82%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }

    .home #who-for.cr-who-luxe::before,
    .home #who-for.cr-who-luxe::after {
        animation: none;
    }

    .home #who-for.cr-who-luxe .cr-who-luxe__intro,
    .home #who-for.cr-who-luxe .cr-who-luxe__moment {
        opacity: 1;
        translate: none;
        transform: none;
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}



/* =========================================================
   V26 WHO SECTION — MATCH REFERENCE VIDEO
   Light lavender stage, huge mint headline, centered vertical timeline,
   white oversized numbers and alternating text blocks.
   Brand: #351750 / #CDF7B7.
   ========================================================= */
#who-for.cr-who-ref26 {
    --who-purple: #351750;
    --who-mint: #CDF7B7;
    --who-bg: #f4edf7;
    --who-bg-2: #efe6f3;
    --who-white: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    padding: clamp(92px, 10vw, 150px) 0 clamp(110px, 12vw, 180px);
    background:
        radial-gradient(circle at 50% 5%, rgba(255,255,255,.78), transparent 34%),
        radial-gradient(circle at 16% 34%, rgba(205,247,183,.18), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(53,23,80,.055), transparent 34%),
        linear-gradient(180deg, var(--who-bg) 0%, #f8f3fa 24%, var(--who-bg-2) 100%);
    color: var(--who-purple);
}

#who-for.cr-who-ref26 *,
#who-for.cr-who-ref26 *::before,
#who-for.cr-who-ref26 *::after {
    box-sizing: border-box;
}

#who-for.cr-who-ref26::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(205,247,183,.18) calc(50% - .5px), rgba(205,247,183,.18) calc(50% + .5px), transparent calc(50% + .5px)),
        linear-gradient(115deg, transparent 0 21%, rgba(255,255,255,.34) 25%, transparent 30%),
        linear-gradient(245deg, transparent 0 66%, rgba(205,247,183,.14) 70%, transparent 76%);
    opacity: .9;
}

#who-for.cr-who-ref26::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.65) 40%, rgba(205,247,183,.22) 48%, transparent 60%);
    transform: translateX(-90%);
    opacity: .55;
    animation: crWho26LightSweep 9s ease-in-out infinite;
}

#who-for .cr-who-ref26__bg-glow {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .52;
}

#who-for .cr-who-ref26__bg-glow--one {
    width: 420px;
    height: 420px;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(205,247,183,.34), transparent 65%);
    animation: crWho26GlowOne 16s ease-in-out infinite;
}

#who-for .cr-who-ref26__bg-glow--two {
    width: 520px;
    height: 520px;
    right: -190px;
    top: 42%;
    background: radial-gradient(circle, rgba(53,23,80,.07), transparent 64%);
    animation: crWho26GlowTwo 18s ease-in-out infinite;
}

#who-for .cr-who-ref26__shell {
    position: relative;
    z-index: 2;
    width: min(100% - 36px, 1180px);
    margin-inline: auto;
}

#who-for .cr-who-ref26__intro {
    width: min(100%, 1040px);
    min-height: clamp(460px, 64vh, 640px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: clamp(10px, 2vw, 30px);
}

#who-for .cr-who-ref26__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: 0 0 clamp(18px, 2vw, 28px);
    padding: .72rem 1.08rem;
    border-radius: 999px;
    border: 1px solid rgba(53,23,80,.08);
    background: rgba(255,255,255,.82);
    color: rgba(255,255,255,.68);
    box-shadow: 0 18px 38px rgba(53,23,80,.10);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .11em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

#who-for .cr-who-ref26__eyebrow i {
    color: var(--who-purple);
}

#who-for .cr-who-ref26__title {
    margin: 0 auto;
    width: max-content;
    max-width: none;
    white-space: nowrap;
    color: var(--who-mint);
    font-size: clamp(4.6rem, 8.2vw, 8.6rem);
    font-weight: 950;
    line-height: .82;
    letter-spacing: -.095em;
    text-align: center;
    text-shadow:
        0 1px 0 rgba(255,255,255,.75),
        0 22px 58px rgba(205,247,183,.25);
    transform: translateZ(0);
}

#who-for .cr-who-ref26__lede {
    max-width: 690px;
    margin: clamp(24px, 2.2vw, 34px) auto 0;
    color: var(--who-purple);
    font-size: clamp(1rem, 1.12vw, 1.16rem);
    font-weight: 850;
    line-height: 1.62;
    text-align: center;
}

#who-for .cr-who-ref26__main-cta {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-top: clamp(22px, 2.1vw, 32px);
    padding: .82rem 1.22rem;
    border: 1px solid rgba(205,247,183,.82);
    border-radius: 12px;
    background: linear-gradient(135deg, #b9ff9e 0%, var(--who-mint) 100%);
    color: var(--who-purple);
    box-shadow: 0 20px 42px rgba(145,255,114,.24), inset 0 1px 0 rgba(255,255,255,.70);
    font-size: .92rem;
    font-weight: 950;
    line-height: 1;
    transition: transform .35s ease, box-shadow .35s ease;
}

#who-for .cr-who-ref26__main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(145,255,114,.30), inset 0 1px 0 rgba(255,255,255,.78);
}

#who-for .cr-who-ref26__main-cta i,
#who-for .cr-who-ref26__cta i {
    transition: transform .35s ease;
}

#who-for .cr-who-ref26__main-cta:hover i,
#who-for .cr-who-ref26__cta:hover i {
    transform: translateX(4px);
}

#who-for .cr-who-ref26__timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: -40px;
}

#who-for .cr-who-ref26__line {
    position: absolute;
    top: -6vh;
    bottom: -7vh;
    left: 50%;
    width: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(205,247,183,.32);
    box-shadow: 0 0 26px rgba(205,247,183,.12);
    overflow: hidden;
    z-index: 1;
}

#who-for .cr-who-ref26__line span {
    position: absolute;
    inset: 0;
    display: block;
    transform-origin: top;
    transform: scaleY(.08);
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 0%, var(--who-mint) 16%, rgba(205,247,183,.70) 48%, rgba(205,247,183,.18) 78%, transparent 100%);
    box-shadow: 0 0 30px rgba(205,247,183,.44);
    animation: crWho26LinePulse 7.5s ease-in-out infinite;
}

#who-for .cr-who-ref26__line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--who-mint);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(205,247,183,.92);
    animation: crWho26DotTravel 5.8s ease-in-out infinite;
}

#who-for .cr-who-ref26__row {
    position: relative;
    z-index: 2;
    min-height: clamp(460px, 76vh, 680px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(150px, 15vw, 220px) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(1.8rem, 4vw, 4.8rem);
    opacity: .30;
    transform: translateY(46px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.78,.18,1), filter 800ms ease;
    will-change: opacity, transform;
}

#who-for .cr-who-ref26__row.is-inview,
#who-for .cr-who-ref26__row.is-active {
    opacity: 1;
    transform: translateY(0);
}

#who-for .cr-who-ref26__row:not(.is-inview) {
    filter: blur(.45px);
}

#who-for .cr-who-ref26__number {
    grid-column: 2;
    justify-self: center;
    color: rgba(255,255,255,.86);
    font-size: clamp(6.5rem, 11vw, 12rem);
    font-weight: 950;
    line-height: .8;
    letter-spacing: -.095em;
    text-align: center;
    text-shadow:
        0 0 1px rgba(255,255,255,.70),
        0 22px 48px rgba(53,23,80,.09),
        0 0 38px rgba(205,247,183,.12);
    transition: transform 700ms ease, color 700ms ease, text-shadow 700ms ease;
}

#who-for .cr-who-ref26__row.is-inview .cr-who-ref26__number,
#who-for .cr-who-ref26__row.is-active .cr-who-ref26__number {
    color: #fff;
    transform: scale(1.04);
    text-shadow:
        0 0 1px rgba(255,255,255,.95),
        0 26px 54px rgba(53,23,80,.13),
        0 0 42px rgba(205,247,183,.18);
}

#who-for .cr-who-ref26__copy {
    position: relative;
    width: min(100%, 460px);
    display: grid;
    justify-items: start;
    gap: 1rem;
    padding-left: 2.1rem;
    color: #fff;
}

#who-for .cr-who-ref26__copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: .22rem;
    width: 3px;
    height: clamp(112px, 14vh, 160px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--who-mint), rgba(205,247,183,.05));
    box-shadow: 0 0 26px rgba(205,247,183,.34);
    transform-origin: top;
    transform: scaleY(.25);
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms ease;
}

#who-for .cr-who-ref26__row.is-inview .cr-who-ref26__copy::before,
#who-for .cr-who-ref26__row.is-active .cr-who-ref26__copy::before {
    opacity: 1;
    transform: scaleY(1);
}

#who-for .cr-who-ref26__row--right .cr-who-ref26__copy {
    grid-column: 3;
    justify-self: start;
}

#who-for .cr-who-ref26__row--left .cr-who-ref26__copy {
    grid-column: 1;
    justify-self: end;
}

#who-for .cr-who-ref26__tag {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(205,247,183,.85);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .02em;
    text-shadow: 0 10px 24px rgba(53,23,80,.16);
}

#who-for .cr-who-ref26__tag i {
    color: var(--who-mint);
    font-size: .98rem;
}

#who-for .cr-who-ref26__copy h3 {
    max-width: 9.6ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2.65rem, 4.2vw, 4.6rem);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.07em;
    text-shadow:
        0 2px 2px rgba(53,23,80,.08),
        0 24px 48px rgba(53,23,80,.16);
}

#who-for .cr-who-ref26__copy p {
    max-width: 35ch;
    margin: 0;
    color: rgba(255,255,255,.80);
    font-size: clamp(.98rem, 1.12vw, 1.12rem);
    font-weight: 720;
    line-height: 1.58;
    text-shadow: 0 2px 2px rgba(53,23,80,.10), 0 20px 36px rgba(53,23,80,.16);
}

#who-for .cr-who-ref26__cta {
    min-height: 44px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-top: .15rem;
    padding: .72rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(205,247,183,.75);
    background: linear-gradient(135deg, #b9ff9e 0%, var(--who-mint) 100%);
    color: var(--who-purple);
    box-shadow: 0 18px 38px rgba(145,255,114,.22), inset 0 1px 0 rgba(255,255,255,.70);
    font-size: .86rem;
    font-weight: 950;
    line-height: 1;
    transition: transform .35s ease, box-shadow .35s ease;
}

#who-for .cr-who-ref26__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(145,255,114,.28), inset 0 1px 0 rgba(255,255,255,.78);
}

@keyframes crWho26LightSweep {
    0%, 18% { transform: translateX(-90%); }
    58%, 100% { transform: translateX(90%); }
}

@keyframes crWho26GlowOne {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: .40; }
    50% { transform: translateX(-50%) translateY(44px) scale(1.08); opacity: .62; }
}

@keyframes crWho26GlowTwo {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .42; }
    50% { transform: translate3d(-50px,28px,0) scale(1.08); opacity: .64; }
}

@keyframes crWho26LinePulse {
    0%, 100% { transform: scaleY(.08); opacity: .50; }
    42%, 64% { transform: scaleY(.68); opacity: 1; }
}

@keyframes crWho26DotTravel {
    0% { top: 2%; opacity: 0; }
    14% { opacity: 1; }
    86% { opacity: 1; }
    100% { top: 98%; opacity: 0; }
}

@media (max-width: 1180px) {
    #who-for .cr-who-ref26__title {
        font-size: clamp(3.9rem, 7.6vw, 7.3rem);
    }

    #who-for .cr-who-ref26__copy h3 {
        font-size: clamp(2.35rem, 4vw, 4rem);
    }
}

@media (max-width: 860px) {
    #who-for.cr-who-ref26 {
        padding: 4.5rem 0 5.2rem;
    }

    #who-for .cr-who-ref26__shell {
        width: min(100% - 26px, 720px);
    }

    #who-for .cr-who-ref26__intro {
        min-height: 0;
        padding-top: 0;
        margin-bottom: 3rem;
    }

    #who-for .cr-who-ref26__title {
        width: auto;
        max-width: 11ch;
        white-space: normal;
        font-size: clamp(2.7rem, 11vw, 4.8rem);
        line-height: .90;
    }

    #who-for .cr-who-ref26__lede {
        max-width: 390px;
        font-size: .98rem;
    }

    #who-for .cr-who-ref26__timeline {
        margin-top: 0;
    }

    #who-for .cr-who-ref26__line {
        left: 30px;
        top: 0;
        bottom: 0;
        transform: none;
    }

    #who-for .cr-who-ref26__row {
        min-height: 0;
        grid-template-columns: 62px minmax(0, 1fr);
        align-items: start;
        gap: 1rem;
        padding: 0 0 2.1rem;
        opacity: 1;
        transform: none;
        filter: none !important;
    }

    #who-for .cr-who-ref26__number {
        grid-column: 1;
        width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(205,247,183,.48);
        background: rgba(255,255,255,.52);
        color: #fff;
        font-size: 1.16rem;
        line-height: 1;
        letter-spacing: 0;
        box-shadow: 0 0 0 8px rgba(205,247,183,.08), 0 18px 36px rgba(53,23,80,.10);
        backdrop-filter: blur(10px);
    }

    #who-for .cr-who-ref26__row--right .cr-who-ref26__copy,
    #who-for .cr-who-ref26__row--left .cr-who-ref26__copy {
        grid-column: 2;
        justify-self: stretch;
    }

    #who-for .cr-who-ref26__copy {
        width: 100%;
        padding: 1.05rem 1rem 1.05rem 1.15rem;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.36);
        background: rgba(255,255,255,.16);
        backdrop-filter: blur(10px);
        box-shadow: 0 18px 36px rgba(53,23,80,.06);
    }

    #who-for .cr-who-ref26__copy::before {
        left: .72rem;
        top: 1rem;
        bottom: 1rem;
        height: auto;
        min-height: 0;
        opacity: 1;
        transform: scaleY(1);
    }

    #who-for .cr-who-ref26__copy h3 {
        max-width: none;
        font-size: clamp(1.55rem, 6vw, 2.25rem);
        color: #fff;
    }

    #who-for .cr-who-ref26__copy p {
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.48;
    }
}

@media (max-width: 430px) {
    #who-for.cr-who-ref26 {
        padding: 3.8rem 0 4.6rem;
    }

    #who-for .cr-who-ref26__shell {
        width: min(100% - 22px, 410px);
    }

    #who-for .cr-who-ref26__eyebrow {
        padding: .58rem .82rem;
        font-size: .62rem;
    }

    #who-for .cr-who-ref26__title {
        font-size: clamp(2.35rem, 10vw, 3.1rem);
    }

    #who-for .cr-who-ref26__lede {
        font-size: .9rem;
        line-height: 1.5;
    }

    #who-for .cr-who-ref26__line {
        left: 26px;
    }

    #who-for .cr-who-ref26__row {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: .82rem;
        padding-bottom: 1.8rem;
    }

    #who-for .cr-who-ref26__number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    #who-for .cr-who-ref26__copy {
        gap: .72rem;
        padding: .92rem .92rem .98rem 1.05rem;
    }

    #who-for .cr-who-ref26__tag {
        font-size: .66rem;
    }

    #who-for .cr-who-ref26__copy h3 {
        font-size: clamp(1.38rem, 5.8vw, 1.82rem);
    }

    #who-for .cr-who-ref26__copy p {
        font-size: .82rem;
    }

    #who-for .cr-who-ref26__cta,
    #who-for .cr-who-ref26__main-cta {
        min-height: 43px;
        border-radius: 999px;
        font-size: .82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #who-for.cr-who-ref26::after,
    #who-for .cr-who-ref26__bg-glow,
    #who-for .cr-who-ref26__line span,
    #who-for .cr-who-ref26__line::after {
        animation: none !important;
    }

    #who-for .cr-who-ref26__row {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


/* =========================================================
   V27 WHO SECTION — REFERENCE VIDEO CORRECTION
   Exact direction: pale lavender canvas, dark purple hero,
   one centered vertical line, large white numbers, content
   rising from the same center area alternating left/right.
   ========================================================= */
#who-for.cr-who-ref26 {
    --who-purple: #351750 !important;
    --who-mint: #CDF7B7 !important;
    --who-bg: #f4edf7 !important;
    --who-bg-2: #f1e8f5 !important;
    --who-ink-soft: rgba(53, 23, 80, .78) !important;
    min-height: auto !important;
    padding: clamp(82px, 8.5vw, 130px) 0 clamp(100px, 12vw, 170px) !important;
    background:
        radial-gradient(circle at 50% 11%, rgba(255,255,255,.92), transparent 31%),
        radial-gradient(circle at 50% 38%, rgba(205,247,183,.17), transparent 22%),
        linear-gradient(180deg, #faf6fc 0%, #f4edf7 48%, #f0e6f4 100%) !important;
    color: var(--who-purple) !important;
}

#who-for.cr-who-ref26::before {
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(205,247,183,.28) calc(50% - .5px), rgba(205,247,183,.28) calc(50% + .5px), transparent calc(50% + .5px)),
        linear-gradient(115deg, transparent 0 20%, rgba(255,255,255,.38) 25%, transparent 30%),
        linear-gradient(245deg, transparent 0 66%, rgba(205,247,183,.11) 70%, transparent 76%) !important;
    opacity: 1 !important;
}

#who-for.cr-who-ref26::after {
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.70) 42%, rgba(205,247,183,.18) 50%, transparent 62%) !important;
    opacity: .44 !important;
}

#who-for .cr-who-ref26__bg-glow--one {
    background: radial-gradient(circle, rgba(205,247,183,.28), transparent 68%) !important;
    opacity: .45 !important;
}

#who-for .cr-who-ref26__bg-glow--two {
    background: radial-gradient(circle, rgba(53,23,80,.055), transparent 67%) !important;
    opacity: .42 !important;
}

#who-for .cr-who-ref26__shell {
    width: min(100% - 36px, 1240px) !important;
}

#who-for .cr-who-ref26__intro {
    min-height: clamp(470px, 70vh, 670px) !important;
    width: min(100%, 1200px) !important;
    padding-top: clamp(10px, 2vw, 26px) !important;
    justify-content: flex-start !important;
    position: relative !important;
    z-index: 4 !important;
}

#who-for .cr-who-ref26__eyebrow {
    background: rgba(255,255,255,.88) !important;
    border-color: rgba(53,23,80,.08) !important;
    color: rgba(53,23,80,.70) !important;
    box-shadow: 0 18px 38px rgba(53,23,80,.10) !important;
}

#who-for .cr-who-ref26__eyebrow i {
    color: var(--who-purple) !important;
}

#who-for .cr-who-ref26__title {
    color: var(--who-purple) !important;
    width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    font-size: clamp(4.2rem, 8.3vw, 8.8rem) !important;
    line-height: .78 !important;
    letter-spacing: -.105em !important;
    text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 26px 64px rgba(53,23,80,.08) !important;
}

#who-for .cr-who-ref26__lede {
    max-width: 720px !important;
    color: var(--who-purple) !important;
    font-weight: 850 !important;
    margin-top: clamp(22px, 2.1vw, 32px) !important;
}

#who-for .cr-who-ref26__main-cta,
#who-for .cr-who-ref26__cta {
    background: linear-gradient(135deg, #b9ff9e 0%, var(--who-mint) 100%) !important;
    color: var(--who-purple) !important;
    border-color: rgba(205,247,183,.86) !important;
    box-shadow: 0 20px 42px rgba(145,255,114,.26), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

#who-for .cr-who-ref26__timeline {
    margin-top: -84px !important;
    position: relative !important;
    z-index: 3 !important;
}

#who-for .cr-who-ref26__line {
    top: -360px !important;
    bottom: -110px !important;
    width: 2px !important;
    background: rgba(205,247,183,.36) !important;
    box-shadow: 0 0 20px rgba(205,247,183,.16) !important;
    z-index: 1 !important;
}

#who-for .cr-who-ref26__line span {
    background: linear-gradient(180deg, transparent 0%, var(--who-mint) 13%, rgba(205,247,183,.82) 48%, rgba(205,247,183,.20) 76%, transparent 100%) !important;
    box-shadow: 0 0 32px rgba(205,247,183,.48) !important;
    animation: crWho27LinePulse 6.8s ease-in-out infinite !important;
}

#who-for .cr-who-ref26__line::after {
    width: 13px !important;
    height: 13px !important;
    background: var(--who-mint) !important;
    box-shadow: 0 0 32px rgba(205,247,183,.96) !important;
    animation: crWho27DotTravel 5.4s ease-in-out infinite !important;
}

#who-for .cr-who-ref26__row {
    min-height: clamp(420px, 68vh, 620px) !important;
    grid-template-columns: minmax(0, 1fr) clamp(145px, 14vw, 210px) minmax(0, 1fr) !important;
    column-gap: clamp(2rem, 4.2vw, 5rem) !important;
    opacity: .08 !important;
    transform: translate3d(0, 84px, 0) !important;
    transition: opacity 900ms ease, transform 900ms cubic-bezier(.16,.84,.2,1), filter 900ms ease !important;
    filter: blur(1px) !important;
}

#who-for .cr-who-ref26__row.is-inview,
#who-for .cr-who-ref26__row.is-active {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    filter: none !important;
}

#who-for .cr-who-ref26__number {
    color: rgba(255,255,255,.76) !important;
    font-size: clamp(6.5rem, 11vw, 12.5rem) !important;
    font-weight: 950 !important;
    line-height: .76 !important;
    letter-spacing: -.105em !important;
    text-shadow:
        0 1px 0 rgba(255,255,255,.75),
        0 24px 46px rgba(53,23,80,.12),
        0 0 34px rgba(255,255,255,.46) !important;
    z-index: 4 !important;
}

#who-for .cr-who-ref26__row.is-inview .cr-who-ref26__number,
#who-for .cr-who-ref26__row.is-active .cr-who-ref26__number {
    color: #fff !important;
    transform: scale(1.05) !important;
    text-shadow:
        0 1px 0 rgba(255,255,255,.9),
        0 26px 52px rgba(53,23,80,.15),
        0 0 42px rgba(255,255,255,.65),
        0 0 34px rgba(205,247,183,.18) !important;
}

#who-for .cr-who-ref26__copy {
    width: min(100%, 500px) !important;
    gap: .95rem !important;
    padding-left: 2.05rem !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: .2 !important;
    transition: opacity 900ms ease, transform 900ms cubic-bezier(.16,.84,.2,1) !important;
}

#who-for .cr-who-ref26__row--right .cr-who-ref26__copy {
    transform: translate3d(64px, 42px, 0) !important;
}

#who-for .cr-who-ref26__row--left .cr-who-ref26__copy {
    transform: translate3d(-64px, 42px, 0) !important;
}

#who-for .cr-who-ref26__row.is-inview .cr-who-ref26__copy,
#who-for .cr-who-ref26__row.is-active .cr-who-ref26__copy {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

#who-for .cr-who-ref26__copy::before {
    background: linear-gradient(180deg, var(--who-mint), rgba(205,247,183,.04)) !important;
    box-shadow: 0 0 26px rgba(205,247,183,.35) !important;
}

#who-for .cr-who-ref26__tag {
    color: rgba(205,247,183,.72) !important;
    font-weight: 900 !important;
    text-shadow: none !important;
}

#who-for .cr-who-ref26__copy h3 {
    color: #ffffff !important;
    max-width: 9.7ch !important;
    font-size: clamp(2.8rem, 4.15vw, 4.75rem) !important;
    line-height: .88 !important;
    letter-spacing: -.085em !important;
    text-shadow: 0 2px 1px rgba(255,255,255,.26), 0 26px 58px rgba(53,23,80,.22) !important;
}

#who-for .cr-who-ref26__copy p {
    color: rgba(53,23,80,.88) !important;
    font-weight: 850 !important;
    line-height: 1.55 !important;
    text-shadow: none !important;
}

@keyframes crWho27LinePulse {
    0%, 100% { transform: scaleY(.10); opacity: .46; }
    42%, 66% { transform: scaleY(.78); opacity: 1; }
}

@keyframes crWho27DotTravel {
    0% { top: 0%; opacity: 0; }
    14% { opacity: 1; }
    86% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (max-width: 1180px) {
    #who-for .cr-who-ref26__title {
        font-size: clamp(3.8rem, 7.6vw, 7.4rem) !important;
    }
}

@media (max-width: 860px) {
    #who-for.cr-who-ref26 {
        padding: 4.2rem 0 5rem !important;
    }

    #who-for .cr-who-ref26__intro {
        min-height: auto !important;
        margin-bottom: 3rem !important;
    }

    #who-for .cr-who-ref26__title {
        width: auto !important;
        max-width: 11ch !important;
        white-space: normal !important;
        font-size: clamp(2.7rem, 11vw, 4.6rem) !important;
        line-height: .90 !important;
    }

    #who-for .cr-who-ref26__timeline {
        margin-top: 0 !important;
    }

    #who-for .cr-who-ref26__line {
        left: 28px !important;
        top: 0 !important;
        bottom: 0 !important;
        transform: none !important;
    }

    #who-for .cr-who-ref26__row {
        min-height: 0 !important;
        grid-template-columns: 58px minmax(0, 1fr) !important;
        gap: .95rem !important;
        padding: 0 0 2rem !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    #who-for .cr-who-ref26__number {
        grid-column: 1 !important;
        width: 54px !important;
        height: 54px !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 50% !important;
        border: 1px solid rgba(205,247,183,.52) !important;
        background: rgba(255,255,255,.62) !important;
        color: #fff !important;
        font-size: 1.05rem !important;
        letter-spacing: 0 !important;
        box-shadow: 0 0 0 8px rgba(205,247,183,.08), 0 18px 36px rgba(53,23,80,.10) !important;
        backdrop-filter: blur(10px) !important;
    }

    #who-for .cr-who-ref26__row--right .cr-who-ref26__copy,
    #who-for .cr-who-ref26__row--left .cr-who-ref26__copy {
        grid-column: 2 !important;
        justify-self: stretch !important;
        opacity: 1 !important;
        transform: none !important;
    }

    #who-for .cr-who-ref26__copy {
        width: 100% !important;
        padding: 1.05rem 1rem 1.05rem 1.15rem !important;
        border: 1px solid rgba(255,255,255,.46) !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,.17) !important;
        box-shadow: 0 18px 36px rgba(53,23,80,.06) !important;
        backdrop-filter: blur(10px) !important;
    }

    #who-for .cr-who-ref26__copy h3 {
        color: #fff !important;
        max-width: none !important;
        font-size: clamp(1.55rem, 6vw, 2.25rem) !important;
        line-height: .98 !important;
    }

    #who-for .cr-who-ref26__copy p {
        font-size: .86rem !important;
        line-height: 1.48 !important;
    }
}

@media (max-width: 430px) {
    #who-for .cr-who-ref26__title {
        font-size: clamp(2.25rem, 10vw, 3.1rem) !important;
    }

    #who-for .cr-who-ref26__line {
        left: 25px !important;
    }

    #who-for .cr-who-ref26__row {
        grid-template-columns: 52px minmax(0, 1fr) !important;
        gap: .75rem !important;
    }

    #who-for .cr-who-ref26__number {
        width: 48px !important;
        height: 48px !important;
        font-size: .96rem !important;
    }
}


/* =========================================================
   V28 WHO SECTION — REFERENCE VIDEO SCROLL-TELLING TIMELINE
   Exact direction: light lavender, centered intro, sticky center line,
   large white numbers, left/right copy rising into same visual position.
   Brand colours: #351750 and #CDF7B7.
   ========================================================= */

#who-for.cr-who-video28 {
    --who28-purple: #351750;
    --who28-purple-soft: rgba(53, 23, 80, .68);
    --who28-mint: #CDF7B7;
    --who28-bg: #F4ECF8;
    --who28-bg-2: #FAF7FC;
    position: relative;
    overflow: clip;
    isolation: isolate;
    min-height: 100vh;
    padding: clamp(84px, 9vw, 128px) 0 0;
    background:
        radial-gradient(circle at 50% 8%, rgba(205,247,183,.38), transparent 20%),
        radial-gradient(circle at 22% 74%, rgba(205,247,183,.20), transparent 26%),
        radial-gradient(circle at 82% 72%, rgba(53,23,80,.06), transparent 30%),
        linear-gradient(180deg, var(--who28-bg-2) 0%, var(--who28-bg) 45%, #EFE3F6 100%);
    color: var(--who28-purple);
}

#who-for.cr-who-video28::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(205,247,183,.34) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)),
        linear-gradient(112deg, transparent 0 20%, rgba(255,255,255,.38) 26%, transparent 38%),
        linear-gradient(112deg, transparent 0 62%, rgba(205,247,183,.20) 70%, transparent 82%);
    opacity: .70;
    pointer-events: none;
}

#who-for.cr-who-video28::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 20vh;
    left: -20%;
    width: 58%;
    height: 70%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.54) 44%, rgba(205,247,183,.18) 50%, transparent 68%);
    filter: blur(18px);
    opacity: .55;
    transform: translateX(-70%);
    animation: who28LightSweep 12s ease-in-out infinite;
    pointer-events: none;
}

#who-for.cr-who-video28 .cr-who28__wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 34%, rgba(205,247,183,.26), transparent 18%),
        radial-gradient(circle at 50% 88%, rgba(255,255,255,.48), transparent 34%);
}

#who-for.cr-who-video28 .cr-who28__shell {
    width: min(100% - 42px, 1280px);
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

#who-for.cr-who-video28 .cr-who28__intro {
    min-height: clamp(420px, 54vh, 560px);
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding-bottom: clamp(44px, 6vw, 74px);
}

#who-for.cr-who-video28 .cr-who28__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 1.1rem;
    padding: .64rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(53,23,80,.08);
    box-shadow: 0 18px 36px rgba(53,23,80,.10);
    color: rgba(53,23,80,.68);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .10em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

#who-for.cr-who-video28 .cr-who28__eyebrow i {
    color: var(--who28-purple);
}

#who-for.cr-who-video28 .cr-who28__intro h2 {
    max-width: 980px;
    margin: 0;
    color: var(--who28-purple);
    font-family: "Inter", "Poppins", system-ui, sans-serif;
    font-size: clamp(54px, 7.2vw, 104px);
    font-weight: 950;
    line-height: .82;
    letter-spacing: -.085em;
    text-align: center;
    text-wrap: balance;
}

#who-for.cr-who-video28 .cr-who28__intro > p:not(.cr-who28__eyebrow) {
    max-width: 620px;
    margin: 1.05rem auto 0;
    color: rgba(255,255,255,.68);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.55;
    font-weight: 700;
}

#who-for.cr-who-video28 .cr-who28__cta,
#who-for.cr-who-video28 .cr-who28__mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .58rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #BFF6A9 0%, var(--who28-mint) 100%);
    color: var(--who28-purple);
    border: 1px solid rgba(205,247,183,.88);
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(205,247,183,.38);
    transition: transform .28s ease, box-shadow .28s ease;
}

#who-for.cr-who-video28 .cr-who28__cta {
    margin-top: 1.45rem;
    min-height: 46px;
    padding: .76rem 1.18rem;
    font-size: .88rem;
}

#who-for.cr-who-video28 .cr-who28__mini {
    width: max-content;
    min-height: 38px;
    padding: .58rem .9rem;
    font-size: .78rem;
}

#who-for.cr-who-video28 .cr-who28__cta:hover,
#who-for.cr-who-video28 .cr-who28__mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(205,247,183,.48);
}

#who-for.cr-who-video28 .cr-who28__scroll {
    --who28-current: 0;
    position: relative;
    height: calc((var(--cr-who-count) * 86vh) + 28vh);
    min-height: 500vh;
    margin-top: -4vh;
}

#who-for.cr-who-video28 .cr-who28__sticky {
    position: sticky;
    top: var(--sticky-offset, 92px);
    height: calc(100vh - var(--sticky-offset, 92px));
    min-height: 610px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

#who-for.cr-who-video28 .cr-who28__centerline {
    position: absolute;
    left: 50%;
    top: 4%;
    bottom: 4%;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(205,247,183,.26);
    box-shadow: 0 0 22px rgba(205,247,183,.24);
    overflow: hidden;
}

#who-for.cr-who-video28 .cr-who28__centerline span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc((var(--who28-progress, 0) * 1%) + 9%);
    max-height: 100%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--who28-mint), rgba(205,247,183,.38), rgba(205,247,183,.05));
    box-shadow: 0 0 28px rgba(205,247,183,.50);
    transition: height .3s ease;
}

#who-for.cr-who-video28 .cr-who28__centerline i {
    position: absolute;
    left: 50%;
    top: calc(var(--who28-progress, 0) * 1%);
    width: 13px;
    height: 13px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: var(--who28-mint);
    box-shadow: 0 0 0 8px rgba(205,247,183,.14), 0 0 28px rgba(205,247,183,.85);
    transition: top .32s ease;
}

#who-for.cr-who-video28 .cr-who28__scene-list {
    position: relative;
    width: 100%;
    height: 100%;
}

#who-for.cr-who-video28 .cr-who28__scene {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 190px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 3.2vw, 4.2rem);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 90px, 0);
    transition: opacity 620ms ease, transform 720ms cubic-bezier(.2,.8,.2,1), filter 620ms ease;
    filter: blur(2px);
}

#who-for.cr-who-video28 .cr-who28__scene.is-before {
    opacity: 0;
    transform: translate3d(0, -110px, 0);
}

#who-for.cr-who-video28 .cr-who28__scene.is-after {
    opacity: 0;
    transform: translate3d(0, 130px, 0);
}

#who-for.cr-who-video28 .cr-who28__scene.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

#who-for.cr-who-video28 .cr-who28__scene.is-near-before {
    opacity: .32;
    transform: translate3d(0, -230px, 0) scale(.98);
    filter: blur(.2px);
}

#who-for.cr-who-video28 .cr-who28__scene.is-near-after {
    opacity: .32;
    transform: translate3d(0, 230px, 0) scale(.98);
    filter: blur(.2px);
}

#who-for.cr-who-video28 .cr-who28__number {
    grid-column: 2;
    justify-self: center;
    color: #fff;
    font-family: "Inter", "Poppins", system-ui, sans-serif;
    font-size: clamp(82px, 9vw, 150px);
    font-weight: 950;
    line-height: .76;
    letter-spacing: -.08em;
    text-shadow: 0 22px 38px rgba(53,23,80,.10), 0 0 30px rgba(255,255,255,.95);
    user-select: none;
}

#who-for.cr-who-video28 .cr-who28__copy {
    width: min(100%, 410px);
    display: grid;
    gap: .78rem;
    transform: translateY(42px);
    transition: transform 760ms cubic-bezier(.2,.8,.2,1);
}

#who-for.cr-who-video28 .cr-who28__scene.is-active .cr-who28__copy {
    transform: translateY(0);
}

#who-for.cr-who-video28 .cr-who28__scene--right .cr-who28__copy {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}

#who-for.cr-who-video28 .cr-who28__scene--left .cr-who28__copy {
    grid-column: 1;
    justify-self: end;
    text-align: left;
}

#who-for.cr-who-video28 .cr-who28__label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: max-content;
    color: rgba(53,23,80,.42);
    font-size: .70rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#who-for.cr-who-video28 .cr-who28__label i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(205,247,183,.72);
    color: var(--who28-purple);
    font-size: .9rem;
}

#who-for.cr-who-video28 .cr-who28__copy h3 {
    margin: 0;
    color: #fff;
    font-family: "Inter", "Poppins", system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 950;
    line-height: .86;
    letter-spacing: -.07em;
    text-shadow: 0 16px 32px rgba(53,23,80,.10), 0 0 24px rgba(255,255,255,.86);
}

#who-for.cr-who-video28 .cr-who28__copy p {
    max-width: 33ch;
    margin: 0;
    color: rgba(53,23,80,.76);
    font-size: clamp(13px, .98vw, 15px);
    font-weight: 750;
    line-height: 1.55;
}

@keyframes who28LightSweep {
    0%, 18% { transform: translateX(-70%); opacity: .0; }
    34% { opacity: .58; }
    70%, 100% { transform: translateX(230%); opacity: 0; }
}

@media (max-width: 1024px) {
    #who-for.cr-who-video28 .cr-who28__sticky {
        min-height: 590px;
    }

    #who-for.cr-who-video28 .cr-who28__scene {
        grid-template-columns: minmax(0, 1fr) minmax(90px, 140px) minmax(0, 1fr);
        gap: 1.35rem;
    }

    #who-for.cr-who-video28 .cr-who28__copy h3 {
        font-size: clamp(30px, 5vw, 50px);
    }
}

@media (max-width: 767px) {
    #who-for.cr-who-video28 {
        padding-top: 58px;
        overflow: hidden;
    }

    #who-for.cr-who-video28 .cr-who28__shell {
        width: min(100% - 24px, 430px);
    }

    #who-for.cr-who-video28 .cr-who28__intro {
        min-height: 390px;
        padding-bottom: 42px;
    }

    #who-for.cr-who-video28 .cr-who28__eyebrow {
        font-size: .62rem;
        padding: .58rem .76rem;
    }

    #who-for.cr-who-video28 .cr-who28__intro h2 {
        max-width: 9.5ch;
        font-size: clamp(40px, 13vw, 58px);
        line-height: .86;
    }

    #who-for.cr-who-video28 .cr-who28__intro > p:not(.cr-who28__eyebrow) {
        max-width: 340px;
        font-size: 13.5px;
    }

    #who-for.cr-who-video28 .cr-who28__scroll {
        min-height: 440vh;
        height: calc((var(--cr-who-count) * 74vh) + 18vh);
        margin-top: -2vh;
    }

    #who-for.cr-who-video28 .cr-who28__sticky {
        top: 100px;
        height: calc(100vh - 100px);
        min-height: 520px;
        place-items: stretch;
    }

    #who-for.cr-who-video28 .cr-who28__centerline {
        left: 50%;
        top: 2%;
        bottom: 2%;
    }

    #who-for.cr-who-video28 .cr-who28__scene {
        grid-template-columns: 1fr 78px 1fr;
        gap: .72rem;
        align-items: center;
    }

    #who-for.cr-who-video28 .cr-who28__number {
        font-size: clamp(48px, 16vw, 72px);
    }

    #who-for.cr-who-video28 .cr-who28__copy {
        width: 100%;
        max-width: 160px;
        gap: .55rem;
    }

    #who-for.cr-who-video28 .cr-who28__scene--left .cr-who28__copy {
        grid-column: 1;
        justify-self: end;
    }

    #who-for.cr-who-video28 .cr-who28__scene--right .cr-who28__copy {
        grid-column: 3;
        justify-self: start;
    }

    #who-for.cr-who-video28 .cr-who28__label {
        display: none;
    }

    #who-for.cr-who-video28 .cr-who28__copy h3 {
        font-size: clamp(23px, 7vw, 32px);
        line-height: .88;
    }

    #who-for.cr-who-video28 .cr-who28__copy p {
        font-size: 11px;
        line-height: 1.35;
        font-weight: 750;
    }

    #who-for.cr-who-video28 .cr-who28__mini {
        min-height: 30px;
        padding: .42rem .65rem;
        font-size: .64rem;
    }

    #who-for.cr-who-video28 .cr-who28__scene.is-near-before {
        transform: translate3d(0, -155px, 0) scale(.98);
    }

    #who-for.cr-who-video28 .cr-who28__scene.is-near-after {
        transform: translate3d(0, 155px, 0) scale(.98);
    }
}

@media (max-width: 390px) {
    #who-for.cr-who-video28 .cr-who28__scene {
        grid-template-columns: 1fr 66px 1fr;
        gap: .55rem;
    }

    #who-for.cr-who-video28 .cr-who28__copy {
        max-width: 142px;
    }

    #who-for.cr-who-video28 .cr-who28__copy h3 {
        font-size: 22px;
    }

    #who-for.cr-who-video28 .cr-who28__copy p {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #who-for.cr-who-video28::after {
        animation: none !important;
    }

    #who-for.cr-who-video28 .cr-who28__scene,
    #who-for.cr-who-video28 .cr-who28__copy,
    #who-for.cr-who-video28 .cr-who28__centerline span,
    #who-for.cr-who-video28 .cr-who28__centerline i {
        transition: none !important;
    }
}



/* =========================================================
   V29 WHO SECTION — FIXED REFERENCE SCROLL STORY
   Light lavender reference-video look. Same fixed stage: content
   rises into one place, alternating left/right around a centre line.
   ========================================================= */

#who-for.cr-who-video29 {
    --who29-purple: #351750;
    --who29-purple-soft: #6f5f7e;
    --who29-mint: #CDF7B7;
    --who29-bg: #f6eff8;
    --who29-bg2: #fbf8fc;
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: clamp(5rem, 7vw, 7rem) 0 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(205,247,183,.24), transparent 24%),
        radial-gradient(circle at 12% 54%, rgba(53,23,80,.035), transparent 30%),
        radial-gradient(circle at 90% 72%, rgba(205,247,183,.18), transparent 28%),
        linear-gradient(180deg, var(--who29-bg2) 0%, var(--who29-bg) 56%, #f8f4fa 100%);
    color: var(--who29-purple);
}

#who-for.cr-who-video29::before,
#who-for.cr-who-video29::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

#who-for.cr-who-video29::before {
    inset: 0;
    background:
        linear-gradient(116deg, transparent 0 20%, rgba(53,23,80,.030) 25%, transparent 31%),
        linear-gradient(116deg, transparent 0 68%, rgba(205,247,183,.20) 74%, transparent 80%);
    opacity: .9;
}

#who-for.cr-who-video29::after {
    width: 42rem;
    height: 42rem;
    left: 50%;
    top: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205,247,183,.32), transparent 64%);
    filter: blur(18px);
    transform: translateX(-50%);
    opacity: .75;
}

#who-for.cr-who-video29 .cr-who29__glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    z-index: 0;
}

#who-for.cr-who-video29 .cr-who29__glow--one {
    width: 22rem;
    height: 22rem;
    right: -8rem;
    top: 20%;
    background: rgba(205,247,183,.18);
}

#who-for.cr-who-video29 .cr-who29__glow--two {
    width: 18rem;
    height: 18rem;
    left: -7rem;
    bottom: 15%;
    background: rgba(53,23,80,.05);
}

#who-for.cr-who-video29 .cr-who29__shell {
    position: relative;
    z-index: 2;
    width: min(100% - 36px, 1180px);
    margin-inline: auto;
}

#who-for.cr-who-video29 .cr-who29__intro {
    width: min(100%, 900px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    text-align: center;
}

#who-for.cr-who-video29 .cr-who29__eyebrow {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: .52rem;
    margin: 0 0 1.25rem;
    padding: .62rem .95rem;
    border-radius: 999px;
    border: 1px solid rgba(53,23,80,.08);
    background: rgba(255,255,255,.82);
    color: rgba(53,23,80,.68);
    font-size: .72rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .105em;
    text-transform: uppercase;
    box-shadow: 0 18px 36px rgba(53,23,80,.08);
    backdrop-filter: blur(12px);
}

#who-for.cr-who-video29 .cr-who29__eyebrow i {
    color: var(--who29-purple);
}

#who-for.cr-who-video29 .cr-who29__intro h2 {
    max-width: 980px;
    margin: 0;
    color: var(--who29-purple);
    font-size: clamp(3.6rem, 6.7vw, 7.4rem);
    line-height: .82;
    letter-spacing: -.085em;
    font-weight: 950;
    text-align: center;
}

#who-for.cr-who-video29 .cr-who29__intro > p:not(.cr-who29__eyebrow) {
    max-width: 640px;
    margin: 1.1rem 0 0;
    color: rgba(205,247,183,.78);
    font-size: clamp(.98rem, 1.05vw, 1.12rem);
    line-height: 1.55;
    font-weight: 700;
}

#who-for.cr-who-video29 .cr-who29__cta,
#who-for.cr-who-video29 .cr-who29__mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    border: 1px solid rgba(205,247,183,.76);
    background: linear-gradient(135deg, var(--who29-mint), #b7f49e);
    color: var(--who29-purple);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(205,247,183,.38);
    transition: transform .28s ease, box-shadow .28s ease;
}

#who-for.cr-who-video29 .cr-who29__cta {
    min-height: 44px;
    margin-top: 1.05rem;
    padding: .76rem 1.05rem;
    font-size: .86rem;
}

#who-for.cr-who-video29 .cr-who29__mini {
    width: fit-content;
    min-height: 38px;
    padding: .64rem .92rem;
    font-size: .78rem;
    box-shadow: 0 12px 26px rgba(205,247,183,.30);
}

#who-for.cr-who-video29 .cr-who29__cta:hover,
#who-for.cr-who-video29 .cr-who29__mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(205,247,183,.44);
}

#who-for.cr-who-video29 .cr-who29__story {
    position: relative;
    z-index: 2;
    height: calc((var(--cr-who-count, 6) * 92vh) + 8vh);
    min-height: 3600px;
    margin-top: clamp(2.2rem, 5vw, 4rem);
}

#who-for.cr-who-video29 .cr-who29__sticky {
    position: sticky;
    top: 84px;
    height: calc(100vh - 84px);
    min-height: 620px;
    overflow: hidden;
}

#who-for.cr-who-video29 .cr-who29__line {
    position: absolute;
    left: 50%;
    top: 16%;
    bottom: 16%;
    width: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(53,23,80,.18);
    box-shadow: 0 0 22px rgba(205,247,183,.15);
    overflow: hidden;
    z-index: 2;
}

#who-for.cr-who-video29 .cr-who29__line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(var(--who29-progress, 0) * 1%);
    min-height: 8%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--who29-mint), rgba(205,247,183,.50), rgba(205,247,183,0));
    box-shadow: 0 0 24px rgba(205,247,183,.55);
    transition: height .38s ease;
}

#who-for.cr-who-video29 .cr-who29__line i {
    position: absolute;
    left: 50%;
    top: calc(var(--who29-progress, 0) * 1%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--who29-mint);
    box-shadow: 0 0 0 8px rgba(205,247,183,.16), 0 0 26px rgba(205,247,183,.8);
    transform: translate(-50%, -50%);
    transition: top .38s ease;
}

#who-for.cr-who-video29 .cr-who29__scenes {
    position: absolute;
    inset: 0;
}

#who-for.cr-who-video29 .cr-who29__scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .58s ease, transform .58s cubic-bezier(.2,.78,.18,1), filter .58s ease;
    transform: translateY(90px);
    filter: blur(2px);
}

#who-for.cr-who-video29 .cr-who29__scene.is-active {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

#who-for.cr-who-video29 .cr-who29__scene.is-near-before {
    opacity: .28;
    transform: translateY(-135px);
    filter: blur(.4px);
}

#who-for.cr-who-video29 .cr-who29__scene.is-near-after {
    opacity: .18;
    transform: translateY(150px);
    filter: blur(.8px);
}

#who-for.cr-who-video29 .cr-who29__scene.is-before {
    transform: translateY(-230px);
}

#who-for.cr-who-video29 .cr-who29__scene.is-after {
    transform: translateY(230px);
}

#who-for.cr-who-video29 .cr-who29__number {
    position: absolute;
    top: 43%;
    color: rgba(255,255,255,.96);
    font-size: clamp(6.3rem, 12vw, 12.5rem);
    line-height: .8;
    font-weight: 950;
    letter-spacing: -.075em;
    text-shadow: 0 28px 56px rgba(53,23,80,.09), 0 0 1px rgba(53,23,80,.04);
    user-select: none;
    transition: transform .58s cubic-bezier(.2,.78,.18,1), opacity .58s ease;
}

#who-for.cr-who-video29 .cr-who29__copy {
    position: absolute;
    top: 43.5%;
    width: min(370px, 28vw);
    display: grid;
    gap: .72rem;
    color: var(--who29-purple);
    transition: transform .58s cubic-bezier(.2,.78,.18,1), opacity .58s ease;
}

#who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__number {
    right: calc(50% + 88px);
    transform: translate(0, -50%) translateX(-14px);
}

#who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__copy {
    left: calc(50% + 105px);
    transform: translateY(-50%) translateX(24px);
    text-align: left;
}

#who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__number {
    left: calc(50% + 88px);
    transform: translate(0, -50%) translateX(14px);
}

#who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__copy {
    right: calc(50% + 105px);
    transform: translateY(-50%) translateX(-24px);
    text-align: right;
    justify-items: end;
}

#who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--right .cr-who29__number,
#who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--left .cr-who29__number {
    transform: translate(0, -50%) translateX(0);
}

#who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--right .cr-who29__copy,
#who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--left .cr-who29__copy {
    transform: translateY(-50%) translateX(0);
}

#who-for.cr-who-video29 .cr-who29__label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(53,23,80,.56);
    font-size: .70rem;
    line-height: 1;
    letter-spacing: .08em;
    font-weight: 900;
    text-transform: uppercase;
}

#who-for.cr-who-video29 .cr-who29__label i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(205,247,183,.62);
    color: var(--who29-purple);
}

#who-for.cr-who-video29 .cr-who29__copy h3 {
    margin: 0;
    color: var(--who29-purple);
    font-size: clamp(2.1rem, 3.2vw, 3.1rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
}

#who-for.cr-who-video29 .cr-who29__copy p {
    max-width: 36ch;
    margin: 0;
    color: rgba(205,247,183,.78);
    font-size: clamp(.96rem, 1.05vw, 1.08rem);
    line-height: 1.62;
    font-weight: 650;
}

@media (max-width: 1120px) {
    #who-for.cr-who-video29 .cr-who29__intro h2 {
        font-size: clamp(3.1rem, 7.2vw, 6rem);
    }

    #who-for.cr-who-video29 .cr-who29__copy {
        width: min(340px, 31vw);
    }

    #who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__number {
        right: calc(50% + 66px);
    }

    #who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__copy {
        left: calc(50% + 84px);
    }

    #who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__number {
        left: calc(50% + 66px);
    }

    #who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__copy {
        right: calc(50% + 84px);
    }
}

@media (max-width: 820px) {
    #who-for.cr-who-video29 {
        padding-top: 4rem;
        overflow: hidden;
    }

    #who-for.cr-who-video29 .cr-who29__shell {
        width: min(100% - 28px, 720px);
    }

    #who-for.cr-who-video29 .cr-who29__intro h2 {
        max-width: 10.5ch;
        font-size: clamp(2.45rem, 10.5vw, 3.6rem);
        line-height: .92;
    }

    #who-for.cr-who-video29 .cr-who29__intro > p:not(.cr-who29__eyebrow) {
        max-width: 360px;
        font-size: .96rem;
    }

    #who-for.cr-who-video29 .cr-who29__story {
        height: auto;
        min-height: 0;
        margin-top: 2.4rem;
        padding: 0 0 4rem;
    }

    #who-for.cr-who-video29 .cr-who29__sticky {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        width: min(100% - 28px, 430px);
        margin: 0 auto;
        overflow: visible;
    }

    #who-for.cr-who-video29 .cr-who29__line {
        left: 30px;
        top: 16px;
        bottom: 16px;
        transform: none;
    }

    #who-for.cr-who-video29 .cr-who29__line span {
        height: 100%;
    }

    #who-for.cr-who-video29 .cr-who29__line i {
        display: none;
    }

    #who-for.cr-who-video29 .cr-who29__scenes {
        position: relative;
        inset: auto;
        display: grid;
        gap: 1rem;
    }

    #who-for.cr-who-video29 .cr-who29__scene,
    #who-for.cr-who-video29 .cr-who29__scene.is-active,
    #who-for.cr-who-video29 .cr-who29__scene.is-before,
    #who-for.cr-who-video29 .cr-who29__scene.is-after,
    #who-for.cr-who-video29 .cr-who29__scene.is-near-before,
    #who-for.cr-who-video29 .cr-who29__scene.is-near-after {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 62px minmax(0, 1fr);
        gap: .95rem;
        align-items: start;
        opacity: 1;
        filter: none;
        transform: none;
        pointer-events: auto;
        min-height: 0;
    }

    #who-for.cr-who-video29 .cr-who29__number,
    #who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__number,
    #who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__number,
    #who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--right .cr-who29__number,
    #who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--left .cr-who29__number {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.92);
        color: var(--who29-purple);
        border: 1px solid rgba(205,247,183,.72);
        box-shadow: 0 0 0 8px rgba(205,247,183,.20), 0 16px 28px rgba(53,23,80,.10);
        font-size: 1.12rem;
        line-height: 1;
        letter-spacing: 0;
        text-shadow: none;
        transform: none;
        z-index: 3;
    }

    #who-for.cr-who-video29 .cr-who29__copy,
    #who-for.cr-who-video29 .cr-who29__scene--right .cr-who29__copy,
    #who-for.cr-who-video29 .cr-who29__scene--left .cr-who29__copy,
    #who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--right .cr-who29__copy,
    #who-for.cr-who-video29 .cr-who29__scene.is-active.cr-who29__scene--left .cr-who29__copy {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        padding: 1rem;
        border-radius: 20px;
        border: 1px solid rgba(53,23,80,.08);
        background: rgba(255,255,255,.62);
        box-shadow: 0 18px 40px rgba(53,23,80,.08);
        transform: none;
        text-align: left;
        justify-items: start;
        backdrop-filter: blur(12px);
    }

    #who-for.cr-who-video29 .cr-who29__copy h3 {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    }

    #who-for.cr-who-video29 .cr-who29__copy p {
        font-size: .88rem;
        line-height: 1.5;
    }

    #who-for.cr-who-video29 .cr-who29__mini {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #who-for.cr-who-video29 .cr-who29__scene,
    #who-for.cr-who-video29 .cr-who29__line span,
    #who-for.cr-who-video29 .cr-who29__line i {
        transition: none !important;
    }
}



/* Who-for responsive care timeline */
#who-for.cr-who-video30 {
    --who30-purple: #351750;
    --who30-mint: #CDF7B7;
    --who30-bg: #07030f;
    --who30-bg2: #0c0618;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.5rem, 6vw, 7rem) 0 clamp(5rem, 7vw, 7rem);
    background:
        radial-gradient(circle at 50% 8%, rgba(205,247,183,.09), transparent 30%),
        radial-gradient(circle at 12% 42%, rgba(53,23,80,.65), transparent 32%),
        linear-gradient(180deg, var(--who30-bg2) 0%, var(--who30-bg) 46%, #05020b 100%);
    color: #ffffff;
}

#who-for.cr-who-video30::before,
#who-for.cr-who-video30::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

#who-for.cr-who-video30::before {
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(205,247,183,.28) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(180deg, rgba(255,255,255,.04), transparent 28%, rgba(205,247,183,.04));
    opacity: .8;
}

#who-for.cr-who-video30::after {
    width: 52rem;
    height: 52rem;
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205,247,183,.08), rgba(53,23,80,.10) 44%, transparent 70%);
    filter: blur(30px);
    opacity: .9;
}

#who-for.cr-who-video30 .cr-who30__shell {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1180px);
}

#who-for.cr-who-video30 .cr-who30__intro {
    min-height: 0;
    padding: 0 0 clamp(2.25rem, 5vw, 4rem);
    display: grid;
    place-items: center;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 1rem;
}

#who-for.cr-who-video30 .cr-who30__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 .3rem;
    padding: .62rem .96rem;
    border-radius: 999px;
    border: 1px solid rgba(205,247,183,.2);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.78);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
    font-size: .72rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

#who-for.cr-who-video30 .cr-who30__intro h2 {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.15rem, 3.35vw, 3.35rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 950;
    text-align: center;
    white-space: nowrap;
}

#who-for.cr-who-video30 .cr-who30__title-line {
    display: inline;
}

#who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before {
    content: " ";
}

#who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow) {
    width: min(100%, 680px);
    margin: .1rem auto 0;
    color: rgba(255,255,255,.68);
    font-size: clamp(.98rem, 1.05vw, 1.08rem);
    line-height: 1.55;
    font-weight: 750;
    text-align: center;
}

#who-for.cr-who-video30 .cr-who30__btn,
#who-for.cr-who-video30 .cr-who30__small-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .62rem;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #b7ff9c 0%, var(--who30-mint) 100%);
    color: var(--who30-purple);
    font-size: .86rem;
    font-weight: 950;
    box-shadow: 0 18px 36px rgba(205,247,183,.55);
    transition: transform .35s ease, box-shadow .35s ease;
}

#who-for.cr-who-video30 .cr-who30__btn {
    padding: .78rem 1.24rem;
    margin-top: .2rem;
}

#who-for.cr-who-video30 .cr-who30__small-btn {
    width: max-content;
    padding: .72rem 1.05rem;
    box-shadow: 0 14px 30px rgba(205,247,183,.45);
}

#who-for.cr-who-video30 .cr-who30__btn:hover,
#who-for.cr-who-video30 .cr-who30__small-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(205,247,183,.66);
}

#who-for.cr-who-video30 .cr-who30__timeline {
    position: relative;
    min-height: 0;
    padding: clamp(1rem, 3vw, 2rem) 0 1rem;
}

#who-for.cr-who-video30 .cr-who30__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 28px rgba(205,247,183,.1);
    overflow: hidden;
    z-index: 1;
}

#who-for.cr-who-video30 .cr-who30__line span {
    position: absolute;
    inset: 0;
    transform-origin: top;
    transform: scaleY(.08);
    background: linear-gradient(180deg, rgba(205,247,183,0), var(--who30-mint) 14%, rgba(111,70,255,.78) 58%, rgba(205,247,183,0) 100%);
    box-shadow: 0 0 34px rgba(205,247,183,.38);
    animation: who30LinePulse 8s ease-in-out infinite;
}

#who-for.cr-who-video30 .cr-who30__line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--who30-mint);
    box-shadow: 0 0 30px rgba(205,247,183,.94);
    transform: translate(-50%, -50%);
    animation: who30DotDrop 6.2s ease-in-out infinite;
}

#who-for.cr-who-video30 .cr-who30__item {
    position: relative;
    min-height: clamp(500px, 82vh, 760px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(96px, 11vw, 150px) minmax(0, 1fr);
    column-gap: clamp(1.25rem, 3vw, 3.5rem);
    align-items: start;
    padding: clamp(2rem, 5vh, 3.2rem) 0;
    z-index: 2;
    opacity: 1;
    transition: opacity .65s ease;
}

#who-for.cr-who-video30 .cr-who30__num {
    position: sticky;
    top: clamp(210px, 42vh, 360px);
    grid-column: 2;
    justify-self: center;
    align-self: start;
    width: clamp(92px, 11vw, 146px);
    height: clamp(92px, 11vw, 146px);
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: clamp(4.2rem, 7.8vw, 8rem);
    line-height: .78;
    letter-spacing: 0;
    font-weight: 950;
    box-shadow: none;
    text-shadow: 0 0 44px rgba(205,247,183,.18), 0 14px 60px rgba(0,0,0,.65);
    opacity: 1;
    transform: none;
    transition: transform .9s cubic-bezier(.19,1,.22,1), opacity .9s ease;
}

#who-for.cr-who-video30 .cr-who30__copy {
    position: sticky;
    top: clamp(190px, 39vh, 330px);
    width: min(100%, 540px);
    display: grid;
    gap: .85rem;
    padding: 0 0 0 clamp(1rem, 2vw, 1.4rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: #ffffff;
    opacity: 1;
    transform: none;
    transition: transform .95s cubic-bezier(.19,1,.22,1), opacity .75s ease, box-shadow .75s ease;
    will-change: transform, opacity;
}

#who-for.cr-who-video30 .cr-who30__copy::before {
    content: "";
    position: absolute;
    top: .25rem;
    bottom: .25rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--who30-mint), rgba(111,70,255,.58), rgba(205,247,183,0));
    box-shadow: 0 0 26px rgba(205,247,183,.46);
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
    transition: transform .85s ease, opacity .85s ease;
}

#who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy {
    grid-column: 3;
    justify-self: start;
    padding-left: clamp(1rem, 2vw, 1.4rem);
}

#who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy::before {
    left: 0;
}

#who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy {
    grid-column: 1;
    justify-self: end;
    padding-right: clamp(1rem, 2vw, 1.4rem);
}

#who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy::before {
    right: 0;
}

#who-for.cr-who-video30 .cr-who30__label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(205,247,183,.78);
    font-size: .75rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: none;
}

#who-for.cr-who-video30.has-who30-js .cr-who30__item {
    opacity: .46;
}

#who-for.cr-who-video30.has-who30-js .cr-who30__num {
    opacity: .18;
    transform: translateY(-34px) scale(.88);
}

#who-for.cr-who-video30.has-who30-js .cr-who30__copy {
    opacity: .22;
    transform: translateY(-46px) scale(.96);
}

#who-for.cr-who-video30.has-who30-js .cr-who30__item.is-active {
    opacity: 1;
}

#who-for.cr-who-video30.has-who30-js .cr-who30__item.is-active .cr-who30__num,
#who-for.cr-who-video30.has-who30-js .cr-who30__item.is-active .cr-who30__copy {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#who-for.cr-who-video30.has-who30-js .cr-who30__item.is-before .cr-who30__num {
    opacity: .12;
    transform: translateY(46px) scale(.96);
}

#who-for.cr-who-video30.has-who30-js .cr-who30__item.is-before .cr-who30__copy {
    opacity: .24;
    transform: translateY(46px) scale(.96);
}

#who-for.cr-who-video30 .cr-who30__label i {
    font-size: 1rem;
}

#who-for.cr-who-video30 .cr-who30__copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 950;
    text-shadow: none;
}

#who-for.cr-who-video30 .cr-who30__copy p {
    max-width: 40ch;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.58;
    font-weight: 850;
}

#who-for.cr-who-video30 .cr-who30__item.is-active,
#who-for.cr-who-video30 .cr-who30__item.is-visible {
    opacity: 1;
}

#who-for.cr-who-video30 .cr-who30__item.is-active .cr-who30__num,
#who-for.cr-who-video30 .cr-who30__item.is-visible .cr-who30__num {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#who-for.cr-who-video30 .cr-who30__item.is-active .cr-who30__copy,
#who-for.cr-who-video30 .cr-who30__item.is-visible .cr-who30__copy {
    opacity: 1;
    transform: translateY(0);
}

#who-for.cr-who-video30 .cr-who30__item.is-active .cr-who30__copy::before,
#who-for.cr-who-video30 .cr-who30__item.is-visible .cr-who30__copy::before {
    opacity: 1;
    transform: scaleY(1);
}

@keyframes who30LinePulse {
    0%, 100% { transform: scaleY(.08); opacity: .58; }
    46%, 64% { transform: scaleY(.72); opacity: 1; }
}

@keyframes who30DotDrop {
    0% { top: 0%; opacity: 0; }
    16% { opacity: 1; }
    84% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (max-width: 1180px) {
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        font-size: clamp(2.05rem, 3.2vw, 3rem);
    }

    #who-for.cr-who-video30 .cr-who30__item {
        grid-template-columns: minmax(0, 1fr) clamp(82px, 10vw, 120px) minmax(0, 1fr);
        column-gap: 1.25rem;
    }
}

@media (max-width: 820px) {
    #who-for.cr-who-video30 {
        padding: 3rem 0 4rem;
    }

    #who-for.cr-who-video30 .cr-who30__shell {
        width: min(100% - 24px, 430px);
    }

    #who-for.cr-who-video30::before {
        background:
            linear-gradient(90deg, transparent 0 26px, rgba(205,247,183,.36) 27px 29px, transparent 30px),
            linear-gradient(180deg, rgba(205,247,183,.08), transparent 48%);
    }

    #who-for.cr-who-video30 .cr-who30__intro {
        padding-bottom: 1.5rem;
    }

    #who-for.cr-who-video30 .cr-who30__intro h2 {
        width: 100%;
        max-width: 13.5ch;
        white-space: normal;
        font-size: clamp(2.1rem, 8.8vw, 3.15rem);
        line-height: 1;
    }

    #who-for.cr-who-video30 .cr-who30__title-line {
        display: block;
    }

    #who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before {
        content: "";
    }

    #who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow) {
        max-width: 350px;
        font-size: .94rem;
    }

    #who-for.cr-who-video30 .cr-who30__btn {
        width: 100%;
        max-width: 260px;
        border-radius: 999px;
    }

    #who-for.cr-who-video30 .cr-who30__timeline {
        padding-top: .4rem;
    }

    #who-for.cr-who-video30 .cr-who30__line {
        left: 28px;
        top: 0;
        bottom: 0;
        transform: none;
    }

    #who-for.cr-who-video30 .cr-who30__item {
        min-height: clamp(360px, 68vh, 560px);
        grid-template-columns: 56px minmax(0, 1fr);
        gap: .9rem;
        align-items: start;
        padding: 0 0 1rem;
        opacity: 1;
    }

    #who-for.cr-who-video30 .cr-who30__num {
        position: sticky;
        top: 142px;
        grid-column: 1;
        width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background:
            radial-gradient(circle at 30% 24%, rgba(205,247,183,.98), rgba(205,247,183,.48) 44%, rgba(53,23,80,.96) 100%);
        border: 1px solid rgba(205,247,183,.78);
        color: #ffffff;
        font-size: 1.12rem;
        line-height: 1;
        letter-spacing: 0;
        box-shadow: 0 0 0 9px rgba(205,247,183,.10), 0 16px 34px rgba(53,23,80,.10);
        opacity: 1;
        transform: none;
    }

    #who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy {
        position: sticky;
        top: 132px;
        grid-column: 2;
        justify-self: stretch;
        padding: 1rem 1rem 1rem 1.05rem;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    #who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy::before,
    #who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy::before {
        left: .75rem;
        right: auto;
        top: .95rem;
        bottom: .95rem;
        height: auto;
    }

    #who-for.cr-who-video30 .cr-who30__copy {
        opacity: 1;
        transform: none;
    }

    #who-for.cr-who-video30 .cr-who30__copy h3 {
        font-size: clamp(1.35rem, 5.4vw, 1.85rem);
        color: #ffffff;
        text-shadow: none;
    }

    #who-for.cr-who-video30 .cr-who30__copy p {
        font-size: .86rem;
        line-height: 1.5;
    }

    #who-for.cr-who-video30 .cr-who30__label {
        color: rgba(205,247,183,.78);
        text-shadow: none;
    }

    #who-for.cr-who-video30 .cr-who30__small-btn {
        width: 100%;
        min-height: 42px;
        border-radius: 999px;
    }
}

@media (max-width: 430px) {
    #who-for.cr-who-video30 .cr-who30__eyebrow {
        font-size: .64rem;
        padding: .55rem .76rem;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    #who-for.cr-who-video30 .cr-who30__intro h2 {
        font-size: clamp(1.9rem, 8.6vw, 2.7rem);
    }

    #who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow) {
        font-size: .9rem;
    }

    #who-for.cr-who-video30 .cr-who30__item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: .7rem;
    }

    #who-for.cr-who-video30 .cr-who30__line {
        left: 24px;
    }

    #who-for.cr-who-video30 .cr-who30__num {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    #who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy {
        padding: .9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #who-for.cr-who-video30 .cr-who30__line span,
    #who-for.cr-who-video30 .cr-who30__line::after {
        animation: none !important;
    }

    #who-for.cr-who-video30 .cr-who30__num,
    #who-for.cr-who-video30 .cr-who30__copy {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* =========================================================
   Final premium redesign: Who is CannaRelief for + Transfer Clinic
   Stable card layouts for laptop and phone.
   ========================================================= */
.home #who-for.cr-who-video30,
#who-for.cr-who-video30 {
    --who-premium-purple: #351750;
    --who-premium-mint: #CDF7B7;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(4rem, 6vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(205,247,183,.55), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(53,23,80,.12), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #f7f1fa 52%, #fafff6 100%);
    color: var(--who-premium-purple);
}

.home #who-for.cr-who-video30::before,
.home #who-for.cr-who-video30::after,
#who-for.cr-who-video30::before,
#who-for.cr-who-video30::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.home #who-for.cr-who-video30::before,
#who-for.cr-who-video30::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(53,23,80,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(53,23,80,.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 22%, black, transparent 72%);
    opacity: .5;
}

.home #who-for.cr-who-video30::after,
#who-for.cr-who-video30::after {
    width: 38rem;
    height: 38rem;
    right: -16rem;
    bottom: -18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205,247,183,.46), transparent 66%);
    filter: blur(10px);
    opacity: .85;
}

.home #who-for.cr-who-video30 .cr-who30__shell,
#who-for.cr-who-video30 .cr-who30__shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
}

.home #who-for.cr-who-video30 .cr-who30__intro,
#who-for.cr-who-video30 .cr-who30__intro {
    min-height: 0;
    max-width: 920px;
    margin: 0 auto clamp(2.2rem, 5vw, 4rem);
    padding: 0;
    display: grid;
    gap: 1rem;
    text-align: center;
    place-items: center;
}

.home #who-for.cr-who-video30 .cr-who30__eyebrow,
#who-for.cr-who-video30 .cr-who30__eyebrow {
    margin: 0;
    padding: .6rem .9rem;
    border: 1px solid rgba(53,23,80,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: rgba(53,23,80,.68);
    box-shadow: 0 14px 34px rgba(53,23,80,.08);
    font-size: .72rem;
    letter-spacing: 0;
}

.home #who-for.cr-who-video30 .cr-who30__intro h2,
#who-for.cr-who-video30 .cr-who30__intro h2 {
    width: 100%;
    margin: 0;
    color: var(--who-premium-purple);
    font-size: clamp(2.55rem, 5.2vw, 5.35rem);
    line-height: .98;
    letter-spacing: 0;
    text-wrap: balance;
    white-space: normal;
}

.home #who-for.cr-who-video30 .cr-who30__title-line,
#who-for.cr-who-video30 .cr-who30__title-line {
    display: inline;
}

.home #who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before,
#who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before {
    content: " ";
}

.home #who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow),
#who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow) {
    max-width: 690px;
    margin: 0;
    color: rgba(53,23,80,.66);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    line-height: 1.62;
    font-weight: 750;
}

.home #who-for.cr-who-video30 .cr-who30__btn,
.home #who-for.cr-who-video30 .cr-who30__small-btn,
#who-for.cr-who-video30 .cr-who30__btn,
#who-for.cr-who-video30 .cr-who30__small-btn {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--who-premium-purple);
    color: #fff;
    box-shadow: 0 18px 38px rgba(53,23,80,.18);
}

.home #who-for.cr-who-video30 .cr-who30__btn:hover,
.home #who-for.cr-who-video30 .cr-who30__small-btn:hover,
#who-for.cr-who-video30 .cr-who30__btn:hover,
#who-for.cr-who-video30 .cr-who30__small-btn:hover {
    background: #220b38;
    box-shadow: 0 22px 46px rgba(53,23,80,.22);
}

.home #who-for.cr-who-video30 .cr-who30__timeline,
#who-for.cr-who-video30 .cr-who30__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.85rem, 2vw, 1.15rem);
    padding: 0;
}

.home #who-for.cr-who-video30 .cr-who30__line,
#who-for.cr-who-video30 .cr-who30__line {
    display: none;
}

.home #who-for.cr-who-video30 .cr-who30__item,
#who-for.cr-who-video30 .cr-who30__item,
.home #who-for.cr-who-video30.has-who30-js .cr-who30__item,
#who-for.cr-who-video30.has-who30-js .cr-who30__item {
    position: relative;
    min-height: 0;
    display: block;
    padding: 0;
    opacity: 1;
    transform: none;
    animation: crPremiumRise .65s cubic-bezier(.19,1,.22,1) both;
    animation-delay: calc(var(--i, 0) * 70ms);
}

.home #who-for.cr-who-video30 .cr-who30__num,
#who-for.cr-who-video30 .cr-who30__num,
.home #who-for.cr-who-video30.has-who30-js .cr-who30__num,
#who-for.cr-who-video30.has-who30-js .cr-who30__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.65rem;
    padding: .42rem .58rem;
    border: 1px solid rgba(205,247,183,.75);
    border-radius: 999px;
    background: var(--who-premium-mint);
    color: var(--who-premium-purple);
    font-size: .86rem;
    line-height: 1;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(205,247,183,.35);
    opacity: 1;
    transform: none;
    text-shadow: none;
}

.home #who-for.cr-who-video30 .cr-who30__copy,
#who-for.cr-who-video30 .cr-who30__copy,
.home #who-for.cr-who-video30.has-who30-js .cr-who30__copy,
#who-for.cr-who-video30.has-who30-js .cr-who30__copy {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 245px;
    display: grid;
    align-content: start;
    gap: .78rem;
    padding: clamp(1.15rem, 2vw, 1.45rem);
    border: 1px solid rgba(53,23,80,.10);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 100%);
    color: var(--who-premium-purple);
    box-shadow: 0 22px 58px rgba(53,23,80,.09);
    opacity: 1;
    transform: none;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home #who-for.cr-who-video30 .cr-who30__copy::before,
#who-for.cr-who-video30 .cr-who30__copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, var(--who-premium-mint), var(--who-premium-purple));
    opacity: 1;
    transform: none;
}

.home #who-for.cr-who-video30 .cr-who30__copy:hover,
#who-for.cr-who-video30 .cr-who30__copy:hover {
    transform: translateY(-5px);
    border-color: rgba(205,247,183,.8);
    box-shadow: 0 30px 76px rgba(53,23,80,.14);
}

.home #who-for.cr-who-video30 .cr-who30__label,
#who-for.cr-who-video30 .cr-who30__label {
    color: rgba(53,23,80,.62);
    font-size: .74rem;
    text-shadow: none;
}

.home #who-for.cr-who-video30 .cr-who30__copy h3,
#who-for.cr-who-video30 .cr-who30__copy h3 {
    max-width: calc(100% - 3.4rem);
    margin: .1rem 0 0;
    color: var(--who-premium-purple);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-shadow: none;
}

.home #who-for.cr-who-video30 .cr-who30__copy p,
#who-for.cr-who-video30 .cr-who30__copy p {
    max-width: 34ch;
    margin: 0;
    color: rgba(53,23,80,.68);
    font-size: .94rem;
    line-height: 1.55;
    font-weight: 750;
}

/* Transfer Clinic final premium redesign */
.home #transfer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 6.4rem) 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(205,247,183,.24), transparent 30%),
        radial-gradient(circle at 86% 88%, rgba(205,247,183,.14), transparent 34%),
        linear-gradient(135deg, #13071f 0%, #351750 58%, #1d0b2d 100%) !important;
    color: #fff;
}

.home #transfer::before,
.home #transfer::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.home #transfer::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
    opacity: .6;
    filter: none;
    animation: none;
}

.home #transfer::after {
    width: 34rem;
    height: 34rem;
    right: -14rem;
    top: -15rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205,247,183,.24), transparent 66%);
    filter: blur(10px);
    opacity: .9;
    animation: none;
}

.home #transfer > .container,
.home #transfer .transfer-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1180px);
    max-width: 1180px;
}

.home #transfer .section-heading {
    max-width: 880px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.home #transfer .eyebrow {
    border-color: rgba(205,247,183,.22);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.home #transfer .section-heading h2 {
    max-width: none;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: .98;
    text-wrap: balance;
}

.home #transfer .section-heading h2 span {
    display: inline;
    color: #fff;
    background: none;
    text-shadow: 0 18px 46px rgba(0,0,0,.25);
}

.home #transfer .section-heading h2 span + span::before {
    content: " ";
}

.home #transfer .transfer-section-kicker {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: 1rem auto 0;
    color: rgba(255,255,255,.7);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    line-height: 1.3;
}

.home #transfer .transfer-section-kicker strong {
    padding: .22rem .62rem;
    border-radius: 999px;
    background: var(--mint);
    color: var(--brand-900);
    box-shadow: 0 14px 30px rgba(205,247,183,.18);
}

.home #transfer .transfer-grid.transfer-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.9rem, 2vw, 1.2rem);
    max-width: none;
    margin: 0;
}

.home #transfer .transfer-grid.transfer-flow::before {
    display: none;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.15rem, 2vw, 1.55rem);
    border: 1px solid rgba(205,247,183,.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.055) 100%);
    box-shadow: 0 30px 86px rgba(0,0,0,.22);
    overflow: hidden;
    transform: none;
    animation: crPremiumRise .7s cubic-bezier(.19,1,.22,1) both;
}

.home #transfer .transfer-flow-step:nth-child(2) { animation-delay: 90ms; }
.home #transfer .transfer-flow-step:nth-child(3) { animation-delay: 180ms; }

.home #transfer .transfer-flow-step::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205,247,183,.20), transparent 66%);
    opacity: .85;
    transform: none;
    transition: transform .35s ease, opacity .35s ease;
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-6px);
    border-color: rgba(205,247,183,.42);
    box-shadow: 0 38px 96px rgba(0,0,0,.30);
}

.home #transfer .transfer-flow-step:hover::after {
    transform: scale(1.08);
    opacity: 1;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    width: fit-content;
    height: auto;
    min-width: 3.1rem;
    padding: .48rem .7rem;
    border: 1px solid rgba(205,247,183,.52);
    border-radius: 999px;
    background: rgba(205,247,183,.12);
    color: var(--mint);
    font-size: .92rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: none;
}

.home #transfer .transfer-step-number::after,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    display: none;
}

.home #transfer .transfer-flow-node {
    order: -1;
    justify-self: start;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(205,247,183,.26);
    border-radius: 22px;
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 42px rgba(0,0,0,.22);
    animation: none;
}

.home #transfer .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before {
    inset: 7px;
    border-color: rgba(205,247,183,.28);
    border-radius: 16px;
}

.home #transfer .transfer-flow-node img {
    width: 76%;
    height: 76%;
    object-fit: contain;
}

.home #transfer .transfer-flow-node i {
    color: var(--mint);
    font-size: 2.4rem;
}

.home #transfer .transfer-flow-copy {
    display: grid;
    gap: .7rem;
}

.home #transfer .transfer-flow-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.08;
    text-align: left;
}

.home #transfer .transfer-flow-copy p {
    max-width: 34ch;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: .95rem;
    line-height: 1.55;
    text-align: left;
}

@keyframes crPremiumRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home #who-for.cr-who-video30 .cr-who30__timeline,
    #who-for.cr-who-video30 .cr-who30__timeline,
    .home #transfer .transfer-grid.transfer-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .home #who-for.cr-who-video30,
    #who-for.cr-who-video30,
    .home #transfer {
        padding: 3.4rem 0;
    }

    .home #who-for.cr-who-video30 .cr-who30__shell,
    #who-for.cr-who-video30 .cr-who30__shell,
    .home #transfer > .container,
    .home #transfer .transfer-shell {
        width: min(100% - 24px, 430px);
    }

    .home #who-for.cr-who-video30 .cr-who30__intro,
    #who-for.cr-who-video30 .cr-who30__intro,
    .home #transfer .section-heading {
        margin-bottom: 1.6rem;
        gap: .8rem;
    }

    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2,
    .home #transfer .section-heading h2 {
        font-size: clamp(2.05rem, 10vw, 3.1rem);
        line-height: 1.02;
        white-space: normal;
    }

    .home #who-for.cr-who-video30 .cr-who30__title-line,
    #who-for.cr-who-video30 .cr-who30__title-line,
    .home #transfer .section-heading h2 span {
        display: block;
    }

    .home #who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before,
    #who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before,
    .home #transfer .section-heading h2 span + span::before {
        content: "";
    }

    .home #who-for.cr-who-video30 .cr-who30__timeline,
    #who-for.cr-who-video30 .cr-who30__timeline,
    .home #transfer .transfer-grid.transfer-flow {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__copy {
        min-height: 0;
        padding: 1rem;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy h3,
    #who-for.cr-who-video30 .cr-who30__copy h3 {
        max-width: calc(100% - 3rem);
        font-size: 1.45rem;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        min-height: 0;
        padding: 1rem;
    }

    .home #transfer .transfer-flow-node {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }
}


/* Transfer Clinic: compact one-line process flow */
.home #transfer {
    padding: clamp(3.4rem, 5vw, 5.2rem) 0 !important;
    background:
        radial-gradient(circle at 14% 8%, rgba(205,247,183,.32), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #f7f1fa 100%) !important;
    color: var(--brand-900) !important;
}

.home #transfer::before,
.home #transfer::after {
    display: none !important;
}

.home #transfer .transfer-shell,
.home #transfer > .container {
    width: min(100% - 32px, 1180px) !important;
    max-width: 1180px !important;
}

.home #transfer .section-heading {
    max-width: 760px !important;
    margin: 0 auto clamp(1.8rem, 3.5vw, 2.8rem) !important;
    text-align: center !important;
}

.home #transfer .eyebrow {
    border-color: rgba(53,23,80,.12) !important;
    background: #ffffff !important;
    color: var(--brand) !important;
    box-shadow: 0 12px 28px rgba(53,23,80,.08) !important;
}

.home #transfer .section-heading h2 {
    max-width: none !important;
    margin: 0 auto !important;
    color: var(--brand-900) !important;
    font-size: clamp(2.35rem, 4.6vw, 4.2rem) !important;
    line-height: 1 !important;
}

.home #transfer .section-heading h2 span {
    display: inline !important;
    color: var(--brand-900) !important;
    background: none !important;
    text-shadow: none !important;
}

.home #transfer .section-heading h2 span + span::before {
    content: " " !important;
}

.home #transfer .transfer-section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .45rem !important;
    margin-top: .9rem !important;
    color: rgba(53,23,80,.66) !important;
    font-size: clamp(1rem, 1.7vw, 1.22rem) !important;
}

.home #transfer .transfer-section-kicker strong {
    padding: .22rem .62rem !important;
    border-radius: 999px !important;
    background: var(--mint) !important;
    color: var(--brand-900) !important;
    box-shadow: 0 12px 26px rgba(205,247,183,.25) !important;
}

.home #transfer .transfer-grid.transfer-flow {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    max-width: 1040px !important;
    margin: 0 auto !important;
    padding-top: 3.15rem !important;
}

.home #transfer .transfer-grid.transfer-flow::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 1.42rem !important;
    left: calc(16.666% + 2rem) !important;
    right: calc(16.666% + 2rem) !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--brand), var(--mint), var(--brand)) !important;
    opacity: .5 !important;
    animation: none !important;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    position: relative !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: start !important;
    justify-items: center !important;
    gap: .85rem !important;
    padding: 0 clamp(.8rem, 1.8vw, 1.25rem) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    text-align: center !important;
    animation: crPremiumRise .55s cubic-bezier(.19,1,.22,1) both !important;
}

.home #transfer .transfer-flow-step::after {
    display: none !important;
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    position: absolute !important;
    top: -2.38rem !important;
    left: 50% !important;
    z-index: 2 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    background: var(--brand) !important;
    color: #fff !important;
    font-size: .82rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 0 0 8px rgba(205,247,183,.24), 0 14px 30px rgba(53,23,80,.16) !important;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    background: var(--mint) !important;
    color: var(--brand-900) !important;
}

.home #transfer .transfer-step-number::after {
    display: none !important;
}

.home #transfer .transfer-flow-node {
    order: 0 !important;
    justify-self: center !important;
    width: 96px !important;
    height: 96px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(53,23,80,.10) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(53,23,80,.10) !important;
    animation: none !important;
}

.home #transfer .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before {
    inset: 8px !important;
    border: 1px solid rgba(205,247,183,.72) !important;
    border-radius: 6px !important;
}

.home #transfer .transfer-flow-node img {
    width: 76% !important;
    height: 76% !important;
    object-fit: contain !important;
}

.home #transfer .transfer-flow-node i {
    color: var(--brand) !important;
    font-size: 2.2rem !important;
}

.home #transfer .transfer-flow-copy {
    display: grid !important;
    gap: .55rem !important;
    justify-items: center !important;
}

.home #transfer .transfer-flow-copy h3 {
    margin: 0 !important;
    color: var(--brand-900) !important;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
    line-height: 1.16 !important;
    text-align: center !important;
}

.home #transfer .transfer-flow-copy p {
    max-width: 28ch !important;
    margin: 0 auto !important;
    color: rgba(53,23,80,.66) !important;
    font-size: .88rem !important;
    line-height: 1.48 !important;
    text-align: center !important;
}

@media (max-width: 760px) {
    .home #transfer .section-heading h2 span {
        display: block !important;
    }

    .home #transfer .section-heading h2 span + span::before {
        content: "" !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        grid-template-columns: 1fr !important;
        gap: 1.15rem !important;
        max-width: 430px !important;
        padding: 0 0 0 3.4rem !important;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        top: 22px !important;
        bottom: 22px !important;
        left: 22px !important;
        right: auto !important;
        width: 3px !important;
        height: auto !important;
        background: linear-gradient(180deg, var(--brand), var(--mint), var(--brand)) !important;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        min-height: 0 !important;
        justify-items: start !important;
        grid-template-columns: 72px minmax(0, 1fr) !important;
        grid-template-areas:
            "node copy" !important;
        gap: .9rem !important;
        padding: .95rem !important;
        border: 1px solid rgba(53,23,80,.10) !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,.86) !important;
        box-shadow: 0 16px 38px rgba(53,23,80,.08) !important;
        text-align: left !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        top: 50% !important;
        left: -3.4rem !important;
        width: 44px !important;
        height: 44px !important;
        transform: translateY(-50%) !important;
    }

    .home #transfer .transfer-flow-node {
        grid-area: node !important;
        width: 72px !important;
        height: 72px !important;
        justify-self: start !important;
    }

    .home #transfer .transfer-flow-copy {
        grid-area: copy !important;
        justify-items: start !important;
        align-self: center !important;
    }

    .home #transfer .transfer-flow-copy h3,
    .home #transfer .transfer-flow-copy p {
        text-align: left !important;
    }
}


/* Transfer Clinic: responsive animation polish */
.home #transfer {
    overflow: hidden !important;
    background:
        radial-gradient(circle at var(--transfer-glow-x, 18%) 12%, rgba(205,247,183,.42), transparent 26%),
        radial-gradient(circle at 86% 82%, rgba(53,23,80,.08), transparent 32%),
        linear-gradient(180deg, #fffdf9 0%, #f7f1fa 100%) !important;
    animation: transferBgSweep 9s ease-in-out infinite alternate !important;
}

.home #transfer .section-heading {
    animation: transferHeadingIn .72s cubic-bezier(.19,1,.22,1) both !important;
}

.home #transfer .eyebrow {
    animation: transferBadgeFloat 3.2s ease-in-out infinite !important;
}

.home #transfer .transfer-section-kicker strong {
    animation: transferMintPulse 2.4s ease-in-out infinite !important;
}

.home #transfer .transfer-grid.transfer-flow::before {
    opacity: 1 !important;
    background:
        linear-gradient(90deg, rgba(53,23,80,.18), rgba(205,247,183,.98), rgba(53,23,80,.18)) !important;
    transform-origin: left center !important;
    animation: transferLineDraw 1.05s cubic-bezier(.19,1,.22,1) both .25s, transferLineGlow 3s ease-in-out infinite 1.2s !important;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    animation: transferStepRise .72s cubic-bezier(.19,1,.22,1) both !important;
    transition: transform .32s ease, filter .32s ease !important;
}

.home #transfer .transfer-flow-step:nth-child(1) { animation-delay: .18s !important; }
.home #transfer .transfer-flow-step:nth-child(2) { animation-delay: .32s !important; }
.home #transfer .transfer-flow-step:nth-child(3) { animation-delay: .46s !important; }

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-8px) !important;
    filter: drop-shadow(0 22px 34px rgba(53,23,80,.12)) !important;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    animation: transferDotPop .58s cubic-bezier(.19,1,.22,1) both, transferDotPulse 2.35s ease-in-out infinite .9s !important;
}

.home #transfer .transfer-flow-step:nth-child(1) .transfer-step-number { animation-delay: .28s, 1s !important; }
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number { animation-delay: .42s, 1.14s !important; }
.home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number { animation-delay: .56s, 1.28s !important; }

.home #transfer .transfer-flow-node {
    animation: transferIconFloat 4.2s ease-in-out infinite !important;
    transition: transform .32s ease, box-shadow .32s ease !important;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node { animation-delay: .35s !important; }
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node { animation-delay: .7s !important; }

.home #transfer .transfer-flow-step:hover .transfer-flow-node {
    transform: translateY(-6px) scale(1.04) rotate(-1deg) !important;
    box-shadow: 0 24px 58px rgba(53,23,80,.16) !important;
}

.home #transfer .transfer-flow-node img,
.home #transfer .transfer-flow-node i {
    animation: transferIconInner 3.3s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-copy h3 {
    animation: transferTextIn .62s cubic-bezier(.19,1,.22,1) both !important;
}

.home #transfer .transfer-flow-copy p {
    animation: transferTextIn .62s cubic-bezier(.19,1,.22,1) both .08s !important;
}

.home #transfer .transfer-flow-step:nth-child(1) .transfer-flow-copy h3,
.home #transfer .transfer-flow-step:nth-child(1) .transfer-flow-copy p { animation-delay: .32s !important; }
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-copy h3,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-copy p { animation-delay: .46s !important; }
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-copy h3,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-copy p { animation-delay: .6s !important; }

@media (max-width: 760px) {
    .home #transfer {
        padding: 3rem 0 3.4rem !important;
    }

    .home #transfer .section-heading {
        max-width: 430px !important;
        margin-bottom: 1.65rem !important;
    }

    .home #transfer .section-heading h2 {
        font-size: clamp(2rem, 10.2vw, 3rem) !important;
        line-height: 1.02 !important;
    }

    .home #transfer .transfer-section-kicker {
        display: flex !important;
        flex-wrap: wrap !important;
        max-width: 330px !important;
        margin-inline: auto !important;
        font-size: clamp(.98rem, 4.4vw, 1.2rem) !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        gap: 1rem !important;
        padding-left: 3.25rem !important;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        left: 21px !important;
        animation: transferLineDrawY 1.05s cubic-bezier(.19,1,.22,1) both .25s, transferLineGlow 3s ease-in-out infinite 1.2s !important;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 68px minmax(0, 1fr) !important;
        gap: .78rem !important;
        padding: .9rem !important;
        background: rgba(255,255,255,.92) !important;
        backdrop-filter: blur(12px) !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        left: -3.25rem !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: .78rem !important;
    }

    .home #transfer .transfer-flow-node {
        width: 68px !important;
        height: 68px !important;
    }

    .home #transfer .transfer-flow-copy h3 {
        font-size: clamp(1.03rem, 5vw, 1.28rem) !important;
        line-height: 1.12 !important;
    }

    .home #transfer .transfer-flow-copy p {
        font-size: .86rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 390px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(1.78rem, 9.4vw, 2.45rem) !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        padding-left: 3rem !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        left: -3rem !important;
    }
}

@keyframes transferBgSweep {
    0% { --transfer-glow-x: 12%; }
    100% { --transfer-glow-x: 88%; }
}

@keyframes transferHeadingIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes transferBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes transferMintPulse {
    0%, 100% { box-shadow: 0 12px 26px rgba(205,247,183,.25); transform: scale(1); }
    50% { box-shadow: 0 18px 42px rgba(205,247,183,.52); transform: scale(1.03); }
}

@keyframes transferLineDraw {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

@keyframes transferLineDrawY {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes transferLineGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(205,247,183,0)); }
    50% { filter: drop-shadow(0 0 12px rgba(205,247,183,.78)); }
}

@keyframes transferStepRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes transferDotPop {
    from { opacity: 0; transform: translateX(-50%) scale(.55); }
    to { opacity: 1; transform: translateX(-50%) scale(1); }
}

@media (max-width: 760px) {
    @keyframes transferDotPop {
        from { opacity: 0; transform: translateY(-50%) scale(.55); }
        to { opacity: 1; transform: translateY(-50%) scale(1); }
    }
}

@keyframes transferDotPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(205,247,183,.22), 0 14px 30px rgba(53,23,80,.16); }
    50% { box-shadow: 0 0 0 15px rgba(205,247,183,.06), 0 18px 36px rgba(53,23,80,.22); }
}

@keyframes transferIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1.2deg); }
}

@keyframes transferIconInner {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}

@keyframes transferTextIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home #transfer,
    .home #transfer *,
    .home #transfer::before,
    .home #transfer::after {
        animation: none !important;
        transition: none !important;
    }
}


/* Transfer Clinic: extra organization + richer animation pass */
.home #transfer {
    --transfer-orb-a: 18%;
    --transfer-orb-b: 82%;
    background:
        radial-gradient(circle at var(--transfer-orb-a) 12%, rgba(205,247,183,.42), transparent 25%),
        radial-gradient(circle at var(--transfer-orb-b) 88%, rgba(53,23,80,.10), transparent 32%),
        linear-gradient(180deg, #fffdf9 0%, #f8f2fb 62%, #fffdf9 100%) !important;
    animation: transferBgSweep2 10s ease-in-out infinite alternate !important;
}

.home #transfer .transfer-grid.transfer-flow {
    gap: clamp(.9rem, 2.4vw, 1.35rem) !important;
    padding-top: 3.45rem !important;
}

.home #transfer .transfer-grid.transfer-flow::before {
    top: 1.52rem !important;
    left: calc(16.666% + 3rem) !important;
    right: calc(16.666% + 3rem) !important;
    height: 4px !important;
    background:
        linear-gradient(90deg, rgba(53,23,80,.15), rgba(205,247,183,1), rgba(53,23,80,.15)) !important;
    box-shadow: 0 0 24px rgba(205,247,183,.38) !important;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    min-height: 312px !important;
    align-content: start !important;
    gap: .75rem !important;
    padding: 4.1rem clamp(1rem, 2vw, 1.35rem) 1.25rem !important;
    border: 1px solid rgba(53,23,80,.08) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 100%) !important;
    box-shadow: 0 20px 52px rgba(53,23,80,.08) !important;
    overflow: hidden !important;
}

.home #transfer .transfer-flow-step::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: inherit !important;
    background:
        linear-gradient(120deg, transparent 0%, rgba(205,247,183,.18) 34%, transparent 58%) !important;
    opacity: 0 !important;
    transform: translateX(-60%) !important;
    transition: opacity .28s ease, transform .7s ease !important;
    pointer-events: none !important;
}

.home #transfer .transfer-flow-step:hover::before {
    opacity: 1 !important;
    transform: translateX(70%) !important;
}

.home #transfer .transfer-flow-step::after {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    inset: auto -3rem -4rem auto !important;
    width: 11rem !important;
    height: 11rem !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(205,247,183,.32), transparent 66%) !important;
    opacity: .72 !important;
    transform: none !important;
    pointer-events: none !important;
    animation: transferPanelOrb 5.6s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-step:nth-child(2)::after { animation-delay: .8s !important; }
.home #transfer .transfer-flow-step:nth-child(3)::after { animation-delay: 1.6s !important; }

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-9px) !important;
    border-color: rgba(205,247,183,.82) !important;
    box-shadow: 0 30px 78px rgba(53,23,80,.14) !important;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    top: -2.58rem !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-width: 4px !important;
    font-size: .88rem !important;
    box-shadow: 0 0 0 10px rgba(205,247,183,.26), 0 18px 36px rgba(53,23,80,.18) !important;
}

.home #transfer .transfer-step-number::before {
    content: "" !important;
    position: absolute !important;
    inset: -12px !important;
    border-radius: inherit !important;
    border: 1px solid rgba(205,247,183,.48) !important;
    opacity: .8 !important;
    animation: transferRingPulse 2.2s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-node {
    order: -1 !important;
    width: 92px !important;
    height: 92px !important;
    margin: 0 auto .2rem !important;
    border: 1px solid rgba(205,247,183,.8) !important;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfff8 100%) !important;
    box-shadow: 0 18px 42px rgba(53,23,80,.10), 0 0 0 8px rgba(205,247,183,.12) !important;
}

.home #transfer .transfer-flow-node::after {
    content: "" !important;
    position: absolute !important;
    inset: -7px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, rgba(205,247,183,.5), transparent 42%, rgba(53,23,80,.16)) !important;
    z-index: -1 !important;
    opacity: .55 !important;
    animation: transferNodeGlow 3s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-copy {
    gap: .62rem !important;
}

.home #transfer .transfer-flow-copy h3 {
    max-width: 16ch !important;
    font-size: clamp(1.18rem, 1.8vw, 1.45rem) !important;
}

.home #transfer .transfer-flow-copy p {
    max-width: 29ch !important;
    font-size: .9rem !important;
}

.home #transfer .transfer-flow-copy h3,
.home #transfer .transfer-flow-copy p,
.home #transfer .transfer-flow-node,
.home #transfer .transfer-step-number {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 760px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(1.95rem, 9.3vw, 2.75rem) !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        padding-left: 3.2rem !important;
        padding-top: 0 !important;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        left: 20px !important;
        top: 24px !important;
        bottom: 24px !important;
        width: 4px !important;
        height: auto !important;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 72px minmax(0, 1fr) !important;
        gap: .82rem !important;
        padding: .9rem !important;
        min-height: 0 !important;
        align-content: center !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
        top: 50% !important;
        left: -3.2rem !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-width: 3px !important;
        font-size: .76rem !important;
    }

    .home #transfer .transfer-step-number::before {
        inset: -9px !important;
    }

    .home #transfer .transfer-flow-node {
        width: 68px !important;
        height: 68px !important;
        margin: 0 !important;
    }

    .home #transfer .transfer-flow-copy h3 {
        max-width: 100% !important;
        font-size: clamp(1.05rem, 4.8vw, 1.26rem) !important;
    }

    .home #transfer .transfer-flow-copy p {
        max-width: 100% !important;
        font-size: .84rem !important;
    }
}

@keyframes transferBgSweep2 {
    0% { --transfer-orb-a: 10%; --transfer-orb-b: 90%; }
    50% { --transfer-orb-a: 44%; --transfer-orb-b: 64%; }
    100% { --transfer-orb-a: 88%; --transfer-orb-b: 16%; }
}

@keyframes transferPanelOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .55; }
    50% { transform: translate(-18px, -12px) scale(1.08); opacity: .9; }
}

@keyframes transferRingPulse {
    0%, 100% { transform: scale(.92); opacity: .35; }
    50% { transform: scale(1.16); opacity: .9; }
}

@keyframes transferNodeGlow {
    0%, 100% { opacity: .35; transform: rotate(0deg) scale(.98); }
    50% { opacity: .82; transform: rotate(4deg) scale(1.06); }
}

/* Transfer Clinic FINAL stable fix - no clipped numbers, clean laptop + phone */
.home #transfer {
    position: relative !important;
    overflow: hidden !important;
    padding: clamp(3.6rem, 5vw, 5.4rem) 0 !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(205,247,183,.34), transparent 30%),
        radial-gradient(circle at 88% 88%, rgba(53,23,80,.08), transparent 34%),
        linear-gradient(180deg, #fffdf9 0%, #f8f2fb 58%, #fffdf9 100%) !important;
    color: var(--brand-900) !important;
}

.home #transfer::before,
.home #transfer::after {
    display: none !important;
}

.home #transfer .transfer-shell,
.home #transfer > .container {
    width: min(100% - 32px, 1180px) !important;
    max-width: 1180px !important;
    position: relative !important;
    z-index: 1 !important;
}

.home #transfer .section-heading {
    max-width: 850px !important;
    margin: 0 auto clamp(2rem, 4vw, 3.2rem) !important;
    text-align: center !important;
}

.home #transfer .eyebrow {
    margin-bottom: 1rem !important;
    border: 1px solid rgba(53,23,80,.12) !important;
    background: rgba(255,255,255,.9) !important;
    color: var(--brand) !important;
    box-shadow: 0 12px 28px rgba(53,23,80,.08) !important;
    animation: transferFinalFloat 3.4s ease-in-out infinite !important;
}

.home #transfer .section-heading h2 {
    max-width: none !important;
    margin: 0 auto !important;
    color: var(--brand-900) !important;
    font-size: clamp(2.5rem, 5vw, 4.8rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
}

.home #transfer .section-heading h2 span {
    display: inline !important;
    color: inherit !important;
    background: none !important;
    text-shadow: none !important;
}

.home #transfer .section-heading h2 span + span::before {
    content: " " !important;
}

.home #transfer .transfer-section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .55rem !important;
    margin: 1rem auto 0 !important;
    color: rgba(53,23,80,.62) !important;
    font-size: clamp(1rem, 1.8vw, 1.3rem) !important;
    line-height: 1.28 !important;
}

.home #transfer .transfer-section-kicker strong {
    padding: .25rem .72rem !important;
    border-radius: 999px !important;
    background: var(--mint) !important;
    color: var(--brand-900) !important;
    box-shadow: 0 14px 30px rgba(205,247,183,.35) !important;
    animation: transferFinalPulse 2.8s ease-in-out infinite !important;
}

.home #transfer .transfer-grid.transfer-flow {
    position: relative !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 3rem 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(1rem, 2vw, 1.35rem) !important;
}

.home #transfer .transfer-grid.transfer-flow::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 1.35rem !important;
    left: calc(16.666% + 2.5rem) !important;
    right: calc(16.666% + 2.5rem) !important;
    height: 3px !important;
    width: auto !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, rgba(53,23,80,.22), var(--mint), rgba(53,23,80,.22)) !important;
    opacity: .9 !important;
    box-shadow: 0 0 18px rgba(205,247,183,.45) !important;
    transform-origin: left center !important;
    animation: transferFinalLineX .9s cubic-bezier(.19,1,.22,1) both .2s !important;
}

.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    position: relative !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
        "number"
        "node"
        "copy" !important;
    justify-items: center !important;
    align-content: start !important;
    gap: .85rem !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    text-align: center !important;
    animation: transferFinalRise .65s cubic-bezier(.19,1,.22,1) both !important;
}

.home #transfer .transfer-flow-step:nth-child(1) { animation-delay: .12s !important; }
.home #transfer .transfer-flow-step:nth-child(2) { animation-delay: .24s !important; }
.home #transfer .transfer-flow-step:nth-child(3) { animation-delay: .36s !important; }

.home #transfer .transfer-flow-step::before,
.home #transfer .transfer-flow-step::after {
    display: none !important;
}

.home #transfer .transfer-flow-step:hover {
    transform: translateY(-4px) !important;
    box-shadow: none !important;
    filter: none !important;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number {
    grid-area: number !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 2 !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 4px solid #fff !important;
    border-radius: 50% !important;
    background: var(--brand) !important;
    color: #fff !important;
    font-size: .88rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    transform: none !important;
    box-shadow: 0 0 0 10px rgba(205,247,183,.24), 0 16px 32px rgba(53,23,80,.15) !important;
    animation: transferFinalDot 2.6s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number {
    background: var(--mint) !important;
    color: var(--brand-900) !important;
}

.home #transfer .transfer-step-number::before,
.home #transfer .transfer-step-number::after,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number::after {
    display: none !important;
}

.home #transfer .transfer-flow-node {
    grid-area: node !important;
    order: initial !important;
    justify-self: center !important;
    width: 108px !important;
    height: 108px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(53,23,80,.10) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(53,23,80,.10) !important;
    animation: transferFinalIcon 4s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node { animation-delay: .35s !important; }
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node { animation-delay: .7s !important; }

.home #transfer .transfer-flow-node::before {
    content: "" !important;
    position: absolute !important;
    inset: 9px !important;
    border: 1px solid rgba(205,247,183,.75) !important;
    border-radius: 6px !important;
    pointer-events: none !important;
}

.home #transfer .transfer-flow-node::after {
    display: none !important;
}

.home #transfer .transfer-flow-node img {
    width: 76% !important;
    height: 76% !important;
    object-fit: contain !important;
}

.home #transfer .transfer-flow-node i {
    color: var(--brand) !important;
    font-size: 2.25rem !important;
}

.home #transfer .transfer-flow-copy {
    grid-area: copy !important;
    display: grid !important;
    justify-items: center !important;
    gap: .55rem !important;
}

.home #transfer .transfer-flow-copy h3 {
    max-width: 16ch !important;
    margin: 0 !important;
    color: var(--brand-900) !important;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem) !important;
    line-height: 1.12 !important;
    text-align: center !important;
}

.home #transfer .transfer-flow-copy p {
    max-width: 29ch !important;
    margin: 0 auto !important;
    color: rgba(53,23,80,.64) !important;
    font-size: .9rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
}

@media (max-width: 760px) {
    .home #transfer {
        padding: 3rem 0 3.4rem !important;
    }

    .home #transfer .section-heading {
        margin-bottom: 1.55rem !important;
    }

    .home #transfer .section-heading h2 {
        font-size: clamp(1.95rem, 9.8vw, 2.8rem) !important;
        line-height: 1.03 !important;
    }

    .home #transfer .section-heading h2 span {
        display: block !important;
    }

    .home #transfer .section-heading h2 span + span::before {
        content: "" !important;
    }

    .home #transfer .transfer-section-kicker {
        max-width: 330px !important;
        flex-wrap: wrap !important;
        font-size: clamp(.96rem, 4.2vw, 1.18rem) !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        max-width: 430px !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0 0 3.15rem !important;
    }

    .home #transfer .transfer-grid.transfer-flow::before {
        top: 26px !important;
        bottom: 26px !important;
        left: 21px !important;
        right: auto !important;
        width: 3px !important;
        height: auto !important;
        transform-origin: top center !important;
        animation: transferFinalLineY .9s cubic-bezier(.19,1,.22,1) both .2s !important;
    }

    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        grid-template-columns: 74px minmax(0, 1fr) !important;
        grid-template-areas:
            "node copy" !important;
        justify-items: start !important;
        align-items: center !important;
        gap: .85rem !important;
        padding: .95rem !important;
        border: 1px solid rgba(53,23,80,.10) !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,.92) !important;
        box-shadow: 0 16px 38px rgba(53,23,80,.08) !important;
        text-align: left !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number {
        position: absolute !important;
        top: 50% !important;
        left: -3.15rem !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-width: 3px !important;
        font-size: .76rem !important;
        transform: translateY(-50%) !important;
        box-shadow: 0 0 0 8px rgba(205,247,183,.22), 0 12px 24px rgba(53,23,80,.14) !important;
    }

    .home #transfer .transfer-flow-node {
        width: 72px !important;
        height: 72px !important;
    }

    .home #transfer .transfer-flow-copy {
        justify-items: start !important;
    }

    .home #transfer .transfer-flow-copy h3,
    .home #transfer .transfer-flow-copy p {
        max-width: 100% !important;
        text-align: left !important;
    }

    .home #transfer .transfer-flow-copy h3 {
        font-size: clamp(1.05rem, 4.8vw, 1.28rem) !important;
    }

    .home #transfer .transfer-flow-copy p {
        font-size: .84rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 390px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(1.78rem, 9.1vw, 2.35rem) !important;
    }

    .home #transfer .transfer-grid.transfer-flow {
        padding-left: 2.9rem !important;
    }

    .home #transfer .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number,
    .home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number {
        left: -2.9rem !important;
    }
}

@keyframes transferFinalRise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes transferFinalLineX {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

@keyframes transferFinalLineY {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes transferFinalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes transferFinalPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 14px 30px rgba(205,247,183,.35); }
    50% { transform: scale(1.035); box-shadow: 0 18px 40px rgba(205,247,183,.55); }
}

@keyframes transferFinalDot {
    0%, 100% { box-shadow: 0 0 0 10px rgba(205,247,183,.20), 0 16px 32px rgba(53,23,80,.15); }
    50% { box-shadow: 0 0 0 16px rgba(205,247,183,.06), 0 20px 38px rgba(53,23,80,.20); }
}

@keyframes transferFinalIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* Transfer Clinic image card spacing reset */
.home #transfer .transfer-flow-node,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.home #transfer .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node::before,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node::before {
    inset: 0 !important;
}

.home #transfer .transfer-flow-node img,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node img,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

/* Transfer Clinic bottom CTA */
.home #transfer .transfer-section-cta {
    display: flex !important;
    justify-content: center !important;
    margin: clamp(1.7rem, 3vw, 2.7rem) 0 0 !important;
    padding: 0 !important;
}

.home #transfer .transfer-clinic-button {
    position: relative !important;
    isolation: isolate !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .7rem !important;
    min-height: 58px !important;
    padding: 0 1.65rem !important;
    border: 1px solid rgba(53,23,80,.12) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #cdf7b7 0%, #b8fb9c 100%) !important;
    color: #351750 !important;
    font-weight: 900 !important;
    font-size: clamp(.98rem, 1.25vw, 1.08rem) !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 18px 42px rgba(205,247,183,.42), 0 10px 24px rgba(53,23,80,.10) !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
    animation: transferCtaRise .7s cubic-bezier(.19,1,.22,1) both .35s, transferCtaBreathe 3.4s ease-in-out infinite 1.1s !important;
}

.home #transfer .transfer-clinic-button::before {
    content: "" !important;
    position: absolute !important;
    inset: 2px !important;
    z-index: -1 !important;
    border-radius: inherit !important;
    background: linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,0) 58%) !important;
}

.home #transfer .transfer-clinic-button::after {
    content: "" !important;
    position: absolute !important;
    top: -60% !important;
    bottom: -60% !important;
    left: -38% !important;
    width: 28% !important;
    z-index: -1 !important;
    background: rgba(255,255,255,.45) !important;
    transform: rotate(18deg) translateX(-160%) !important;
    animation: transferCtaShine 3.2s ease-in-out infinite 1.25s !important;
}

.home #transfer .transfer-clinic-button i {
    display: inline-grid !important;
    place-items: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    background: #351750 !important;
    color: #cdf7b7 !important;
    font-size: .95rem !important;
    transition: transform .28s ease !important;
}

.home #transfer .transfer-clinic-button:hover,
.home #transfer .transfer-clinic-button:focus-visible {
    border-color: rgba(53,23,80,.22) !important;
    box-shadow: 0 24px 56px rgba(205,247,183,.58), 0 14px 30px rgba(53,23,80,.14) !important;
    transform: translateY(-3px) !important;
}

.home #transfer .transfer-clinic-button:hover i,
.home #transfer .transfer-clinic-button:focus-visible i {
    transform: translateX(3px) !important;
}

@media (max-width: 760px) {
    .home #transfer .transfer-section-cta {
        margin-top: 1.35rem !important;
        padding-left: 3.15rem !important;
        justify-content: stretch !important;
    }

    .home #transfer .transfer-clinic-button {
        width: 100% !important;
        max-width: 430px !important;
        min-height: 54px !important;
        padding: 0 1.2rem !important;
    }
}

@media (max-width: 390px) {
    .home #transfer .transfer-section-cta {
        padding-left: 2.9rem !important;
    }
}

@keyframes transferCtaRise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes transferCtaBreathe {
    0%, 100% { box-shadow: 0 18px 42px rgba(205,247,183,.42), 0 10px 24px rgba(53,23,80,.10); }
    50% { box-shadow: 0 24px 54px rgba(205,247,183,.60), 0 12px 30px rgba(53,23,80,.13); }
}

@keyframes transferCtaShine {
    0%, 58% { transform: rotate(18deg) translateX(-160%); opacity: 0; }
    68% { opacity: 1; }
    82%, 100% { transform: rotate(18deg) translateX(540%); opacity: 0; }
}

/* Transfer Clinic heading one-line lock */
.home #transfer .section-heading h2 {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    font-size: clamp(2.8rem, 5.25vw, 5.85rem) !important;
    line-height: .98 !important;
}

.home #transfer .section-heading h2 .transfer-title-line,
.home #transfer .section-heading h2 span {
    display: inline !important;
    white-space: nowrap !important;
}

.home #transfer .section-heading h2 .transfer-title-line + .transfer-title-line::before,
.home #transfer .section-heading h2 span + span::before {
    content: " " !important;
}

@media (max-width: 760px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(1.48rem, 5.85vw, 2.32rem) !important;
        line-height: 1.04 !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 390px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(1.32rem, 5.55vw, 1.72rem) !important;
    }
}

/* Who is CannaRelief final title: always two lines */
.home #who-for.cr-who-video30 .cr-who30__intro h2,
#who-for.cr-who-video30 .cr-who30__intro h2 {
    display: grid !important;
    justify-items: center !important;
    gap: 0 !important;
    max-width: min(1120px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: .94 !important;
    white-space: normal !important;
    text-wrap: balance !important;
}

.home #who-for.cr-who-video30 .cr-who30__title-line,
#who-for.cr-who-video30 .cr-who30__title-line {
    display: block !important;
    white-space: nowrap !important;
}

.home #who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before,
#who-for.cr-who-video30 .cr-who30__title-line + .cr-who30__title-line::before {
    content: "" !important;
}

.home #who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow),
#who-for.cr-who-video30 .cr-who30__intro > p:not(.cr-who30__eyebrow) {
    display: none !important;
}

@media (max-width: 760px) {
    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        font-size: clamp(2.15rem, 11.4vw, 3.58rem) !important;
        line-height: .98 !important;
    }
}

@media (max-width: 390px) {
    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        font-size: clamp(1.9rem, 10.6vw, 3.05rem) !important;
    }
}

/* Transfer Clinic desktop heading fit fix */
@media (min-width: 761px) {
    .home #transfer .section-heading h2 {
        max-width: calc(100vw - 3rem) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: visible !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-size: clamp(3rem, 4.05vw, 4.85rem) !important;
        line-height: 1 !important;
    }

    .home #transfer .section-heading h2 .transfer-title-line,
    .home #transfer .section-heading h2 span {
        display: inline !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .home #transfer .section-heading h2 {
        font-size: clamp(2.35rem, 4.55vw, 3.55rem) !important;
    }
}

/* How It Works sequential arrow + number glow animation */
.home #process .process-flow-step:not(:last-child)::before {
    background: linear-gradient(90deg, rgba(53,23,80,.22) 0%, rgba(53,23,80,.22) 38%, #351750 48%, #cdf7b7 58%, rgba(53,23,80,.22) 70%) !important;
    background-size: 260% 100% !important;
    opacity: 1 !important;
    animation: processArrowTravel 6.4s cubic-bezier(.55,0,.22,1) infinite !important;
}

.home #process .process-flow-step:not(:last-child)::after {
    border-color: #351750 !important;
    animation: processArrowHeadGlow 6.4s cubic-bezier(.55,0,.22,1) infinite !important;
}

.home #process .process-flow-step:nth-child(1)::before,
.home #process .process-flow-step:nth-child(1)::after {
    animation-delay: .55s !important;
}

.home #process .process-flow-step:nth-child(2)::before,
.home #process .process-flow-step:nth-child(2)::after {
    animation-delay: 2.15s !important;
}

.home #process .process-flow-step:nth-child(3)::before,
.home #process .process-flow-step:nth-child(3)::after {
    animation-delay: 3.75s !important;
}

.home #process .process-flow-node span {
    background: #351750 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(53,23,80,.22), 0 0 0 0 rgba(205,247,183,0) !important;
    animation: processNumberBrandGlow 6.4s ease-in-out infinite !important;
}

.home #process .process-flow-node {
    animation: processNodeSoftGlow 6.4s ease-in-out infinite !important;
}

.home #process .process-flow-step:nth-child(1) .process-flow-node,
.home #process .process-flow-step:nth-child(1) .process-flow-node span {
    animation-delay: 0s !important;
}

.home #process .process-flow-step:nth-child(2) .process-flow-node,
.home #process .process-flow-step:nth-child(2) .process-flow-node span {
    animation-delay: 1.6s !important;
}

.home #process .process-flow-step:nth-child(3) .process-flow-node,
.home #process .process-flow-step:nth-child(3) .process-flow-node span {
    animation-delay: 3.2s !important;
}

.home #process .process-flow-step:nth-child(4) .process-flow-node,
.home #process .process-flow-step:nth-child(4) .process-flow-node span {
    animation-delay: 4.8s !important;
}

@keyframes processArrowTravel {
    0%, 15%, 100% {
        background-position: 135% 0;
        box-shadow: none;
    }
    5%, 10% {
        background-position: 0 0;
        box-shadow: 0 0 18px rgba(205,247,183,.68), 0 0 10px rgba(53,23,80,.22);
    }
}

@keyframes processArrowHeadGlow {
    0%, 15%, 100% {
        opacity: .72;
        filter: none;
        transform: rotate(45deg) scale(1);
    }
    5%, 10% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(205,247,183,.95)) drop-shadow(0 0 4px rgba(53,23,80,.45));
        transform: rotate(45deg) scale(1.22);
    }
}

@keyframes processNumberBrandGlow {
    0%, 18%, 100% {
        background: #351750;
        color: #ffffff;
        transform: scale(1);
        box-shadow: 0 10px 22px rgba(53,23,80,.22), 0 0 0 0 rgba(205,247,183,0);
    }
    6%, 12% {
        background: #cdf7b7;
        color: #351750;
        transform: scale(1.16);
        box-shadow: 0 14px 26px rgba(53,23,80,.18), 0 0 0 10px rgba(205,247,183,.42), 0 0 32px rgba(205,247,183,.84);
    }
}

@keyframes processNodeSoftGlow {
    0%, 18%, 100% {
        border-color: rgba(205,247,183,.34);
        box-shadow: 0 22px 54px rgba(53,23,80,.14);
        transform: translateY(0) scale(1);
    }
    6%, 12% {
        border-color: rgba(205,247,183,.95);
        box-shadow: 0 28px 70px rgba(205,247,183,.42), 0 20px 44px rgba(53,23,80,.16);
        transform: translateY(-3px) scale(1.025);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home #process .process-flow-step:not(:last-child)::before,
    .home #process .process-flow-step:not(:last-child)::after,
    .home #process .process-flow-node,
    .home #process .process-flow-node span {
        animation: none !important;
    }
}

/* Hero final CTA + 4 proof cards polish */
.home .hero-content .hero-trust-row {
    display: none !important;
}

.home .hero-content .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-top: clamp(1.35rem, 2.4vw, 1.9rem) !important;
}

.home .hero-content .hero-actions .btn-light {
    display: none !important;
}

.home .hero-content .hero-actions .btn-primary {
    min-width: min(100%, 270px) !important;
    min-height: 58px !important;
    justify-content: center !important;
    border: 1px solid rgba(205,247,183,.72) !important;
    background: linear-gradient(135deg, #cdf7b7 0%, #b7fb9d 100%) !important;
    color: #351750 !important;
    box-shadow: 0 20px 48px rgba(205,247,183,.35), 0 12px 28px rgba(0,0,0,.18) !important;
    animation: heroPrimaryCtaPulse 3.6s ease-in-out infinite !important;
}

.home .hero-content .hero-actions .btn-primary i {
    width: 28px !important;
    height: 28px !important;
    display: inline-grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #351750 !important;
    color: #cdf7b7 !important;
    transition: transform .28s ease !important;
}

.home .hero-content .hero-actions .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 26px 60px rgba(205,247,183,.48), 0 16px 34px rgba(0,0,0,.22) !important;
}

.home .hero-content .hero-actions .btn-primary:hover i {
    transform: translateX(3px) !important;
}

.home .hero-proof-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: min(100%, 860px) !important;
    margin-top: clamp(1rem, 2vw, 1.35rem) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, rgba(53,23,80,.62), rgba(53,23,80,.34)) !important;
    box-shadow: 0 24px 62px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10) !important;
    overflow: hidden !important;
    backdrop-filter: blur(14px) !important;
}

.home .hero-proof-rail span {
    position: relative !important;
    isolation: isolate !important;
    display: grid !important;
    align-content: center !important;
    min-height: 86px !important;
    padding: 1rem 1.1rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.86) !important;
    overflow: hidden !important;
    animation: heroProofCardRise .75s cubic-bezier(.19,1,.22,1) both !important;
}

.home .hero-proof-rail span + span {
    border-left: 1px solid rgba(255,255,255,.18) !important;
}

.home .hero-proof-rail span::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    background: radial-gradient(circle at 25% 20%, rgba(205,247,183,.20), transparent 42%) !important;
    opacity: 0 !important;
    transition: opacity .28s ease !important;
}

.home .hero-proof-rail span::after {
    content: "" !important;
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    bottom: 0 !important;
    height: 3px !important;
    border-radius: 999px 999px 0 0 !important;
    background: linear-gradient(90deg, #cdf7b7, rgba(205,247,183,.15)) !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
    transition: transform .32s ease !important;
}

.home .hero-proof-rail span:nth-child(1) { animation-delay: .12s !important; }
.home .hero-proof-rail span:nth-child(2) { animation-delay: .22s !important; }
.home .hero-proof-rail span:nth-child(3) { animation-delay: .32s !important; }
.home .hero-proof-rail span:nth-child(4) { animation-delay: .42s !important; }

.home .hero-proof-rail span:hover::before,
.home .hero-proof-rail span:hover::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

.home .hero-proof-rail strong {
    color: #cdf7b7 !important;
    font-size: clamp(1.02rem, 1.35vw, 1.22rem) !important;
    line-height: 1.05 !important;
}

@media (max-width: 760px) {
    .home .hero-content .hero-actions .btn-primary {
        width: 100% !important;
        max-width: 340px !important;
        min-height: 54px !important;
    }

    .home .hero-proof-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
    }

    .home .hero-proof-rail span {
        min-height: 76px !important;
        padding: .9rem !important;
    }

    .home .hero-proof-rail span + span {
        border-left: 0 !important;
    }

    .home .hero-proof-rail span:nth-child(even) {
        border-left: 1px solid rgba(255,255,255,.18) !important;
    }

    .home .hero-proof-rail span:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.18) !important;
    }
}

@keyframes heroPrimaryCtaPulse {
    0%, 100% { box-shadow: 0 20px 48px rgba(205,247,183,.35), 0 12px 28px rgba(0,0,0,.18); }
    50% { box-shadow: 0 26px 62px rgba(205,247,183,.52), 0 14px 32px rgba(0,0,0,.22); }
}

@keyframes heroProofCardRise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Who is CannaRelief mobile final polish */
@media (max-width: 760px) {
    .home #who-for.cr-who-video30,
    #who-for.cr-who-video30 {
        overflow: hidden !important;
        padding: 3.1rem 0 3.4rem !important;
        background:
            radial-gradient(circle at 18% 0%, rgba(205,247,183,.30), transparent 34%),
            linear-gradient(180deg, #f8f2fb 0%, #f5eef8 100%) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__shell,
    #who-for.cr-who-video30 .cr-who30__shell {
        width: min(100% - 28px, 460px) !important;
        max-width: 460px !important;
        padding: 0 !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__intro,
    #who-for.cr-who-video30 .cr-who30__intro {
        display: grid !important;
        justify-items: center !important;
        gap: .95rem !important;
        margin: 0 auto 1.55rem !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__eyebrow,
    #who-for.cr-who-video30 .cr-who30__eyebrow {
        max-width: 100% !important;
        min-height: 38px !important;
        padding: .58rem .9rem !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
        font-size: clamp(.66rem, 2.8vw, .78rem) !important;
        line-height: 1 !important;
        box-shadow: 0 14px 34px rgba(53,23,80,.08) !important;
        animation: whoMobileFloat 4s ease-in-out infinite !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: grid !important;
        justify-items: center !important;
        gap: .08em !important;
        font-size: clamp(1.68rem, 7.2vw, 2.28rem) !important;
        line-height: .98 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__title-line,
    #who-for.cr-who-video30 .cr-who30__title-line {
        display: block !important;
        max-width: 100% !important;
        white-space: nowrap !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__btn,
    #who-for.cr-who-video30 .cr-who30__btn {
        width: 100% !important;
        max-width: 340px !important;
        min-height: 54px !important;
        margin: .25rem auto 0 !important;
        padding: 0 1.2rem !important;
        justify-content: center !important;
        border-radius: 999px !important;
        background: linear-gradient(135deg, #351750, #421b62) !important;
        box-shadow: 0 18px 42px rgba(53,23,80,.22) !important;
        animation: whoMobileCtaPulse 3.5s ease-in-out infinite !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__timeline,
    #who-for.cr-who-video30 .cr-who30__timeline {
        display: grid !important;
        gap: 1rem !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__line,
    #who-for.cr-who-video30 .cr-who30__line {
        display: none !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__item,
    .home #who-for.cr-who-video30.has-who30-js .cr-who30__item,
    #who-for.cr-who-video30 .cr-who30__item,
    #who-for.cr-who-video30.has-who30-js .cr-who30__item {
        position: relative !important;
        display: block !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        animation: whoMobileCardIn .72s cubic-bezier(.19,1,.22,1) both !important;
        animation-delay: calc(var(--i, 0) * .08s) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__num,
    .home #who-for.cr-who-video30.has-who30-js .cr-who30__num,
    #who-for.cr-who-video30 .cr-who30__num,
    #who-for.cr-who-video30.has-who30-js .cr-who30__num {
        position: absolute !important;
        top: 1.15rem !important;
        right: 1.15rem !important;
        left: auto !important;
        z-index: 4 !important;
        width: 58px !important;
        height: 44px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #cdf7b7 !important;
        color: #351750 !important;
        font-size: .92rem !important;
        font-weight: 950 !important;
        letter-spacing: 0 !important;
        box-shadow: 0 14px 30px rgba(205,247,183,.42) !important;
        transform: none !important;
        opacity: 1 !important;
        animation: whoMobileNumGlow 3.8s ease-in-out infinite !important;
        animation-delay: calc(var(--i, 0) * .2s) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy,
    .home #who-for.cr-who-video30.has-who30-js .cr-who30__copy,
    .home #who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy,
    .home #who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__copy,
    #who-for.cr-who-video30.has-who30-js .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__item--right .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__item--left .cr-who30__copy {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 1.35rem 1.35rem 1.15rem !important;
        border: 1px solid rgba(53,23,80,.08) !important;
        border-left: 5px solid #351750 !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.90)) !important;
        box-shadow: 0 18px 45px rgba(53,23,80,.10) !important;
        opacity: 1 !important;
        transform: none !important;
        text-align: left !important;
        overflow: hidden !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy::before,
    #who-for.cr-who-video30 .cr-who30__copy::before {
        content: "" !important;
        position: absolute !important;
        inset: auto -25% -45% auto !important;
        width: 180px !important;
        height: 180px !important;
        border-radius: 50% !important;
        background: rgba(205,247,183,.30) !important;
        opacity: .9 !important;
        transform: none !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__label,
    #who-for.cr-who-video30 .cr-who30__label {
        padding-right: 4.6rem !important;
        font-size: .8rem !important;
        line-height: 1.1 !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy h3,
    #who-for.cr-who-video30 .cr-who30__copy h3 {
        max-width: calc(100% - 4.4rem) !important;
        margin-top: .85rem !important;
        font-size: clamp(1.45rem, 7.6vw, 2.05rem) !important;
        line-height: 1.02 !important;
        letter-spacing: 0 !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy p,
    #who-for.cr-who-video30 .cr-who30__copy p {
        margin-top: .7rem !important;
        font-size: clamp(.95rem, 4.25vw, 1.08rem) !important;
        line-height: 1.43 !important;
        color: rgba(53,23,80,.68) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__small-btn,
    #who-for.cr-who-video30 .cr-who30__small-btn {
        width: 100% !important;
        min-height: 52px !important;
        margin-top: 1rem !important;
        justify-content: center !important;
        border-radius: 999px !important;
        background: #351750 !important;
        color: #ffffff !important;
        box-shadow: 0 14px 30px rgba(53,23,80,.18) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__small-btn i,
    #who-for.cr-who-video30 .cr-who30__small-btn i {
        transition: transform .25s ease !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__small-btn:hover i,
    #who-for.cr-who-video30 .cr-who30__small-btn:hover i {
        transform: translateX(4px) !important;
    }
}

@media (max-width: 390px) {
    .home #who-for.cr-who-video30 .cr-who30__shell,
    #who-for.cr-who-video30 .cr-who30__shell {
        width: min(100% - 22px, 430px) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        font-size: clamp(1.52rem, 6.85vw, 1.9rem) !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__copy,
    #who-for.cr-who-video30 .cr-who30__copy {
        padding: 1.15rem 1.1rem 1rem !important;
    }
}

@keyframes whoMobileCardIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes whoMobileNumGlow {
    0%, 100% { box-shadow: 0 14px 30px rgba(205,247,183,.42); }
    50% { box-shadow: 0 18px 38px rgba(205,247,183,.72), 0 0 0 8px rgba(205,247,183,.18); }
}

@keyframes whoMobileCtaPulse {
    0%, 100% { box-shadow: 0 18px 42px rgba(53,23,80,.22); }
    50% { box-shadow: 0 24px 52px rgba(53,23,80,.30), 0 0 0 8px rgba(205,247,183,.10); }
}

@keyframes whoMobileFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* How It Works mobile final: all 4 steps visible, no sideways scroll */
@media (max-width: 760px) {
    .home #process {
        overflow: hidden !important;
    }

    .home #process .section-heading h2 {
        max-width: 100% !important;
        white-space: nowrap !important;
        text-wrap: nowrap !important;
        font-size: clamp(1.62rem, 7.1vw, 2.2rem) !important;
        line-height: 1.05 !important;
        letter-spacing: 0 !important;
    }

    .home #process .process-stack.process-flow {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: .85rem !important;
        width: 100% !important;
        max-width: 430px !important;
        margin: 1.45rem auto 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
    }

    .home #process .process-flow-step {
        min-width: 0 !important;
        width: 100% !important;
        flex: none !important;
        display: grid !important;
        justify-items: center !important;
        align-content: start !important;
        gap: .58rem !important;
        padding: .85rem .72rem .95rem !important;
        border: 1px solid rgba(53,23,80,.08) !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,.74) !important;
        box-shadow: 0 14px 34px rgba(53,23,80,.08) !important;
        scroll-snap-align: none !important;
        animation: processMobileCardIn .7s cubic-bezier(.19,1,.22,1) both !important;
        animation-delay: calc(var(--i, 0) * .08s) !important;
    }

    .home #process .process-flow-step:not(:last-child)::before,
    .home #process .process-flow-step:not(:last-child)::after {
        display: none !important;
    }

    .home #process .process-flow-node {
        width: 72px !important;
        height: 72px !important;
        box-shadow: 0 14px 32px rgba(53,23,80,.12) !important;
    }

    .home #process .process-flow-node::before {
        inset: 5px !important;
    }

    .home #process .process-flow-node img {
        width: 82% !important;
        height: 82% !important;
    }

    .home #process .process-flow-node span {
        right: -2px !important;
        bottom: -2px !important;
        width: 25px !important;
        height: 25px !important;
        border-width: 2px !important;
        font-size: .68rem !important;
    }

    .home #process .process-flow-copy {
        width: 100% !important;
        display: grid !important;
        gap: .36rem !important;
        text-align: center !important;
    }

    .home #process .process-flow-copy h3 {
        min-height: 2.25em !important;
        margin: 0 !important;
        color: #351750 !important;
        font-size: clamp(.86rem, 3.8vw, 1rem) !important;
        line-height: 1.12 !important;
        letter-spacing: 0 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .home #process .process-flow-copy p {
        display: block !important;
        margin: 0 !important;
        color: rgba(53,23,80,.62) !important;
        font-size: clamp(.7rem, 3.15vw, .8rem) !important;
        line-height: 1.32 !important;
    }

    .home #process .section-action-center {
        margin-top: 1.25rem !important;
    }

    .home #process .section-action-center .btn {
        width: min(100%, 340px) !important;
        min-height: 54px !important;
    }
}

@media (max-width: 390px) {
    .home #process .section-heading h2 {
        font-size: clamp(1.42rem, 6.6vw, 1.8rem) !important;
    }

    .home #process .process-stack.process-flow {
        gap: .7rem !important;
    }

    .home #process .process-flow-step {
        padding: .78rem .58rem .85rem !important;
    }

    .home #process .process-flow-node {
        width: 66px !important;
        height: 66px !important;
    }

    .home #process .process-flow-copy h3 {
        font-size: .82rem !important;
    }

    .home #process .process-flow-copy p {
        font-size: .68rem !important;
    }
}

@keyframes processMobileCardIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Transfer Clinic sequential step animation */
.home #transfer .transfer-flow-step,
.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(3) {
    animation: transferStepPremiumFocus 6.6s ease-in-out infinite !important;
}

.home #transfer .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number {
    animation: transferStepNumberGlow 6.6s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-node,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node {
    animation: transferStepImageLift 6.6s ease-in-out infinite !important;
}

.home #transfer .transfer-flow-step:nth-child(1),
.home #transfer .transfer-flow-step:nth-child(1) .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(1) .transfer-flow-node {
    animation-delay: 0s !important;
}

.home #transfer .transfer-flow-step:nth-child(2),
.home #transfer .transfer-flow-step:nth-child(2) .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(2) .transfer-flow-node {
    animation-delay: 2.2s !important;
}

.home #transfer .transfer-flow-step:nth-child(3),
.home #transfer .transfer-flow-step:nth-child(3) .transfer-step-number,
.home #transfer .transfer-flow-step:nth-child(3) .transfer-flow-node {
    animation-delay: 4.4s !important;
}

@keyframes transferStepPremiumFocus {
    0%, 24%, 100% {
        border-color: rgba(53,23,80,.10);
        background: rgba(255,255,255,.92);
        box-shadow: 0 16px 38px rgba(53,23,80,.08);
    }
    8%, 16% {
        border-color: rgba(205,247,183,.95);
        background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,255,245,.94));
        box-shadow: 0 24px 56px rgba(205,247,183,.30), 0 18px 42px rgba(53,23,80,.12);
    }
}

@keyframes transferStepNumberGlow {
    0%, 24%, 100% {
        background: #351750;
        color: #ffffff;
        box-shadow: 0 0 0 8px rgba(205,247,183,.22), 0 12px 24px rgba(53,23,80,.14);
    }
    8%, 16% {
        background: #cdf7b7;
        color: #351750;
        box-shadow: 0 0 0 14px rgba(205,247,183,.32), 0 0 34px rgba(205,247,183,.86), 0 18px 34px rgba(53,23,80,.16);
    }
}

@keyframes transferStepImageLift {
    0%, 24%, 100% {
        border-color: rgba(53,23,80,.10);
        box-shadow: 0 18px 44px rgba(53,23,80,.10);
        transform: translateY(0) scale(1);
    }
    8%, 16% {
        border-color: rgba(205,247,183,.9);
        box-shadow: 0 24px 58px rgba(205,247,183,.34), 0 16px 34px rgba(53,23,80,.12);
        transform: translateY(-6px) scale(1.035);
    }
}

@media (max-width: 760px) {
    .home #transfer .transfer-flow-step,
    .home #transfer .transfer-flow-step:nth-child(2),
    .home #transfer .transfer-flow-step:nth-child(3) {
        animation-name: transferStepPremiumFocusMobile !important;
    }
}

@keyframes transferStepPremiumFocusMobile {
    0%, 24%, 100% {
        border-color: rgba(53,23,80,.10);
        box-shadow: 0 16px 38px rgba(53,23,80,.08);
    }
    8%, 16% {
        border-color: rgba(205,247,183,.95);
        box-shadow: 0 20px 48px rgba(205,247,183,.32), 0 16px 36px rgba(53,23,80,.12);
    }
}

/* How It Works image clipping fix */
.home #process .process-flow-node {
    overflow: hidden !important;
    isolation: isolate !important;
}

.home #process .process-flow-node img {
    display: block !important;
    width: 82% !important;
    height: 82% !important;
    max-width: 82% !important;
    max-height: 82% !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    clip-path: circle(50% at 50% 50%) !important;
    background: transparent !important;
}

.home #process .process-flow-node span {
    z-index: 3 !important;
}

/* How It Works mobile premium vertical pathway */
@media (max-width: 760px) {
    .home #process .section-heading h2 {
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        white-space: normal !important;
        text-wrap: balance !important;
        font-size: clamp(1.85rem, 8vw, 2.55rem) !important;
        line-height: 1.02 !important;
    }

    .home #process .process-stack.process-flow {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: .9rem !important;
        max-width: 430px !important;
        margin-top: 1.55rem !important;
        padding-left: 2.85rem !important;
        overflow: visible !important;
    }

    .home #process .process-stack.process-flow::before {
        content: "" !important;
        position: absolute !important;
        top: 20px !important;
        bottom: 20px !important;
        left: 21px !important;
        width: 3px !important;
        border-radius: 999px !important;
        background: linear-gradient(180deg, #cdf7b7, rgba(53,23,80,.35), #cdf7b7) !important;
        box-shadow: 0 0 24px rgba(205,247,183,.45) !important;
        animation: processMobileLineGlow 4.4s ease-in-out infinite !important;
    }

    .home #process .process-flow-step {
        position: relative !important;
        grid-template-columns: 72px minmax(0, 1fr) !important;
        grid-template-areas:
            "node copy" !important;
        align-items: center !important;
        justify-items: start !important;
        gap: .78rem !important;
        min-height: 126px !important;
        padding: .9rem .95rem !important;
        border: 1px solid rgba(53,23,80,.09) !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,255,246,.88)) !important;
        box-shadow: 0 18px 42px rgba(53,23,80,.09) !important;
        text-align: left !important;
        animation: processMobilePathCard 5.8s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) { animation-delay: 1.45s !important; }
    .home #process .process-flow-step:nth-child(3) { animation-delay: 2.9s !important; }
    .home #process .process-flow-step:nth-child(4) { animation-delay: 4.35s !important; }

    .home #process .process-flow-step::after {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: -2.85rem !important;
        width: 42px !important;
        height: 42px !important;
        border: 3px solid #ffffff !important;
        border-radius: 999px !important;
        background: #351750 !important;
        box-shadow: 0 0 0 8px rgba(205,247,183,.22), 0 12px 24px rgba(53,23,80,.14) !important;
        transform: translateY(-50%) !important;
        animation: processMobilePathDot 5.8s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1)::after { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2)::after { animation-delay: 1.45s !important; }
    .home #process .process-flow-step:nth-child(3)::after { animation-delay: 2.9s !important; }
    .home #process .process-flow-step:nth-child(4)::after { animation-delay: 4.35s !important; }

    .home #process .process-flow-step:not(:last-child)::before {
        display: none !important;
    }

    .home #process .process-flow-node {
        grid-area: node !important;
        width: 70px !important;
        height: 70px !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 12px 28px rgba(53,23,80,.10) !important;
    }

    .home #process .process-flow-node span {
        right: -3px !important;
        bottom: -3px !important;
        width: 26px !important;
        height: 26px !important;
        border-width: 2px !important;
        font-size: .68rem !important;
        animation: processNumberBrandGlow 5.8s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) .process-flow-node span { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) .process-flow-node span { animation-delay: 1.45s !important; }
    .home #process .process-flow-step:nth-child(3) .process-flow-node span { animation-delay: 2.9s !important; }
    .home #process .process-flow-step:nth-child(4) .process-flow-node span { animation-delay: 4.35s !important; }

    .home #process .process-flow-copy {
        grid-area: copy !important;
        justify-items: start !important;
        gap: .34rem !important;
        text-align: left !important;
    }

    .home #process .process-flow-copy h3 {
        min-height: 0 !important;
        max-width: 100% !important;
        font-size: clamp(.98rem, 4.25vw, 1.18rem) !important;
        line-height: 1.08 !important;
        text-align: left !important;
    }

    .home #process .process-flow-copy p {
        display: block !important;
        max-width: 100% !important;
        font-size: clamp(.78rem, 3.35vw, .88rem) !important;
        line-height: 1.34 !important;
        text-align: left !important;
    }
}

@media (max-width: 390px) {
    .home #process .process-stack.process-flow {
        padding-left: 2.55rem !important;
    }

    .home #process .process-stack.process-flow::before {
        left: 18px !important;
    }

    .home #process .process-flow-step {
        grid-template-columns: 62px minmax(0, 1fr) !important;
        gap: .66rem !important;
        padding: .78rem .75rem !important;
    }

    .home #process .process-flow-step::after {
        left: -2.55rem !important;
        width: 38px !important;
        height: 38px !important;
    }

    .home #process .process-flow-node {
        width: 62px !important;
        height: 62px !important;
    }

    .home #process .process-flow-copy h3 {
        font-size: .94rem !important;
    }

    .home #process .process-flow-copy p {
        font-size: .76rem !important;
    }
}

@keyframes processMobilePathCard {
    0%, 24%, 100% {
        border-color: rgba(53,23,80,.09);
        box-shadow: 0 18px 42px rgba(53,23,80,.09);
        transform: translateY(0);
    }
    8%, 16% {
        border-color: rgba(205,247,183,.85);
        box-shadow: 0 24px 52px rgba(205,247,183,.28), 0 18px 38px rgba(53,23,80,.10);
        transform: translateY(-2px);
    }
}

@keyframes processMobilePathDot {
    0%, 24%, 100% {
        background: #351750;
        box-shadow: 0 0 0 8px rgba(205,247,183,.22), 0 12px 24px rgba(53,23,80,.14);
    }
    8%, 16% {
        background: #cdf7b7;
        box-shadow: 0 0 0 13px rgba(205,247,183,.28), 0 0 28px rgba(205,247,183,.75), 0 14px 28px rgba(53,23,80,.16);
    }
}

@keyframes processMobileLineGlow {
    0%, 100% { opacity: .65; filter: none; }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(205,247,183,.55)); }
}

/* How It Works mobile final reset: compact laptop-style 2x2 flow */
@media (max-width: 760px) {
    .home #process .section-heading h2 {
        max-width: 390px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        white-space: normal !important;
        text-wrap: balance !important;
        font-size: clamp(1.9rem, 8.4vw, 2.65rem) !important;
        line-height: 1.02 !important;
        text-align: center !important;
    }

    .home #process .process-stack.process-flow {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: .85rem !important;
        width: min(100%, 430px) !important;
        max-width: 430px !important;
        margin: 1.45rem auto 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
    }

    .home #process .process-stack.process-flow::before {
        display: none !important;
    }

    .home #process .process-flow-step {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "node"
            "copy" !important;
        justify-items: center !important;
        align-content: start !important;
        gap: .55rem !important;
        min-height: 238px !important;
        width: 100% !important;
        padding: .9rem .72rem .85rem !important;
        border: 1px solid rgba(53,23,80,.08) !important;
        border-radius: 8px !important;
        background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(250,255,246,.9)) !important;
        box-shadow: 0 16px 38px rgba(53,23,80,.08) !important;
        text-align: center !important;
        transform: none !important;
        animation: processPhoneCardCycle 6.4s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) { animation-delay: 1.6s !important; }
    .home #process .process-flow-step:nth-child(3) { animation-delay: 3.2s !important; }
    .home #process .process-flow-step:nth-child(4) { animation-delay: 4.8s !important; }

    .home #process .process-flow-step::after,
    .home #process .process-flow-step:not(:last-child)::before,
    .home #process .process-flow-step:not(:last-child)::after {
        display: none !important;
        content: none !important;
    }

    .home #process .process-flow-node {
        grid-area: node !important;
        width: 82px !important;
        height: 82px !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-color: rgba(205,247,183,.55) !important;
        box-shadow: 0 14px 30px rgba(53,23,80,.10) !important;
        animation: processPhoneNodeCycle 6.4s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) .process-flow-node { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) .process-flow-node { animation-delay: 1.6s !important; }
    .home #process .process-flow-step:nth-child(3) .process-flow-node { animation-delay: 3.2s !important; }
    .home #process .process-flow-step:nth-child(4) .process-flow-node { animation-delay: 4.8s !important; }

    .home #process .process-flow-node img {
        width: 82% !important;
        height: 82% !important;
        max-width: 82% !important;
        max-height: 82% !important;
        object-fit: contain !important;
        border-radius: 50% !important;
        clip-path: circle(50% at 50% 50%) !important;
    }

    .home #process .process-flow-node span {
        right: -1px !important;
        bottom: -1px !important;
        width: 27px !important;
        height: 27px !important;
        border-width: 2px !important;
        font-size: .72rem !important;
        animation: processPhoneNumberCycle 6.4s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) .process-flow-node span { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) .process-flow-node span { animation-delay: 1.6s !important; }
    .home #process .process-flow-step:nth-child(3) .process-flow-node span { animation-delay: 3.2s !important; }
    .home #process .process-flow-step:nth-child(4) .process-flow-node span { animation-delay: 4.8s !important; }

    .home #process .process-flow-copy {
        grid-area: copy !important;
        display: grid !important;
        justify-items: center !important;
        gap: .38rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .home #process .process-flow-copy h3 {
        min-height: 2.25em !important;
        max-width: 13ch !important;
        margin: 0 auto !important;
        font-size: clamp(.9rem, 3.9vw, 1.04rem) !important;
        line-height: 1.12 !important;
        text-align: center !important;
    }

    .home #process .process-flow-copy p {
        display: block !important;
        max-width: 19ch !important;
        margin: 0 auto !important;
        color: rgba(53,23,80,.62) !important;
        font-size: clamp(.7rem, 3.1vw, .8rem) !important;
        line-height: 1.32 !important;
        text-align: center !important;
    }
}

@media (max-width: 390px) {
    .home #process .process-stack.process-flow {
        gap: .68rem !important;
    }

    .home #process .process-flow-step {
        min-height: 226px !important;
        padding: .78rem .58rem .78rem !important;
    }

    .home #process .process-flow-node {
        width: 72px !important;
        height: 72px !important;
    }

    .home #process .process-flow-copy h3 {
        font-size: .84rem !important;
    }

    .home #process .process-flow-copy p {
        font-size: .67rem !important;
    }
}

@keyframes processPhoneCardCycle {
    0%, 22%, 100% {
        border-color: rgba(53,23,80,.08);
        box-shadow: 0 16px 38px rgba(53,23,80,.08);
        transform: translateY(0);
    }
    7%, 14% {
        border-color: rgba(205,247,183,.9);
        box-shadow: 0 22px 50px rgba(205,247,183,.30), 0 16px 34px rgba(53,23,80,.10);
        transform: translateY(-2px);
    }
}

@keyframes processPhoneNodeCycle {
    0%, 22%, 100% {
        box-shadow: 0 14px 30px rgba(53,23,80,.10);
        transform: scale(1);
    }
    7%, 14% {
        box-shadow: 0 20px 44px rgba(205,247,183,.40), 0 12px 26px rgba(53,23,80,.12);
        transform: scale(1.035);
    }
}

@keyframes processPhoneNumberCycle {
    0%, 22%, 100% {
        background: #351750;
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(53,23,80,.22), 0 0 0 0 rgba(205,247,183,0);
        transform: scale(1);
    }
    7%, 14% {
        background: #cdf7b7;
        color: #351750;
        box-shadow: 0 14px 28px rgba(53,23,80,.16), 0 0 0 8px rgba(205,247,183,.28), 0 0 26px rgba(205,247,183,.7);
        transform: scale(1.12);
    }
}

/* How It Works phone final: clean step cards + visible sequential animation */
@media (max-width: 760px) {
    .home #process .process-stack.process-flow {
        gap: .9rem !important;
    }

    .home #process .process-flow-step {
        overflow: visible !important;
        isolation: isolate !important;
        min-height: 230px !important;
        padding: .86rem .68rem .82rem !important;
        background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)) padding-box,
            linear-gradient(135deg, rgba(205,247,183,.55), rgba(53,23,80,.10)) border-box !important;
        border: 1px solid transparent !important;
        box-shadow: 0 16px 38px rgba(53,23,80,.08) !important;
        animation: processPhoneStepFocus 7.2s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) { animation-delay: 1.8s !important; }
    .home #process .process-flow-step:nth-child(3) { animation-delay: 3.6s !important; }
    .home #process .process-flow-step:nth-child(4) { animation-delay: 5.4s !important; }

    .home #process .process-flow-step::before {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 18px !important;
        right: 18px !important;
        height: 3px !important;
        border-radius: 0 0 999px 999px !important;
        background: linear-gradient(90deg, transparent, #cdf7b7, #351750, transparent) !important;
        opacity: 0 !important;
        transform: scaleX(.2) !important;
        transform-origin: center !important;
        animation: processPhoneStepSweep 7.2s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1)::before { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2)::before { animation-delay: 1.8s !important; }
    .home #process .process-flow-step:nth-child(3)::before { animation-delay: 3.6s !important; }
    .home #process .process-flow-step:nth-child(4)::before { animation-delay: 5.4s !important; }

    .home #process .process-flow-step::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        inset: 7px !important;
        z-index: -1 !important;
        border-radius: 8px !important;
        background: radial-gradient(circle at 50% 8%, rgba(205,247,183,.34), transparent 48%) !important;
        opacity: 0 !important;
        animation: processPhoneStepAura 7.2s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1)::after { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2)::after { animation-delay: 1.8s !important; }
    .home #process .process-flow-step:nth-child(3)::after { animation-delay: 3.6s !important; }
    .home #process .process-flow-step:nth-child(4)::after { animation-delay: 5.4s !important; }

    .home #process .process-flow-node {
        overflow: visible !important;
        width: 82px !important;
        height: 82px !important;
        animation: processPhoneNodeFocus 7.2s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) .process-flow-node { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) .process-flow-node { animation-delay: 1.8s !important; }
    .home #process .process-flow-step:nth-child(3) .process-flow-node { animation-delay: 3.6s !important; }
    .home #process .process-flow-step:nth-child(4) .process-flow-node { animation-delay: 5.4s !important; }

    .home #process .process-flow-node::after {
        content: "" !important;
        position: absolute !important;
        inset: 7px !important;
        z-index: 0 !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,.92) !important;
        pointer-events: none !important;
    }

    .home #process .process-flow-node img {
        position: relative !important;
        z-index: 1 !important;
        width: 78% !important;
        height: 78% !important;
        border-radius: 50% !important;
        clip-path: circle(50% at 50% 50%) !important;
    }

    .home #process .process-flow-node span {
        z-index: 5 !important;
        right: -4px !important;
        bottom: -4px !important;
        width: 30px !important;
        height: 30px !important;
        border: 3px solid #ffffff !important;
        animation: processPhoneBadgeFocus 7.2s ease-in-out infinite !important;
    }

    .home #process .process-flow-step:nth-child(1) .process-flow-node span { animation-delay: 0s !important; }
    .home #process .process-flow-step:nth-child(2) .process-flow-node span { animation-delay: 1.8s !important; }
    .home #process .process-flow-step:nth-child(3) .process-flow-node span { animation-delay: 3.6s !important; }
    .home #process .process-flow-step:nth-child(4) .process-flow-node span { animation-delay: 5.4s !important; }

    .home #process .process-flow-copy h3 {
        color: #351750 !important;
        font-weight: 950 !important;
    }
}

@media (max-width: 390px) {
    .home #process .process-flow-step {
        min-height: 220px !important;
    }

    .home #process .process-flow-node {
        width: 76px !important;
        height: 76px !important;
    }
}

@keyframes processPhoneStepFocus {
    0%, 20%, 100% {
        box-shadow: 0 16px 38px rgba(53,23,80,.08);
        transform: translateY(0) scale(1);
    }
    7%, 13% {
        box-shadow: 0 24px 54px rgba(205,247,183,.34), 0 16px 36px rgba(53,23,80,.12);
        transform: translateY(-3px) scale(1.012);
    }
}

@keyframes processPhoneStepSweep {
    0%, 20%, 100% { opacity: 0; transform: scaleX(.2); }
    7%, 13% { opacity: 1; transform: scaleX(1); }
}

@keyframes processPhoneStepAura {
    0%, 20%, 100% { opacity: 0; }
    7%, 13% { opacity: 1; }
}

@keyframes processPhoneNodeFocus {
    0%, 20%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 30px rgba(53,23,80,.10);
    }
    7%, 13% {
        transform: scale(1.055);
        box-shadow: 0 22px 46px rgba(205,247,183,.44), 0 12px 28px rgba(53,23,80,.12);
    }
}

@keyframes processPhoneBadgeFocus {
    0%, 20%, 100% {
        background: #351750;
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(53,23,80,.22);
        transform: scale(1);
    }
    7%, 13% {
        background: #cdf7b7;
        color: #351750;
        box-shadow: 0 0 0 8px rgba(205,247,183,.32), 0 0 28px rgba(205,247,183,.72), 0 12px 24px rgba(53,23,80,.16);
        transform: scale(1.14);
    }
}

/* Who is CannaRelief phone title fit refinement */
@media (max-width: 760px) {
    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        width: min(100%, 390px) !important;
        max-width: 390px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: clamp(1.72rem, 7.15vw, 2.22rem) !important;
        line-height: 1.02 !important;
        letter-spacing: 0 !important;
        text-align: center !important;
    }

    .home #who-for.cr-who-video30 .cr-who30__title-line,
    #who-for.cr-who-video30 .cr-who30__title-line {
        display: block !important;
        max-width: 100% !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 390px) {
    .home #who-for.cr-who-video30 .cr-who30__intro h2,
    #who-for.cr-who-video30 .cr-who30__intro h2 {
        max-width: 350px !important;
        font-size: clamp(1.5rem, 6.65vw, 1.86rem) !important;
        line-height: 1.04 !important;
    }
}
