/* =========================================================
   RESET / Morphic Medical — Global styles
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --color-green: #48B85E;
    --color-green-dark: #3DA052;
    --color-navy: #131F41;
    --color-text: #1F1F1F;
    --color-muted: #4A4A4A;
    --color-rule: #E5E5E5;
    --color-white: #FFFFFF;
    --color-explore-grid-text: #5F6263;

    --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container-max: 1280px;
    --container-pad: 54px;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.procedure-step {
    scroll-margin-top: 32px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}
p {
    margin: 0;
}

main {
    overflow: hidden;
}
.sm {
    display: none;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    color: #FFF;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-green);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: var(--color-green-dark);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    background-color: transparent;
}

.site-header__top {
    padding: 18px 0;
    border-bottom: 9px solid var(--color-green);
}

.site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__top-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header__top-links a {
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

.site-header__top-links a:hover,
.site-header__top-links a:focus {
    color: var(--color-green);
    text-decoration: underline;
}

/* JS-cloned copy that lives inside the hamburger panel — hidden on desktop. */
.site-header__top-links--in-nav {
    display: none;
}
.site-logo {
    max-width: 148px;
}

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

.site-header__logo img {
    height: auto;
    width: 220px;
}

.site-header__nav {
    position: relative;
}
@media screen and (max-width: 768px) {
    .site-header__nav {
        padding: 0 20px;
    }
}

.page-home .site-header__nav {
    background-color: #FFFFFF;
    background-image: url("../img/hero_bg_fade.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100% 100%;
}
.home .site-header__reset-logo {
    opacity: 0;
    pointer-events: none;
}

.site-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
}

.site-header__reset-logo {
    display: inline-flex;
    flex-shrink: 0;
}

.site-header__reset-logo img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.site-header__nav-panel {
    display: flex;
    align-items: stretch;
}

.site-nav {
    display: flex;
    align-items: stretch;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 18px 0;
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* text-align: center; */
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--color-green);
}

.site-nav__cta {
    font-size: 16px;
    align-self: flex-start;
}

/* ---------- Submenu (desktop hover dropdown) ---------- */
.site-nav .menu-item-has-children {
    position: relative;
}

.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background-color: var(--color-white);
    box-shadow: 0 12px 28px rgba(13, 35, 64, 0.14);
    border-top: 4px solid var(--color-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 100;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu,
.site-nav .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.site-nav .sub-menu a {
    display: block;
    padding: 6px 12px;
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    text-transform: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
    color: var(--color-green);
    background-color: rgba(0, 153, 99, 0.06);
}

/* ---------- Hamburger button (hidden on desktop) ---------- */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 26px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.site-header__hamburger-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-green);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.site-header__hamburger.is-active .site-header__hamburger-bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.site-header__hamburger.is-active .site-header__hamburger-bar:nth-child(2) {
    opacity: 0;
}

.site-header__hamburger.is-active .site-header__hamburger-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    background-color: #FFFFFF;
    background-image: url("../img/hero_bg_fade.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100% 100%;
    overflow: hidden;
    border-bottom: 30px solid var(--color-green);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
    min-height: 680px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 45px;
    max-width: 800px;
}

.hero__logo,
.procedure-hero__logo,
.explore-hero__logo {
    display: none;
}

.hero__text {
    margin-top: 40px;
}

.hero__title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.33em;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.hero__subtitle {
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55em;
    margin: 0 0 30px;
}

.hero__cta {
    margin-top: 4px;
}

.hero__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.hero__image img {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 1100px;
    object-fit: contain;
    object-position: bottom right;
}

.home-reset-logo {
    width: 70%;
    max-width: 408px;
}

/* Font and image size adjustments on smaller height screens. MAIN PURPOSE: see the full first section + header */
@media (min-width: 768px) and (max-height: 1080px) {
	.home-reset-logo {
		width: 60%;
	}

    .hero__inner {
        min-height: 440px;
		gap: 8px;
    }
	
    .hero__image img {
		max-height: 540px;
    }
	
	@media (max-height: 768px) {
		.home-reset-logo {
			width: 50%;
		}
		
		.hero__image img {
			max-height: 440px;
		}

		.hero__title {
        	font-size: 32px;
			line-height: 1.4;
			margin-bottom: 12px;
		}

		.hero__subtitle {
        	font-size: 24px;
			line-height: 1.2;
			margin-bottom: 24px;
		}
	}
}

/* Font and image size adjustments on smaller width screens. MAIN PURPOSE: see the full first section + header */
@media (max-width: 1024px) and (min-width: 768px) {
	.home-reset-logo {
		width: 60%;
	}

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 22px;
        line-height: 1.4;
    }

	/* Mid-resolution adjustments */
	@media (max-width: 896px) {
		 .hero__inner {
			min-height: 340px;
			gap: 8px;
		}
		
		.hero__title {
			font-size: 22px;
			line-height: 1.2;
			margin-bottom: 12px;
		}

		.hero__subtitle {
			font-size: 16px;
			line-height: 1.1;
			margin-bottom: 24px;
		}

		.hero__image {
		}

		.hero__image img {
			max-height: 340px;
		}
	}
}

@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 0;
        gap: 24px;
    }

	.home-reset-logo {
		width: 40%;
		margin: auto;
	}

    .hero__content {
        max-width: 100%;
        padding: 48px 0 32px;
    }

    .hero__text {
        margin-top: 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 16px;
		text-align: center;
    }

    .hero__subtitle {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 24px;
		text-align: center;
    }

    .hero__image {
        justify-content: center;
        min-width: auto;
    }

    .hero__image img {
        max-height: 70vh;
        object-position: bottom center;
    }
}

/* Mobile */
@media (max-width: 425px) {
	.home-reset-logo {
		width: 50%;
		margin: auto;
	}

	.hero__title {
		font-size: 20px;
	}

	.hero__subtitle {
		font-size: 16px;
	}

	.hero__title br,
	.hero__subtitle br {
		display: none;
	}
}

/* =========================================================
   Take Back Control
   ========================================================= */
.take-control {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 48px 0 38px;
}

.take-control__inner {
    display: flex;
    gap: 44px;
    justify-content: space-between;
    max-width: 1048px;
    margin: 0 auto;
}

.take-control__media {
    display: flex;
    flex: 0 0 315px;
}

.take-control__media img {
    width: 100%;
    max-width: 282px;
    height: auto;
}
.take-control__content {
    max-width: 778px;
    flex: 1 1 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.take-control__title {
    color: #2C94D2;
    font-family: var(--font-sans);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.take-control__content p {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
    margin-top: 8px;
}

.take-control__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .take-control {
        padding: 72px 0;
    }

    .take-control__inner {
        /* grid-template-columns: 1fr; */
        gap: 48px;
        align-items: center;
        flex-direction: column;
    }

    .take-control__media img {
        max-width: 320px;
    }

    .take-control__content {
        max-width: none;
        text-align: center;
    }

    .take-control__title {
        font-size: 36px;
    }

    .take-control__content p {
        font-size: 18px;
    }
}


.change-within {
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;
    min-height: 422px;
    max-width: 1440px;
    margin: 0 auto;
}

.change-within__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.change-within__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right top;
    transform: translateX(8%);
}

.change-within__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.change-within__content {
    padding: 80px 0;
    width: 50%;
    max-width: 524px;
}

.change-within__title {
    color: #2C94D2;
    font-family: var(--font-sans);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 30px;
}

.change-within__text {
    color: #5F6263;
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0 0 30px;
}

/* ---------- Inline link CTA (chevron + label) ---------- */
.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.2s ease;
}

.link-cta::before {
    content: ">";
    display: inline-block;
    font-weight: 700;
    line-height: 1;
}

.link-cta:hover,
.link-cta:focus-visible {
    color: var(--color-green-dark);
}

/* =========================================================
   Video Section (Life Changing Results)
   ========================================================= */
.video-section {
    background: linear-gradient(
        to bottom,
        #F7F7F7 0%,
        #F7F7F7 50%,
        #FFFFFF 50%,
        #FFFFFF 100%
    );
    padding: 45px 0;
}

.video-section__title {
    color: var(--color-green);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.video-section__player {
    max-width: 855px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

/* 16:9 responsive iframe wrapper */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed.has-poster:not(.is-playing) iframe {
    visibility: hidden;
    pointer-events: none;
}

.video-embed__poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #000;
    cursor: pointer;
}

.video-embed__poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-embed__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-embed__play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--color-green, #2f6b4f);
    transform: translate(-50%, -50%);
}

.video-embed__poster:hover .video-embed__play,
.video-embed__poster:focus-visible .video-embed__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: #fff;
}

.video-embed.is-playing .video-embed__poster {
    display: none;
}
 
.video-carousel__slide:not(.is-active) .video-embed iframe {
    pointer-events: none;
}
 
.video-carousel__slide.is-active .video-embed iframe {
    pointer-events: auto;
}
 
.video-carousel__slide iframe {
    pointer-events: none;
}

.procedure-hero {
    background-color: var(--color-white);
    position: relative;
    border-bottom: 30px solid var(--color-green);
}

.procedure-hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch; */
    gap: 32px;
    min-height: 476px;
    max-width: 1099px;
}

.procedure-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 50px;
    max-width: 586px;
    padding-top: 80px;
}


.procedure-hero__text {
    margin-top: auto;
}

.procedure-hero__title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.procedure-hero__subtitle {
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0 0 36px;
}

.procedure-hero__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.procedure-hero__image {
    flex: 0 0 412px;
    max-width: 412px;
    min-width: 412px;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.procedure-hero__image img {
    width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: contain;
    object-position: bottom right;
}

/* =========================================================
   Explore RESET hero (explore-reset.html)
   ========================================================= */
/* .explore-hero {
    position: relative;
    background-color: var(--color-white);
    margin-top: 40px;
}
.explore-hero__how-band {
    position: relative;
    background-color: #F7F7F7;
    isolation: isolate;
    --explore-hero-white-h: 340px;
}

.explore-hero__how-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--explore-hero-white-h);
    background-color: var(--color-white);
    z-index: -1;
}

.explore-hero__who-band {
    background-color: #F7F7F7;
    padding: 40px 0 80px;
}

.explore-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: var(--explore-hero-white-h) auto;
    grid-template-areas:
        "title  image"
        "body   image";
    column-gap: 90px;
    row-gap: 0;
} */







.explore-hero__title-cell {
    grid-area: title;
    position: relative;
    align-self: start;
    padding-bottom: 40px;
    margin-top: 100px;
} 


.explore-hero__title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
}
.explore-hero__subhead {
    color: #2C94D2;
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1em;
    margin: 0 0 20px;
}








/* .explore-hero__content {
    grid-area: body;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 100px;
}



.explore-hero__body {
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

.explore-hero__body p {
    margin: 0 0 20px;
}

.explore-hero__body p:last-child {
    margin-bottom: 0;
}

.explore-hero__image {
    grid-area: image;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.explore-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.explore-hero__who-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 90px;
}

.explore-hero__who-image img {
    width: 100%;
    height: auto;
    display: block;
}

.explore-hero__who-content {
    display: flex;
    flex-direction: column;
} */

.explore-hero__cta {
    align-self: flex-start;
    margin-top: 10px;
}

/* =========================================================
   Explore RESET hero (explore-reset.html) new
   ========================================================= */
   .explore-grid {
    background-color: #F7F7F7;
    overflow: hidden;
    margin-top: 10px;
   }
   .explore-grid__item {
        display: flex;
        justify-content: space-between;
        gap: 28px;
        padding-bottom: 80px;
   }
   .explore-grid__item:nth-child(odd) {
        flex-direction: row-reverse;
   }
   .explore-grid__item:nth-child(1) {
       padding-bottom: 40px;
   }
   .explore-grid__item:nth-child(1) .explore-grid-image img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
   }
   .explore-grid__title {
        position: relative;
        padding-bottom: 18px;
        padding-top: 76px;  
        
   }
   .explore-grid__title:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% + 100vw);
        transform: translateX(-30%);
        height: 100%;
        background-color: white;
        z-index: 1;
    }
    .explore-grid-image {
        
        position: relative;
        z-index: 2;
    }
    .explore-grid-content {
        flex: 0 0 calc(50% - 28px);
    }
   .explore-grid-image {
        flex: 0 0 48%;
        max-width: 560px;
        
   }
   .explore-hero__title {
        color: var(--color-green);
        font-family: var(--font-sans);
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3em;
        text-transform: uppercase;
        margin: 0;
         position: relative;
         z-index: 2;
    }
    .explore-grid__body {
        color: #2C94D2;
        font-family: var(--font-sans);
        /* font-size: 54px; */
        font-weight: 400;
        line-height: 1;
        padding-top: 30px;
    }
    /* .explore-hero__subhead {
        margin-bottom: 28px;
    } */
    .explore-grid__text {
        max-width: 780px;
    }
    .explore-grid__text,
    .explore-grid__text p {
        color: var(--color-explore-grid-text);
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 400;
        margin: 0;
        max-width: 514px;
    }
    .explore-grid__text p + p {
        margin-top: 20px;
    }
    .explore-grid__cta {
        margin: 0;
    }
    .explore-grid__title-mob {
        display: none;
    }
    .explore-grid__title-mob {
        padding: 0 var(--container-pad) 24px;
    }
    /* @media (max-width: 1280px) { 
        .explore-grid__text,
        .explore-grid__text p {
            font-size: 18px;
        }
    } */
    @media (max-width: 1024px) {
        .sm {display: block;}
        .sd {display: none;}
        .explore-grid__title-mob {
            display: block;
        }
        .explore-grid__title-desc {
            display: none;
        }
        .explore-grid__title {
            background-color: var(--color-white);
        }
        .explore-grid__title:before {
            display: none;
        }
        .explore-hero__title {
            text-align: center;
            
        }
        
        .explore-grid__item {
            display: block;
        }
        .explore-grid-image, 
        .explore-grid-content,
        .explore-grid__text {
            max-width: none;
        }
        .explore-hero__subhead,
        .explore-grid__text,
        .explore-grid__text p,
        .explore-grid__cta {
            text-align: center;
        }
        .explore-grid__text {
            max-width: 680px;
            margin: 0 auto;
        } 
        .explore-grid__text p {
            max-width: none;
        }
    }

/* =========================================================
   Improve the Quality of Your Life (explore-reset.html)
   ========================================================= */
.quality-life {
    position: relative;
    padding: 26px 0 20px;
}
.quality-life:after {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #F7F7F7;
    /* background: linear-gradient(
        to bottom,
        var(--color-white) 0,
        var(--color-white) calc(100% - 20px),
        #F7F7F7 calc(100% - 20px),
        #F7F7F7 100%
    ); */
}
.quality-life__inner,
.quality-life__cards-wrap {
    position: relative;
    z-index: 1;
}
.quality-life__inner {
    display: flex;
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center; */
    gap: 64px;
    justify-content: space-between;
    align-items: flex-start;
}

.quality-life__title {
    color: #2C94D2;
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1em;
    margin: 0 0 24px;
}

.quality-life__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quality-life__content {
    max-width: 574px;
    flex: 1 1 100%;
    padding-top: 26px;
    max-width: 520px;
}

.quality-life__benefit {
    margin: 0;
}

.quality-life__benefit-title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6em;
    margin: 0 0 4px;
}

.quality-life__benefit-body {
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0;
}

.quality-life__image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45%;
    max-width: 520px;
}

.quality-life__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* .quality-life__cards-wrap {
    background: linear-gradient(
        to bottom,
        var(--color-white) 0,
        var(--color-white) calc(100% - 80px),
        #F7F7F7 calc(100% - 80px),
        #F7F7F7 100%
    );
} */

.quality-life__cards {
    list-style: none;
    padding: 0;
    margin: 64px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.quality-life__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 34px 20px;
    color: var(--color-white);
}

.quality-life__card--green {
    background-color: var(--color-green);
}

.quality-life__card--blue {
    background-color: #2C94D2;
}

.quality-life__card--navy {
    background-color: var(--color-navy);
}

.quality-life__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin-bottom: 34px;
}

.quality-life__card-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.quality-life__card-title {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.quality-life__card-body {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}

.quality-life__card-body strong {
    font-weight: 700;
}


.faq {
    background-color: #f7f7f7;
    padding: 40px 0 30px;
}

.faq__title {
    color: #2C94D2;
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1em;
    margin: 0 0 30px;
}

.faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq__list > li + li {
    margin-top: 8px;
}

.faq__item > summary {
    list-style: none;
}

.faq__item > summary::-webkit-details-marker {
    display: none;
}

.faq__question {
    display: flex;
    align-items: baseline;
    gap: 10px;
    cursor: pointer;
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em;
    /* padding: 8px 0; */
    transition: color 0.15s ease;
}

.faq__question::before {
    content: "+";
    display: inline-block;
    width: 1ch;
    font-weight: 400;
    flex-shrink: 0;
}

.faq__item[open] > .faq__question {
    color: var(--color-green);
    outline: none;
}
@media (pointer: fine) {
    .faq__question:hover,
    .faq__question:focus-visible {
        color: var(--color-green);
        outline: none;
    }
}

.faq__item[open] > .faq__question {
    font-weight: 700;
}

.faq__item[open] > .faq__question::before {
    content: "\2013";
    font-weight: 700;
}

.faq__answer {
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    padding: 6px 0 16px calc(1ch + 10px);
}

.faq__answer p {
    margin: 0 0 12px;
}

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

.procedure-steps {
    background-color: var(--color-white);
    padding: 30px 0;
    overflow: hidden;
}

.procedure-step {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; */
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
#preparing.procedure-step {
    z-index: 2;
}

.procedure-step--image-left {
    grid-template-areas: "media content";
}

.procedure-step--image-right {
    grid-template-areas: "content media";
}

.procedure-step--band {
    position: relative;
    isolation: isolate;
    /* padding: 0 0 25px; */
    /* margin: -40px 0; */
    
}
.procedure-step--band .procedure-step__body {
    padding-top: 60px;
}
#post-procedure .procedure-step__content {
    padding-top: 74px;
}
/* @media (min-width: 1920px) {
    .procedure-step--band {
        margin: -40px 0;
        z-index: 0;
    }
} */

.procedure-step--band::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -40px);
    width: 100vw;
    background: linear-gradient(
        to left,
        #F7F7F7 0%,
        #FFFFFF 100%
    );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    height: calc(100% + 80px);
}

.procedure-step__media {
    /* grid-area: media; */
    align-self: flex-start;
    /* min-width: 500px; */
    min-width: 444px;
    max-width: 564px;
    flex: 1 1 100%;

}

.procedure-step__content {
    grid-area: content;
    flex: 1 1 100%;
    max-width: 590px;
}
#preparing .procedure-step__content {
    padding-bottom: 60px;
}
#procedure-day .procedure-step__content {
    padding-bottom: 30px;
}
/* .procedure-step--image-right .procedure-step__content {
    flex: 0 0 50%;
} */

.procedure-step__media img {
    width: 100%;
    height: auto;
    display: block;
}

.procedure-step__title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    margin: 0 0 6px;
}

.procedure-step__content p {
    color: #5F6263;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    /* margin: 0 0 12px; */
}
.procedure-step__content p + p {
    margin-top: 30px;
}

.procedure-step__content p:last-child {
    margin-bottom: 0;
}

.procedure-step__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.procedure-step__list li {
    color: #5F6263;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.procedure-step__list li::before {
    content: "•";
    position: absolute;
    top: -1px;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
}

.procedure-step__media--device {
    position: relative;
    min-height: 240px;
}
.procedure-step--band .procedure-step__media--device {
    max-width: 514px;
}

.procedure-step__media--device img {
    margin-left: auto;
    margin-right: 0;
    margin-top: 92px;
    max-width: 333px;
}

.device-callout {
    position: absolute;
    top: 0;
    left: 0;
    width: 204px;
    height: 204px;
    background: #e3f4e6;
    border: 8px solid var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
    z-index: 2;
}

.device-callout p {
    color: #131F41;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* =========================================================
   Video Carousel 
   ========================================================= */
.video-carousel {
    --slide-width: 50%;
    --slide-gap: 60px;
    max-width: 1920px;
    margin: 0 auto;

    background-color: var(--color-white);
    padding: 64px 0;
    overflow: hidden; 
}

.video-carousel__inner {
    position: relative;
    width: 100%;
}

.video-carousel__viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.video-carousel__viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.video-carousel__track {
    display: flex;
    align-items: center;
    gap: var(--slide-gap);
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.video-carousel__track.no-transition {
    transition: none !important;
}

.video-carousel__slide {
    flex: 0 0 var(--slide-width);
    max-width: 820px;
    aspect-ratio: 16/9;
    opacity: 0.3;
    /* transform: scale(0.94); */
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.video-carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
}

.video-carousel__slide iframe {
    pointer-events: none;
}

.video-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 64px;
    height: 64px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.video-carousel__nav--prev {
    left: calc(49.5% - var(--slide-width) / 2 - var(--slide-gap));
    right: auto;
}

.video-carousel__nav--next {
    left: calc(50.5% + var(--slide-width) / 2 + var(--slide-gap));
}

@media (min-width: 1638px) {
    .video-carousel__nav--prev {
        left: auto;
        right: calc(50% + 410px);
    }
    .video-carousel__nav--next {
        left: calc(50% + 410px + var(--slide-gap));
    }
}

.video-carousel__nav img {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.video-carousel__nav:hover,
.video-carousel__nav:focus-visible {
    transform: translate(-50%, -50%) scale(1.06);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    outline: none;
}

.video-carousel__nav:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Single slide: no carousel chrome, slide fills viewport. */
.video-carousel.is-single .video-carousel__nav {
    display: none;
}

.video-carousel.is-single .video-carousel__viewport {
    cursor: default;
    touch-action: auto;
}

.video-carousel.is-single .video-carousel__track {
    gap: 0;
    justify-content: center;
}

.video-carousel.is-single .video-carousel__slide {
    flex: 0 0 var(--slide-width);
    opacity: 1;
    transform: none;
    cursor: default;
}

.video-carousel.is-single .video-carousel__slide iframe {
    pointer-events: auto;
}

/* =========================================================
   CTA: Is RESET Right For You? (shared on all pages)
   ========================================================= */
.cta-find-doctor {
    background-color: var(--color-white);
    border-top: 12px solid var(--color-green);
    padding: 50px 0;
}

.cta-find-doctor__inner {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    /* gap: 100px; */
}
.cta-find-doctor__image {
    flex: 0 0 50%;
    max-width: 566px;

}
.cta-find-doctor__image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-find-doctor__content {
    max-width: 532px;
    flex: 1 1 60%;
}

.cta-find-doctor__title {
    color: var(--color-green);
    font-family: var(--font-sans);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 26px;
    text-transform: uppercase;
}

.cta-find-doctor__text {
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
}
.cta-find-doctor__text p {
    max-width: 500px;
	margin-bottom: 12px;
}

.cta-find-doctor__cta {
    font-size: 24px;
    padding: 25px 40px;
}

/* =========================================================
   Footer (shared on all pages)
   ========================================================= */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-sans);
}

.site-footer__main {
    padding: 32px 0;
}

.site-footer__main-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.site-footer__logo {
    display: inline-flex;
    flex-shrink: 0;
}

.site-footer__logo img {
    height: 90px;
    width: auto;
    display: block;
}

.site-footer__address {
    color: var(--color-white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
}

.site-footer__legal {
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
    text-align: right;
}

.site-footer__legal a {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6em;
    text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
    text-decoration: underline;
}

.site-footer__bottom {
    background-color: #e0e1e0;
    padding: 10px 0;
}

.site-footer__copyright {
    color: var(--color-navy);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0;
}

.page-location-map {
    overflow-x: hidden;
    min-height: 64vh;
    padding-top: 10px;
}

/* ---------- ≤1024px : tablet ---------- */
@media (max-width: 1024px) {
    :root {
        --container-pad: 32px;
    }

    /* ---------- Header: switch to hamburger ---------- */
    .site-header__hamburger {
        display: inline-flex;
    }

    /* Top-bar links move into the hamburger panel on mobile. */
    .site-header__top-inner > .site-header__top-links {
        display: none;
    }

    .site-header__nav-inner {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .site-header__nav-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 90;
        background-color: var(--color-white);
        border-top: 4px solid var(--color-green);
        box-shadow: 0 16px 32px rgba(13, 35, 64, 0.16);
        padding: 16px 0;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    .site-header__nav.is-open .site-header__nav-panel {
        display: block;
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav > li {
        border-bottom: 1px solid rgba(13, 35, 64, 0.08);
    }

    .site-nav > li:last-child {
        border-bottom: 0;
    }

    .site-nav__link,
    .site-nav__cta {
        display: flex;
        align-items: center;
        padding: 14px var(--container-pad);
        font-size: 18px;
        text-align: left;
        text-transform: uppercase;
    }

    .site-nav__cta {
        align-self: stretch;
        justify-content: flex-start;
        background-color: transparent;
        color: var(--color-green);
        border: 0;
    }

    /* Submenu becomes an inline accordion */
    .site-nav .menu-item-has-children {
        position: static;
    }

    .site-nav .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        box-shadow: none;
        border-top: 0;
        background-color: rgba(0, 153, 99, 0.06);
        padding: 8px 0;
        min-width: 0;
    }

    .site-nav .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .site-nav .sub-menu a {
        padding: 10px var(--container-pad) 10px calc(var(--container-pad) + 16px);
        font-size: 16px;
    }

    .site-header__nav-panel .site-header__top-links--in-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0;
        text-align: left;
    }

    .site-header__nav-panel .site-header__top-links--in-nav li {
        border-bottom: 1px solid rgba(13, 35, 64, 0.08);
    }

    .site-header__nav-panel .site-header__top-links--in-nav li:first-child {
        border-top: 1px solid rgba(13, 35, 64, 0.08);
    }

    .site-header__nav-panel .site-header__top-links--in-nav li:last-child {
        border-bottom: 0;
    }

    .site-header__nav-panel .site-header__top-links--in-nav a {
        font-weight: 700;
    }
    .site-header__nav-panel .site-header__top-links--in-nav .site-nav__cta {
        padding: 14px var(--container-pad);
        color: var(--color-green);
        background-color: transparent;
        font-weight: 700;
        border: 0;
    }

    .site-header__nav-panel .site-header__top-links--in-nav .site-nav__cta:hover,
    .site-header__nav-panel .site-header__top-links--in-nav .site-nav__cta:focus-visible {
        color: var(--color-green-dark);
        background-color: transparent;
    }

    .video-carousel {
        --slide-width: 55%;
        --slide-gap: 60px;
    }

    .site-nav__link,
    .btn {
        font-size: 16px;
    }

    .btn {
        padding: 14px 22px;
    }

    .procedure-hero__inner {
        /* grid-template-columns: 1fr; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 0;
        gap: 24px;
    }

    .procedure-hero__content {
        max-width: 100%;
        padding: 48px 0 24px;
        align-items: center;
        text-align: center;
    }

    .procedure-hero__text {
        max-width: 680px;
    }
    .procedure-step__content {
        max-width: none;
    }
    .procedure-hero__subtitle,
    .procedure-step__list li,
    .procedure-step__content p {
        font-size: 20px;
    }

    .procedure-hero__image {
        justify-content: center;
    }
    .procedure-hero .procedure-hero__image{
        align-self: auto;
    }

    .procedure-hero__image img {
        max-height: 60vh;
        object-position: bottom center;
    }

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

    .explore-hero__title-cell {
        margin-top: 0;
    }

    .explore-hero__how-band {
        padding: 0 0 56px;
        text-align: center;
        --explore-hero-white-h: 0px;
    }

    .explore-hero__how-band::before {
        display: none;
    }

    .explore-hero__who-band {
        padding: 24px 0 56px;
    }

    .explore-hero__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "title"
            "image"
            "body";
        column-gap: 0;
        row-gap: 24px;
    }

    .explore-hero__title-cell {
        text-align: center;
        padding: 48px 0 24px;
        background-color: var(--color-white);
    }

    .explore-hero__title {
        max-width: 680px;
        margin: 0 auto;
    }

    .explore-hero__subhead {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .explore-hero__content {
        padding-top: 24px;
        padding-bottom: 0;
        justify-content: flex-start;
    }

    .explore-hero__image {
        justify-content: center;
    }

    .explore-hero__image img {
        width: 100%;
        height: auto;
        object-fit: initial;
        object-position: initial;
        max-height: none;
    }

    .explore-hero__who-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .explore-hero__who-content {
        text-align: center;
        align-items: center;
    }

    .explore-hero__cta {
        align-self: center;
    }

    .quality-life__inner {
        /* grid-template-columns: 1fr; */
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .quality-life__content {
        text-align: center;
    }

    .quality-life__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .quality-life__image img {
        max-width: 480px;
        margin: 0 auto;
    }

    .quality-life__cards {
        margin-top: 48px;
        gap: 16px;
    }

    .quality-life__card {
        padding: 36px 20px;
        height: auto;
        min-height: 280px;
    }

    .quality-life__card-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 24px;
    }

    .quality-life__card-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .quality-life__card-body {
        font-size: 15px;
    }

    .faq {
        padding: 32px 0 72px;
    }

    .faq__title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .faq__question {
        font-size: 18px;
    }

    .faq__answer {
        font-size: 16px;
    }

    .procedure-step,
    .procedure-step--image-left,
    .procedure-step--image-right {
        /* grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "media"; */
        gap: 24px;
    }
    .procedure-step--image-left {
        flex-direction: column-reverse
    }
    .procedure-step--image-right {
        flex-direction: column;
    }

    .procedure-step__media {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        min-width: auto;
    }

    .procedure-step__media--device {
        min-height: 0;
    }
    .procedure-step--band .procedure-step__media--device {
        max-width: 440px;
    }
    .procedure-step__media--device img {
        /* margin-left: 100px;
        width: calc(100% - 100px); */
        margin-right: 0;
    }

    .change-within {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .change-within__inner {
        order: 1;
        display: block;
        min-height: 0;
    }

    .change-within__image {
        order: 2;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 360px;
    }

    .change-within__content {
        max-width: none;
        width: 100%;
        padding: 56px 0 40px;
    }

    .change-within__title {
        font-size: 36px;
    }

    .video-section {
        padding: 48px 0 64px;
    }

    .video-section__title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .video-carousel {
        --slide-width: 70%;
        --slide-gap: 40px;
        padding: 48px 0;
    }

    .video-carousel__nav {
        width: 52px;
        height: 52px;
    }

    .cta-find-doctor {
        padding: 56px 0;
        border-top-width: 10px;
    }

    .cta-find-doctor__inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cta-find-doctor__image {
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-find-doctor__content {
        max-width: 100%;
    }

    .cta-find-doctor__title {
        font-size: 30px;
    }
    
}

/* ---------- ≤767px : mobile ---------- */
@media (max-width: 768px) {
    :root {
        --container-pad: 20px;
    }
	
    .site-header__top {
        padding: 0px 0;
        border-bottom-width: 8px;
    }

    .site-header__top-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .site-header__top-links {
        gap: 24px;
    }

    .site-header__top-links a {
        font-size: 14px;
    }

    .site-header__nav-inner {
        padding: 8px 0;
        gap: 16px;
    }

    .site-header__reset-logo img {
        width: 160px;
    }

    .procedure-hero__content {
        padding: 0 0 16px;
        text-align: center;
    }

    .procedure-hero__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .procedure-hero__subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .procedure-hero__links {
        align-items: center;
    }

    .procedure-hero__links .link-cta {
        font-size: 16px;
    }

    .procedure-hero__image img {
        max-height: 50vh;
    }

    /* --- Explore hero mobile --- */
    .explore-hero__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .explore-hero__subhead {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .explore-hero__body {
        font-size: 16px;
    }

    .explore-hero__who-image img {
        max-height: 45vh;
        margin: 0 auto;
    }

    /* Quality of Life: shrink type at mobile. */
    .quality-life__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .quality-life__benefit-title {
        font-size: 18px;
    }

    .quality-life__benefit-body {
        font-size: 16px;
    }

    .quality-life__cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .quality-life__card {
        height: auto;
        min-height: 0;
        padding: 32px 24px;
    }

    .faq__title {
        font-size: 26px;
    }

    .faq__question {
        font-size: 16px;
    }

    .faq__answer {
        font-size: 15px;
    }

    .explore-hero__who-grid {
        gap: 24px;
    }

    /* Procedure steps mobile */
    .procedure-step {
        padding: 20px 0;
    }

    .procedure-hero__subtitle, .procedure-step__list li, .procedure-step__content p {
        font-size: 16px;
    }

    .procedure-step__media--device img {
        margin-left: 70px;
        width: calc(100% - 70px);
    }

    /* .device-callout {
        width: 150px;
        height: 150px;
        padding: 16px;
        border-width: 3px;
    } */

    /* .device-callout p {
        font-size: 11px;
        line-height: 1.35;
    } */

    .video-carousel {
        --slide-width: 82%;
        --slide-gap: 24px;
        padding: 36px 0;
    }

    .video-carousel__nav {
        width: 42px;
        height: 42px;
    }

    .video-carousel__nav--prev {
        left: 40px;
    }
    
    .video-carousel__nav--next {
        left: auto;
        right: 0;
    }

    .change-within__content {
        padding: 40px 0 32px;
    }

    .change-within__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .change-within__text {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .link-cta {
        font-size: 16px;
    }

    .change-within__image {
        height: 260px;
    }

    .video-section {
        padding: 36px 0 48px;
    }

    .video-section__title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .cta-find-doctor {
        padding: 40px 0;
        border-top-width: 8px;
    }

    .cta-find-doctor__inner {
        gap: 28px;
    }

    .cta-find-doctor__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .cta-find-doctor__text {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .cta-find-doctor__cta {
        font-size: 14px;
        padding: 12px 22px;
    }

    .site-footer__main {
        padding: 24px 0;
    }

    .site-footer__main-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* .site-footer__address {
        font-size: 16px;
    } */

    .site-footer__legal {
        margin: 0;
        text-align: left;
    }

    /* .site-footer__legal a {
        font-size: 16px;
    } */

    /* .site-footer__copyright {
        font-size: 14px;
    } */
}

/* ---------- ≤480px : small mobile ---------- */
@media (max-width: 480px) {
    .site-logo {
        margin: 0 auto;
    }
    .site-nav__link,
    .site-nav__cta {
        font-size: 14px;
    }
}
@media (max-width: 420px) {
    .device-callout{
        left: auto;
        right: 30%;
        transform: translateY(-16%);
    }
}

/* =================
 * FIND A DOCTOR
 * ================= */

.lms-location-contact__meta {
	display: none;
}

