.split-section,
.article-preview,
.benefits,
.review-section,
.services-strip,
.content-section,
.service-list-section,
.form-section,
.blog-grid-section,
.team-section,
.legal-body,
.appointment-note,
.social-follow {
    padding: clamp(58px, 7vw, 96px) 0;
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.image-stack img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
    margin-top: 58px;
}

.location-band {
    padding: 34px 0;
    background: var(--teal-dark);
    color: #fff;
}

.location-band .eyebrow {
    color: var(--aqua);
}

.location-band h2 {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.dark-feature {
    padding: clamp(58px, 7vw, 96px) 0;
    color: #fff;
    background:
        linear-gradient(rgba(5, 18, 22, .82), rgba(5, 18, 22, .82)),
        url('../img/sections/dark-marble.jpg') center/cover;
}

.dark-feature .eyebrow {
    color: var(--aqua);
}

.benefits {
    background: linear-gradient(180deg, #fff, #f3fbf8);
}

.section-intro {
    max-width: 740px;
    color: var(--muted);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.benefit-grid article {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.benefit-grid span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal-dark);
    font-weight: 900;
}

.review-section {
    background: #fff;
}

blockquote {
    margin: 0;
    padding: 28px;
    border-left: 5px solid var(--teal);
    border-radius: var(--radius);
    background: #f6fbfa;
    font-size: 1.08rem;
}

blockquote footer {
    margin-top: 16px;
    color: var(--muted);
    font-size: .95rem;
}

.appointment-note {
    background: var(--cream);
}

.service-hero-media {
    position: relative;
    min-width: 0;
}

.service-hero-media > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-hero-infusions {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: calc(clamp(64px, 8vh, 104px) + var(--fixed-header-space)) 0 clamp(64px, 8vh, 104px);
    background:
        linear-gradient(112deg, rgba(5, 18, 22, .96) 0%, rgba(7, 29, 33, .94) 46%, rgba(15, 141, 134, .72) 100%),
        url('../img/sections/dark-marble.jpg') center/cover;
    color: #fff;
}

.service-hero-infusions::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 34%),
        linear-gradient(180deg, transparent 0%, rgba(5, 18, 22, .2) 100%);
    pointer-events: none;
}

.service-hero-infusions .service-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(34px, 5vw, 84px);
}

.service-hero-infusions .service-hero-copy {
    max-width: 760px;
}

.service-hero-infusions .eyebrow {
    color: var(--aqua);
}

.service-hero-infusions h1 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(2.7rem, 4.4vw, 4.85rem);
    text-wrap: balance;
}

.service-hero-infusions .service-hero-copy > p:not(.eyebrow) {
    max-width: 640px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.service-hero-actions {
    margin-top: 28px;
}

.service-hero-infusions .btn-secondary {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(12px);
}

.service-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.service-hero-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(130, 215, 207, .36);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
    line-height: 1;
}

.service-hero-infusions .service-hero-media {
    align-self: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.service-hero-infusions .service-hero-media > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: none;
    object-fit: cover;
    object-position: center;
}

.infusion-service-list-section {
    background: linear-gradient(180deg, #f3fbf8 0%, #fbfffd 42%, #fff 100%);
}

.infusion-service-list-section .container {
    width: min(1040px, calc(100% - 32px));
}

.infusion-product-list {
    display: grid;
    gap: 18px;
}

.infusion-product-card {
    display: grid;
    grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 220px;
    border-color: rgba(15, 141, 134, .16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 255, 250, .9)),
        #fff;
    box-shadow: 0 22px 70px rgba(17, 38, 41, .1);
    text-align: left;
}

.infusion-product-card:nth-child(even) {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 244, 236, .82)),
        #fff;
}

.infusion-product-card > img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 35%, rgba(130, 215, 207, .28), transparent 40%),
        linear-gradient(180deg, #f7fbfd, #fff);
    object-fit: contain;
    object-position: center;
}

.infusion-product-card:nth-child(even) > img {
    background:
        radial-gradient(circle at 50% 35%, rgba(233, 61, 131, .12), transparent 42%),
        linear-gradient(180deg, #fffaf4, #fff);
}

.infusion-product-card .service-card-body {
    justify-content: center;
    align-items: flex-start;
    padding: 22px 26px;
    text-align: left;
}

.infusion-product-card h2 {
    max-width: 560px;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(1.25rem, 1.75vw, 1.75rem);
}

.infusion-product-card .service-price {
    min-height: 36px;
    margin: 0 0 12px;
    padding: 0 15px;
    font-size: .95rem;
}

.infusion-product-card p:not(.service-price) {
    max-width: 620px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
    text-align: left;
    text-align-last: left;
}

.infusion-product-card .included {
    margin-top: 4px;
    color: var(--ink);
}

.infusion-product-card .button-row {
    margin-top: 10px;
}

.hours-card .phone-large {
    display: inline-block;
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
}

.text-card-grid .text-card,
.text-card {
    padding: 24px;
}

.featured-card {
    background: var(--teal-dark);
    color: #fff;
}

.about-hero,
.team-hero,
.contact-hero,
.booking-hero,
.blog-hero,
.membership-hero,
.careers-hero,
.simple-hero,
.service-detail-hero {
    background: linear-gradient(135deg, #effaf7, #fff);
}

.about-hero {
    padding: calc(var(--fixed-header-space) + 18px) 0 42px;
    background: #aaa7a6;
}

.about-hero .page-hero-grid {
    width: min(1130px, calc(100% - 32px));
    grid-template-columns: minmax(300px, 446px) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.about-founder-photo {
    justify-self: start;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 585px;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-hero-copy {
    display: flex;
    min-height: 585px;
    padding: 52px 60px 46px;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    background: #3ee0d4;
    color: var(--ink);
}

.about-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 8px;
    font-size: clamp(2rem, 3vw, 2.45rem);
    font-weight: 900;
}

.about-founder-role {
    margin-bottom: 48px;
    font-size: clamp(1.35rem, 2.1vw, 1.7rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.2;
}

.about-founder-bio {
    max-width: 650px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(.98rem, 1.12vw, 1.06rem);
    font-weight: 800;
    line-height: 1.32;
}

.team-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 18px;
    align-items: center;
}

.team-card img {
    width: 180px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.banner-image {
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 68px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 22, .55);
}

.banner-image .container {
    position: relative;
}

.form-grid {
    align-items: start;
}

.site-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.site-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-message-section {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: clamp(54px, 7vw, 84px) 0;
    background:
        linear-gradient(180deg, #f3fffb, #fff 58%),
        var(--paper);
}

.contact-message-section .container {
    width: min(920px, calc(100% - 32px));
    display: grid;
    gap: clamp(22px, 3vw, 32px);
}

.contact-message-intro {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.contact-message-intro h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.contact-message-intro p:not(.eyebrow) {
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-message-form {
    width: min(760px, 100%);
    margin-inline: auto;
    gap: 12px;
    padding: clamp(22px, 4vw, 34px);
    border-color: rgba(15, 141, 134, .18);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 255, 253, .96)),
        #fff;
    box-shadow: 0 24px 70px rgba(17, 38, 41, .12);
}

.contact-message-form label {
    gap: 8px;
    color: var(--ink);
    font-size: .92rem;
}

.contact-message-form input,
.contact-message-form textarea {
    min-height: 48px;
    border-color: rgba(15, 141, 134, .22);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.contact-message-form input:focus,
.contact-message-form textarea:focus {
    outline: 0;
    border-color: var(--teal);
    background: #fbfffd;
    box-shadow: 0 0 0 4px rgba(15, 141, 134, .12);
}

.contact-message-form .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
}

.article-card {
    overflow: hidden;
}

.article-card h2 {
    font-size: 1.35rem;
}

.article-page {
    background: #fff;
}

.article-body {
    width: min(860px, calc(100% - 32px));
    padding: 62px 0 84px;
}

.article-body section + section {
    margin-top: 44px;
}

.article-body h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.article-body li + li {
    margin-top: 10px;
}

.article-inline-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    margin-top: 24px;
    border-radius: var(--radius);
}

.social-follow {
    background: var(--mint);
}

.membership-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.membership-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-hero {
    background: var(--mint);
}

.legal-body section {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.legal-body section + section {
    margin-top: 28px;
}

.service-detail-hero img {
    aspect-ratio: 4 / 5;
    padding: clamp(16px, 3vw, 28px);
    background: #fff;
    object-fit: contain;
    object-position: center;
}

.page-memberships {
    background: #050b0f;
    color: #eefdfa;
}

.page-memberships .promo-bar,
.page-memberships .site-footer {
    background: #03070a;
}

.membership-stage,
.membership-value,
.membership-difference,
.membership-pricing {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(9, 31, 35, .95), rgba(5, 11, 15, 1) 42%, rgba(9, 19, 26, .98)),
        url('../img/sections/dark-marble.jpg') center/cover;
}

.membership-stage {
    min-height: 82vh;
    display: grid;
    align-items: center;
    padding: clamp(74px, 9vw, 132px) 0;
}

.membership-stage-grid,
.membership-value-grid,
.difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.membership-copy h1 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.membership-copy p,
.membership-value p,
.membership-difference p,
.pricing-heading p,
.membership-terms {
    color: rgba(238, 253, 250, .75);
}

.page-memberships .eyebrow {
    color: #e7ca90;
}

.membership-btn {
    background: #e7ca90;
    border-color: #e7ca90;
    color: #061216;
    box-shadow: 0 12px 34px rgba(231, 202, 144, .24);
}

.membership-btn:hover {
    background: #f7ddaa;
    border-color: #f7ddaa;
    color: #061216;
}

.membership-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.membership-visual img {
    width: min(390px, 88%);
    border-radius: 18px;
    border: 1px solid rgba(231, 202, 144, .34);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .45);
}

.membership-ticket {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: min(260px, 76%);
    padding: 20px;
    border: 1px solid rgba(231, 202, 144, .45);
    border-radius: 8px;
    background: rgba(3, 10, 13, .76);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

.membership-ticket span,
.membership-ticket small {
    display: block;
    color: rgba(238, 253, 250, .72);
}

.membership-ticket strong {
    display: block;
    color: #e7ca90;
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1;
}

.membership-proof {
    padding: 24px 0;
    background: #081217;
    border-block: 1px solid rgba(231, 202, 144, .22);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(231, 202, 144, .18);
}

.proof-grid div {
    min-height: 118px;
    padding: 20px;
    background: #081217;
}

.proof-grid strong {
    display: block;
    color: #e7ca90;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.proof-grid span {
    color: rgba(238, 253, 250, .72);
}

.membership-value {
    padding: clamp(66px, 8vw, 108px) 0;
    background:
        linear-gradient(180deg, #050b0f, #08171c 55%, #050b0f);
}

.membership-value h2,
.membership-difference h2,
.pricing-heading h2 {
    color: #fff;
}

.value-cards {
    display: grid;
    gap: 14px;
}

.value-cards article,
.difference-grid article,
.membership-plan {
    border: 1px solid rgba(231, 202, 144, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
}

.value-cards article {
    padding: 24px;
}

.value-cards h3,
.membership-plan h3 {
    color: #fff;
}

.membership-difference {
    padding: clamp(58px, 7vw, 94px) 0;
}

.difference-grid {
    align-items: stretch;
}

.difference-grid article {
    min-height: 310px;
    padding: clamp(26px, 4vw, 46px);
}

.difference-featured {
    background: linear-gradient(135deg, rgba(15, 141, 134, .32), rgba(231, 202, 144, .16)) !important;
    border-color: rgba(231, 202, 144, .48) !important;
}

.membership-pricing {
    padding: clamp(70px, 9vw, 122px) 0;
    background:
        linear-gradient(180deg, #071117, #020507),
        url('../img/sections/pattern.jpg') center/cover;
}

.pricing-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.membership-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.membership-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 490px;
    padding: 30px 24px;
}

.membership-plan.is-featured {
    transform: translateY(-18px);
    border-color: rgba(231, 202, 144, .75);
    background: linear-gradient(145deg, rgba(231, 202, 144, .2), rgba(15, 141, 134, .18), rgba(255, 255, 255, .07));
}

.plan-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e7ca90;
    color: #061216;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.plan-note {
    min-height: 28px;
    color: #e7ca90 !important;
    font-weight: 900;
}

.plan-price {
    margin: 18px 0 24px;
}

.plan-price strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4.3rem);
    line-height: 1;
}

.plan-price span {
    color: rgba(238, 253, 250, .64);
    font-weight: 800;
}

.membership-plan ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.membership-plan li {
    position: relative;
    padding-left: 24px;
    color: rgba(238, 253, 250, .82);
}

.membership-plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e7ca90;
    box-shadow: 0 0 18px rgba(231, 202, 144, .65);
}

.membership-plan .btn {
    margin-top: auto;
}

.membership-terms {
    max-width: 900px;
    margin: 28px auto 0;
    text-align: center;
    font-size: .95rem;
}

.membership-terms a {
    color: #e7ca90;
    font-weight: 900;
    border-bottom: 1px solid currentColor;
}

.csh-memberships {
    background: #000;
    color: #fff;
    font-family: Poppins, var(--font-body);
}

.csh-memberships h1,
.csh-memberships h2,
.csh-memberships h3 {
    font-family: Merriweather, Playfair Display, Georgia, serif;
}

.cshm-hero-section,
.cshm-cost-section,
.cshm-sense-section,
.cshm-difference-section,
.cshm-pricing-section,
.cshm-final-section {
    background: #000;
}

.cshm-hero-section {
    padding: calc(64px + var(--fixed-header-space)) 0 34px;
}

.cshm-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 34px;
    align-items: center;
}

.cshm-glass-hero {
    max-width: 900px;
    padding: 50px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.cshm-glass-hero h1 {
    font-family: Poppins, var(--font-body);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cshm-glass-hero h2 {
    font-family: "Playfair Display", Merriweather, Georgia, serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.cshm-glass-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
}

.cshm-glass-hero .inline-text {
    white-space: nowrap;
}

.cshm-glass-hero .highlight {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cshm-glass-hero .highlight::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ffcc00, #ff8800, #ffcc00);
    background-size: 200% 100%;
    animation: cshmUnderlineFlow 3s infinite linear;
}

@keyframes cshmUnderlineFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.cshm-hero-gif {
    width: 100%;
    max-width: 258px;
    border-radius: 10px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
}

.cshm-cost-section {
    padding: 34px 0 72px;
}

.cshm-cost-grid {
    display: grid;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.cshm-cost-grid img {
    width: 100%;
    max-width: 245px;
    margin-inline: auto;
    border-radius: 14px;
}

.cshm-cost-grid h2,
.cshm-sense-section h2,
.cshm-difference-section h2,
.cshm-pricing-section h2,
.cshm-final-section h2 {
    color: #fff;
    text-align: center;
}

.cshm-cost-grid h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.cshm-cost-grid p {
    max-width: 970px;
    color: rgba(255, 255, 255, .92);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.55;
}

.cshm-outline-btn,
.cshm-light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 220px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    transition: all .3s ease;
}

.cshm-outline-btn {
    border: 1px solid #fff;
    background: rgba(0, 0, 0, .4);
    color: #fff;
}

.cshm-outline-btn:hover {
    background: #000;
    border-color: #000;
}

.cshm-light-btn {
    border: 2px solid rgb(179, 156, 8);
    background: #fff;
    color: #000;
}

.cshm-light-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.cshm-cost-grid .cshm-outline-btn,
.cshm-sense-section .cshm-light-btn {
    margin: 18px auto 0;
    display: flex;
    width: max-content;
}

.cshm-sense-section {
    padding: 72px 0;
    text-align: center;
}

.cshm-sense-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.cshm-sense-section p {
    max-width: 780px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.12rem;
}

.cshm-products-section {
    padding: 66px 0 78px;
    background: #fff;
    color: #0d141a;
    text-align: center;
}

.cshm-products-section h2 {
    max-width: 720px;
    margin-inline: auto;
    color: #1a1a1a;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.cshm-products-section p {
    color: #000;
}

.cshm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-top: 30px;
}

.cshm-product-grid img {
    width: 100%;
    max-width: 222px;
    margin-inline: auto;
    border-radius: 12px;
    object-fit: cover;
}

.cshm-difference-section {
    padding: 72px 0 84px;
    text-align: center;
}

.cshm-difference-section h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.cshm-difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    gap: clamp(20px, 5vw, 72px);
    align-items: center;
    margin-top: 28px;
}

.cshm-difference-grid article {
    color: #fff;
}

.cshm-difference-grid article:first-child {
    text-align: left;
}

.cshm-difference-grid article:last-child {
    text-align: right;
}

.cshm-difference-grid h3 {
    color: #fff;
    font-family: Poppins, var(--font-body);
    font-size: 1.5rem;
}

.cshm-difference-grid p {
    color: #fff;
    font-size: 1.08rem;
}

.cshm-difference-grid img {
    width: 118px;
    margin-inline: auto;
}

.cshm-difference-note {
    max-width: 680px;
    margin: 34px auto 0;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
}

.cshm-pricing-section {
    padding: 72px 0 82px;
}

.cshm-pricing-section h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cshm-pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    width: 100%;
    align-items: stretch;
    margin-inline: auto;
}

.cshm-pricing-section .card-wrap {
    position: relative;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
}

.cshm-pricing-section .most-popular .label-bar {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    text-align: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, #7c3aed, #20c9ff);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
    z-index: 5;
}

.cshm-pricing-section .card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: 35px 25px 100px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    color: #fff;
    text-align: center;
    transition: all .4s ease;
}

.cshm-pricing-section .card::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .25), transparent 60%);
    opacity: 0;
    transition: opacity .6s ease;
}

.cshm-pricing-section .card:hover::before {
    opacity: 1;
}

.cshm-pricing-section .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.cshm-pricing-section .card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: Poppins, var(--font-body);
    font-size: 1.45rem;
    font-weight: 800;
}

.cshm-pricing-section .card h4 {
    margin: 0;
    color: #20c9ff;
    font-family: Poppins, var(--font-body);
    font-size: 1.1rem;
}

.cshm-pricing-section .card h6 {
    margin: 4px 0 0;
    color: #d9e1e6;
    font-family: Poppins, var(--font-body);
    font-size: .85rem;
    text-decoration: line-through;
}

.cshm-pricing-section .price {
    margin: 20px 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    transition: transform .4s ease, color .3s ease, text-shadow .3s ease;
}

.cshm-pricing-section .price span {
    color: #d9e1e6;
    font-size: .95rem;
    font-weight: 500;
}

.cshm-pricing-section .card:hover .price {
    transform: scale(1.17);
    color: #fff;
    text-shadow: 0 4px 24px rgba(32, 201, 255, .55), 0 0 2px rgba(0, 0, 0, .5);
}

.cshm-pricing-section .features {
    flex-grow: 1;
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
}

.cshm-pricing-section .features li {
    position: relative;
    margin: 11px 0;
    padding-left: 28px;
    color: #fff;
    font-size: .98rem;
    text-align: left;
    transition: transform .3s ease;
}

.cshm-pricing-section .features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #20c9ff;
    font-weight: 900;
}

.cshm-pricing-section .btn-wrap {
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
}

.cshm-pricing-section .plan-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: #20c9ff;
    color: #00222d;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s ease;
}

.cshm-pricing-section .plan-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255, 255, 255, .55);
}

.cshm-pricing-section .card:hover .features li {
    animation: cshmPaneo .5s ease forwards;
}

@keyframes cshmPaneo {
    0% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    100% { transform: translateX(0); }
}

.cshm-final-section {
    padding: 72px 0 88px;
}

.cshm-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
}

.cshm-final-section h2 {
    max-width: 670px;
    color: #fff;
    text-align: left;
}

.cshm-final-section p {
    max-width: 620px;
    color: #fff;
}

.cshm-final-section p a {
    color: #fff;
    text-decoration: underline;
}

.cshm-final-grid img {
    width: 218px;
    border-radius: 12px;
}

.csh-careers {
    background: #fff;
    color: #1f1f1f;
    font-family: Poppins, var(--font-body);
}

.cshc-hero {
    min-height: min(820px, calc(100vh - var(--fixed-header-space)));
    display: grid;
    align-content: center;
    padding: calc(clamp(66px, 8vw, 104px) + var(--fixed-header-space)) 0 72px;
    background: #000;
    color: #fff;
}

.cshc-hero-title {
    width: 100%;
    margin: 0 0 clamp(34px, 5vw, 58px);
    color: rgb(183, 255, 0);
    font-family: Merriweather, Georgia, serif;
    font-size: clamp(3.2rem, 8vw, 5.6rem);
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
}

.cshc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1fr);
    gap: clamp(34px, 7vw, 86px);
    align-items: center;
}

.cshc-copy {
    text-align: justify;
    text-align-last: center;
}

.cshc-copy p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.55;
}

.cshc-copy h2 {
    margin-top: 34px;
    color: rgb(170, 255, 0);
    font-family: Poppins, var(--font-body);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
}

.cshc-hero img {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    clip-path: ellipse(49% 44% at 50% 50%);
    background: #050505;
    padding: 12px;
    border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.cshc-apply {
    padding: clamp(64px, 8vw, 104px) 0;
    background: #fff;
}

.cshc-form-section {
    padding: clamp(58px, 7vw, 96px) 0;
    background: #f4f6f9;
}

.cshc-steps {
    max-width: 1120px;
    margin-inline: auto;
}

.cshc-steps h2,
.cshc-form h2 {
    color: #1f1f1f;
    font-family: Poppins, var(--font-body);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
}

.cshc-steps h2 {
    text-align: center;
    margin-bottom: 34px;
}

.cshc-steps ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-left: 0;
    margin: 0;
    list-style: none;
    counter-reset: cshcStep;
}

.cshc-steps li {
    position: relative;
    min-height: 210px;
    padding: 74px 22px 24px;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(13, 19, 26, .07);
    color: #1f1f1f;
    line-height: 1.5;
    counter-increment: cshcStep;
}

.cshc-steps li::before {
    content: counter(cshcStep);
    position: absolute;
    left: 22px;
    top: 22px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #176be0;
    color: #fff;
    font-weight: 900;
}

.cshc-form-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: clamp(24px, 5vw, 54px);
    align-items: stretch;
    max-width: 1040px;
    margin-inline: auto;
}

.cshc-form-card > img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(13, 19, 26, .14);
}

.cshc-form {
    display: grid;
    gap: 18px;
    align-content: center;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 10px;
    background: rgb(236, 239, 243);
    box-shadow: 0 18px 48px rgba(13, 19, 26, .1);
}

.cshc-form label {
    display: grid;
    gap: 8px;
    color: #0d131a;
    font-size: .95rem;
    font-weight: 700;
}

.cshc-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(13, 19, 26, .28);
    border-radius: 10px;
    background: #fff;
    color: #0d131a;
    font: inherit;
}

.cshc-form input:hover,
.cshc-form input:focus {
    border-color: rgb(13, 19, 26);
    outline: none;
}

.cshc-file-field {
    display: grid;
    gap: 8px;
}

.cshc-field-label {
    color: #0d131a;
    font-size: .95rem;
    font-weight: 700;
}

.cshc-native-file {
    position: absolute;
    width: 1px !important;
    height: 1px;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.cshc-file-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 48px;
    padding: 6px;
    border: 1px solid rgba(13, 19, 26, .28);
    border-radius: 10px;
    background: #fff;
}

.cshc-file-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 8px;
    background: #0d131a;
    color: #fff !important;
    font-size: .86rem !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.cshc-file-name {
    min-width: 0;
    padding-inline: 12px;
    color: #53606d;
    font-size: .9rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cshc-native-file:focus + .cshc-file-control {
    border-color: rgb(13, 19, 26);
    box-shadow: 0 0 0 3px rgba(23, 107, 224, .16);
}

.cshc-file-help {
    color: #5f6975;
    font-size: .82rem;
    font-weight: 600;
}

.cshc-form button {
    justify-self: end;
    min-width: 132px;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid rgb(13, 19, 26);
    border-radius: 50px;
    background: rgb(23, 107, 224);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.cshc-form button:hover {
    transform: translateY(-2px);
    background: #145bc0;
}

@media (max-width: 1060px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .site-nav,
    .header-actions {
        display: none;
    }

    .site-nav.open {
        display: grid;
        position: fixed;
        top: calc(var(--fixed-promo-height) + var(--fixed-nav-gap) + var(--fixed-nav-height) + 10px);
        left: 50%;
        z-index: 79;
        width: min(92vw, 760px);
        min-height: calc(100vh - var(--fixed-promo-height) - var(--fixed-nav-height) - 30px);
        min-height: calc(100svh - var(--fixed-promo-height) - var(--fixed-nav-height) - 30px);
        max-height: calc(100vh - var(--fixed-promo-height) - var(--fixed-nav-height) - 30px);
        max-height: calc(100svh - var(--fixed-promo-height) - var(--fixed-nav-height) - 30px);
        grid-column: 1 / -1;
        align-content: center;
        justify-content: stretch;
        gap: 12px;
        margin-top: 0;
        padding: clamp(22px, 6vh, 52px);
        transform: translateX(-50%);
        overflow-y: auto;
        border: 1px solid rgba(190, 255, 246, .18);
        border-radius: 28px;
        background:
            linear-gradient(145deg, rgba(5, 18, 22, .98), rgba(7, 55, 60, .96)),
            rgba(5, 18, 22, .98);
        box-shadow: 0 30px 80px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .12);
        backdrop-filter: blur(22px) saturate(150%);
    }

    .site-nav.open a {
        min-height: 54px;
        padding: 14px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: clamp(1.05rem, 3vw, 1.45rem);
        text-align: center;
    }

    .site-nav.open a.active {
        background: rgba(130, 215, 207, .18);
    }
}

@media (max-width: 900px) {
    .page-hero-grid,
    .article-hero-grid,
    .two-column,
    .split-grid,
    .note-grid,
    .form-grid,
    .location-content {
        grid-template-columns: 1fr;
    }

    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .membership-plan-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .membership-stage-grid,
    .membership-value-grid,
    .difference-grid,
    .cshm-hero-layout,
    .cshm-cost-grid,
    .cshm-final-grid,
    .cshc-hero-grid {
        grid-template-columns: 1fr;
    }

    .membership-plan.is-featured {
        transform: none;
    }

    .cshm-pricing-container,
    .cshm-product-grid,
    .cshc-steps ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .cshm-hero-gif,
    .cshm-final-grid img {
        margin-inline: auto;
    }

    .cshc-hero img {
        max-width: 560px;
        margin-inline: auto;
    }

    .cshc-form-card {
        grid-template-columns: 1fr;
    }

    .cshc-form-card > img {
        min-height: 360px;
    }

    .team-card {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .team-card > * {
        min-width: 0;
    }

    .team-card img {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .section-heading,
    .footer-bottom {
        display: block;
    }

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

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

    .about-founder-photo {
        justify-self: center;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .about-hero-copy {
        min-height: auto;
        padding: 38px 34px;
    }

    .about-founder-role {
        margin-bottom: 30px;
    }

    .service-hero-infusions .service-hero-media {
        min-height: 430px;
    }

    .infusion-product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .infusion-product-card > img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
        padding: 18px;
    }

    .infusion-product-card .service-card-body {
        padding: 22px;
    }
}

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

    .site-nav.open {
        width: calc(100% - 24px);
        padding: 26px 18px;
    }

    .home-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: calc(var(--fixed-header-space) + 38px) 0 48px;
    }

    .home-hero-card {
        width: min(100%, 344px);
        min-height: auto;
        max-width: 100%;
        padding: 34px 18px;
        border-radius: 18px;
        overflow: hidden;
    }

    .home-hero-kicker {
        min-height: 38px;
        margin-bottom: 28px;
        padding-inline: 22px;
    }

    .home-hero-card h1 {
        font-size: clamp(2.35rem, 11vw, 3.05rem);
        white-space: normal;
    }

    .home-hero-card > p:not(.home-hero-trust) {
        max-width: 100%;
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .home-hero-actions,
    .home-hero-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .home-hero-hipaa {
        position: static;
        width: 112px;
        margin-top: 24px;
    }

    .service-hero-infusions {
        min-height: 100vh;
        min-height: 100svh;
        padding: 52px 0 58px;
        padding-top: calc(52px + var(--fixed-header-space));
    }

    .service-hero-infusions h1 {
        font-size: clamp(2.35rem, 10vw, 3.55rem);
    }

    .service-hero-infusions .service-hero-copy > p:not(.eyebrow) {
        font-size: 1rem;
    }

    .service-hero-actions .btn {
        width: 100%;
    }

    .service-hero-highlights span {
        width: 100%;
        justify-content: center;
    }

    .service-hero-infusions .service-hero-media {
        min-height: 320px;
        padding: 10px;
    }

    .about-hero {
        padding-top: calc(var(--fixed-header-space) + 14px);
        padding-bottom: 28px;
    }

    .about-hero .page-hero-grid {
        width: calc(100% - 24px);
    }

    .about-hero-copy {
        padding: 30px 22px;
    }

    .about-founder-bio {
        font-size: .95rem;
        line-height: 1.4;
    }

    .infusion-service-list-section .container {
        width: 100%;
        padding-inline: 16px;
    }

    .infusion-product-card h2 {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .infusion-product-card > img {
        aspect-ratio: 16 / 9;
        padding: 16px;
    }

    .infusion-product-card .button-row,
    .infusion-product-card .button-row .btn {
        width: 100%;
    }

    .hero-content {
        padding-bottom: 42px;
    }

    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .membership-plan-grid,
    .cshm-pricing-container,
    .cshm-product-grid,
    .cshm-difference-grid,
    .cshc-steps ol,
    .proof-grid,
    .benefit-grid,
    .footer-grid,
    .form-row,
    .membership-media,
    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-stack img,
    .image-stack img:nth-child(2) {
        height: auto;
        margin-top: 0;
    }

    .membership-stage {
        min-height: auto;
    }

    .membership-visual {
        min-height: 390px;
    }

    .membership-ticket {
        right: 12px;
        bottom: 0;
    }

    .page-memberships .container {
        width: 100%;
        padding-inline: 20px;
    }

    .cshm-hero-section {
        padding: calc(48px + var(--fixed-header-space)) 0 38px;
    }

    .cshm-cost-section,
    .cshm-sense-section,
    .cshm-products-section,
    .cshm-difference-section,
    .cshm-pricing-section,
    .cshm-final-section {
        padding: 54px 0;
    }

    .cshm-hero-layout,
    .cshm-cost-grid,
    .cshm-final-grid {
        gap: 28px;
        justify-items: center;
    }

    .cshm-hero-layout > *,
    .cshm-cost-grid > *,
    .cshm-final-grid > *,
    .cshm-product-grid > *,
    .cshm-difference-grid > *,
    .cshm-pricing-container > * {
        min-width: 0;
        max-width: 100%;
    }

    .cshm-glass-hero {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        padding: 34px 22px;
    }

    .cshm-glass-hero h1 {
        font-size: 1.6rem;
    }

    .cshm-glass-hero .highlight {
        font-size: 1.8rem;
    }

    .cshm-glass-hero h2 {
        font-size: clamp(1.55rem, 7.8vw, 2rem);
        overflow-wrap: anywhere;
    }

    .cshm-glass-hero p {
        font-size: .85rem;
    }

    .cshm-glass-hero .inline-text {
        white-space: normal;
    }

    .cshm-glass-hero p,
    .cshm-cost-grid p,
    .cshm-sense-section p,
    .cshm-products-section p,
    .cshm-difference-grid p,
    .cshm-difference-note,
    .cshm-final-section p {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
        text-align-last: left;
        line-height: 1.68;
        hyphens: auto;
    }

    .cshm-cost-grid > div,
    .cshm-final-grid > div {
        width: 100%;
        max-width: 430px;
        margin-inline: auto;
        text-align: center;
    }

    .cshm-cost-grid img,
    .cshm-hero-gif,
    .cshm-final-grid img {
        width: 100%;
        max-width: 280px;
    }

    .cshm-product-grid,
    .cshm-difference-grid,
    .cshm-pricing-container {
        width: 100%;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .cshm-product-grid {
        gap: 22px;
    }

    .cshm-product-grid img {
        width: 100%;
        max-width: 260px;
    }

    .cshm-difference-grid {
        gap: 22px;
        justify-items: center;
    }

    .cshm-difference-grid article {
        width: 100%;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 14px;
        background: rgba(255, 255, 255, .06);
    }

    .cshm-difference-grid img {
        width: 132px;
        max-width: 36vw;
    }

    .cshm-pricing-container {
        gap: 26px;
    }

    .cshm-pricing-section .card-wrap {
        width: 100%;
        max-width: 390px;
        margin-inline: auto;
        padding-top: 28px;
    }

    .cshm-pricing-section .card {
        padding: 32px 22px 96px;
        border-radius: 16px;
    }

    .cshm-pricing-section .features {
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    .cshm-outline-btn,
    .cshm-light-btn {
        width: 100%;
        max-width: 280px;
        min-width: 0;
    }

    .cshm-difference-grid article:first-child,
    .cshm-difference-grid article:last-child,
    .cshm-final-section h2,
    .cshc-steps h2,
    .cshc-form h2 {
        text-align: center;
    }

    .cshc-hero img {
        clip-path: none;
        border-radius: 10px;
    }

    .cshc-form {
        padding: 20px;
    }

    .cshc-form-card > img {
        min-height: 260px;
    }

    .cshc-form button {
        justify-self: stretch;
    }

    .button-row {
        align-items: stretch;
    }

    .button-row .btn {
        width: 100%;
    }
}
