:root {
    --navy: #081727;
    --navy-2: #0b2031;
    --ink: #11263d;
    --slate: #5a6b7d;
    --blue: #2e7fd0;
    --blue-deep: #194e85;
    --blue-soft: #eaf3fc;
    --line: rgba(17, 38, 61, .10);
    --glass: rgba(255, 255, 255, .64);
    --soft: 0 20px 48px rgba(12, 29, 47, .08);
}

.levelix-product-wrapper {
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    font-family: "Plus Jakarta Sans",
    sans-serif;
    color: var(--ink);
    line-height: 1.5;

    h1,
    h2,
    h3,
    h4 {
        font-family: "Cormorant", serif;
        font-weight: 700;
        letter-spacing: -.02em;
        line-height: 1.08;
        margin: 0;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.9rem, 4vw, 3rem);
    }

    h3 {
        font-size: clamp(1.3rem, 2.3vw, 1.7rem);
    }

    p {
        margin: 0 0 1rem;
    }

    a {
        color: var(--blue-deep);
        text-decoration: none;
    }

    img {
        max-width: 100%;
    }


    .eyebrow {
        text-transform: uppercase;
        letter-spacing: .16em;
        font-size: .72rem;
        font-weight: 800;
        color: var(--slate);
        margin: 0 0 .8rem;
    }

    /* buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 1.6rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: .95rem;
        border: 1px solid transparent;
        cursor: pointer;
        transition: transform .15s ease, box-shadow .15s ease;
    }

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

    .btn-primary {
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--blue-deep));
        box-shadow: 0 16px 30px rgba(25, 78, 133, .26);
    }

    .btn-ghost {
        color: #fff;
        background: rgba(255, 255, 255, .10);
        border-color: rgba(255, 255, 255, .22);
    }

    .btn-quiet {
        color: var(--ink);
        background: rgba(255, 255, 255, .72);
        border-color: var(--line);
    }

    .btn-block {
        width: 100%;
    }

    /* promo bar */
    .promo-bar {
        position: relative;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .7rem;
        flex-wrap: wrap;
        padding: .55rem 1rem;
        text-align: center;
        font-size: .82rem;
        font-weight: 700;
        letter-spacing: .02em;
        color: #fff;
        background: linear-gradient(90deg, var(--blue), #3aa0ec);
        text-transform: uppercase;
    }

    .promo-bar .code {
        font-weight: 800;
        letter-spacing: .08em;
        color: var(--ink);
        background: #fff;
        padding: .18rem .6rem;
        border-radius: 6px;
        text-transform: none;
    }

    .promo-bar .pclose {
        position: absolute;
        right: .8rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: 0;
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        opacity: .85;
        line-height: 1;
    }

    .promo-bar .pclose:hover {
        opacity: 1;
    }

    /* header */
    header {
        position: sticky;
        top: 0;
        z-index: 999;
        padding: .55rem 0;
        background: linear-gradient(180deg, rgba(16, 30, 46, .97), rgba(9, 20, 33, .95));
        border-bottom: 1px solid rgba(73, 143, 214, .24);
        box-shadow: 0 0 18px rgba(146, 215, 255, .18), 0 18px 42px rgba(6, 16, 28, .28);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .brand-logo img {
        height: 46px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 1.6rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .menu a {
        color: #fff;
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        font-weight: 600;
        position: relative;
    }

    .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -.35rem;
        height: 2px;
        border-radius: 9px;
        background: linear-gradient(90deg, var(--blue), #8ec6f5);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .18s;
    }

    .menu a:hover::after,
    .menu a.active::after {
        transform: scaleX(1);
    }

    .menu .start a {
        padding: .55rem 1.1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--blue), var(--blue-deep));
        text-transform: none;
        letter-spacing: 0;
    }

    .menu .start a::after {
        display: none;
    }

    .burger {
        display: none;
        background: none;
        border: 0;
        cursor: pointer;
        width: 34px;
        height: 34px;
    }

    .burger span {
        display: block;
        height: 2px;
        background: #fff;
        margin: 6px 0;
        border-radius: 2px;
        transition: .25s;
    }

    /* breadcrumb */
    .crumb {
        padding: 1.2rem 0 0;
        font-size: .8rem;
        color: var(--slate);
        font-weight: 600;
    }

    .crumb a {
        color: var(--slate);
    }

    .crumb span {
        margin: 0 .4rem;
        opacity: .5;
    }

    /* ===== PRODUCT HERO ===== */
    .phero-grid {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: clamp(1.5rem, 4vw, 3rem);
        align-items: start;
        position: relative;
    }

    .gallery-col {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .gallery .main {
        background: transparent;
        border: 0;
        box-shadow: none;
        display: grid;
        place-items: center;
        padding: 1rem 2rem 1.5rem;
        aspect-ratio: 1/1;
        overflow: visible;
    }

    .gallery .main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-icon-strip {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        padding: 0.75rem 0;
    }

    .hero-icon-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.65rem;
        padding: 0.35rem 1.05rem;
        color: var(--navy);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        line-height: 1.25;
    }

    .hero-icon-item svg,
    .hero-icon-item img {
        flex: 0 0 auto;
        width: 30px;
        height: 30px;
        color: var(--blue);
        object-fit: contain;
    }

    .edge-card:hover img,
    .cand-item:hover img {
        filter: brightness(0) invert(1);
    }

    .hero-strip-divider {
        width: 1px;
        align-self: stretch;
        background: rgba(8, 23, 39, 0.12);
        margin: 0.35rem 0;
    }

    .buybox {
        align-self: center;
        /* max-height: calc(66ch - 100px);
        overflow-y: auto; */
    }

    .product-info-bottom {
        /* position: sticky;
        bottom: 0;
        padding: 10px 0;
        background: var(--glass);
        backdrop-filter: blur(10px); */
        /* background: #fff; */
    }

    .product-text-scroll-row {
        position: relative;
    }

    .phero-grid.section .gallery-col {
        position: sticky;
        top: 10ch;
    }

    .btnRowProduct:empty {
        margin: 0;
    }

    .product-info-bottom .product-add-to-cart {
        padding-top: 0;
    }

    .phero-grid.section {
        overflow: visible;
    }

    .buybox .eyebrow {
        color: var(--blue-deep);
        margin-bottom: 2rem !important;
    }

    .product-card {
        border-radius: 20px;
        margin-bottom: 1.4rem;
    }

    .product-card .pc-label {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--blue);
        margin: 0 0 0.5rem;
    }

    .product-card h1 {
        font-family: "Oswald", sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 4.5vw, 2.8rem);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--ink);
        line-height: 1.0;
        margin: 0 0 0.1rem;
    }

    .product-card .tagline {
        font-family: "Oswald", sans-serif;
        font-weight: 600;
        font-size: clamp(1.3rem, 3.5vw, 2.2rem);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--blue);
        margin: 0 0 1rem;
        line-height: 1.1;
    }

    .product-card .pc-desc {
        color: var(--slate);
        font-size: 0.9rem;
        line-height: 1.65;
        margin: 0 0 1.1rem;
    }

    .product-card .pc-stars {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--slate);
    }

    .product-card .pc-stars .stars {
        color: var(--blue);
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .price {
        display: flex;
        align-items: baseline;
        gap: .6rem;
        margin-bottom: 1.1rem;
    }

    .price .amt {
        font-family: "Cormorant", serif;
        font-size: 2.6rem;
        font-weight: 700;
        color: var(--blue-deep);
    }

    .price .note {
        color: var(--slate);
        font-size: .86rem;
    }

    .buy-actions {
        margin-bottom: 1rem;
    }

    .buy-actions .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 999px;
    }

    .assurance {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
    }

    .assurance div {
        font-size: .82rem;
        color: var(--slate);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    .assurance b {
        color: var(--ink);
    }

    .lifestyle-strip {
        position: relative;
        height: clamp(260px, 34vw, 440px);
        margin: 2.5rem 0;
        border-radius: 32px;
        overflow: hidden;
        background: url("recovery-banner.webp") center 32%/cover no-repeat;
        background-color: #e9e2d7;
        box-shadow: var(--soft);
    }

    .lifestyle-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(8, 23, 39, .72), rgba(8, 23, 39, .28) 45%, transparent 70%);
    }

    .lifestyle-strip .ls-copy {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 34rem;
        padding: clamp(1.6rem, 4vw, 3rem);
    }

    .lifestyle-strip .eyebrow {
        color: #9fd1ff;
    }

    .lifestyle-strip h2 {
        color: #fff;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
        margin-bottom: .6rem;
    }

    .lifestyle-strip p {
        color: rgba(255, 255, 255, .85);
        line-height: 1.7;
        margin: 0;
        max-width: 36ch;
    }

    .section {
        padding: clamp(1.8rem, 4vw, 3rem);
        border-radius: 36px;
        background: var(--glass);
        backdrop-filter: blur(10px);
        margin: 2.5rem 0;
        border: 1px solid var(--line);
        box-shadow: var(--soft);
        overflow: hidden;
    }

    .section.center {
        text-align: center;
    }

    .section.center .lede {
        margin-inline: auto;
        max-width: 60ch;
        color: var(--slate);
        line-height: 1.7;
    }

    .sub {
        margin: .2rem auto .4rem;
    }

    .section-why {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 320px;
        border-radius: 36px;
        overflow: hidden;
        border: 1px solid var(--line);
        box-shadow: var(--soft);
        margin: 2.5rem 0;
    }

    .why-text-col {
        background: #fff;
        padding: clamp(2rem, 5vw, 3.5rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .why-text-col .eyebrow {
        color: var(--blue);
        margin-bottom: 0.9rem;
    }

    .why-text-col h2 {
        font-size: clamp(1.6rem, 3vw, 2.1rem);
        color: var(--ink);
        margin: 0 0 0.6rem;
        line-height: 1.2;
    }

    .why-accent-line {
        width: 40px;
        height: 3px;
        background: var(--blue);
        border-radius: 2px;
        margin: 0 0 1.4rem;
    }

    .why-text-col p {
        color: var(--slate);
        font-size: 0.95rem;
        line-height: 1.75;
        margin: 0 0 0.85rem;
        max-width: 52ch;
    }

    .why-text-col p:last-child {
        margin-bottom: 0;
    }

    .why-photo-col {
        background: url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
        min-height: 320px;
    }

    .edge {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        text-align: left;
    }

    .edge .col {
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 1.6rem;
        background: linear-gradient(180deg, #fff, #f5f8fc);
        position: relative;
        overflow: hidden;
        transition: transform .18s, box-shadow .18s;
    }

    .edge .col:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 50px rgba(12, 29, 47, .12);
    }

    .edge .col::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--blue), var(--blue-deep));
    }

    .edge .step-k {
        font-size: .7rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: .6rem;
    }

    .edge h3 {
        font-size: 1.4rem;
        margin-bottom: .6rem;
    }

    .edge p {
        color: var(--slate);
        font-size: .94rem;
        line-height: 1.6;
        margin: 0;
    }

    .section-dark {
        background: var(--navy);
        border: 1px solid rgba(46, 127, 208, 0.15);
        color: #fff;
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
        box-shadow: 0 24px 60px rgba(5, 12, 20, 0.4);
    }

    .eyebrow-dark {
        text-transform: uppercase;
        letter-spacing: .16em;
        font-size: .72rem;
        font-weight: 800;
        color: #4fa3e3;
        margin: 0 0 .8rem;
    }

    .divider-dark {
        width: 48px;
        height: 3px;
        background: var(--blue);
        margin: 1.1rem auto 2.8rem;
        border-radius: 2px;
    }

    .edge-dark-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .edge-card {
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 2.8rem 2.2rem;
        background: rgba(255, 255, 255, 0.02);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .edge-card:hover {
        transform: translateY(-5px);
        border-color: rgba(46, 127, 208, 0.4);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .edge-card .icon-wrap {
        width: 100px;
        height: 100px;
        border: 1.5px solid rgba(79, 163, 227, 0.4);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4fa3e3;
        margin-bottom: 1.6rem;
        transition: border-color .2s ease, color .2s ease;
    }

    .edge-card .icon-wrap svg,
    .edge-card .icon-wrap img {
        width: 64px;
        height: 64px;
        object-fit: contain;
    }

    .edge-card:hover .icon-wrap {
        border-color: #4fa3e3;
        color: #fff;
    }

    .edge-card h3 {
        margin: 0 0 0.4rem;
    }

    .edge-card .card-sub {
        font-size: .72rem;
        font-weight: 700;
        color: #4fa3e3;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 1.2rem;
    }

    .edge-card p {
        color: #a5b5c7;
        font-size: .9rem;
        line-height: 1.65;
        margin: 0;
    }

    .section-candidacy {
        background: linear-gradient(135deg, rgba(8, 23, 39, 0.93), rgba(11, 32, 49, 0.96)),
            url("recovery-banner.webp") center/cover no-repeat;
        border: 1px solid rgba(46, 127, 208, 0.15);
        color: #fff;
        padding: clamp(2.5rem, 5vw, 4.2rem) clamp(1.5rem, 4vw, 3rem);
        box-shadow: 0 24px 60px rgba(5, 12, 20, 0.4);
        position: relative;
    }

    .cand-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .cand-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cand-item .icon-circle {
        width: 100px;
        height: 100px;
        border: 1.5px solid rgba(79, 163, 227, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4fa3e3;
        margin-bottom: 1.2rem;
        transition: border-color .2s ease, color .2s ease, background-color .2s ease;
        background: rgba(8, 23, 39, 0.3);
    }

    .cand-item .icon-circle svg,
    .cand-item .icon-circle img {
        width: 54px;
        height: 54px;
        object-fit: contain;
    }

    .cand-item:hover .icon-circle {
        border-color: #4fa3e3;
        color: #fff;
        background-color: rgba(79, 163, 227, 0.1);
    }

    .cand-item p {
        color: #fff;
        font-size: .88rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        max-width: 18ch;
        text-transform: capitalize;
    }

    .section-how-included {
        background: var(--glass);
        border: 1px solid var(--line);
        color: var(--ink);
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
        box-shadow: var(--soft);
    }

    .how-inc-grid {
        display: grid;
        grid-template-columns: 1.25fr 1px 0.75fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .how-inc-divider {
        background-color: var(--line);
        width: 1px;
        height: 100%;
    }

    .how-works-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .how-works-col h2,
    .included-col h2 {
        font-size: 2rem;
        margin: 0 0 2rem;
    }

    .included-col h2 {
        text-align: left;
        align-self: flex-start;
    }

    .how-steps-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .how-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .how-step .icon-container {
        width: 100px;
        height: 100px;
        border: 1.5px solid rgba(46, 127, 208, 0.3);
        background-color: var(--blue-soft);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue-deep);
        margin-bottom: 1.2rem;
        position: relative;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .how-step .icon-container svg,
    .how-step .icon-container img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

    .how-step:hover .icon-container {
        transform: translateY(-2px);
        border-color: var(--blue);
    }

    .how-step .step-badge {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 28px;
        height: 28px;
        background-color: var(--blue);
        color: #fff;
        font-size: 1rem;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .how-step h3 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: 0.95rem;
        color: var(--ink);
        text-transform: uppercase;
        margin: 0 0 0.5rem;
        letter-spacing: 0.02em;
    }

    .how-step p {
        font-size: 0.86rem;
        line-height: 1.5;
        color: var(--slate);
        margin: 0;
        max-width: 24ch;
    }

    .how-arrow {
        margin-top: 2.05rem;
        color: var(--blue);
        font-size: 1.2rem;
        font-weight: 700;
        opacity: 0.6;
    }

    .protocol-info-title {
        position: relative;
        padding-right: 35px;
    }

    .protocol-info-top {
        margin-bottom: 30px;
    }

    .protocol-accordian-btn {
        width: 20px;
        height: 20px;
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .protocol-accordian-btn::before {
        border-style: solid;
        border-width: 0 0 0 2px;
        bottom: 0;
        box-sizing: border-box;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
    }

    .protocol-accordian-btn.active::before {
        transform: translateX(-50%) rotate(90deg);
    }

    .protocol-accordian-btn::after {
        border-style: solid;
        border-width: 2px 0 0;
        box-sizing: border-box;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .included-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .inc-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .inc-item {
        display: flex;
        align-items: center;
        gap: 0.9rem;
    }

    .inc-item .check-badge {
        width: 22px;
        height: 22px;
        background-color: var(--blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .inc-item span {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ink);
    }

    .faq {
        max-width: 56rem;
        margin: 1.8rem auto 0;
        text-align: left;
    }

    .faq details {
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--soft);
        margin-bottom: .8rem;
        overflow: hidden;
    }

    .faq summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        list-style: none;
        padding: 1.15rem 1.35rem;
        font-weight: 800;
        font-size: 1.02rem;
    }

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

    .faq summary .sgn {
        flex: 0 0 auto;
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        border-radius: 999px;
        font-size: 0;
        transition: transform .2s, background .2s, color .2s;
        justify-content: center;
        position: relative;
    }

    span.sgn:after {
        border-style: solid;
        border-width: 2px 0 0;
        box-sizing: border-box;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    span.sgn:before {
        border-style: solid;
        border-width: 0 0 0 2px;
        bottom: 0;
        box-sizing: border-box;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
    }

    .faq details[open] summary span.sgn:before {
        display: none;
    }

    .faq .fa {
        padding: 0 1.35rem 1.3rem;
        color: var(--slate);
        line-height: 1.7;
    }

    .pairs-section {
        background: var(--glass);
        backdrop-filter: blur(10px);
        border: 1px solid var(--line);
        border-radius: 36px;
        box-shadow: var(--soft);
        padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    }

    .pairs-section h2 {
        font-family: "Cormorant", serif;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
        margin-bottom: 2rem;
        text-align: left;
        color: var(--ink);
    }

    .pairs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }

    .pair {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 1.5rem 1rem;
        background: #fff;
        box-shadow: 0 10px 24px rgba(12, 29, 47, .05);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .pair:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(12, 29, 47, .1);
        border-color: rgba(46, 127, 208, .4);
    }

    .pair .vial {
        width: 100%;
        max-width: 96px;
        aspect-ratio: 3/4;
        margin: 0 auto 1.2rem;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .pair .vial img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .pair .band {
        position: absolute;
        left: 14%;
        right: 14%;
        bottom: 16%;
        height: 26%;
        border-radius: 2px;
        opacity: .9;
        mix-blend-mode: multiply;
    }

    .pair .nm {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.3;
        margin-bottom: 0.5rem;
        min-height: 2.6em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pair .pr {
        font-weight: 800;
        color: var(--ink);
        font-size: 0.95rem;
        margin-bottom: 1rem;
        margin-top: auto;
    }

    .pair .atc {
        width: 100%;
        border: 0;
        cursor: pointer;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: 0.72rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--blue-deep));
        padding: 0.75rem 0.5rem;
        border-radius: 8px;
        transition: transform .15s ease, box-shadow .15s ease;
    }

    .pair .atc:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(25, 78, 133, .3);
    }

    .section-closer {
        background: linear-gradient(90deg, rgba(8, 23, 39, 0.92) 0%, rgba(8, 23, 39, 0.78) 50%, rgba(8, 23, 39, 0.3) 100%),
            url("recovery-banner.webp") center 30%/cover no-repeat;
        color: #fff;
        padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4.2rem);
        border: 1px solid rgba(46, 127, 208, 0.15);
        border-radius: 36px;
        margin: 2.5rem 0;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .closer-content {
        max-width: 540px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 2;
    }

    .section-closer h2 {
        color: #fff;
        margin: 0 0 1.2rem;
    }

    .section-closer p {
        color: rgba(255, 255, 255, 0.88);
        font-size: clamp(0.88rem, 1.8vw, 1rem);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .section-closer .btn-closer {
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--blue-deep));
        box-shadow: 0 14px 28px rgba(25, 78, 133, 0.3);
        padding: 0.85rem 2.4rem;
        font-weight: 700;
        font-size: 1rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        border: none;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .section-closer .btn-closer:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(25, 78, 133, 0.45);
    }

    .closer-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
        margin: 1.5rem 0 1.5rem;
    }

    .closer-features {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .closer-feat-item {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }

    .trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .trust .ic {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 1.5rem;
        background: linear-gradient(140deg, #13355a, #081727);
    }

    .trust h3 {
        font-size: 1.35rem;
        margin-bottom: .5rem;
    }

    .trust p {
        color: var(--slate);
        font-size: .94rem;
        line-height: 1.6;
        margin: 0;
    }

    .closer {
        position: relative;
        color: #fff;
        text-align: center;
        border: 0;
        background: linear-gradient(160deg, rgba(19, 53, 85, .96), rgba(8, 23, 39, .98));
    }

    .closer .eyebrow {
        color: #9fd1ff;
    }

    .closer h2 {
        color: #fff;
        max-width: 22ch;
        margin: 0 auto .9rem;
    }

    .closer p {
        color: rgba(255, 255, 255, .82);
        max-width: 56ch;
        margin: 0 auto 1.6rem;
        line-height: 1.7;
    }

    .closer .btn-row {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .built-signature {
        margin-top: 1.5rem;
        font-size: 1.7rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        width: 100%;
        font-style: italic;
        font-family: "Cormorant", serif;
        letter-spacing: 0;
        font-weight: 600;
        max-width: max-content;
    }

    .built-closer-image img {
        max-width: 80px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .disclaimer {
        margin: 2.5rem 0;
        text-align: center;
    }

    .disclaimer p {
        color: var(--slate);
        font-size: .82rem;
        line-height: 1.7;
        max-width: 80ch;
        margin: 0 auto;
    }

    footer {
        padding-bottom: 2rem;
    }

    .foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        flex-wrap: wrap;
        padding: 1.5rem 1.6rem;
        border-radius: 30px;
        color: rgba(255, 255, 255, .78);
        background: linear-gradient(160deg, rgba(19, 53, 85, .95), rgba(8, 23, 39, .98));
    }

    .foot-logo img {
        height: 64px;
        width: auto;
        display: block;
        object-fit: contain;
        margin-bottom: .4rem;
    }

    .foot p {
        margin: .3rem 0 0;
        max-width: 42ch;
        font-size: .9rem;
    }

    .foot ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 1.2rem;
        list-style: none;
        margin: 0;
        padding: 0;
        font-weight: 600;
        font-size: .92rem;
    }

    .foot a {
        color: rgba(255, 255, 255, .78);
    }

    :focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 2px;
    }

    .product-benefits-sec .audienceRow {
        display: flex;
        flex-wrap: wrap;
        row-gap: 1.5rem;
    }

    .product-benefits-sec .audienceRow>div {
        width: 33.33%;
    }

    .product-benefits-sec .audienceRow>div>div {
        height: 100%;
    }

    /* Accessibility / Motion preferences */
    @media (prefers-reduced-motion: reduce) {
        * {
            transition: none !important;
            scroll-behavior: auto;
        }
    }

    /* ===== CONSOLIDATED MEDIA QUERIES ===== */

    /* Desktop and Wide Tablet Adjustments (<= 1199px) */
    @media (max-width: 1199px) {
        .hero-icon-item {
            gap: 0.4rem;
            padding: 0.35rem 0.3rem;
        }

        .hero-icon-item svg,
        .hero-icon-item img {
            width: 22px;
            height: 22px;
        }
    }

    /* Tablet and Mobile Breakpoint (<= 991px) */
    @media (max-width: 991px) {
        .menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            align-items: flex-start;
            gap: .2rem;
            background: var(--navy);
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(73, 143, 214, .24);
            display: none;
        }

        .menu.open {
            display: flex;
        }

        .menu li {
            width: 100%;
        }

        .menu a {
            display: block;
            padding: .7rem 0;
        }

        .burger {
            display: block;
        }

        .phero-grid {
            grid-template-columns: 1fr;
        }

        .gallery {
            position: static;
        }

        .hero-icon-item {
            gap: 0.7rem;
            padding: 0.35rem 1.3rem;
        }

        .edge-dark-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .edge-card {
            padding: 2.2rem 1.8rem;
        }

        .cand-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 1.5rem;
        }

        .how-inc-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .how-inc-divider {
            display: none;
        }

        .included-col {
            align-items: center;
        }

        .included-col h2 {
            align-self: center;
            margin-bottom: 1.5rem;
        }

        .inc-list {
            max-width: 320px;
            margin: 0 auto;
        }

        .why-grid,
        .cand,
        .edge,
        .steps,
        .trust {
            grid-template-columns: 1fr;
        }

        .pairs {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .product-benefits-sec .audienceRow>div {
            width: 50%;
        }

        .phero-grid.section .gallery-col {
            position: unset;
        }
    }

    /* Medium-Small Devices (<= 767.5px) */
    @media (max-width: 767.5px) {
        .gallery .main {
            max-width: 360px;
            margin-inline: auto;
        }

        .section-why {
            grid-template-columns: 1fr;
        }

        .why-photo-col {
            min-height: 340px;
            order: -1;
        }

        .hero-icon-item {
            gap: 0.7rem;
            padding: 0.35rem 0.7rem;
        }

        .section-closer {
            background: linear-gradient(180deg, rgba(8, 23, 39, 0.85) 0%, rgba(8, 23, 39, 0.95) 100%);
            align-items: center;
            text-align: center;
            padding: clamp(2.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) !important;
        }

        .closer-content {
            align-items: center;
            max-width: 100%;
        }

        .closer-features {
            justify-content: center;
            gap: 1.2rem;
        }

        .how-steps-row {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .how-arrow {
            display: none;
        }

        .how-step p {
            max-width: 100%;
        }

        .why-text-col {
            padding: clamp(2rem, 5vw, 3.5rem) clamp(0.98rem, 3vw, 2.5rem) !important;
        }
    }

    /* Standard Mobile Phones (<= 600px) */
    @media (max-width: 600px) {
        .cand-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem 1rem;
        }
    }

    /* Small Mobile Devices (<= 575px) */
    @media (max-width: 575px) {
        .section {
            margin: 1.5rem 0;
            border-radius: 26px;
        }

        .buy-actions .btn {
            min-width: 0;
        }

        .hero-icon-strip {
            /* flex-direction: column; */
            /* align-items: flex-start; */
            gap: 15px 8px;
            padding: 0.75rem 0 0;
        }

        .buybox .eyebrow {
            margin-bottom: 1rem !important;
        }

        .product-card {
            margin-bottom: 1rem;
        }

        .price .amt {
            font-size: 2rem;
        }

        .product-add-to-cart {
            padding: 0;
        }

        .divider-dark {
            margin: 1.1rem auto 2rem;
        }

        .edge-card .icon-wrap svg,
        .edge-card .icon-wrap img {
            width: 54px;
            height: 54px;
        }

        .edge-card .icon-wrap {
            width: 80px;
            height: 80px;
        }

        .hero-icon-item {
            /* width: 100%; */
            padding: 0;
            font-size: 9px;
            gap: 0.5rem;
        }

        .hero-icon-item svg,
        .hero-icon-item img {
            width: 18px;
            height: 18px;
        }

        /*         .hero-strip-divider {
            display: none;
        } */
        .pairs {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .promo-bar {
            font-size: .72rem;
            padding-right: 1.8rem;
        }

        .section-candidacy h2 {
            max-width: 16ch;
            margin: auto;
        }

        .pairs-section h2 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .section-closer .btn-closer {
            padding: 0.85rem 1.7rem;
        }

        .product-benefits-sec .audienceRow>div {
            width: 100%;
        }
    }

    /* Very Small Mobile Devices (<= 400px) */
    @media (max-width: 400px) {
        .cand-grid {
            gap: 1.8rem 1rem;
        }
    }

}