.home-light {
    --home-ink: #0f2a2f;
    --home-title: #f7fbff;
    --home-text: #d8e4ec;
    --home-muted: #9fb3bf;

    --home-green: #065f46;
    --home-green-dark: #064e3b;
    --home-green-light: #109b81;

    --home-mint: #d1fae5;
    --home-mint-soft: #ecfdf5;
    --home-blue-soft: #dceaf4;

    --home-gold: #f59e0b;
    --home-gold-dark: #d97706;
    --home-gold-soft: #fff3cf;

    --home-bg: #065f46;
    --home-bg-dark: #065f46;
    --home-bg-deep: #065f46;
    --home-bg-light: #1b3a4d;
    --home-card: rgba(255, 255, 255, 0.07);
    --home-card-strong: rgba(255, 255, 255, 0.10);

    --home-sand: #f7f3ea;
    --home-line: rgba(191, 208, 216, 0.22);
    --home-white: #ffffff;
    --home-shadow: 0 24px 70px rgba(2, 23, 36, 0.38);

    overflow: hidden;
    color: var(--home-text);

    background: var(--home-bg);
}

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

.home-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.home-light h1,
.home-light h2,
.home-light h3,
.home-light p {
    margin-top: 0;
}

.home-light h1,
.home-light h2 {
    color: var(--home-title);
}

/* Kicker */

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    color: var(--home-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-kicker::before {
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
}

/* Hero Section */

.home-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: var(--home-bg);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.10)),
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);

    background-size: auto, 28px 28px;
    opacity: 0.42;
}

.home-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    align-items: center;
    gap: 72px;
    padding: 20px 0 112px;
}

/* Mobile */
@media (max-width: 675px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Reverse the order */
    .home-hero-grid> :first-child {
        order: 2;
        padding-top: 30px;
    }

    .home-hero-grid> :last-child {
        order: 1;
    }
}

.home-hero-copy {
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;

    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;

    color: var(--home-title);
}

.home-hero-lead {
    max-width: 680px;
    margin-bottom: 30px;

    color: var(--home-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

/* Buttons */

.home-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;

    border: 1px solid transparent;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

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

.home-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--home-green), var(--home-green-light));
    box-shadow: 0 14px 30px rgba(6, 95, 70, 0.34);
}

.home-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--home-green-dark), var(--home-green));
    box-shadow: 0 18px 42px rgba(6, 95, 70, 0.44);
}

.home-btn-outline {
    color: var(--home-gold);
    border-color: rgba(245, 158, 11, 0.85);
    background: rgba(255, 255, 255, 0.04);
}

.home-btn-outline:hover {
    color: #132d3c;
    border-color: var(--home-gold);
    background: var(--home-gold);
}

/* Trust Row */

.home-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 780px;

    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.20);
}

.home-trust-row div {
    min-height: 94px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.home-trust-row strong,
.home-trust-row span {
    display: block;
}

.home-trust-row strong {
    margin-bottom: 5px;
    color: var(--home-title);
    font-size: 14px;
    font-weight: 600;
}

.home-trust-row span {
    color: var(--home-muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}

/* Doctor Visual */

.home-hero-visual {
    position: relative;
    min-height: 555px;
}

.home-doctor-frame {
    position: absolute;
    inset: 38px 38px 46px 38px;
    z-index: 2;

    padding: 12px;
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(8px);
}

.home-doctor-placeholder {
    width: 100%;
    height: 100%;
    overflow: hidden;

    border-radius: 50%;
    background: linear-gradient(160deg, #c8f3e3, #f2fbf8 64%);
}

.home-doctor-placeholder img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;
}

.home-visual-orbit {
    position: absolute;
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 50%;
}

.home-orbit-one {
    width: 420px;
    height: 420px;
    right: -45px;
    top: 5px;
}

.home-orbit-two {
    width: 300px;
    height: 300px;
    left: -40px;
    bottom: 0;
}

.home-doctor-caption {
    position: absolute;
    right: 4px;
    bottom: -50px;
    z-index: 4;

    width: min(340px, 76%);
    padding: 22px 24px;

    border: 1px solid rgba(245, 158, 11, 0.38);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 50px rgba(2, 23, 36, 0.32);
}

.home-doctor-caption span {
    display: block;
    margin-bottom: 5px;

    color: var(--home-green);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-doctor-caption h2 {
    margin-bottom: 5px;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.home-doctor-caption p {
    margin-bottom: 0;
    font-size: 12px;
}

/* Floating Cards */

.home-float-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    width: 235px;
    padding: 14px;

    border: 1px solid rgba(245, 158, 11, 0.34);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 36px rgba(2, 23, 36, 0.28);
}

.home-float-top {
    left: -42px;
    top: 105px;
}

.home-float-bottom {
    left: -45px;
    bottom: 100px;
}

.home-mini-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    color: var(--home-green);
    font-weight: 700;
    background: var(--home-mint);
}

.home-float-card strong,
.home-float-card small {
    display: block;
}

.home-float-card strong {
    margin-bottom: 2px;
    color: var(--home-title);
    font-size: 12px;
    font-weight: 600;
}

.home-float-card small {
    color: var(--home-muted);
    font-size: 10px;
    line-height: 1.35;
}

/* Metrics */

.home-metrics {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.home-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(245, 158, 11, 0.42);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(12px);
}

.home-metric {
    position: relative;
    padding: 28px 24px;
    text-align: center;
}

.home-metric:not(:last-child)::after {
    position: absolute;
    top: 24%;
    right: 0;

    width: 1px;
    height: 52%;

    background: var(--home-line);
    content: "";
}

.home-metric strong,
.home-metric span {
    display: block;
}

.home-metric strong {
    margin-bottom: 6px;

    color: var(--home-gold);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.home-metric span {
    color: var(--home-muted);
    font-size: 12px;
    font-weight: 500;
}

/* General Section */

.home-section {
    padding: 60px 0;
}

.home-intro {
    background: var(--home-bg);
}

.home-intro-grid,
.home-pathway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-section-copy h2,
.home-pathway-copy h2,
.home-heading h2,
.home-symptom-box h2 {
    margin-bottom: 24px;

    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: clamp(24px, 4.3vw, 36px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.home-section-copy p,
.home-pathway-copy p,
.home-heading>p {
    font-size: 16px;
    line-height: 1.9;
}

/* Check List */

.home-check-list {
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.home-check-list li {
    position: relative;
    padding: 13px 0 13px 34px;

    border-bottom: 1px solid var(--home-line);
    color: var(--home-title);

    font-size: 15px;
    font-weight: 500;
}

.home-check-list li::before {
    position: absolute;
    left: 0;
    top: 13px;

    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    color: var(--home-green);
    background: var(--home-mint);

    content: "✓";
    font-size: 11px;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--home-green);
    font-weight: 600;
}

.home-text-link span {
    transition: transform 0.25s ease;
}

.home-text-link:hover span {
    transform: translateX(5px);
}

/* Care Panel */

.home-care-panel {
    padding: 36px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--home-shadow);

    backdrop-filter: blur(10px);
}

.home-care-panel-head {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--home-line);
}

.home-care-panel-head>span {
    display: block;
    margin-bottom: 8px;

    color: var(--home-green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-care-panel-head h3 {
    max-width: 480px;
    margin-bottom: 0;

    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.3;
}

.home-care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 24px 0;
}

.home-care-grid div {
    min-height: 118px;
    padding: 20px;

    border: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.8);
}

.home-care-grid strong,
.home-care-grid span {
    display: block;
}

.home-care-grid strong {
    margin-bottom: 9px;

    color: var(--home-gold);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.home-care-grid span {
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.45;
}

.home-referral-note {
    padding: 22px;
    color: #ffffff;
    background: var(--home-green-dark);
}

.home-referral-note span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-referral-note p {
    margin: 8px 0 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.home-referral-note a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Specialities */

.home-specialities {
    background: var(--home-bg);
}

.home-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.home-heading h2 {
    margin-bottom: 0;
}

.home-heading>p {
    margin-bottom: 6px;
}

.home-service-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.91fr 0.91fr;
    gap: 22px;
}

.home-service {
    position: relative;
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    backdrop-filter: blur(10px);
}

.home-service:hover {
    transform: translateY(-8px);
    border-color: #9fcfc5;
    box-shadow: var(--home-shadow);
}

.home-service-featured {
    background:
        radial-gradient(circle at 100% 0,
            rgba(245, 158, 11, 0.18),
            transparent 34%),
        linear-gradient(145deg, var(--home-gold), #f99f04);
}

.home-service-featured h3,
.home-service-featured p,
.home-service-featured .home-service-number,
.home-service-featured .home-service-link,
.home-service-featured .home-service-label {
    color: #ffffff;
}

.home-service-number {
    color: #b6ccc8;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
}

.home-service-label {
    display: block;
    margin-bottom: 12px;

    color: var(--home-green);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-service h3 {
    margin-bottom: 15px;

    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
}

.home-service p {
    margin-bottom: 24px;

    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.75;
}

.home-service-featured p {
    color: rgba(255, 255, 255, 0.74);
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--home-green);
    font-size: 13px;
    font-weight: 600;
}

.home-service-link b {
    transition: transform 0.25s ease;
}

.home-service:hover .home-service-link b {
    transform: translateX(5px);
}

/* Pathway */

.home-pathway {
    position: relative;

    background: var(--home-bg);
}

.home-pathway-copy {
    align-self: start;
    padding-top: 18px;
}

.home-pathway-copy p {
    max-width: 510px;
    margin-bottom: 30px;
}

.home-steps {
    position: relative;
}

.home-steps::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 25px;

    width: 1px;
    background: #badbd4;
    content: "";
}

.home-steps article {
    position: relative;

    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    align-items: start;

    padding: 0 0 28px;
}

.home-steps article:last-child {
    padding-bottom: 0;
}

.home-steps article>span {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border: 1px solid (var(--home-gold));
    border-radius: 50%;

    color: var(--home-green);
    background: #ffffff;

    font-size: 11px;
    font-weight: 600;
}

.home-steps article>div {
    min-height: 116px;
    padding: 22px 24px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(30, 78, 78, 0.07);

    backdrop-filter: blur(10px);
}

.home-steps h3 {
    color: (var(--home-gold));
    margin-bottom: 7px;
    font-size: 19px;
    font-weight: 500;
}

.home-steps p {
    margin-bottom: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Technology Section */

.home-tech {
    background: var(--home-bg);
}

.home-heading-centred {
    display: block;
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-heading-centred .home-kicker {
    justify-content: center;
}

.home-heading-centred h2 {
    margin-bottom: 0;
}

.home-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-tech-card {
    min-height: 290px;
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);

    transition:
        transform 0.3s ease,
        background 0.3s ease;

    backdrop-filter: blur(10px);
}

.home-tech-card:hover {
    transform: translateY(-7px);
    background: #ffffff;
}

.home-tech-card>span {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 48px;

    border: 1px solid #f99f04;
    border-radius: 50%;

    color: #f99f04;
    font-size: 11px;
    font-weight: 600;
}

.home-tech-card h3 {
    margin-bottom: 13px;
    color: (var(--home-gold)) !important;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.home-tech-card p {
    margin-bottom: 0;

    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* Symptoms Section */

.home-symptom-section {
    background: var(--home-bg);
}

.home-symptom-box {
    position: relative;
    padding: 58px;
    overflow: hidden;

    border: 1px solid rgba(245, 158, 11, 0.36);

    background:
        radial-gradient(circle at 100% 100%,
            rgba(6, 95, 70, 0.24),
            transparent 32%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));

    box-shadow: var(--home-shadow);
    backdrop-filter: blur(12px);
}

.home-symptom-box::after {
    position: absolute;
    right: -75px;
    top: -75px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(20, 125, 117, 0.14);
    border-radius: 50%;

    content: "";
}

.home-symptom-box>div:first-child {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.home-symptom-box h2 {
    margin-bottom: 30px;
}

.home-symptoms {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 28px;
}

.home-symptoms span {
    padding: 10px 13px;

    border: 1px solid #cfe2de;
    background: #ffffff;
    color: var(--home-title);

    font-size: 12px;
    font-weight: 500;
}

/* Responsive */

@media (max-width: 1100px) {
    .home-hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 38px;
    }

    .home-float-top {
        left: -15px;
    }

    .home-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-grid,
    .home-intro-grid,
    .home-pathway-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        padding-top: 30px;
    }

    .home-hero-visual {
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .home-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-metric:nth-child(2)::after {
        display: none;
    }

    .home-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .home-service {
        min-height: 320px;
    }

    .home-intro-grid,
    .home-pathway-grid {
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .home-section {
        padding: 30px 0;
    }

    .home-hero-grid {
        padding: 25px 0 90px;
    }

    .home-hero h1 {
        font-size: 30px;
    }

    .home-hero-lead {
        font-size: 16px;
    }

    .home-trust-row,
    .home-care-grid,
    .home-tech-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-row div {
        min-height: auto;
    }

    .home-hero-visual {
        min-height: 470px;
    }

    .home-doctor-frame {
        inset: 32px 10px 50px;
    }

    .home-float-card {
        width: 205px;
        padding: 11px;
    }

    .home-float-top {
        left: 0;
        top: 76px;
    }

    .home-float-bottom {
        left: auto;
        right: 0;
        bottom: 58px;
    }

    .home-doctor-caption {
        right: 10px;
        width: calc(100% - 20px);
    }

    .home-metrics {
        margin-top: -28px;
    }

    .home-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-metric {
        padding: 23px 12px;
    }

    .home-metric::after {
        display: none;
    }

    .home-metric:nth-child(-n + 2) {
        border-bottom: 1px solid var(--home-line);
    }

    .home-metric:nth-child(odd) {
        border-right: 1px solid var(--home-line);
    }

    .home-care-panel {
        padding: 22px;
    }

    .home-symptom-box {
        padding: 34px 24px;
    }

    .home-btn {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .home-hero h1 {
        font-size: 30px;
    }

    .home-hero-visual {
        min-height: 420px;
    }

    .home-float-card {
        display: none;
    }

    .home-doctor-caption h2 {
        font-size: 20px;
    }

    .home-section-copy h2,
    .home-pathway-copy h2,
    .home-heading h2,
    .home-symptom-box h2 {
        font-size: 24px;
    }
}

/* =========================================
   DARK THEME READABILITY OVERRIDES
========================================= */

.home-light .home-trust-row strong,
.home-light .home-metric span,
.home-light .home-service h3,
.home-light .home-service p,
.home-light .home-tech-card p,
.home-light .home-steps p,
.home-light .home-care-panel h3,
.home-light .home-care-grid span,
.home-light .home-heading>p,
.home-light .home-section-copy p,
.home-light .home-pathway-copy p {
    color: var(--home-text);
}

.home-light .home-trust-row span,
.home-light .home-service p,
.home-light .home-tech-card p,
.home-light .home-steps p,
.home-light .home-care-grid span {
    color: var(--home-muted);
}

.home-light .home-metric strong,
.home-light .home-service-number {
    color: var(--home-gold);
}

.home-light .home-doctor-caption h2,
.home-light .home-doctor-caption p,
.home-light .home-float-card strong {
    color: #14364a;
}

.home-light .home-doctor-caption span,
.home-light .home-float-card small {
    color: #526b78;
}

.home-light .home-symptoms span,
.home-light .home-care-grid div {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--home-text);
}

.home-light .home-check-list li {
    border-bottom-color: rgba(255, 255, 255, 0.10);
    color: var(--home-text);
}

.home-light .home-check-list li::before {
    color: var(--home-green-dark);
    background: var(--home-gold-soft);
}

.home-light .home-text-link,
.home-light .home-service-link {
    color: var(--home-gold);
}

.home-light .home-referral-note {
    background: linear-gradient(135deg, var(--home-green-dark), #073c34);
    border: 1px solid rgba(245, 158, 11, 0.24);
}

.home-light .home-care-panel-head {
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.home-light .home-care-panel-head>span,
.home-light .home-service-label,
.home-light .home-doctor-caption span {
    color: var(--home-gold-dark);
}

.home-light .home-service-featured h3,
.home-light .home-service-featured p,
.home-light .home-service-featured .home-service-number,
.home-light .home-service-featured .home-service-link,
.home-light .home-service-featured .home-service-label {
    color: #ffffff;
}

.home-light .home-tech-card:hover,
.home-light .home-service:hover {
    border-color: rgba(245, 158, 11, 0.55);
    background: rgba(255, 255, 255, 0.10);
}

.home-light .home-steps article>span {
    border-color: rgba(245, 158, 11, 0.45);
    color: var(--home-gold);
    background: #132d3c;
}

.home-light .home-steps::before {
    background: rgba(245, 158, 11, 0.34);
}