:root {
    --clr-primary: #1a6b49;
    --clr-primary-dark: #144733;
    --clr-primary-soft: #2a7f59;
    --clr-text: #172c22;
    --clr-muted: #446154;
    --clr-bg: #f2f7f4;
    --clr-surface: #ffffff;
    --clr-surface-soft: #f3f7f0;
    --clr-ice: #d8e8f2;
    --clr-ice-deep: #c7deec;
    --clr-accent: #ff6a2f;
    --clr-line: rgba(20, 71, 51, 0.18);
    --clr-footer: #102f24;
    --clr-footer-soft: #1a4a38;
    --shadow-sm: 0 14px 28px rgba(15, 38, 29, 0.1);
    --shadow-md: 0 24px 46px rgba(15, 38, 29, 0.16);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: min(1240px, 94vw);
    --ease: 260ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", "Trebuchet MS", sans-serif;
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.58;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.5rem;
    font-family: "Sora", "Verdana", sans-serif;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.8rem;
    background: var(--clr-primary-dark);
    color: #fff;
    border-radius: 8px;
    z-index: 1001;
}

.top-notice {
    background: var(--clr-footer);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-notice p {
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.42rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.top-notice .top-notice-text {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
    will-change: opacity, transform, filter;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(15, 38, 29, 0.08);
}

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

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

.site-branding {
    display: inline-flex;
    align-items: center;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    transition: transform var(--ease), opacity var(--ease);
}

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

.header-logo {
    width: auto;
    height: 60px;
    max-width: min(320px, 32vw);
    object-fit: contain;
    transition: transform var(--ease);
}

.header-logo-link:hover .header-logo {
    transform: scale(1.02);
}

.site-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    letter-spacing: -0.01em;
}

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

.custom-logo-link {
    display: inline-flex;
}

.primary-nav {
    display: flex;
    align-items: center;
}

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

.main-menu a {
    color: #3f5a4f;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--ease), transform var(--ease), opacity var(--ease);
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
    color: var(--clr-primary-dark);
    transform: translateY(-1px);
    opacity: 1;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #144733;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.header-chip {
    border-radius: 9px;
    border: 1px solid var(--clr-line);
    background: #fff;
    color: #144733;
    min-height: 38px;
    padding: 0.56rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

.header-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 71, 51, 0.35);
    background: #f3faf6;
    color: #144733;
    box-shadow: 0 10px 20px rgba(20, 71, 51, 0.12);
}

.header-chip-solid {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    color: #ffffff;
}

.header-chip-solid:hover {
    background: #0d3124;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(20, 71, 51, 0.22);
}

.section {
    padding: clamp(2.8rem, 4.4vw, 4.8rem) 0;
}

.section-blue {
    background: var(--clr-ice);
}

.section-soft {
    background: #edf4ef;
}

.section-heading {
    margin-bottom: 1.8rem;
    max-width: 760px;
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(1.84rem, 2.9vw, 2.8rem);
    color: #144733;
    letter-spacing: -0.015em;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ebf6df;
    color: #1f6b4a;
    font-size: 0.81rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.36rem 0.74rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    min-height: 44px;
    padding: 0.68rem 1.2rem;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.97rem;
    cursor: pointer;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn-primary {
    background: var(--clr-primary-dark);
    color: #ffffff;
}

.btn-primary:hover {
    background: #0d3124;
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: #144733;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-light:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

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

.home .section {
    padding: clamp(2.05rem, 3.1vw, 3.45rem) 0;
}

.home .section-heading {
    margin-bottom: 1.28rem;
}

.home .section-action-center {
    margin-top: 1.22rem;
}

.home .site-main > .section {
    position: relative;
}

.home #about {
    background: linear-gradient(180deg, #d7e8f2 0%, #dcecf5 100%);
}

.home #who-for {
    background: linear-gradient(180deg, #f8f8f2 0%, #f3f7f0 100%);
}

.home #conditions {
    background: linear-gradient(180deg, #e7f1f8 0%, #dce9f3 100%);
}

.home #pricing {
    background: #f7fbf8;
}

.home #process {
    background: linear-gradient(180deg, #eff6f0 0%, #e4efe8 100%);
}

.home #transfer {
    background: linear-gradient(180deg, #e4eef7 0%, #d8e6f1 100%);
}

.home #medical-team {
    background: #f8fbf9;
}

.home #reviews {
    background: linear-gradient(180deg, #e3edf6 0%, #d9e6f1 100%);
}

.home #faq {
    background: linear-gradient(180deg, #ebf2f8 0%, #e1eaf3 100%);
}

.hero-banner {
    position: relative;
    margin-top: 0;
}

.hero-media {
    min-height: clamp(500px, 70vh, 710px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content-wrap {
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-top: 7.8rem;
    padding-bottom: 8.4rem;
}

.hero-content {
    max-width: min(640px, 100%);
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 78, 56, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(1.2rem, 2vw, 2.1rem);
}

.hero-kicker {
    margin-bottom: 0.9rem;
    color: var(--clr-primary);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.7vw, 4.25rem);
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
    max-width: 16ch;
    text-wrap: balance;
}

.hero-content p {
    max-width: 58ch;
    color: var(--clr-muted);
    font-size: clamp(1rem, 1.18vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin: 1.2rem 0 1.2rem;
}

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

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

.hero-actions .btn-light {
    border-color: rgba(20, 71, 51, 0.28);
    background: #ffffff;
    color: #144733;
}

.hero-actions .btn-light:hover {
    background: #f2f8f4;
}

.home .hero-media {
    min-height: clamp(290px, 40vh, 410px);
}

.home .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.home .hero-content {
    max-width: min(600px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.home .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.survey-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.05rem;
    align-items: center;
}

.survey-copy h2 {
    font-size: clamp(2rem, 4vw, 5rem);
    line-height: 1.07;
    margin-bottom: 1.15rem;
    color: var(--clr-primary-dark);
    text-wrap: balance;
}

.survey-copy h2 span {
    color: var(--clr-accent);
}

.survey-divider {
    width: min(100%, 430px);
    border-top: 3px solid var(--clr-accent);
    margin-bottom: 1rem;
}

.survey-copy p {
    color: #314f43;
    font-size: clamp(1.05rem, 1.65vw, 1.22rem);
    max-width: 40ch;
}

.survey-copy p:last-child {
    margin-bottom: 0;
}

.survey-visual {
    align-self: stretch;
}

.survey-frame {
    border-radius: 20px;
    min-height: 450px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 69, 49, 0.24);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 38, 29, 0.14);
}

.survey-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home .survey-frame {
    min-height: 382px;
}

.who-for-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1rem;
    align-items: stretch;
}

.who-for-copy {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(21, 69, 49, 0.22);
    background: #f8f8f1;
    box-shadow: 0 16px 30px rgba(15, 38, 29, 0.13);
    padding: clamp(1.12rem, 1.8vw, 1.48rem);
}

.who-for-copy .section-heading {
    margin-bottom: 1rem;
}

.who-for-copy .section-heading h2 {
    max-width: 18ch;
}

.who-for-copy .section-heading p {
    max-width: 60ch;
}

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

.who-for-copy .promise-card {
    background: #ffffff;
}

.who-for-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(21, 69, 49, 0.22);
    box-shadow: 0 16px 30px rgba(15, 38, 29, 0.13);
}

.who-for-image {
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.promise-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 71, 51, 0.2);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.12);
    padding: 1.08rem;
    display: flex;
    gap: 0.78rem;
    align-items: flex-start;
}

.icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ebf6df;
    color: #1f6b4a;
    display: grid;
    place-items: center;
    font-family: "Sora", "Verdana", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.icon-pill i {
    font-size: 1.05rem;
    line-height: 1;
}

.promise-card h3 {
    font-size: 1.03rem;
    color: var(--clr-primary-dark);
}

.promise-card p {
    margin: 0;
    color: var(--clr-muted);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin-bottom: 1.2rem;
}

.category-pills li {
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(24, 63, 45, 0.15);
    color: var(--clr-primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.condition-groups {
    display: grid;
    gap: 1rem;
}

.condition-group h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--clr-primary-dark);
}

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

.condition-card {
    border-radius: var(--radius-md);
    background: #edf4f8;
    border: 1px solid rgba(21, 69, 49, 0.19);
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.09);
    padding: 1.05rem;
}

.condition-card h4 {
    font-size: 1.08rem;
    color: var(--clr-primary-dark);
    margin-bottom: 0.45rem;
}

.condition-card p {
    margin: 0;
    color: var(--clr-muted);
    font-size: 0.94rem;
}

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

.pricing-card {
    border-radius: var(--radius-md);
    background: #edf4f8;
    border: 1px solid rgba(21, 69, 49, 0.19);
    box-shadow: 0 12px 22px rgba(15, 38, 29, 0.09);
    padding: 1.24rem;
    position: relative;
}

.pricing-card h3 {
    color: var(--clr-primary-dark);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff1e8;
    border: 1px solid rgba(255, 106, 47, 0.36);
    color: #a5421f;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.6rem;
    margin-bottom: 0.62rem;
}

.price-tag {
    color: var(--clr-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--clr-muted);
    margin: 0;
}

.pricing-features {
    display: grid;
    gap: 0.36rem;
    margin-top: 0.7rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    color: #2f4e41;
    font-size: 0.88rem;
    font-weight: 600;
}

.pricing-features i {
    color: #1d7b54;
    font-size: 0.9rem;
}

.timeline-shell {
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 71, 51, 0.19);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.1);
    padding: 1.08rem;
}

.timeline-shell h3 {
    margin-bottom: 0.8rem;
    color: var(--clr-primary-dark);
}

.timeline-table {
    display: grid;
    gap: 0.45rem;
}

.timeline-table div {
    display: grid;
    grid-template-columns: 2.6fr 1fr 1fr;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(20, 63, 44, 0.1);
    padding-bottom: 0.52rem;
}

.timeline-table div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-table span {
    color: #314f43;
    font-weight: 600;
}

.timeline-table strong {
    color: var(--clr-primary-dark);
    font-size: 0.95rem;
}

.timeline-note {
    margin: 0.85rem 0 0;
    border-radius: 8px;
    background: #ebf6df;
    color: var(--clr-primary-dark);
    font-weight: 700;
    padding: 0.62rem 0.75rem;
    font-size: 0.95rem;
}

.process-layout {
    display: grid;
    gap: 0.72rem;
}

.process-stack {
    display: grid;
    gap: 0.62rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.82rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(21, 69, 49, 0.19);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.09);
    padding: 1rem;
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    left: 54px;
    top: 100%;
    width: 2px;
    height: 14px;
    background: rgba(255, 106, 47, 0.34);
}

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

.process-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-primary-dark);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-family: "Sora", "Verdana", sans-serif;
    font-weight: 700;
}

.process-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f9f4;
    border: 1px solid rgba(20, 71, 51, 0.2);
    color: #155b40;
    display: grid;
    place-items: center;
    font-size: 1rem;
}

.process-step h3 {
    color: var(--clr-primary-dark);
    margin-bottom: 0.3rem;
}

.process-step p {
    margin: 0;
    color: var(--clr-muted);
}

.transfer-shell {
    display: grid;
    gap: 0.82rem;
}

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

.transfer-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(21, 69, 49, 0.2);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.09);
    padding: 1.04rem;
}

.transfer-card span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--clr-primary-dark);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.transfer-card p {
    margin: 0;
    color: var(--clr-muted);
}

.faq-mini {
    border-radius: var(--radius-md);
    background: #f8fcff;
    border: 1px solid rgba(21, 69, 49, 0.2);
    box-shadow: 0 12px 22px rgba(15, 38, 29, 0.09);
    padding: 1.05rem;
}

.faq-mini h3 {
    margin-bottom: 0.7rem;
    color: var(--clr-primary-dark);
}

.faq-mini details {
    background: #ffffff;
    border: 1px solid rgba(21, 69, 49, 0.14);
    border-radius: 9px;
    padding: 0.7rem 0.8rem;
}

.faq-mini details + details {
    margin-top: 0.52rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.team-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 71, 51, 0.2);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.11);
    overflow: hidden;
}

.team-photo-placeholder {
    height: 168px;
    background: linear-gradient(135deg, #1a5b40 0%, #4a6c60 52%, #8da9a1 100%);
}

.team-card h3 {
    font-size: 1.14rem;
    color: var(--clr-primary-dark);
    padding: 0.95rem 0.95rem 0;
}

.team-card p {
    margin: 0;
    color: var(--clr-muted);
    padding: 0.2rem 0.95rem 0;
}

.team-card span {
    display: block;
    color: #275743;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.95rem 1rem;
}

.tp-brandline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(20, 71, 51, 0.18);
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.08);
    padding: 0.5rem 0.8rem;
    color: #1d3f32;
    font-size: 0.92rem;
}

.tp-brandline strong {
    font-size: 0.95rem;
    color: #0f2f24;
}

.tp-brand-star {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #00b67a;
    color: #ffffff;
    font-size: 0.76rem;
    line-height: 1;
}

.tp-review-slider {
    overflow: hidden;
    margin-top: 1.2rem;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.tp-review-track {
    display: flex;
    align-items: stretch;
    gap: 0.78rem;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    padding: 0.4rem 0;
}

.tp-review-card {
    width: min(330px, 84vw);
    border-radius: 14px;
    border: 1px solid rgba(20, 71, 51, 0.19);
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(15, 38, 29, 0.1);
    padding: 0.92rem;
}

.tp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.tp-user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.tp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6b49, #2b8a60);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tp-user-meta {
    display: grid;
    min-width: 0;
}

.tp-user-meta strong {
    color: #113b2c;
    font-size: 0.84rem;
    line-height: 1.05;
}

.tp-user-meta span {
    color: #567266;
    font-size: 0.73rem;
    line-height: 1.1;
}

.tp-stars {
    display: inline-flex;
    gap: 0.18rem;
}

.tp-stars span {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #00b67a;
    color: #ffffff;
    font-size: 0.62rem;
    line-height: 1;
}

.tp-date {
    display: inline-flex;
    color: #537064;
    font-size: 0.82rem;
    white-space: nowrap;
    margin-bottom: 0.42rem;
}

.tp-review-card h3 {
    font-size: 1.02rem;
    color: #143b2d;
    margin-bottom: 0.4rem;
}

.tp-review-card p {
    color: #4a6659;
    margin: 0 0 0.82rem;
    font-size: 0.93rem;
    line-height: 1.45;
}

.tp-review-slider.is-static {
    overflow-x: auto;
    mask-image: none;
}

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

.faq-grid-layout {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 0.82rem;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 115px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 63, 44, 0.18);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.1);
    padding: 1.06rem;
}

.faq-sidebar h2 {
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
}

.faq-sidebar ul {
    display: grid;
    gap: 0.45rem;
}

.faq-sidebar a {
    display: inline-flex;
    color: #264838;
    font-weight: 700;
    font-size: 0.96rem;
}

.faq-sidebar a:hover {
    color: var(--clr-primary);
}

.faq-groups-wrap {
    display: grid;
    gap: 1rem;
}

.faq-group {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(20, 63, 44, 0.18);
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.08);
    padding: 1rem;
}

.faq-group h3 {
    color: var(--clr-primary-dark);
    margin-bottom: 0.7rem;
}

.faq-list {
    display: grid;
    gap: 0.52rem;
}

.faq-list details {
    border: 1px solid rgba(21, 69, 49, 0.14);
    border-radius: 9px;
    background: #fcfffd;
    padding: 0.75rem 0.8rem;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #264838;
    padding-right: 1rem;
    position: relative;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
}

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

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

.faq-list p {
    margin: 0.58rem 0 0;
    color: var(--clr-muted);
}

.contact-section {
    background:
        radial-gradient(circle at 16% 15%, rgba(255, 106, 47, 0.12), transparent 46%),
        linear-gradient(145deg, #d6ebde 0%, #c4dfd0 55%, #b7d6c6 100%);
    color: var(--clr-text);
    border-top: 1px solid rgba(20, 71, 51, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.9rem;
    align-items: start;
}

.contact-section .eyebrow {
    background: #edf8f1;
    color: #1a6144;
}

.contact-section h2 {
    color: var(--clr-primary-dark);
}

.contact-section p {
    color: #355145;
}

.contact-list {
    display: grid;
    gap: 0.52rem;
}

.contact-list strong {
    margin-right: 0.34rem;
}

.contact-list a {
    color: var(--clr-primary-dark);
    font-weight: 700;
}

.contact-panel {
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--clr-text);
    border: 1px solid rgba(20, 71, 51, 0.22);
    box-shadow: 0 18px 36px rgba(15, 38, 29, 0.15);
    padding: 1.2rem;
}

.contact-panel h3 {
    color: var(--clr-primary-dark);
    margin-bottom: 0.7rem;
}

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

.contact-form span {
    display: block;
    font-weight: 700;
    color: #264838;
    margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(24, 71, 51, 0.28);
    border-radius: 10px;
    background: #f9fdf9;
    color: var(--clr-text);
    padding: 0.68rem 0.72rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(31, 107, 74, 0.52);
    box-shadow: 0 0 0 0.18rem rgba(31, 107, 74, 0.14);
}

.home-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 980;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.56rem;
    padding: 0.66rem;
    background: rgba(16, 47, 36, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.home-sticky-cta .btn {
    min-height: 42px;
    width: 100%;
}

.home-sticky-cta .btn-light {
    background: #ffffff;
    color: #144733;
    border-color: rgba(255, 255, 255, 0.84);
}

.site-footer {
    background: var(--clr-footer);
    color: #f0e7f4;
    padding-top: 2.2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.3rem;
    align-items: start;
}

.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.45rem;
    transition: transform var(--ease), opacity var(--ease);
}

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

.footer-logo {
    width: auto;
    height: 52px;
    max-width: min(320px, 70vw);
    object-fit: contain;
    transition: transform var(--ease);
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.02);
}

.footer-text {
    color: rgba(241, 231, 245, 0.86);
    max-width: 45ch;
}

.footer-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    min-height: 40px;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-weight: 700;
    transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.footer-chat:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.footer-social {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

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

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.62);
}

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

.footer-subtitle {
    color: #ffffff;
    margin-bottom: 0.45rem;
    font-size: 0.97rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.footer-links a {
    color: rgba(241, 231, 245, 0.88);
    transition: color var(--ease), transform var(--ease), opacity var(--ease);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
    opacity: 1;
}

.footer-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.7rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trustpilot-footer {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0.9rem;
    display: grid;
    gap: 0.35rem;
}

.trustpilot-footer-head {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
}

.trustpilot-footer-head strong {
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.trustpilot-footer-stars {
    display: inline-flex;
    gap: 0.2rem;
}

.trustpilot-footer-stars span {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #00b67a;
    color: #ffffff;
    font-size: 0.62rem;
}

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

.trustpilot-footer p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.trustpilot-footer > span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.compliance-badges li {
    border-radius: 999px;
    padding: 0.43rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.compliance-badges li:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.44);
}

.footer-bottom {
    margin-top: 1.2rem;
    padding: 1rem 0 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-disclaimer {
    margin: 0 0 0.55rem;
    color: rgba(241, 231, 245, 0.79);
    max-width: 84ch;
    font-size: 0.9rem;
}

.footer-copy {
    margin: 0;
    color: rgba(241, 231, 245, 0.88);
}

.post-shell {
    min-height: 46vh;
}

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

.post-card {
    border: 1px solid var(--clr-line);
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.post-card h2 {
    font-size: 1.25rem;
}

.post-card h2 a {
    color: var(--clr-primary-dark);
}

.inline-link {
    color: var(--clr-primary-dark);
    font-weight: 700;
}

.single-content {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--clr-line);
    padding: 1.2rem;
}

.single-thumb img {
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.entry-content p,
.entry-content li {
    color: var(--clr-muted);
}

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

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

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

    .survey-grid,
    .who-for-grid,
    .faq-grid-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .timeline-table div {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .home #about .survey-copy h2 {
        font-size: clamp(2rem, 6vw, 3.4rem);
        max-width: 8.6ch;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--clr-line);
        padding: 0.86rem 4vw 1rem;
    }

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

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .header-actions {
        display: none;
    }

    .pricing-grid,
    .condition-grid,
    .transfer-grid,
    .footer-top,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .survey-frame {
        min-height: 380px;
    }

    .who-for-image {
        min-height: 360px;
    }

    .home #about {
        padding-top: clamp(2.6rem, 8vw, 3.2rem);
    }

    .home #about .survey-copy h2 {
        font-size: clamp(1.92rem, 8.8vw, 3rem);
        max-width: 9.2ch;
    }

    .home #about .survey-frame {
        min-height: 360px;
    }

    .home #about .survey-copy p {
        max-width: 36ch;
    }

    .timeline-table div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .team-photo-placeholder {
        height: 190px;
    }

    .process-step {
        grid-template-columns: auto 1fr;
    }

    .process-icon {
        display: none;
    }

    .process-step::after {
        left: 18px;
    }

    .tp-review-slider {
        mask-image: none;
    }

    .tp-review-card {
        width: min(300px, 86vw);
    }

}

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

@media (max-width: 760px) {
    .hero-content-wrap {
        padding-top: 6.7rem;
        padding-bottom: 6rem;
    }

    .home .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .hero-content h1 {
        max-width: 20ch;
    }

    .home .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

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

    .top-notice p {
        font-size: 0.76rem;
    }

    .home .site-main {
        padding-bottom: 76px;
    }

    .home-sticky-cta {
        display: grid;
    }
}

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

    .site-title {
        font-size: 1.45rem;
    }

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

    .footer-logo {
        height: 40px;
        max-width: 220px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-banner {
        margin-top: 0;
    }

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

    .home .hero-media {
        min-height: 335px;
    }

    .home .section {
        padding: clamp(1.9rem, 6vw, 2.65rem) 0;
    }

    .home .survey-frame {
        min-height: 270px;
    }

    .home #about .survey-copy h2 {
        font-size: clamp(1.8rem, 11vw, 2.8rem);
        margin-bottom: 0.75rem;
    }

    .home #about .survey-frame {
        min-height: 270px;
        border-radius: 16px;
    }

    .home #about .survey-copy p:first-of-type {
        font-size: 1.12rem;
    }

    .home #about .survey-copy p:last-child {
        font-size: 0.94rem;
    }

    .who-for-image {
        min-height: 260px;
    }

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

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

    .trustpilot-footer {
        width: 100%;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
    }

    .home .site-main {
        padding-bottom: 74px;
    }
}


/* Home finish */
.home .hero-content {
    border-radius: 20px;
    box-shadow:
        0 14px 34px rgba(15, 38, 29, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.58) inset;
}

.home .btn {
    font-weight: 700;
}

.home .btn-primary {
    box-shadow: 0 8px 18px rgba(15, 38, 29, 0.16);
}

.home .btn-primary:hover {
    box-shadow: 0 10px 22px rgba(15, 38, 29, 0.22);
}

.home .promise-card,
.home .condition-card,
.home .pricing-card,
.home .process-step,
.home .transfer-card,
.home .team-card,
.home .faq-group {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home .promise-card:hover,
.home .condition-card:hover,
.home .pricing-card:hover,
.home .process-step:hover,
.home .transfer-card:hover,
.home .team-card:hover,
.home .faq-group:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 71, 51, 0.28);
    box-shadow: 0 16px 28px rgba(15, 38, 29, 0.14);
}

.home .survey-image,
.home .who-for-image {
    transition: transform 320ms ease;
}

.home .survey-frame:hover .survey-image,
.home .who-for-visual:hover .who-for-image {
    transform: scale(1.03);
}

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

.home .hero-content,
.home .survey-frame,
.home .who-for-copy {
    animation: homeFadeUp 720ms ease both;
}

@media (max-width: 920px) {
    .home .section-heading h2 {
        font-size: clamp(1.6rem, 5.8vw, 2.2rem);
    }

    .home .promise-card:hover,
    .home .condition-card:hover,
    .home .pricing-card:hover,
    .home .process-step:hover,
    .home .transfer-card:hover,
    .home .team-card:hover,
    .home .faq-group:hover {
        transform: none;
    }
}

/* Home polish v3 */
.home .site-main {
    font-size: 1.01rem;
}

.home .site-main h1,
.home .site-main h2,
.home .site-main h3,
.home .site-main h4 {
    font-family: "Sora", "Verdana", sans-serif;
    letter-spacing: -0.018em;
}

.home .site-main p {
    color: #375246;
    font-weight: 400;
}

.home .section-heading h2 {
    color: #123f2f;
    font-weight: 700;
}

.home .section-heading p {
    color: #3f5c50;
}

.home .section-heading::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    margin-top: 0.56rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff6a2f 0%, #ff8e60 100%);
}

.home .eyebrow {
    background: #fff1e9;
    color: #a74621;
    border: 1px solid rgba(255, 106, 47, 0.28);
}

.home #pricing {
    background: linear-gradient(180deg, #fffaf5 0%, #f8fbf8 100%);
}

.home #process {
    background: linear-gradient(180deg, #f0f7f1 0%, #e7f0eb 100%);
}

.home #reviews {
    background: linear-gradient(180deg, #e5f0f8 0%, #dae8f3 100%);
}

.home .hero-content {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 248, 0.95));
    border-color: rgba(20, 71, 51, 0.2);
}

.home .hero-kicker {
    color: #b94c24;
    letter-spacing: 0.06em;
}

.home .hero-actions .btn-primary {
    background: linear-gradient(135deg, #144733 0%, #1a6b49 100%);
    border-color: rgba(255, 106, 47, 0.22);
}

.home .hero-actions .btn-light {
    background: #fff8f2;
    border-color: rgba(255, 106, 47, 0.44);
    color: #933d1d;
}

.home .hero-actions .btn-light:hover {
    background: #ffefe4;
    color: #7b3217;
}

.home .promise-card,
.home .condition-card,
.home .pricing-card,
.home .process-step,
.home .transfer-card,
.home .timeline-shell,
.home .faq-mini,
.home .faq-group,
.home .tp-review-card,
.home .contact-panel {
    border-color: rgba(20, 71, 51, 0.2);
}

.home .promise-card:hover,
.home .condition-card:hover,
.home .pricing-card:hover,
.home .process-step:hover,
.home .transfer-card:hover,
.home .faq-group:hover,
.home .tp-review-card:hover {
    border-color: rgba(255, 106, 47, 0.42);
    box-shadow: 0 18px 30px rgba(15, 38, 29, 0.14);
}

.home .icon-pill {
    background: #fff2e9;
    color: #af4a22;
    border: 1px solid rgba(255, 106, 47, 0.33);
}

.home .price-tag {
    color: #b74a22;
}

.home .timeline-note {
    background: #fff4eb;
    color: #8f3e1f;
    border: 1px solid rgba(255, 106, 47, 0.3);
}

.home .process-number,
.home .transfer-card span {
    background: linear-gradient(135deg, #ff6a2f 0%, #ff8e5f 100%);
    box-shadow: 0 8px 16px rgba(255, 106, 47, 0.28);
}

.home .process-icon {
    background: #fff3ea;
    border-color: rgba(255, 106, 47, 0.34);
    color: #b24a22;
}

.home .tp-brandline {
    border-color: rgba(255, 106, 47, 0.26);
}

.home .tp-date {
    color: #7a584a;
}

.home .faq-list summary::after {
    color: #ff6a2f;
    font-weight: 700;
}

.home .faq-sidebar a:hover {
    color: #b44b22;
}

.home .contact-section {
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 106, 47, 0.16), transparent 48%),
        linear-gradient(145deg, #daeee2 0%, #cee4d6 57%, #c3dccd 100%);
}

.home .contact-section .eyebrow {
    background: #fff1e8;
    color: #9b3f1d;
    border: 1px solid rgba(255, 106, 47, 0.28);
}

@media (max-width: 920px) {
    .home .section-heading::after {
        width: 68px;
    }
}

/* Home polish v4 */
.home .site-main {
    font-size: 1.02rem;
}

.home .site-main p {
    color: #3b584c;
    line-height: 1.62;
}

.home .hero-content h1 {
    color: #113a2d;
    letter-spacing: -0.021em;
}

.home .hero-content p {
    color: #446257;
}

.home .hero-kicker {
    color: #aa4520;
}

.home .section-heading h2 {
    color: #103b2d;
}

.home .section-heading::after {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 106, 47, 0.95), rgba(255, 106, 47, 0.38));
}

.home #about {
    background: linear-gradient(180deg, #dcecf6 0%, #d7e8f2 100%);
}

.home #conditions {
    background: linear-gradient(180deg, #eaf3f8 0%, #dfebf4 100%);
}

.home #transfer {
    background: linear-gradient(180deg, #e7f1f8 0%, #dce9f3 100%);
}

.home #reviews {
    background: linear-gradient(180deg, #e8f1f8 0%, #deebf5 100%);
}

.home #faq {
    background: linear-gradient(180deg, #e9f1f8 0%, #e1eaf2 100%);
}

.home .survey-copy h2 {
    color: #0f3b2d;
    line-height: 1.03;
}

.home .survey-copy h2 span {
    color: #ff6a2f;
}

.home .survey-copy p:first-of-type {
    color: #2d4c3f;
}

.home .promise-card h3,
.home .condition-card h4,
.home .pricing-card h3,
.home .process-step h3,
.home .transfer-card p,
.home .faq-group h3 {
    color: #143f30;
}

.home .pricing-card {
    background: linear-gradient(180deg, #f5fbff 0%, #edf5fb 100%);
}

.home .pricing-grid .pricing-card:nth-child(2) {
    border-color: rgba(255, 106, 47, 0.42);
    box-shadow: 0 18px 30px rgba(255, 106, 47, 0.12);
}

.home .pricing-grid .pricing-card:nth-child(2) .price-tag {
    color: #a7421e;
}

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

.home .tp-user-meta strong {
    color: #173f31;
}

.home .tp-user-meta span {
    color: #587468;
}

.home .faq-list details {
    background: #ffffff;
}

.home .faq-list summary {
    color: #1f4638;
}

.home .contact-section h2 {
    color: #133e30;
}

@media (max-width: 920px) {
    .home .site-main p {
        line-height: 1.58;
    }
}

/* Home polish v5 (requested final) */
.home #about {
    background: #d8e8f2;
}

.home #who-for {
    background: #d6ebde;
}

.home #conditions {
    background: #c7deec;
}

.home #pricing {
    background: #d8e8f2;
}

.home #process {
    background: #d6ebde;
}

.home #transfer {
    background: #c7deec;
}

.home #medical-team {
    background: #b7d6c6;
}

.home #reviews {
    background: #d8e8f2;
}

.home #faq {
    background: #c7deec;
}

.home #contact {
    background: #c4dfd0;
}

.home .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
    box-shadow: none;
}

.home .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.home .eyebrow,
.home .pricing-badge,
.home .timeline-note {
    color: #ff6a2f;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    font-weight: 800;
}

.home .pricing-badge {
    letter-spacing: 0.03em;
}

.home .pricing-grid .pricing-card:nth-child(2) h3,
.home .pricing-grid .pricing-card:nth-child(2) .price-tag {
    color: #ff6a2f;
    font-weight: 800;
}

.home .icon-pill,
.home .process-icon {
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
}

.home .icon-pill i,
.home .process-icon i {
    color: #ff6a2f;
}

.home .pricing-features i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
    font-size: 0.62rem;
}

/* Home polish v6 (requested text adjustments) */
.home .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
    font-weight: 800;
    padding: 0.3rem 0.66rem;
}

.home .faq-sidebar h2 {
    color: #ff6a2f;
    font-weight: 800;
}

.home #contact .eyebrow {
    background: #ffffff;
    border-color: #ff6a2f;
    color: #ff6a2f;
    font-weight: 800;
}

.home .pricing-grid .pricing-card:nth-child(2) h3,
.home .pricing-grid .pricing-card:nth-child(2) .price-tag {
    color: #144733;
    font-weight: 800;
}

.home .bi {
    color: #ff6a2f;
}

/* Home hero motion polish */
.home .hero-media {
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
    will-change: background-size, background-position;
}

@keyframes homeHeroZoomInOut {
    0%,
    100% {
        background-size: 104%;
        background-position: 50% 50%;
    }

    50% {
        background-size: 112%;
        background-position: 52% 48%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home .hero-media {
        animation: none;
        background-size: cover;
        background-position: center;
    }
}

/* Home section label lock (requested) */
.home .hero-kicker,
.home #who-for .section-heading > .eyebrow,
.home #conditions .section-heading > .eyebrow,
.home #pricing .section-heading > .eyebrow,
.home #pricing .timeline-note,
.home #process .section-heading > .eyebrow,
.home #transfer .section-heading > .eyebrow,
.home #medical-team .section-heading > .eyebrow,
.home #reviews .section-heading > .eyebrow,
.home #faq .faq-sidebar > .eyebrow {
    color: #ff6a2f;
    font-weight: 800;
}

.home .hero-kicker {
    color: #ff6a2f !important;
    font-weight: 800 !important;
}

/* Home background cleanup (professional, clean match) */
.home #about {
    background: #e9f3f9;
}

.home #who-for {
    background: #eef5f0;
}

.home #conditions {
    background: #e6eff7;
}

.home #pricing {
    background: #f2f5f4;
}

.home #process {
    background: #e8f2ea;
}

.home #transfer {
    background: #e5edf6;
}

.home #medical-team {
    background: #e7f0e8;
}

.home #reviews {
    background: #e4edf5;
}

.home #faq {
    background: #e8eff6;
}

.home #contact,
.home .contact-section {
    background: #dce9df;
}

/* Pricing page redesign */
.pricing-page {
    background: #e9f3f9;
}

.pricing-page .section {
    padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.pricing-page .hero-banner {
    margin-top: 0;
}

.pricing-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.pricing-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.pricing-page .hero-content {
    max-width: min(600px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.pricing-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.pricing-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
    font-weight: 800;
    padding: 0.3rem 0.66rem;
}

.pricing-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.pricing-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.pricing-overview {
    background: #eef5f0;
}

.pricing-page-heading {
    max-width: 760px;
}

.pricing-page-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #172c22;
}

.pricing-page-heading h2 span {
    color: #ff6a2f;
    font-weight: 800;
}

.pricing-page-heading p {
    margin-bottom: 0.65rem;
    color: #355145;
}

.pricing-page-grid {
    margin-top: 1.4rem;
    margin-bottom: 1rem;
}

.pricing-page-grid .pricing-card {
    background: #e9f3f9;
    border: 1px solid rgba(20, 71, 51, 0.16);
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.09);
    text-align: center;
    min-height: 214px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-page-grid .pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.pricing-page-grid .pricing-card .price-tag {
    color: #144733;
    font-size: 1.75rem;
    margin-bottom: 0.7rem;
}

.pricing-page-grid .pricing-card:last-child .price-tag {
    color: #ff6a2f;
}

.pricing-page-note {
    color: #4f6a5f;
    font-size: 0.94rem;
    margin-bottom: 0.95rem;
}

.pricing-page-features h3 {
    color: #144733;
    margin-bottom: 0.62rem;
}

.pricing-page-features .pricing-features {
    margin-top: 0;
    margin-bottom: 0.85rem;
}

.pricing-page-features .pricing-features li {
    font-size: 0.94rem;
}

.pricing-page-features p {
    color: #355145;
    margin: 0;
}

.pricing-timeline {
    background: #e6eff7;
}

.pricing-timeline-card {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(20, 71, 51, 0.16);
    box-shadow: 0 14px 28px rgba(15, 38, 29, 0.09);
    padding: clamp(1rem, 1.8vw, 1.35rem);
}

.pricing-timeline-header {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 0.72rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(20, 71, 51, 0.14);
}

.pricing-timeline-header strong {
    color: #172c22;
    font-size: 0.95rem;
}

.pricing-timeline-body {
    position: relative;
}

.pricing-timeline-body::before {
    content: "";
    position: absolute;
    left: 0.52rem;
    top: 0.58rem;
    bottom: 0.72rem;
    width: 2px;
    background: rgba(20, 71, 51, 0.2);
}

.pricing-timeline-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 0.72rem;
    align-items: start;
    padding: 0.62rem 0;
    border-bottom: 1px solid rgba(20, 71, 51, 0.1);
}

.pricing-timeline-row:last-child {
    border-bottom: 0;
}

.pricing-timeline-month {
    position: relative;
    display: grid;
    gap: 0.1rem;
    padding-left: 1.5rem;
}

.pricing-timeline-month::before {
    content: "";
    position: absolute;
    left: 0.14rem;
    top: 0.38rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #8fbfdb;
    background: #ffffff;
}

.timeline-month {
    color: #172c22;
    font-weight: 700;
    font-size: 0.93rem;
}

.timeline-title {
    color: #415d52;
    font-size: 0.92rem;
}

.pricing-timeline-month em {
    color: #587367;
    font-size: 0.86rem;
    font-style: italic;
}

.timeline-cost {
    color: #243e33;
    font-size: 0.92rem;
    font-weight: 600;
    padding-top: 0.1rem;
}

.timeline-cost-included {
    font-style: italic;
}

.pricing-total-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 0.72rem;
    align-items: center;
    border-top: 1px solid rgba(20, 71, 51, 0.2);
    margin-top: 0.3rem;
    padding-top: 0.7rem;
}

.pricing-total-row span,
.pricing-total-row strong {
    color: #172c22;
}

.pricing-total-row span {
    font-weight: 700;
}

.pricing-page .timeline-note {
    margin-top: 0.8rem;
    border-radius: 10px;
    background: #f3f5f7;
    border: 1px solid rgba(20, 71, 51, 0.12);
    color: #172c22;
}

.pricing-page .timeline-note strong,
.pricing-page .timeline-note span {
    color: #ff6a2f;
}

.pricing-timeline-foot {
    margin: 0.8rem 0 0;
    color: #496459;
    font-size: 0.92rem;
}

.pricing-faq {
    background: #e8eff6;
}

.pricing-faq-layout {
    display: grid;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 1.4rem;
    align-items: start;
}

.pricing-faq-intro h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    color: #172c22;
    line-height: 1.06;
    margin-bottom: 1rem;
}

.pricing-faq-intro .btn-light {
    border-color: #ff6a2f;
    color: #ff6a2f;
    background: #ffffff;
    font-weight: 700;
}

.pricing-faq-intro .btn-light:hover {
    background: #fff2eb;
    color: #d95324;
    border-color: #ff6a2f;
}

.pricing-faq-list {
    padding: 0;
}

.pricing-faq-list details {
    border-bottom: 1px solid rgba(20, 71, 51, 0.2);
    padding: 0.78rem 0;
    background: transparent;
}

.pricing-faq-list details:last-child {
    border-bottom: 0;
}

.pricing-faq-list summary {
    list-style: none;
    cursor: pointer;
    color: #172c22;
    font-weight: 700;
    position: relative;
    padding-right: 1.2rem;
}

.pricing-faq-list summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #ff6a2f;
    font-weight: 700;
}

.pricing-faq-list details[open] summary::after {
    content: "-";
}

.pricing-faq-list p {
    margin: 0.5rem 0 0;
    color: #4a655a;
}

@media (max-width: 920px) {
    .pricing-faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .pricing-page-grid,
    .pricing-timeline-header,
    .pricing-timeline-row,
    .pricing-total-row {
        grid-template-columns: 1fr;
    }

    .pricing-timeline-header span {
        display: none;
    }

    .pricing-timeline-body::before {
        left: 0.45rem;
    }

    .pricing-page-grid .pricing-card {
        min-height: auto;
        text-align: left;
    }

    .pricing-page .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .pricing-page .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
}

@media (max-width: 560px) {
    .pricing-page .hero-media {
        min-height: 335px;
    }
}

/* How it works page redesign */
.how-page {
    background: #e9f3f9;
}

.how-page .hero-banner {
    margin-top: 0;
}

.how-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.how-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.how-page .hero-content {
    max-width: min(640px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.how-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.how-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f !important;
    font-weight: 800 !important;
    padding: 0.3rem 0.66rem;
}

.how-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.how-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.how-process {
    background: #eef5f0;
}

.how-step-stack {
    display: grid;
    gap: 1.6rem;
}

.how-step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    align-items: center;
}

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

.how-step-row.is-reverse .how-step-visual {
    order: 1;
}

.how-step-copy h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #172c22;
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    margin-bottom: 0.8rem;
}

.how-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #144733;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
}

.how-step-list {
    display: grid;
    gap: 0.54rem;
    margin-bottom: 0.95rem;
}

.how-step-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.52rem;
    align-items: start;
    color: #355145;
    font-size: 0.95rem;
    line-height: 1.45;
}

.how-step-list i {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
    display: inline-grid;
    place-items: center;
    font-size: 0.98rem;
}

.how-step-meta {
    margin-top: 0.55rem;
    color: #4f6a5f;
    font-size: 0.82rem;
}

.how-step-visual {
    border-radius: 10px;
    background: #c7deec;
    border: 1px solid rgba(20, 71, 51, 0.16);
    min-height: 300px;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(15, 38, 29, 0.1);
}

.how-visual-inner {
    position: relative;
    width: min(260px, 80%);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.how-step-visual i {
    color: #144733;
}

.how-step-visual.is-screening i:first-child {
    font-size: 4.6rem;
    transform: translate(-22px, -8px);
}

.how-step-visual.is-screening i:last-child {
    font-size: 6rem;
    color: #ff6a2f;
    transform: translate(42px, 12px);
}

.how-step-visual.is-appointment i:first-child {
    font-size: 6rem;
    color: #144733;
    transform: translate(-8px, 8px);
}

.how-step-visual.is-appointment i:last-child {
    position: absolute;
    font-size: 3.1rem;
    color: #ff6a2f;
    right: 34px;
    top: 36px;
}

.how-step-visual.is-delivery i {
    font-size: 7.4rem;
    color: #144733;
}

.how-step-visual.is-followup i:first-child {
    font-size: 6rem;
    color: #144733;
    transform: translate(-28px, 0);
}

.how-step-visual.is-followup i:last-child {
    position: absolute;
    font-size: 4.3rem;
    color: #ff6a2f;
    right: 26px;
    top: 48px;
}

.how-bottom-cta {
    border-radius: 12px;
    background: #d8e8f2;
    border: 1px solid rgba(20, 71, 51, 0.14);
    text-align: center;
    padding: 1.5rem 1rem;
}

.how-bottom-cta p {
    margin: 0 0 0.8rem;
    color: #172c22;
    font-size: clamp(1.2rem, 2.3vw, 1.85rem);
}

@media (max-width: 920px) {
    .how-step-row {
        grid-template-columns: 1fr;
    }

    .how-step-row.is-reverse .how-step-copy,
    .how-step-row.is-reverse .how-step-visual {
        order: initial;
    }
}

@media (max-width: 760px) {
    .how-page .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .how-page .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .how-step-visual {
        min-height: 250px;
    }
}

@media (max-width: 560px) {
    .how-page .hero-media {
        min-height: 335px;
    }
}

/* FAQ hub page redesign */
.faq-page {
    background: #edf4f8;
}

.faq-page .hero-banner {
    margin-top: 0;
}

.faq-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.faq-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.faq-page .hero-content {
    max-width: min(640px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.faq-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.faq-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f !important;
    font-weight: 800 !important;
    padding: 0.3rem 0.66rem;
}

.faq-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.faq-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.faq-hub {
    background: #edf4f8;
}

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

.faq-hub-nav {
    position: sticky;
    top: 112px;
}

.faq-hub-nav h2 {
    color: #172c22;
    font-size: clamp(1.7rem, 2.3vw, 2.2rem);
    margin-bottom: 0.9rem;
}

.faq-hub-nav-list {
    display: grid;
    gap: 0.52rem;
}

.faq-hub-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 71, 51, 0.22);
    background: rgba(255, 255, 255, 0.9);
    color: #172c22;
    padding: 0.58rem 0.92rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.faq-hub-nav-list a:hover {
    background: #d8e8f2;
    border-color: rgba(20, 71, 51, 0.28);
    color: #102f24;
    transform: translateY(-1px);
}

.faq-hub-nav-list a.is-active {
    background: #c7deec;
    border-color: #c7deec;
    color: #102f24;
}

.faq-hub-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(20, 71, 51, 0.2);
    background: #ffffff;
    color: #144733;
    flex-shrink: 0;
}

.faq-hub-nav-list a.is-active .faq-hub-icon {
    border-color: rgba(20, 71, 51, 0.28);
}

.faq-hub-content {
    display: grid;
    gap: 2.25rem;
}

.faq-hub-section h2 {
    color: #172c22;
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    margin-bottom: 0.78rem;
}

.faq-hub-accordion details {
    border-bottom: 1px solid rgba(20, 71, 51, 0.26);
    padding: 0.82rem 0;
}

.faq-hub-accordion summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    color: #172c22;
    font-weight: 700;
    font-size: clamp(1rem, 1.55vw, 1.32rem);
    line-height: 1.32;
    padding-right: 1.4rem;
}

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

.faq-hub-accordion summary::after {
    content: "v";
    position: absolute;
    right: 0;
    top: -0.04em;
    color: #144733;
    font-weight: 700;
    transform: rotate(0deg);
    transition: transform var(--ease), color var(--ease);
}

.faq-hub-accordion details[open] summary::after {
    transform: rotate(180deg);
    color: #ff6a2f;
}

.faq-hub-accordion p {
    margin: 0.6rem 0 0;
    color: #3f5d52;
    max-width: 74ch;
}

@media (max-width: 1080px) {
    .faq-hub-layout {
        grid-template-columns: 1fr;
    }

    .faq-hub-nav {
        position: static;
    }

    .faq-hub-nav-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .faq-page .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .faq-page .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .faq-hub-nav-list {
        grid-template-columns: 1fr;
    }

    .faq-hub-section h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
}

@media (max-width: 560px) {
    .faq-page .hero-media {
        min-height: 335px;
    }
}

/* About page redesign */
.about-page {
    background: #d8e8f2;
}

.about-page .hero-banner {
    margin-top: 0;
}

.about-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.about-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.about-page .hero-content {
    max-width: min(700px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.about-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.about-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f !important;
    font-weight: 800 !important;
    padding: 0.3rem 0.66rem;
}

.about-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.about-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.about-mission {
    background: #d8e8f2;
}

.about-mission-wrap {
    display: grid;
    gap: 1rem;
    text-align: center;
}

.about-mission-wrap h2 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    color: #172c22;
    max-width: 13ch;
    margin-inline: auto;
    line-height: 1.05;
}

.about-mission-wrap h2 span {
    color: #ff6a2f;
    position: relative;
    font-weight: 800;
}

.about-mission-wrap h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 0.11em;
    border-radius: 999px;
    background: rgba(255, 106, 47, 0.85);
    z-index: -1;
}

.about-mission-wrap > p {
    color: #355145;
    max-width: 56ch;
    margin-inline: auto;
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.45vw, 1.32rem);
}

.about-founder-panel {
    margin-top: 0.7rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(20, 71, 51, 0.16);
    box-shadow: 0 18px 34px rgba(15, 38, 29, 0.1);
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem;
}

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

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

.about-founder-photo {
    border-radius: 16px;
    background: linear-gradient(140deg, #ff6a2f 0%, #ff6a2f 38%, #d8e8f2 38%, #d8e8f2 100%);
    border: 1px solid rgba(20, 71, 51, 0.16);
    min-height: 178px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    margin-bottom: 0.48rem;
}

.about-founder-photo i {
    font-size: 5.8rem;
    color: #144733;
    transform: translateY(12px);
}

.about-founder-card h3 {
    margin-bottom: 0.18rem;
    color: #172c22;
    font-size: 1.15rem;
}

.about-founder-card p {
    margin: 0;
    color: #4b675c;
    font-weight: 600;
}

.about-founder-panel blockquote {
    margin: 0;
    color: #355145;
    font-size: clamp(1.35rem, 2.25vw, 2.28rem);
    line-height: 1.32;
    font-style: italic;
    align-self: center;
}

.about-mission-copy {
    margin-top: 0.1rem;
    display: grid;
    gap: 0.6rem;
}

.about-mission-copy p {
    margin: 0;
    color: #355145;
    max-width: 58ch;
    margin-inline: auto;
}

.about-promise {
    background: #f2f5f4;
}

.about-promise-grid {
    display: grid;
    grid-template-columns: 0.34fr 0.66fr;
    gap: 1.6rem;
    align-items: start;
}

.about-promise-intro h2 {
    color: #172c22;
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    line-height: 1.1;
    margin-bottom: 0.78rem;
}

.about-promise-intro p {
    margin: 0;
    color: #3f5d52;
    font-size: clamp(1.02rem, 1.4vw, 1.24rem);
    max-width: 28ch;
}

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

.about-promise-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.72rem;
    align-items: center;
}

.about-promise-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: #d8e8f2;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(20, 71, 51, 0.16);
}

.about-promise-icon i {
    color: #144733;
    font-size: 1.95rem;
}

.about-promise-item p {
    margin: 0;
    color: #355145;
    font-size: clamp(1.04rem, 1.45vw, 1.45rem);
    line-height: 1.35;
}

@media (max-width: 1080px) {
    .about-founder-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-founder-panel blockquote {
        text-align: left;
    }

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

    .about-promise-intro p {
        max-width: 52ch;
    }
}

@media (max-width: 760px) {
    .about-page .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .about-page .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .about-founders,
    .about-promise-list {
        grid-template-columns: 1fr;
    }

    .about-founder-panel blockquote {
        font-size: clamp(1.16rem, 5.4vw, 1.55rem);
    }
}

@media (max-width: 560px) {
    .about-page .hero-media {
        min-height: 335px;
    }
}

/* Conditions page redesign */
.conditions-page {
    background: #d8e8f2;
}

.conditions-page .hero-banner {
    margin-top: 0;
}

.conditions-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.conditions-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.conditions-page .hero-content {
    max-width: min(660px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.conditions-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.conditions-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f !important;
    font-weight: 800 !important;
    padding: 0.3rem 0.66rem;
}

.conditions-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.conditions-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.conditions-overview {
    background: #d8e8f2;
}

.conditions-intro {
    display: grid;
    gap: 0.8rem;
    max-width: 72ch;
    margin-bottom: 1.1rem;
}

.conditions-intro p {
    margin: 0;
    color: #355145;
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.conditions-intro .btn {
    width: min(100%, 420px);
}

.conditions-discover h2 {
    color: #172c22;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 0.65rem;
}

.conditions-page .category-pills {
    margin-bottom: 1.25rem;
}

.conditions-page .category-pills li {
    background: #ffffff;
    border: 1px solid rgba(20, 71, 51, 0.18);
    color: #172c22;
}

.conditions-page .category-pills li a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-weight: 700;
}

.conditions-section-stack {
    display: grid;
    gap: 1.45rem;
}

.conditions-group h3 {
    color: #172c22;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-bottom: 0.7rem;
}

.conditions-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.conditions-card {
    background: #cfe3f0;
    border: 1px solid rgba(20, 71, 51, 0.16);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(15, 38, 29, 0.08);
    padding: 0.95rem;
}

.conditions-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f;
    margin-bottom: 0.45rem;
}

.conditions-card h4 {
    color: #172c22;
    font-size: 1.15rem;
    margin-bottom: 0.38rem;
}

.conditions-card p {
    margin: 0;
    color: #3f5d52;
    font-size: 0.93rem;
    line-height: 1.46;
}

.conditions-outro {
    margin: 1.3rem 0 0.85rem;
    color: #355145;
    font-size: 1rem;
}

@media (max-width: 920px) {
    .conditions-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .conditions-page .hero-content-wrap {
        padding-top: 3.9rem;
        padding-bottom: 3.85rem;
    }

    .conditions-page .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
}

@media (max-width: 560px) {
    .conditions-page .hero-media {
        min-height: 335px;
    }
}

/* Transfer clinic and contact page redesign */
.transfer-page {
    background: #e9f3f9;
}

.transfer-page .hero-banner {
    margin-top: 0;
}

.transfer-page .hero-media {
    min-height: clamp(290px, 40vh, 410px);
    background-size: 106%;
    animation: homeHeroZoomInOut 12s ease-in-out infinite;
}

.transfer-page .hero-content-wrap {
    padding-top: 4.68rem;
    padding-bottom: 5.04rem;
}

.transfer-page .hero-content {
    max-width: min(640px, 100%);
    padding: clamp(1rem, 1.6vw, 1.45rem);
}

.transfer-page .hero-content h1 {
    font-size: clamp(1.72rem, 3.4vw, 2.78rem);
}

.transfer-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ff6a2f;
    color: #ff6a2f !important;
    font-weight: 800 !important;
    padding: 0.3rem 0.66rem;
}

.transfer-page .hero-actions .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.18);
    color: #144733;
}

.transfer-page .hero-actions .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.35);
    color: #144733;
}

.transfer-steps-section {
    background: #edf4f8;
}

.transfer-section-heading {
    max-width: min(860px, 100%);
    margin: 0 auto 1.5rem;
    text-align: center;
}

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

.transfer-section-heading h2 {
    color: #172c22;
    font-size: clamp(2rem, 4.2vw, 4.4rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 0.72rem;
}

.transfer-section-heading p {
    margin: 0;
    color: #355145;
    font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.accent-highlight {
    color: var(--clr-accent);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.accent-highlight::after {
    content: "";
    position: absolute;
    left: -0.04em;
    right: -0.04em;
    bottom: 0.04em;
    height: 0.11em;
    border-radius: 999px;
    background: rgba(255, 106, 47, 0.84);
    z-index: -1;
}

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

.transfer-step-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(20, 71, 51, 0.16);
    box-shadow: 0 14px 30px rgba(15, 38, 29, 0.09);
    padding: 0.85rem;
    display: grid;
    gap: 0.85rem;
}

.transfer-step-visual {
    border-radius: 20px;
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 106, 47, 0.12), transparent 42%),
        linear-gradient(145deg, #cde2ef 0%, #bdd8e9 52%, #b2d1e5 100%);
    border: 1px solid rgba(20, 71, 51, 0.16);
    min-height: 190px;
    display: grid;
    place-items: center;
}

.transfer-step-visual i {
    color: #183b2c;
    font-size: clamp(3rem, 5.5vw, 4.3rem);
}

.transfer-step-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
}

.transfer-step-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--clr-primary-dark);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.12rem;
}

.transfer-step-body h3 {
    color: #172c22;
    font-size: 1.26rem;
    margin-bottom: 0.3rem;
}

.transfer-step-body p {
    margin: 0;
    color: #3f5d52;
    font-size: 1.03rem;
    line-height: 1.46;
}

.transfer-why-section {
    background: linear-gradient(180deg, #dce9f3 0%, #d7e6f1 100%);
}

.transfer-reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.transfer-reason-card {
    display: grid;
    gap: 0.72rem;
}

.transfer-reason-visual {
    border-radius: 20px;
    background: #f7fafc;
    border: 1px solid rgba(20, 71, 51, 0.16);
    min-height: 216px;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.07);
}

.transfer-reason-visual i {
    font-size: clamp(3rem, 6vw, 4.1rem);
    color: #1b4332;
}

.transfer-reason-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.58rem;
    align-items: start;
}

.transfer-reason-body p {
    margin: 0;
    color: #385448;
    font-size: 1.02rem;
    line-height: 1.44;
}

.transfer-faq-section {
    background: #f4f7fa;
}

.transfer-faq-layout {
    display: grid;
    grid-template-columns: 0.34fr 0.66fr;
    gap: 1.3rem;
    align-items: start;
}

.transfer-faq-intro h2 {
    color: #172c22;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    line-height: 1.06;
    margin-bottom: 0.95rem;
}

.transfer-faq-intro .btn-light {
    background: #ffffff;
    border-color: rgba(20, 71, 51, 0.2);
    color: var(--clr-primary-dark);
}

.transfer-faq-intro .btn-light:hover {
    background: #f3faf6;
    border-color: rgba(20, 71, 51, 0.34);
}

.transfer-faq-list details {
    border-bottom: 1px solid rgba(20, 71, 51, 0.26);
    padding: 0.86rem 0;
}

.transfer-faq-list details:last-child {
    border-bottom: 0;
}

.transfer-faq-list summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    color: #172c22;
    font-weight: 700;
    font-size: clamp(1.02rem, 1.4vw, 1.35rem);
    line-height: 1.35;
    padding-right: 1.3rem;
}

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

.transfer-faq-list summary::after {
    content: "v";
    position: absolute;
    right: 0;
    top: -0.03em;
    color: #1a4a38;
    transition: transform var(--ease), color var(--ease);
}

.transfer-faq-list details[open] summary::after {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

.transfer-faq-list p {
    margin: 0.58rem 0 0;
    color: #3f5d52;
}

.contact-page {
    background: linear-gradient(180deg, #edf4f8 0%, #eef5f1 100%);
}

.contact-page-hero {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 106, 47, 0.12), transparent 38%),
        radial-gradient(circle at 88% 12%, rgba(20, 71, 51, 0.09), transparent 42%),
        linear-gradient(180deg, #e3edf6 0%, #e9f1f6 100%);
    border-bottom: 1px solid rgba(20, 71, 51, 0.16);
}

.contact-page-hero-shell {
    max-width: min(800px, 100%);
    margin-inline: auto;
    text-align: center;
}

.contact-page-hero-shell .eyebrow {
    background: #ffffff;
    color: var(--clr-primary-dark);
    border: 1px solid rgba(20, 71, 51, 0.18);
}

.contact-page-hero-shell h1 {
    color: #172c22;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin-bottom: 0.72rem;
}

.contact-page-hero-shell > p {
    margin: 0 auto;
    max-width: 58ch;
    color: #355145;
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.contact-page-hero-shell .hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

.contact-page-main {
    background: #eef5f1;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    align-items: start;
}

.contact-page-copy h2 {
    color: #172c22;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 0.48rem;
}

.contact-page-copy > p {
    margin: 0 0 1rem;
    color: #3f5d52;
    max-width: 58ch;
}

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

.contact-page-card {
    border-radius: 16px;
    border: 1px solid rgba(20, 71, 51, 0.18);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.08);
    padding: 0.82rem;
}

.contact-page-card h3 {
    color: #172c22;
    font-size: 1.12rem;
    margin-bottom: 0.42rem;
}

.contact-page-card a {
    color: var(--clr-primary-dark);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.28rem;
}

.contact-page-card p {
    margin: 0;
    color: #4a655a;
    font-size: 0.94rem;
}

.contact-page-notes {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.95rem;
}

.contact-page-notes li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: start;
    color: #355145;
}

.contact-page-notes i {
    color: var(--clr-primary-dark);
    font-size: 1rem;
    transform: translateY(0.18rem);
}

.contact-page-panel {
    position: sticky;
    top: 108px;
}

.contact-page-panel .btn {
    width: 100%;
}

@media (max-width: 1200px) {
    .transfer-reasons-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .transfer-steps-grid,
    .transfer-faq-layout,
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

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

    .contact-page-cards {
        grid-template-columns: 1fr;
    }

    .contact-page-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .transfer-page .hero-actions,
    .contact-page-hero-shell .hero-actions {
        margin-top: 1rem;
    }

    .transfer-step-visual {
        min-height: 170px;
    }

    .transfer-reason-visual {
        min-height: 180px;
    }
}

@media (max-width: 560px) {
    .transfer-reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Role Dashboards */
.cr-role-dashboard {
    padding: 0;
    background: #f3f4f6;
    min-height: calc(100vh - 70px);
}

.cr-role-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: inherit;
}

.cr-role-sidebar {
    background: #32013f;
    color: #fff;
    padding: 1.4rem 1rem;
    display: grid;
    align-content: start;
    gap: 1rem;
}

.cr-role-brand {
    font-family: "Sora", "Verdana", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    padding: 0.35rem 0.45rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cr-role-nav {
    display: grid;
    gap: 0.45rem;
}

.cr-role-nav a {
    display: block;
    padding: 0.75rem 0.82rem;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 600;
    transition: background var(--ease), color var(--ease), transform var(--ease);
}

.cr-role-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(1px);
}

.cr-role-nav a.is-active {
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
}

.cr-role-logout {
    margin-top: 0.6rem;
    padding: 0.75rem 0.82rem;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.cr-role-main {
    padding: 2rem;
}

.cr-role-header {
    margin-bottom: 1rem;
}

.cr-role-header h1 {
    margin: 0 0 0.36rem;
    color: #32013f;
    font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.cr-role-header p {
    margin: 0;
    color: #51695f;
    font-size: 1.03rem;
}

.cr-role-cards {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0.9rem;
}

.cr-role-card {
    background: #fff;
    border: 1px solid var(--clr-line);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.cr-role-card h2 {
    margin: 0 0 0.42rem;
    font-size: 0.95rem;
    color: #5d756a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cr-role-card p {
    margin: 0;
    color: #32013f;
    font-family: "Sora", "Verdana", sans-serif;
    font-size: 1.62rem;
    line-height: 1.2;
}

.cr-role-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cr-role-panel {
    background: #fff;
    border: 1px solid var(--clr-line);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.cr-role-panel h2,
.cr-role-panel h3 {
    margin: 0 0 0.6rem;
    color: #32013f;
}

.cr-role-panel p {
    color: #415a4f;
}

.cr-role-stat-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.cr-role-stat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    border-bottom: 1px dashed rgba(20, 71, 51, 0.2);
    padding-bottom: 0.45rem;
}

.cr-role-stat-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cr-role-stat-list span {
    color: #4f685d;
    font-weight: 600;
}

.cr-role-stat-list strong {
    color: #2d0438;
    font-family: "Sora", "Verdana", sans-serif;
}

.cr-role-table-wrap {
    overflow-x: auto;
}

.cr-role-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 660px;
}

.cr-role-table th,
.cr-role-table td {
    border-bottom: 1px solid rgba(20, 71, 51, 0.14);
    padding: 0.72rem 0.45rem;
    text-align: left;
    vertical-align: top;
    color: #2d483d;
    font-size: 0.92rem;
}

.cr-role-table th {
    color: #3a584d;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cr-role-empty {
    margin: 0;
    color: #5f776c;
}

.cr-role-status {
    display: inline-flex;
    padding: 0.24rem 0.62rem;
    border-radius: 999px;
    background: #eceaf2;
    color: #463d6a;
    font-size: 0.74rem;
    font-weight: 700;
}

.cr-role-mini-card {
    background: #fdfefe;
    border: 1px solid rgba(20, 71, 51, 0.16);
    border-radius: 13px;
    padding: 0.85rem;
}

.cr-role-mini-card h3 {
    margin: 0 0 0.35rem;
    color: #2f0439;
    font-size: 1rem;
}

.cr-role-mini-card p {
    margin: 0.2rem 0;
    color: #3f5d51;
    font-size: 0.92rem;
}

.cr-role-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
}

.cr-role-profile-grid p {
    margin: 0;
}

.cr-role-contact-list {
    margin: 0;
    padding-left: 1rem;
    list-style: disc;
    color: #39544a;
}

.cr-role-contact-list li + li {
    margin-top: 0.4rem;
}

@media (max-width: 1180px) {
    .cr-role-shell {
        grid-template-columns: 240px 1fr;
    }

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

@media (max-width: 980px) {
    .cr-role-shell {
        grid-template-columns: 1fr;
    }

    .cr-role-sidebar {
        gap: 0.8rem;
    }

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

    .cr-role-main {
        padding: 1rem;
    }

    .cr-role-grid,
    .cr-role-profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cr-role-cards,
    .cr-role-nav {
        grid-template-columns: 1fr;
    }
}

/* Role Dashboards v2 */
.cr-role-dashboard-v2 {
    --cr-portal-bg: #f4f3f7;
    --cr-portal-surface: #ffffff;
    --cr-portal-line: rgba(54, 10, 70, 0.18);
    --cr-portal-sidebar: #32013f;
    --cr-portal-sidebar-soft: #4b1b57;
    --cr-portal-text: #2a0834;
    --cr-portal-muted: #5b4f61;
    --cr-portal-accent: #ff6a2f;
    --cr-portal-pill: #ece8ef;
    min-height: 100vh;
    background: var(--cr-portal-bg);
}

.cr-role-dashboard-v2 .cr-role-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 100vh;
}

.cr-role-dashboard-v2 .cr-role-sidebar {
    background: var(--cr-portal-sidebar);
    color: #fff;
    padding: 1.1rem 0.65rem;
    gap: 0.75rem;
}

.cr-role-brand-wrap {
    padding: 0.25rem 0.45rem 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cr-role-brand-link {
    display: block;
}

.cr-role-brand-logo {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
}

.cr-role-dashboard-v2 .cr-role-nav {
    gap: 0.4rem;
}

.cr-role-dashboard-v2 .cr-role-nav-link {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 600;
    transition: background var(--ease), transform var(--ease), color var(--ease);
}

.cr-role-dashboard-v2 .cr-role-nav-link i {
    font-size: 1rem;
    flex: 0 0 auto;
}

.cr-role-dashboard-v2 .cr-role-nav-link:hover {
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
}

.cr-role-dashboard-v2 .cr-role-nav-link.is-active {
    background: var(--cr-portal-sidebar-soft);
    color: #fff;
}

.cr-role-dashboard-v2 .cr-role-nav-link-logout {
    margin-top: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cr-role-dashboard-v2 .cr-role-main {
    padding: 1.5rem 1.6rem 1.8rem;
    color: var(--cr-portal-text);
}

.cr-role-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.cr-role-user-mail {
    color: #4f4060;
    font-size: 0.95rem;
}

.cr-role-topbar-link {
    color: #2d0438;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cr-role-dashboard-v2 .cr-role-header {
    margin-bottom: 1.15rem;
}

.cr-role-dashboard-v2 .cr-role-header h1 {
    font-size: clamp(2.15rem, 3.1vw, 3.3rem);
    margin: 0 0 0.28rem;
    color: var(--cr-portal-text);
}

.cr-role-dashboard-v2 .cr-role-header p {
    margin: 0;
    color: var(--cr-portal-muted);
    font-size: 1.02rem;
}

.cr-role-dashboard-v2 .cr-role-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.82rem;
    margin-bottom: 0.82rem;
}

.cr-role-dashboard-v2 .cr-role-card,
.cr-role-dashboard-v2 .cr-role-panel,
.cr-role-dashboard-v2 .cr-role-mini-card {
    background: var(--cr-portal-surface);
    border: 1px solid var(--cr-portal-line);
    border-radius: 15px;
    box-shadow: 0 10px 22px rgba(42, 8, 52, 0.08);
}

.cr-role-dashboard-v2 .cr-role-card {
    padding: 0.9rem 0.9rem 0.85rem;
}

.cr-role-dashboard-v2 .cr-role-card h2 {
    color: #6c5f72;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.35rem;
}

.cr-role-dashboard-v2 .cr-role-card p {
    color: var(--cr-portal-text);
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    margin: 0;
}

.cr-role-dashboard-v2 .cr-role-grid {
    gap: 0.82rem;
}

.cr-role-dashboard-v2 .cr-role-panel {
    padding: 1rem;
}

.cr-role-dashboard-v2 .cr-role-panel h2,
.cr-role-dashboard-v2 .cr-role-panel h3 {
    color: var(--cr-portal-text);
    margin: 0 0 0.56rem;
    font-size: 1.5rem;
}

.cr-role-dashboard-v2 .cr-role-panel p {
    color: var(--cr-portal-muted);
    margin: 0 0 0.62rem;
}

.cr-role-dashboard-v2 .cr-role-stat-list li {
    border-bottom: 1px dashed rgba(58, 16, 76, 0.24);
}

.cr-role-dashboard-v2 .cr-role-stat-list span {
    color: #584f60;
}

.cr-role-dashboard-v2 .cr-role-stat-list strong {
    color: #2b0636;
}

.cr-role-dashboard-v2 .cr-role-status {
    background: var(--cr-portal-pill);
    color: #3b2a4c;
}

.cr-role-dashboard-v2 .cr-role-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.cr-role-dashboard-v2 .cr-role-actions .btn {
    border-radius: 11px;
    min-width: 180px;
    text-align: center;
}

.cr-role-dashboard-v2 .cr-role-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.52rem;
}

.cr-role-dashboard-v2 .cr-role-list li {
    background: #faf8fc;
    border: 1px solid rgba(54, 10, 70, 0.14);
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
    color: #4b3f56;
}

.cr-role-dashboard-v2 .cr-role-feed {
    display: grid;
    gap: 0.65rem;
}

.cr-role-dashboard-v2 .cr-role-feed li {
    border: 1px solid rgba(54, 10, 70, 0.14);
    border-radius: 12px;
    padding: 0.72rem 0.8rem;
    background: #fff;
}

.cr-role-dashboard-v2 .cr-role-feed strong {
    display: block;
    color: #2d0739;
    margin-bottom: 0.2rem;
}

.cr-role-dashboard-v2 .cr-role-feed span {
    display: inline-block;
    color: #7a6f81;
    font-size: 0.84rem;
    margin-bottom: 0.32rem;
}

.cr-role-dashboard-v2 .cr-role-feed p {
    margin: 0;
    color: #574d5f;
}

.cr-role-dashboard-v2 .cr-role-faq {
    display: grid;
    gap: 0.55rem;
}

.cr-role-dashboard-v2 .cr-role-faq details {
    border: 1px solid rgba(54, 10, 70, 0.16);
    border-radius: 11px;
    background: #fff;
}

.cr-role-dashboard-v2 .cr-role-faq summary {
    cursor: pointer;
    padding: 0.72rem 0.84rem;
    color: #2f0a3b;
    font-weight: 700;
}

.cr-role-dashboard-v2 .cr-role-faq p {
    margin: 0;
    padding: 0 0.84rem 0.84rem;
}

.cr-role-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
    margin-bottom: 0.82rem;
}

.cr-role-plan-card {
    position: relative;
}

.cr-role-plan-card .cr-role-price {
    font-family: "Sora", "Verdana", sans-serif;
    font-size: 1.45rem;
    color: #2a0634;
    margin-bottom: 0.5rem;
}

.cr-role-plan-card.is-featured {
    border-color: rgba(56, 6, 72, 0.32);
}

.cr-role-plan-badge {
    position: absolute;
    inset: -1px -1px auto -1px;
    background: #d5ecfb;
    color: #10364a;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.38rem 0.8rem;
}

.cr-role-plan-card.is-featured h2 {
    margin-top: 1.55rem;
}

.cr-role-data-grid {
    display: grid;
    gap: 0.42rem;
    margin-bottom: 0.72rem;
}

.cr-role-data-grid p {
    margin: 0;
}

.cr-role-alert {
    border-radius: 11px;
    padding: 0.66rem 0.78rem;
    margin-bottom: 0.72rem;
    font-weight: 600;
}

.cr-role-alert-bad {
    color: #7f1f1f;
    background: #feecec;
    border: 1px solid #f4c2c2;
}

.cr-role-dashboard-v2 .cr-role-table th,
.cr-role-dashboard-v2 .cr-role-table td {
    border-bottom-color: rgba(54, 10, 70, 0.14);
    color: #44384e;
}

.cr-role-dashboard-v2 .cr-role-table th {
    color: #62556a;
}

.cr-role-dashboard-v2 .cr-role-mini-card h3 {
    color: #2b0835;
}

.cr-role-dashboard-v2 .cr-role-mini-card p {
    color: #5b4f63;
}

.cr-role-dashboard-v2 .cr-role-contact-list {
    color: #51455a;
}

.cr-role-dashboard-v2 .cr-role-contact-list a {
    color: #2d0638;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cr-role-dashboard-v2 .cr-role-empty {
    color: #6d6173;
}

@media (max-width: 1320px) {
    .cr-role-dashboard-v2 .cr-role-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .cr-role-dashboard-v2 .cr-role-shell {
        grid-template-columns: 1fr;
    }

    .cr-role-dashboard-v2 .cr-role-sidebar {
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cr-role-dashboard-v2 .cr-role-nav {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.15rem;
        scrollbar-width: thin;
    }

    .cr-role-dashboard-v2 .cr-role-nav-link {
        min-width: max-content;
        white-space: nowrap;
    }

    .cr-role-dashboard-v2 .cr-role-main {
        padding: 1rem;
    }
}

@media (max-width: 760px) {
    .cr-role-dashboard-v2 .cr-role-topbar {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.45rem 0.9rem;
    }

    .cr-role-dashboard-v2 .cr-role-cards,
    .cr-role-dashboard-v2 .cr-role-grid,
    .cr-role-plan-grid {
        grid-template-columns: 1fr;
    }

    .cr-role-dashboard-v2 .cr-role-actions .btn {
        min-width: 100%;
    }
}

/* Admin Portal (OD-style layout adapted for CannaRelief) */
.cr-admin-portal {
    --cr-admin-bg: #f2f7f4;
    --cr-admin-surface: #f9fcfa;
    --cr-admin-card: #ffffff;
    --cr-admin-line: #d6e3dc;
    --cr-admin-heading: #144733;
    --cr-admin-text: #1f2937;
    --cr-admin-muted: #64748b;
    --cr-admin-primary: #144733;
    --cr-admin-primary-soft: #eaf5ef;
    --cr-admin-danger: #b3261e;
    padding: 1.25rem 0 2rem;
    background: var(--cr-admin-bg);
}

.cr-admin-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #5f7384;
    font-size: 0.86rem;
    margin: 0.2rem 0 0.8rem;
}

.cr-admin-breadcrumb a {
    color: var(--cr-admin-primary);
    font-weight: 700;
}

.cr-admin-notice {
    border-radius: 11px;
    border: 1px solid var(--cr-admin-line);
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.cr-admin-notice.is-success {
    background: #ecfdf3;
    border-color: #82d9a6;
    color: #14652e;
}

.cr-admin-notice.is-error {
    background: #fff1f2;
    border-color: #f3b0b7;
    color: #8b1f2a;
}

.cr-admin-shell {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.cr-admin-sidebar {
    background: var(--cr-admin-surface);
    border: 1px solid var(--cr-admin-line);
    border-radius: 15px;
    padding: 0.8rem 0.7rem;
    position: sticky;
    top: 112px;
}

.cr-admin-brand {
    border-bottom: 1px solid var(--cr-admin-line);
    padding: 0.2rem 0.3rem 0.75rem;
    margin-bottom: 0.7rem;
}

.cr-admin-brand img {
    width: 100%;
    max-width: 190px;
    height: auto;
    display: block;
}

.cr-admin-menu {
    display: grid;
    gap: 0.42rem;
}

.cr-admin-menu-link {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    padding: 0.62rem 0.72rem;
    border: 1px solid var(--cr-admin-line);
    border-radius: 11px;
    color: #1f3243;
    background: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--ease);
}

.cr-admin-menu-link i {
    color: #3f5568;
}

.cr-admin-menu-link:hover {
    border-color: #7eb696;
    color: var(--cr-admin-primary);
}

.cr-admin-menu-link.is-active {
    border-color: #4f9c6a;
    background: var(--cr-admin-primary-soft);
    color: #0f3929;
}

.cr-admin-menu-link.is-logout {
    margin-top: 0.22rem;
    border-color: #efc2c2;
    background: #fff4f4;
    color: #a22e2e;
}

.cr-admin-content {
    min-width: 0;
}

.cr-admin-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    margin-bottom: 0.82rem;
}

.cr-admin-user-mail {
    color: #4b5563;
    font-size: 0.95rem;
}

.cr-admin-signout {
    color: var(--cr-admin-primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cr-admin-header {
    margin-bottom: 0.72rem;
}

.cr-admin-header h1 {
    margin: 0 0 0.22rem;
    color: var(--cr-admin-heading);
    font-size: clamp(2rem, 2.9vw, 3rem);
}

.cr-admin-header p {
    margin: 0;
    color: var(--cr-admin-muted);
    font-size: 1rem;
}

.cr-admin-filter-bar,
.cr-admin-quick-actions {
    margin-bottom: 0.72rem;
}

.cr-admin-inline-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cr-admin-inline-form select,
.cr-admin-inline-form input,
.cr-admin-inline-form textarea {
    min-height: 40px;
    border: 1px solid var(--cr-admin-line);
    border-radius: 9px;
    background: #fff;
    padding: 0.5rem 0.58rem;
    color: var(--cr-admin-text);
    font-size: 0.92rem;
}

.cr-admin-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.cr-admin-quick-actions .btn {
    width: 100%;
}

.cr-admin-card {
    background: var(--cr-admin-card);
    border: 1px solid var(--cr-admin-line);
    border-radius: 14px;
    padding: 0.85rem;
    margin-bottom: 0.72rem;
    box-shadow: 0 6px 16px rgba(15, 33, 52, 0.06);
}

.cr-admin-card h2 {
    margin: 0 0 0.62rem;
    color: var(--cr-admin-heading);
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.cr-admin-card h3 {
    margin: 0 0 0.24rem;
    color: #516273;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cr-admin-card p {
    color: var(--cr-admin-text);
    margin: 0 0 0.6rem;
}

.cr-admin-alert-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.cr-admin-alert-grid article {
    border: 1px solid #e8cfa9;
    border-radius: 10px;
    padding: 0.55rem 0.62rem;
    background: #fffaf1;
}

.cr-admin-alert-grid article h3 {
    color: #8b5e1a;
    font-size: 0.85rem;
    margin: 0 0 0.3rem;
    text-transform: none;
    letter-spacing: 0;
}

.cr-admin-alert-grid article p {
    color: #8b2b2b;
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
}

.cr-admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.48rem;
    margin-bottom: 0.72rem;
}

.cr-admin-stats-grid article {
    border: 1px solid var(--cr-admin-line);
    border-radius: 10px;
    background: #fff;
    padding: 0.56rem 0.62rem;
}

.cr-admin-stats-grid article p {
    margin: 0;
    font-size: 1.18rem;
    color: #16202c;
    font-weight: 800;
}

.cr-admin-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    margin-bottom: 0.72rem;
}

.cr-admin-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.32rem;
}

.cr-admin-check-list li {
    color: #2d3e4f;
    position: relative;
    padding-left: 1.18rem;
}

.cr-admin-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: #169b58;
    font-weight: 800;
}

.cr-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.58rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #c8d7cd;
    background: #f3f9f5;
    color: #1e4f3a;
}

.cr-status-submitted,
.cr-status-draft {
    background: #eef2ff;
    border-color: #c8d1ff;
    color: #3740a0;
}

.cr-status-assigned,
.cr-status-booked {
    background: #e9f7ef;
    border-color: #bde2ca;
    color: #166339;
}

.cr-status-in_review,
.cr-status-approved {
    background: #fff8e9;
    border-color: #f2e0b4;
    color: #8f5e16;
}

.cr-status-closed,
.cr-status-completed {
    background: #edf7ff;
    border-color: #bfdcf5;
    color: #0f5e8a;
}

.cr-status-cancelled {
    background: #fff1f2;
    border-color: #f5c2c7;
    color: #a42834;
}

.cr-admin-table-wrap {
    overflow-x: auto;
}

.cr-admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 900px;
}

.cr-admin-table th,
.cr-admin-table td {
    border-bottom: 1px solid var(--cr-admin-line);
    padding: 0.62rem 0.5rem;
    text-align: left;
    vertical-align: top;
    color: #223244;
    font-size: 0.9rem;
}

.cr-admin-table th {
    color: #5f7386;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 800;
}

.cr-admin-table tbody tr:hover td {
    background: #fafcff;
}

.cr-admin-table small {
    color: #6b7e90;
}

.cr-admin-filter-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.52rem;
    margin-bottom: 0.62rem;
}

.cr-admin-filter-grid select,
.cr-admin-filter-grid input {
    min-height: 40px;
    border: 1px solid var(--cr-admin-line);
    border-radius: 9px;
    background: #fff;
    padding: 0.52rem 0.6rem;
}

.cr-admin-bulk-form {
    border: 1px solid var(--cr-admin-line);
    border-radius: 11px;
    padding: 0.6rem;
    background: #fbfdff;
}

.cr-admin-bulk-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.58rem;
}

.cr-admin-bulk-grid label {
    display: grid;
    gap: 0.28rem;
}

.cr-admin-bulk-grid label > span {
    font-size: 0.78rem;
    font-weight: 800;
    color: #374b60;
    letter-spacing: 0.02em;
}

.cr-admin-bulk-grid select,
.cr-admin-bulk-grid input,
.cr-admin-bulk-grid textarea {
    min-height: 40px;
    border: 1px solid var(--cr-admin-line);
    border-radius: 9px;
    padding: 0.52rem 0.6rem;
    background: #fff;
}

.cr-admin-bulk-grid textarea {
    min-height: 86px;
    resize: vertical;
}

.cr-admin-bulk-grid .is-full {
    grid-column: 1 / -1;
}

.cr-admin-table td select[form] {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--cr-admin-line);
    border-radius: 9px;
    background: #fff;
    color: var(--cr-admin-text);
    padding: 0.45rem 0.55rem;
}

.cr-admin-row-form,
.cr-admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem 0.72rem;
}

.cr-admin-row-form {
    margin-top: 0.48rem;
    padding-top: 0.48rem;
}

.cr-admin-form-grid label,
.cr-admin-row-form label {
    display: grid;
    gap: 0.28rem;
}

.cr-admin-form-grid label > span,
.cr-admin-row-form label > span {
    font-size: 0.78rem;
    font-weight: 800;
    color: #374b60;
    letter-spacing: 0.02em;
}

.cr-admin-form-grid input,
.cr-admin-form-grid select,
.cr-admin-form-grid textarea,
.cr-admin-row-form input,
.cr-admin-row-form select,
.cr-admin-row-form textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--cr-admin-line);
    border-radius: 9px;
    background: #fff;
    color: var(--cr-admin-text);
    font-size: 0.92rem;
    padding: 0.55rem 0.62rem;
}

.cr-admin-form-grid textarea,
.cr-admin-row-form textarea {
    min-height: 90px;
    resize: vertical;
}

.cr-admin-form-grid .is-full,
.cr-admin-row-form .is-full {
    grid-column: 1 / -1;
}

.cr-admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cr-admin-form-actions .btn {
    min-width: 170px;
}

.cr-admin-inline-form--compact {
    display: block;
}

.cr-admin-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.62rem;
}

.cr-admin-mini-stats article {
    border: 1px solid var(--cr-admin-line);
    border-radius: 10px;
    background: #fdfefe;
    padding: 0.58rem 0.66rem;
}

.cr-admin-mini-stats p {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f2937;
}

.cr-admin-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.48rem;
    font-size: 0.92rem;
    color: #2d3f50;
    font-weight: 600;
}

.cr-admin-checkbox-row input[type=\"checkbox\"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    min-height: auto;
}

.cr-admin-load-form {
    margin-bottom: 0.62rem;
}

.cr-admin-divider {
    border: 0;
    border-top: 1px solid var(--cr-admin-line);
    margin: 0.9rem 0;
}

.cr-admin-empty {
    color: #6b7280;
    margin: 0;
}

.cr-admin-danger-zone {
    border-color: #f1c7c7;
    background: #fff9f9;
}

.btn.btn-xs {
    min-height: 36px;
    padding: 0.4rem 0.72rem;
    font-size: 0.86rem;
}

.btn.btn-danger {
    background: var(--cr-admin-danger);
    color: #fff;
    border-color: var(--cr-admin-danger);
}

.btn.btn-danger:hover {
    background: #8e1913;
    border-color: #8e1913;
}

@media (max-width: 1360px) {
    .cr-admin-alert-grid,
    .cr-admin-stats-grid,
    .cr-admin-mini-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 1120px) {
    .cr-admin-shell {
        grid-template-columns: 1fr;
    }

    .cr-admin-sidebar {
        position: static;
    }

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

    .cr-admin-quick-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .cr-admin-form-grid,
    .cr-admin-row-form,
    .cr-admin-split-grid,
    .cr-admin-filter-grid,
    .cr-admin-bulk-grid {
        grid-template-columns: 1fr;
    }

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

    .cr-admin-quick-actions {
        grid-template-columns: 1fr;
    }

    .cr-admin-alert-grid,
    .cr-admin-stats-grid,
    .cr-admin-mini-stats {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------
   Patient Portal (OD-style light dashboard)
------------------------------------------------------------ */
.cr-patient-portal {
    --cr-admin-bg: #eef2f7;
    --cr-admin-surface: #ffffff;
    --cr-admin-card: #ffffff;
    --cr-admin-line: #d4deea;
    --cr-admin-heading: #0f5f82;
    --cr-admin-text: #1f2937;
    --cr-admin-muted: #61748a;
    --cr-admin-primary: #0f5f82;
    --cr-admin-primary-soft: #e5f1f9;
    --cr-admin-danger: #d64556;
}

.cr-patient-portal .cr-admin-brand img {
    max-width: 180px;
}

.cr-patient-portal .cr-admin-menu-link {
    font-weight: 700;
}

.cr-patient-portal .cr-admin-header h1,
.cr-patient-portal .cr-admin-card h2 {
    color: var(--cr-admin-heading);
}

.cr-patient-portal .cr-admin-card--embedded {
    background: #f7fafc;
    margin-top: 6px;
    padding: 18px;
}

.cr-patient-portal .cr-admin-card--embedded h3 {
    margin: 0 0 8px;
}

.cr-patient-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 12px;
    font-weight: 800;
    color: var(--cr-admin-primary);
}

.cr-patient-next-step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cr-patient-next-step h2 {
    margin-top: 2px;
}

.cr-patient-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cr-patient-kpi-grid article {
    border: 1px solid var(--cr-admin-line);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}

.cr-patient-kpi-grid article h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #1f2937;
}

.cr-patient-kpi-grid article p {
    margin: 0;
}

.cr-patient-kpi-grid--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cr-patient-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cr-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #c3d2e6;
    background: #edf3fb;
    color: #263238;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
}

.cr-muted {
    color: var(--cr-admin-muted);
}

.cr-danger {
    color: #c62828;
}

.cr-patient-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.cr-patient-action-bar .cr-admin-filter-grid {
    flex: 1 1 620px;
}

.cr-patient-mark-read-form {
    flex: 0 0 auto;
}

.cr-table-action-link {
    color: var(--cr-admin-primary);
    font-weight: 700;
    text-decoration: none;
}

.cr-table-action-link:hover {
    text-decoration: underline;
}

.cr-patient-upload-help {
    border: 1px solid var(--cr-admin-line);
    border-radius: 12px;
    background: #f8fbff;
}

.cr-patient-upload-help h3 {
    margin: 0 0 8px;
}

.cr-patient-upload-help ul {
    margin: 0;
    padding-left: 20px;
}

.cr-patient-upload-help li {
    margin: 6px 0;
}

.cr-patient-checklist {
    display: grid;
    gap: 10px;
}

.cr-patient-check-item {
    border: 1px solid var(--cr-admin-line);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
}

.cr-patient-form-hint,
.cr-patient-profile-note {
    margin: 0;
    color: var(--cr-admin-muted);
    font-size: 13px;
}

.cr-patient-faq {
    display: grid;
    gap: 10px;
}

.cr-patient-faq details {
    border: 1px solid var(--cr-admin-line);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
}

.cr-patient-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #111827;
}

.cr-patient-faq p {
    margin: 8px 0 0;
    color: var(--cr-admin-muted);
}

.cr-patient-portal .btn-primary {
    background: #0f5f82;
    border-color: #0f5f82;
}

.cr-patient-portal .btn-primary:hover {
    background: #0d4f6d;
    border-color: #0d4f6d;
}

@media (max-width: 1200px) {
    .cr-patient-kpi-grid,
    .cr-patient-kpi-grid--top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .cr-patient-next-step {
        flex-direction: column;
    }

    .cr-patient-kpi-grid,
    .cr-patient-kpi-grid--top {
        grid-template-columns: 1fr;
    }

    .cr-patient-action-bar {
        flex-direction: column;
    }

    .cr-patient-action-bar .cr-admin-filter-grid,
    .cr-patient-mark-read-form {
        width: 100%;
    }
}
