:root {
    --healing-green: #003f32;
    --healing-dark: #002b23;
    --healing-gold: #c98b2b;
    --healing-bg: #f8f5ef;
    --healing-soft: #fffaf2;
    --healing-border: #eadfce;
    --healing-muted: #667a75;
    --healing-white: #ffffff;
    --healing-shadow: 0 18px 45px rgba(0, 63, 50, .08);
}

.healing-hero {
    min-height: 790px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 85px 0;
    background: linear-gradient(135deg, #f8f5ef, #ffffff);
    overflow: hidden;
}

.healing-hero::before,
.healing-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.healing-hero::before {
    width: 460px;
    height: 460px;
    right: -160px;
    top: -150px;
    background: rgba(201, 139, 43, .1);
}

.healing-hero::after {
    width: 380px;
    height: 380px;
    left: -160px;
    bottom: -170px;
    background: rgba(0, 63, 50, .05);
}

.healing-hero .container {
    position: relative;
    z-index: 2;
}

.healing-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.healing-eyebrow,
.healing-section-label,
.healing-section-heading > span {
    display: inline-block;
    color: var(--healing-gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    font-weight: 700;
}

.healing-hero-content h1 {
    color: var(--healing-green);
    font-size: 65px;
    line-height: 1.04;
    font-weight: 600;
    margin: 20px 0;
}

.healing-hero-content h1 span {
    color: var(--healing-gold);
}

.healing-hero-lead {
    color: var(--healing-green) !important;
    font-family: Georgia, serif;
    font-size: 21px !important;
    font-style: italic;
}

.healing-hero-content > p {
    color: var(--healing-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 690px;
}

.healing-hero-actions,
.healing-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.healing-outline-button {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--healing-green);
    color: var(--healing-green);
    border-radius: 12px;
    padding: 12px 21px;
    font-weight: 700;
}

.healing-outline-button:hover {
    background: var(--healing-green);
    color: #fff;
}

.healing-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.healing-hero-tags span {
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 30px;
    padding: 9px 14px;
    color: var(--healing-green);
    font-size: 12px;
    font-weight: 600;
}

.healing-hero-tags i {
    color: var(--healing-gold);
    margin-right: 5px;
}

.healing-hero-image {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 220px 220px 30px 30px;
    box-shadow: 0 28px 65px rgba(0, 63, 50, .16);
}

.healing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healing-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 43, 35, .9));
}

.healing-image-overlay {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
}

.healing-image-overlay span {
    color: #f5d7a0;
    font-size: 12px;
    font-weight: 700;
}

.healing-image-overlay h3 {
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    margin: 7px 0 0;
}

.section-padding {
    padding: 95px 0;
}

.healing-section-heading {
    max-width: 790px;
    margin-bottom: 42px;
}

.healing-section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.healing-section-heading h2 {
    color: var(--healing-green);
    font-size: 45px;
    line-height: 1.16;
    font-weight: 600;
    margin: 12px 0;
}

.healing-section-heading p {
    color: var(--healing-muted);
    font-size: 16px;
    line-height: 1.75;
}

.healing-benefits {
    background: #fff;
}

.healing-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.healing-benefit-card {
    min-height: 230px;
    background: var(--healing-soft);
    border: 1px solid var(--healing-border);
    border-radius: 22px;
    padding: 29px;
    transition: .25s;
}

.healing-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--healing-shadow);
}

.healing-benefit-icon,
.healing-process-icon {
    width: 60px;
    height: 60px;
    background: #f7ead6;
    color: var(--healing-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.healing-benefit-card h3 {
    color: var(--healing-green);
    font-size: 20px;
    font-weight: 600;
}

.healing-benefit-card p {
    color: var(--healing-muted);
    font-size: 14px;
    line-height: 1.7;
}

.healing-process {
    background: var(--healing-bg);
}

.healing-process-flow {
    max-width: 960px;
    margin: auto;
}

.healing-process-item {
    display: grid;
    grid-template-columns: 56px 62px 1fr;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 22px;
    padding: 25px;
}

.healing-process-number {
    color: rgba(0, 63, 50, .14);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
}

.healing-process-icon {
    margin: 0;
}

.healing-process-item h3 {
    color: var(--healing-green);
    font-size: 20px;
    font-weight: 600;
}

.healing-process-item p {
    color: var(--healing-muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.healing-process-line {
    width: 2px;
    height: 30px;
    background: var(--healing-gold);
    opacity: .45;
    margin: auto;
}

.healing-experiences {
    background: #fff;
}

.healing-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.healing-experience-card {
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 24px;
    overflow: hidden;
    transition: .25s;
}

.healing-experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--healing-shadow);
}

.healing-experience-image {
    height: 215px;
    position: relative;
}

.healing-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healing-experience-icon {
    position: absolute;
    left: 20px;
    bottom: -28px;
    width: 58px;
    height: 58px;
    background: var(--healing-green);
    color: #fff;
    border: 5px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.healing-experience-body {
    padding: 43px 23px 24px;
}

.healing-experience-body h3 {
    color: var(--healing-green);
    font-size: 20px;
    font-weight: 600;
}

.healing-experience-body p {
    color: var(--healing-muted);
    font-size: 13px;
    line-height: 1.7;
    min-height: 88px;
}

.healing-experience-body a {
    color: var(--healing-green);
    font-size: 13px;
    font-weight: 700;
}

.healing-experience-body a i {
    margin-left: 5px;
}

.signature-journeys {
    background: linear-gradient(135deg, var(--healing-green), var(--healing-dark));
}

.light-heading h2 {
    color: #fff;
}

.light-heading p {
    color: rgba(255, 255, 255, .72);
}

.signature-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.signature-journey-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px;
    padding: 25px;
    color: #fff;
    transition: .25s;
}

.signature-journey-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px);
}

.signature-journey-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .1);
    color: #f5d7a0;
    border-radius: 50%;
    margin-bottom: 17px;
}

.signature-journey-card h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.signature-journey-card p {
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
    line-height: 1.7;
    min-height: 48px;
}

.signature-journey-card span {
    color: #f5d7a0;
    font-size: 12px;
    font-weight: 700;
}

.signature-journey-card span i {
    margin-left: 5px;
}

.healing-difference {
    background: var(--healing-bg);
}

.healing-difference-grid,
.healing-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.healing-difference-image {
    height: 660px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.healing-difference-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healing-floating-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, .94);
    border-radius: 18px;
    padding: 18px;
}

.healing-floating-card > i {
    width: 48px;
    height: 48px;
    background: var(--healing-green);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.healing-floating-card strong,
.healing-floating-card span {
    display: block;
}

.healing-floating-card strong {
    color: var(--healing-green);
}

.healing-floating-card span {
    color: var(--healing-muted);
    font-size: 12px;
}

.healing-difference-content h2,
.healing-dashboard-content h2,
.healing-complimentary-content h2 {
    color: var(--healing-green);
    font-size: 44px;
    line-height: 1.16;
    font-weight: 600;
    margin: 14px 0;
}

.healing-difference-content > p,
.healing-dashboard-content > p,
.healing-complimentary-content > p {
    color: var(--healing-muted);
    line-height: 1.8;
}

.healing-difference-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 26px;
}

.healing-difference-list div {
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 13px;
    padding: 12px;
    color: var(--healing-green);
    font-size: 12px;
    font-weight: 600;
}

.healing-difference-list i {
    color: var(--healing-gold);
    margin-right: 7px;
}

.healing-dashboard {
    background: #fff;
}

.healing-dashboard-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin: 26px 0;
}

.healing-dashboard-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--healing-soft);
    border: 1px solid var(--healing-border);
    border-radius: 14px;
    padding: 13px;
    color: var(--healing-green);
    font-size: 13px;
    font-weight: 600;
}

.healing-dashboard-list i {
    color: var(--healing-gold);
}

.healing-dashboard-preview {
    background: var(--healing-bg);
    border: 1px solid var(--healing-border);
    border-radius: 28px;
    padding: 29px;
    box-shadow: var(--healing-shadow);
}

.healing-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.healing-preview-header span {
    color: var(--healing-gold);
    font-size: 12px;
    font-weight: 700;
}

.healing-preview-header h3 {
    color: var(--healing-green);
    font-size: 25px;
    margin: 5px 0 0;
}

.healing-score-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    background:
        radial-gradient(circle at center, #fff 62%, transparent 63%),
        conic-gradient(var(--healing-green) 0 78%, #ded8ce 78% 100%);
}

.healing-score-circle strong,
.healing-score-circle span {
    display: block;
    text-align: center;
}

.healing-score-circle strong {
    color: var(--healing-green);
    font-size: 20px;
}

.healing-score-circle span {
    color: var(--healing-muted);
    font-size: 10px;
}

.healing-progress-card {
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 13px;
}

.healing-progress-card > div:first-child {
    display: flex;
    justify-content: space-between;
    color: var(--healing-green);
    font-size: 13px;
}

.healing-progress-bar {
    height: 9px;
    overflow: hidden;
    background: #e8e1d7;
    border-radius: 20px;
    margin-top: 10px;
}

.healing-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--healing-green), var(--healing-gold));
    border-radius: inherit;
}

.healing-next-card {
    display: grid;
    grid-template-columns: 45px 1fr 25px;
    align-items: center;
    gap: 12px;
    background: var(--healing-green);
    color: #fff;
    border-radius: 17px;
    padding: 16px;
    margin-top: 17px;
}

.healing-next-card > i:first-child {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .1);
    color: #f5d7a0;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.healing-next-card span,
.healing-next-card strong {
    display: block;
}

.healing-next-card span {
    color: rgba(255, 255, 255, .63);
    font-size: 10px;
}

.healing-next-card strong {
    font-size: 14px;
}

.healing-complimentary {
    background: var(--healing-bg);
}

.healing-complimentary-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    background: linear-gradient(135deg, var(--healing-green), var(--healing-dark));
    border-radius: 28px;
    padding: 48px;
}

.healing-complimentary-content > span {
    color: #f5d7a0;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 700;
}

.healing-complimentary-content h2 {
    color: #fff;
}

.healing-complimentary-content > p {
    color: rgba(255, 255, 255, .7);
}

.healing-complimentary-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: center;
}

.healing-complimentary-list div {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 13px;
    color: #fff;
    font-size: 13px;
}

.healing-complimentary-list i {
    color: #f5d7a0;
    margin-right: 7px;
}

.healing-story {
    background: #fff;
}

.healing-story-card {
    min-height: 470px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--healing-green), var(--healing-dark));
}

.healing-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 55px;
}

.healing-story-content > i {
    color: #f5d7a0;
    font-size: 44px;
}

.healing-story-content blockquote {
    font-family: Georgia, serif;
    font-size: 26px;
    line-height: 1.65;
    margin: 20px 0;
}

.healing-story-stars {
    color: #f5d7a0;
    margin-bottom: 14px;
}

.healing-story-content strong,
.healing-story-content span {
    display: block;
}

.healing-story-content span {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.healing-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healing-final-cta {
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1800&q=85')
        center / cover no-repeat;
}

.healing-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 43, 35, .87);
}

.healing-final-cta .container {
    position: relative;
    z-index: 2;
}

.healing-final-content {
    max-width: 850px;
    margin: auto;
    color: #fff;
    text-align: center;
}

.healing-final-content > span {
    color: #f5d7a0;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    font-weight: 700;
}

.healing-final-content h2 {
    color: #fff;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 600;
    margin: 18px 0;
}

.healing-final-content p {
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    margin-bottom: 27px;
}

.healing-final-actions {
    justify-content: center;
}

.healing-light-outline {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 12px;
    padding: 12px 21px;
    font-weight: 700;
}

.healing-light-outline:hover {
    background: #fff;
    color: var(--healing-green);
}

@media(max-width: 1199px) {
    .healing-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signature-journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 991px) {
    .healing-hero-grid,
    .healing-difference-grid,
    .healing-dashboard-grid,
    .healing-complimentary-card {
        grid-template-columns: 1fr;
    }

    .healing-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .healing-hero-image {
        height: 520px;
    }

    .healing-story-card {
        grid-template-columns: 1fr;
    }

    .healing-story-image {
        height: 390px;
    }
}

@media(max-width: 767px) {
    .healing-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .healing-hero-content h1 {
        font-size: 42px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .healing-section-heading h2,
    .healing-difference-content h2,
    .healing-dashboard-content h2,
    .healing-complimentary-content h2 {
        font-size: 34px;
    }

    .healing-benefit-grid,
    .healing-experience-grid,
    .signature-journey-grid,
    .healing-difference-list,
    .healing-dashboard-list,
    .healing-complimentary-list {
        grid-template-columns: 1fr;
    }

    .healing-process-item {
        grid-template-columns: 48px 1fr;
    }

    .healing-process-item > div:last-child {
        grid-column: 1 / -1;
    }

    .healing-hero-image {
        height: 430px;
        border-radius: 120px 120px 24px 24px;
    }

    .healing-difference-image {
        height: 500px;
    }

    .healing-complimentary-card {
        padding: 30px 21px;
    }

    .healing-story-content {
        padding: 35px 24px;
    }

    .healing-story-content blockquote {
        font-size: 21px;
    }

    .healing-final-content h2 {
        font-size: 39px;
    }
}