/* ---------- hero : edge to edge, larger than life ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0c;
    isolation: isolate
}

/* full bleed photo on the right */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.18);
    opacity: 0;
    animation: heroZoom 2.4s .2s cubic-bezier(.22, 1, .36, 1) forwards
}

@keyframes heroZoom {
    0% {
        opacity: 0;
        transform: scale(1.18)
    }

    100% {
        opacity: 1;
        transform: scale(1.04)
    }
}

/* dark scrims so left copy stays legible */
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(90deg, #070708 0%, rgba(8, 8, 10, .96) 26%, rgba(8, 8, 10, .72) 44%, rgba(8, 8, 10, .15) 66%, rgba(8, 8, 10, .05) 100%),
        linear-gradient(180deg, rgba(8, 8, 10, .55), transparent 30%, rgba(8, 8, 10, .4)) */
    /* background:
        linear-gradient(90deg,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, .96) 26%,
          rgba(255, 255, 255, .72) 44%,
          rgba(255, 255, 255, .15) 66%,
          rgba(255, 255, 255, .05) 100%),
        linear-gradient(180deg,
          rgba(255, 255, 255, .55),
          transparent 30%,
          rgba(255, 255, 255, .4)); */
}

.hero-curtain {
    position: absolute;
    inset: 0;
    background: #0a6c74;
    z-index: 20;
    transform-origin: top;
    animation: curtain 1.1s .1s cubic-bezier(.76, 0, .24, 1) forwards
}

@keyframes curtain {
    0% {
        transform: scaleY(1)
    }

    100% {
        transform: scaleY(0)
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 98%;
    /* max-width: 1280px; */
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 40px 80px
}

.hero-copy {
    max-width: 680px
}

.hero .eyebrow {
    /* color: var(--teal-400) */
    color: #1e92a4
}

.hero h1 {
    /* font-size: clamp(3rem, 7vw, 6rem); */
    font-size: clamp(2.7rem, 5.5vw, 5.4rem);
    /* color: #fff; */
    color: #021d33;
    margin: 24px 0;
    letter-spacing: -.035em;
    line-height: .96
}

.hero h1 .ln {
    display: block;
    overflow: hidden
}

.hero h1 .ln span {
    display: block;
    transform: translateY(110%);
    animation: lineUp .9s cubic-bezier(.22, 1, .36, 1) forwards
}

.hero h1 .ln:nth-child(1) span {
    animation-delay: .7s
}

.hero h1 .ln:nth-child(2) span {
    animation-delay: .82s
}

.hero h1 .ln:nth-child(3) span {
    animation-delay: .94s
}

@keyframes lineUp {
    to {
        transform: translateY(0)
    }
}

.hero h1 .accent {
    position: relative;
    /* color: var(--teal-400); */
    color: #1e92a4;
    white-space: nowrap;
    width: fit-content;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .14em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1.5s cubic-bezier(.22, 1, .36, 1) forwards
}

@keyframes underline {
    to {
        transform: scaleX(1)
    }
}

.hero p.lead {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    /* color: rgba(255, 255, 255, .82); */
    color: #000;
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0;
    animation: fadeUp .9s 1.5s forwards
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s 1.7s forwards
}

.hero-trust {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    opacity: 0;
    animation: fadeUp .9s 1.9s forwards
}

.hero-trust .badges {
    display: flex;
    gap: 8px
}

.hero-trust .badges i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 1rem
}

.hero-trust b {
    color: #000
}

.hero-trust {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .86rem;
    color: var(--ink-soft)
}

.hero-trust .av {
    display: flex
}

.hero-trust .av span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid var(--cream);
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}

.hero-trust .av span:first-child {
    margin-left: 0
}

.hero-trust span {
    color: #000;
    font-size: 16px;
}

/* floating glass cards on the photo */
.float-card {
    position: absolute;
    z-index: 8;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 15px 20px 15px 16px;
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    gap: 13px;
    opacity: 0
}

.float-card .dot {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none
}

.float-card b {
    font-family: var(--display);
    font-size: 1.15rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1
}

.float-card small {
    font-size: .78rem;
    color: var(--ink-soft)
}

.fc1 {
    top: 16%;
    right: 5%;
    animation: cardIn .8s 2s forwards, bob 6s 2.8s ease-in-out infinite
}

.fc1 .dot {
    background: var(--cyan-100);
    color: var(--teal-700)
}

.fc2 {
    top: 58%;
    right: 4%;
    animation: cardIn .8s 2.2s forwards, bob 7s 3s ease-in-out infinite
}

.fc2 .dot {
    background: #ffe9e6;
    color: var(--coral)
}

.fc3 {
    bottom: 9%;
    right: 16%;
    animation: cardIn .8s 2.4s forwards, bob 8s 3.2s ease-in-out infinite
}

.fc3 .dot {
    background: var(--gold-soft);
    color: #b67d00
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(.9)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 2.6s forwards
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(rgba(255, 255, 255, .7), transparent);
    animation: cue 1.8s ease-in-out infinite
}

@keyframes cue {

    0%,
    100% {
        transform: scaleY(.4);
        opacity: .4
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

/* getintouch bar */
.touch-bar {
    position: relative;
    z-index: 5;
    margin-top: 54px
}

.touch-inner {
    background: var(--teal-900);
    border-radius: var(--r-md);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden
}

.touch-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px)
}

.touch-inner h3 {
    font-size: 1.4rem;
    position: relative
}

.touch-inner .stripes {
    display: flex;
    gap: 6px;
    position: relative
}

.touch-inner .stripes i {
    width: 34px;
    height: 6px;
    border-radius: 6px;
    display: block
}

.arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--coral);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.3rem;
    flex: none;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    position: relative
}

.arrow-btn:hover {
    transform: translateX(6px) scale(1.08)
}

/* sections */
section {
    position: relative
}

.sec-pad {
    padding: 90px 0
}

.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px
}

.sec-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: var(--teal-900);
    margin: 16px 0 14px
}

.sec-head p {
    color: var(--ink-soft);
    font-size: 1.05rem
}

.sec-head .y {
    color: var(--coral)
}

/* journey */
.journey {
    background: var(--paper)
}

/* journey : Memphis-Zoo style expanding image strip */
.journey {
    background: var(--paper);
    padding-bottom: 0
}

.journey .sec-head {
    margin-bottom: 34px
}

.strip-outer {
    position: relative
}

.strip {
    display: flex;
    width: 100%;
    height: 78vh;
    height: 60vh;
    /* min-height: 560px; */
    overflow: hidden
}

.jpanel {
    position: relative;
    flex: 1 1 0;
    cursor: pointer;
    overflow: hidden;
    transition: flex-grow .7s cubic-bezier(.65, 0, .1, 1);
    min-width: 0
}

.jpanel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1)
}

.jpanel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 14, .25) 0%, rgba(8, 12, 14, .15) 45%, rgba(6, 30, 33, .9) 100%);
    transition: background .6s
}

.jpanel .pcontent {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 26px;
    color: #fff
}

.jpanel .ptitle {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.1rem, 1.7vw, 1.7rem);
    letter-spacing: -.01em;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.jpanel .prule {
    width: 0;
    height: 3px;
    background: var(--coral);
    margin: 16px auto 0;
    border-radius: 3px;
    transition: width .6s .1s cubic-bezier(.22, 1, .36, 1)
}

.jpanel .pdetail {
    max-width: 340px;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: opacity .5s, max-height .7s, margin .6s
}

.jpanel .pdetail .jstat {
    font-size: 1.02rem;
    margin: 20px 0 14px;
    line-height: 1.5
}

.jpanel .pdetail .jstat b {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--gold)
}

.jpanel .pdetail .desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 22px;
    line-height: 1.55
}

.jpanel .discover {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--coral);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 24px;
    border-radius: 100px;
    box-shadow: 0 14px 30px -12px rgba(255, 107, 94, .9);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

.jpanel .discover:hover {
    transform: translateY(-3px) scale(1.04)
}

.jpanel .discover .ico {
    transition: transform .35s
}

.jpanel .discover:hover .ico {
    transform: translateX(5px)
}

/* active / hovered panel */
.strip:hover .jpanel {
    flex-grow: .6
}

.jpanel.active,
.strip:hover .jpanel:hover {
    flex-grow: 3.4
}

.jpanel.active img,
.strip .jpanel:hover img {
    transform: scale(1.06)
}

.jpanel.active::after,
.strip .jpanel:hover::after {
    background: linear-gradient(180deg, rgba(8, 12, 14, .2) 0%, rgba(6, 30, 33, .55) 55%, rgba(6, 30, 33, .92) 100%)
}

.jpanel.active .prule,
.strip .jpanel:hover .prule {
    width: 56px
}

.jpanel.active .pdetail,
.strip .jpanel:hover .pdetail {
    opacity: 1;
    max-height: 340px;
    margin-top: 6px
}

.jpanel.active .ptitle,
.strip .jpanel:hover .ptitle {
    transform: translateY(-4px)
}

/* strip nav arrows */
.strip-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex
}

.strip-nav button {
    width: 64px;
    height: 64px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.4rem;
    background: var(--coral);
    display: grid;
    place-items: center;
    transition: background .3s, transform .3s
}

.strip-nav button:first-child {
    background: var(--teal-700)
}

.strip-nav button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08)
}

@media(max-width:768px) {
     .hero-media::after {
        background:
        linear-gradient(90deg,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, .96) 26%,
          rgba(255, 255, 255, .72) 44%,
          rgba(255, 255, 255, .15) 66%,
          rgba(255, 255, 255, .05) 100%),
        linear-gradient(180deg,
          rgba(255, 255, 255, .55),
          transparent 30%,
          rgba(255, 255, 255, .4));
    }
    
    .strip {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .jpanel {
        height: 130px;
        flex: none
    }

    .jpanel.active {
        height: 360px
    }

    .strip:hover .jpanel {
        flex-grow: 0
    }

    .jpanel.active .pdetail {
        max-height: 300px
    }
}

/* why */
.why {
    background: var(--cyan-50)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.why-visual {
    position: relative
}

.why-visual img {
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 1/.86;
    object-fit: cover;
    width: 100%
}

.why-badge {
    position: absolute;
    bottom: -22px;
    right: -10px;
    background: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px
}

.why-badge .ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: conic-gradient(var(--teal-500) 80%, var(--cyan-100) 0);
    display: grid;
    place-items: center;
    flex: none
}

.why-badge .ring i {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: .78rem;
    color: var(--teal-700)
}

.why h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: var(--teal-900);
    margin: 14px 0 18px
}

.why .lead {
    color: var(--ink-soft);
    margin-bottom: 24px
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px
}

.why-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: .96rem;
    color: var(--ink)
}

.why-list .chk {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal-600);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .8rem;
    flex: none;
    margin-top: 2px
}

/* ecosystem */
.eco {
    background: var(--teal-900);
    color: #fff;
    overflow: hidden
}

.eco .sec-head h2 {
    color: #fff
}

.eco .sec-head p {
    color: rgba(255, 255, 255, .7)
}

.eco .eyebrow {
    color: var(--teal-400)
}

.eco .eyebrow::before {
    background: var(--coral)
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.ecard {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 30px 26px;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden
}

.ecard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, var(--teal-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s
}

.ecard:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-6px)
}

.ecard:hover::after {
    transform: scaleX(1)
}

.ecard .eico {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    background: var(--accent, var(--teal-500));
    color: #053b41
}

.ecard h4 {
    font-size: 1.2rem;
    margin-bottom: 10px
}

.ecard p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .72)
}

/* support tabs */
.support {
    background: var(--paper)
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px
}

.tab {
    font-family: var(--body);
    font-weight: 600;
    font-size: .9rem;
    padding: 11px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .3s
}

.tab:hover {
    border-color: var(--teal-400);
    color: var(--teal-700);
/* 	background-color: transparent; */
}

.tab.active {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(10, 108, 116, .8)
}

.panel-wrap {
    position: relative;
    background: linear-gradient(150deg, var(--cyan-50), #fff);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.panel {
    display: none;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 0
}

.panel.active {
    display: grid;
    animation: fadeUp .5s ease
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.panel-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px
}

.panel-imgs img {
    border-radius: 14px;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.2
}

.panel-body {
    padding: 44px 44px 44px 24px
}

.panel-body .eyebrow {
    margin-bottom: 14px
}

.panel-body h3 {
    font-size: 1.7rem;
    color: var(--teal-900);
    margin-bottom: 14px
}

.panel-body p {
    color: var(--ink-soft);
    margin-bottom: 22px
}

.panel-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-700);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: transform .4s
}

.panel-circle:hover {
    transform: scale(1.1) rotate(10deg)
}

/* stages */
.stages {
    background: #FDECD0;
    background-image: url('/wp-content/uploads/2026/06/blur-plus-bg.png');
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden
}

.scroll-animation-plus .deco1 {
    position: absolute;
    color: var(--gold);
    opacity: .5;
    font-weight: 800;
    /* left: 80px;
      top: 100px; */
    font-size: 60px;
    z-index: 5;
}

.scroll-animation-plus .deco-plus-1 {
    top: 60px;
    left: 6%;
    height: 300px;
    width: 300px;
    /* animation: spin 16s linear infinite */
}

.scroll-animation-plus .deco-plus-2 {
    top: 50px;
    right: 8%;
    height: 150px;
    width: 150px;
    color: var(--coral-soft);
    /* animation: bob 7s ease-in-out infinite */
}

.stages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto
}

.stage {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 38px 34px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .4s;
    border: 1px solid var(--line)
}

.stage:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md)
}

.stage .savatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background-size: cover;
    background-position: center;
    border: 4px solid #fff;
    box-shadow: var(--shadow-sm)
}

.stage h3 {
    font-size: 1.5rem;
    color: var(--teal-900);
    margin-bottom: 12px
}

.stage p {
    color: var(--ink-soft);
    font-size: .92rem;
    margin-bottom: 22px
}


/* testimonial */
.testi {
    background: var(--paper);
    text-align: center
}

.testi-video {
    /* background: var(--paper); */
    background: #E6F9FF;
    text-align: center;
    overflow: hidden;
	/* min-height: 700px; */
}

.doctor-reveal {
    position: absolute;
    left: 60px;
    bottom: -80px;
    width: 260px;
    z-index: 2;
}

.hill-cover {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 380px;
    z-index: 3;
}

.testi-video::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #812A904D;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0 0 200px 0;
    height: 250px;
    width: 130px;
}

.testi-video::after {
    content: '';
    height: 300px;
    width: 220px;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url('/wp-content/uploads/2026/06/blue-u.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.testi-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
    border-radius: var(--r-lg);
    padding: 50px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.testi-card::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: var(--display);
    font-size: 9rem;
    color: rgba(255, 255, 255, .12)
}

.testi-card p {
    font-size: 1.3rem;
    line-height: 1.5;
    font-family: var(--display);
    font-weight: 500;
    position: relative
}

.testi-who {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.testi-who .ta {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, .3)
}

.testi-who b {
    display: block;
    font-family: var(--display)
}

.testi-who small {
    color: rgba(255, 255, 255, .7)
}

/* stats */
.stats {
    background: var(--cyan-50)
}

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

.stat {
    background: #fff;
    border-radius: var(--r-md);
    padding: 36px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .4s;
    border: 1px solid var(--line)
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.stat .num {
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal-700);
    line-height: 1
}

.stat .num.coral {
    color: var(--coral)
}

.stat .lbl {
    color: var(--ink-soft);
    font-size: .88rem;
    margin-top: 8px
}

.stat.apollo .num {
    font-size: 1.3rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

/* posters */
.posters {
    background: var(--paper)
}

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

.poster {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
    transition: .4s;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
}

.poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pg);
    z-index: 0
}

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55)); */
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 1));
/*     z-index: 2 */
}

.poster.p1::before {
    background: url('/wp-content/uploads/2026/06/1.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.poster.p2::before {
    background: url('/wp-content/uploads/2026/06/2.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.poster.p3::before {
    background: url('/wp-content/uploads/2026/06/3.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.poster.p4::before {
    background: url('/wp-content/uploads/2026/06/4.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.poster>* {
    position: relative;
    z-index: 2
}

.poster .ptag {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 700
}

.poster h4 {
    font-size: 1.15rem;
    margin: 6px 0 14px;
	z-index: 1;
}

.poster .pbtn {
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: .92;
	z-index: 1;
}

.poster img.attachment-large {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
	z-index: 0;
}

.poster:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg)
}

.poster:hover .pbtn {
    gap: 12px
}

.p1 {
    --pg: linear-gradient(160deg, #1e6fb5, #0a3d6b)
}

.p2 {
    --pg: linear-gradient(160deg, #ff7a5c, #d83b2e)
}

.p3 {
    --pg: linear-gradient(160deg, #9b6bd6, #5e35a8)
}

.p4 {
    --pg: linear-gradient(160deg, #16a3ad, #0a6c74)
}

.cta-section {
    background: #fff;
	position: relative;
}

.cta-section img {
    width: 100%;
}

.store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .9s 1.7s forwards;
	position: absolute;
	bottom: 20%;
    z-index: 2;
    left: 13%;
}

.store-btns img {
	width: 130px;
}

.mobile {
    display: none;
}


.partners-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.partners-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.partners-content h2 {
    color: #0b6f8c;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.partners-content p {
    max-width: 400px;
    color: #444;
    line-height: 1.6;
}

.partners-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 55px;
    border: 1px solid;
    border-radius: 10px;
    background: linear-gradient(273.65deg, #F4FCFF -4.16%, #E2F8FF 99.94%);
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #095770;
    font-weight: 600;
    transition: .3s;
}

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

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
}

.partner-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: .3s;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* footer */
footer {
    background: var(--teal-900);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden
}

.foot-cross {
    position: absolute;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 14rem;
    right: -30px;
    top: -40px;
    line-height: 1
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative
}

.foot-grid .logo {
    color: #fff;
    margin-bottom: 16px
}

.foot-grid .logo b {
    color: var(--coral)
}

.foot-about {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    max-width: 280px
}

.foot-col h5 {
    font-family: var(--display);
    font-size: 1rem;
    margin-bottom: 16px
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    padding: 5px 0;
    transition: .25s
}

.foot-col a:hover {
    color: #fff;
    padding-left: 6px
}

.foot-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, .5);
    font-size: .84rem;
    position: relative
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal.d1 {
    transition-delay: .08s
}

.reveal.d2 {
    transition-delay: .16s
}

.reveal.d3 {
    transition-delay: .24s
}

.reveal.d4 {
    transition-delay: .32s
}

.reveal.d5 {
    transition-delay: .4s
}

.reveal.d6 {
    transition-delay: .48s
}



/* responsive */
@media(max-width:980px) {
    .partners-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .partners-content p {
        max-width: 100%;
    }

    .partner-logo img {
        height: 50px;
    }

    .partners-track {
        gap: 40px;
    }

    .deco-plus-1,
    .deco-plus-2,
    .testi-video::after,
    .testi-video::before,
    .doctor-reveal,
    .hill-cover {
        display: none;
    }

    .testi-iframe {
        width: 100%;
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-grid,
    .why-grid,
    .panel.active {
        grid-template-columns: 1fr
    }

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr 1fr
    }

    .stages-grid,
    .foot-grid {
        grid-template-columns: 1fr
    }

    .panel-body {
        padding: 30px
    }

    .hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto
    }

    .foot-grid {
        gap: 30px
    }
}

@media(max-width:560px) {
	
	.store-btns {
		bottom: 5%;
	}

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr
    }

    .touch-inner {
        flex-direction: column;
        text-align: center
    }

    .hero-inner {
        padding: 120px 22px 90px;
    }

    .scroll-cue {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%) !important;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .float-card {
        display: none;
    }

    .logo img {
        padding: 3px;
    }

    .wrap {
        padding: 0 18px;
        justify-content: space-between;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}