:root {
    --ink: #171717;
    --lime: #d7f36b;
    --cream: #f5f4ed;
    --soft: #e9ece4;
    --gray: #6c726b;
    --white: #ffffff;
    --line: #dfe3da;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    padding-top: 68px;
}

section {
    scroll-margin-top: 78px;
}

h1,
h2,
h3,
h4,
h5 {

    font-weight: 600;
    line-height: 1.12;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

p {
    font-size: 1.3rem !important;
}

ul {
    font-size: 1.2rem !important;
}

li {
    font-size: 1.2rem !important;
}


/* =========================
           FIXED NAVBAR
        ========================= */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(245, 244, 237, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.navbar {
    min-height: 76px;
}

.navbar-brand {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;

    color: var(--ink) !important;
}

.brand-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--lime);
    border-radius: 50%;
    margin-left: 3px;
}

.nav-link {
    color: var(--ink) !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 7px;
}

.nav-link:hover {
    opacity: .6;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
}

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: #343434;
    opacity: 1;
}

/* =========================
           GENERAL
        ========================= */

.section-space {
    padding: 50px 0;
}




.section-copy {
    color: var(--gray);

}

.btn-dark-custom {
    background: var(--ink);
    color: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    border: 2px solid var(--ink);
    transition: .3s ease;
}

.btn-dark-custom:hover {
    background-color: black;
    color: white;
}

.btn-light-custom {
    background: var(--lime);
    color: var(--ink);
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    border: 2px solid var(--lime);
    transition: .3s ease;
}

.btn-light-custom:hover {
    background: transparent;
    color: var(--lime);
    border-color: var(--lime);
}




/* ================================
MODERN LUXURY WELLNESS HERO
================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f7f2 0%, #ffffff 55%, #edf3ef 100%);
}

/* ================================
EYEBROW BADGE
================================ */

.hero-eyebrow .badge {
    color: #315c4d;
    background: rgba(49, 92, 77, 0.08);
    border: 1px solid rgba(49, 92, 77, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ================================
HERO HEADING
================================ */

.hero-section h1 {
    max-width: 700px;
    color: #18231f;
    font-size: clamp(2.8rem, 5vw, 5rem);
   
    letter-spacing: -0.045em;
    font-weight: 800;
}

.hero-section h1 span {
    color: #477967;
}

/* ================================
HERO TEXT
================================ */

.hero-text {
    max-width: 650px;
    color: #5d6863;
 
}

/* ================================
PRIMARY CTA
================================ */

.btn-dark-custom {
    color: #ffffff;
    background: #1d2d27;
    border: 1px solid #1d2d27;
    box-shadow: 0 12px 30px rgba(29, 45, 39, 0.15);
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    color: #ffffff;
    background: #477967;
    border-color: #477967;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(71, 121, 103, 0.25);
}

/* ================================
SECONDARY CTA
================================ */

.hero-section .btn-outline-dark {
    color: #1d2d27;
    border-color: #b9c5be;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-dark:hover {
    color: #ffffff;
    background: #1d2d27;
    border-color: #1d2d27;
    transform: translateY(-3px);
}

/* ================================
TRUST POINTS
================================ */

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #40544b;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-trust-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #477967;
    background: #e3eee8;
    border-radius: 50%;
    font-size: 1rem;
}

/* ================================
DISCLAIMER NOTE
================================ */

.hero-note {
    max-width: 620px;
    color: #7c8580;
    font-size: 0.78rem;
  
}

/* ================================
HERO VISUAL
================================ */

.hero-visual {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
BACKGROUND DECORATIVE CIRCLE
================================ */

.hero-bg-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    background: #dfece5;
    border-radius: 50%;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* ================================
IMAGE CARD
================================ */

.hero-photo-card {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 430px;
    overflow: hidden;
    border-radius: 180px 180px 28px 28px;
    background: #ffffff;
    padding: 12px;
    box-shadow:
        0 30px 70px rgba(35, 55, 45, 0.16),
        0 8px 20px rgba(35, 55, 45, 0.08);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-photo-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.hero-photo-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 165px 165px 20px 20px;
}

/* ================================
FLOATING INFORMATION CARD
================================ */

.floating-info-card {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 55px;
    max-width: 300px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-info-card strong {
    color: #24352d;
    font-size: 0.92rem;
}

.floating-info-card small {
    font-size: 0.75rem;
}

/* ================================
FLOATING ICON
================================ */

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: #477967;
    border-radius: 14px;
    font-size: 1.15rem;
}

/* ================================
SIDE LABEL
================================ */

.hero-side-label {
    position: absolute;
    z-index: 3;
    top: 18%;
    right: -12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-side-label span {
    padding: 7px 12px;
    color: #477967;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(71, 121, 103, 0.15);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(30, 50, 40, 0.06);
}

/* ================================
FLOATING ANIMATION
================================ */

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

/* ================================
RESPONSIVE DESIGN
================================ */

@media (max-width: 991px) {

    .hero-section {
        text-align: center;
    }

    .hero-section h1,
    .hero-text,
    .hero-note {
        margin-left: auto;
        margin-right: auto;
    }



    .hero-section .d-flex {
        justify-content: center;
    }

    .hero-trust-item {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
        margin-top: 20px;
    }

    .floating-info-card {
        left: 5%;
    }

}

@media (max-width: 575px) {

    .hero-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }




    .hero-visual {
        min-height: 440px;
    }

    .hero-bg-circle {
        width: 330px;
        height: 330px;
    }

    .hero-photo-card {
        width: 82%;
    }

    .hero-photo-card img {
        height: 420px;
    }

    .floating-info-card {
        left: 0;
        bottom: 20px;
        max-width: 250px;
        padding: 14px;
    }

    .floating-info-card strong {
        font-size: 0.8rem;
    }

    .hero-side-label {
        right: -8px;
        top: 10%;
    }

    .hero-side-label span {
        font-size: 0.58rem;
        padding: 6px 9px;
    }


}


/* =========================
           INTRODUCTION
        ========================= */

.intro-section {
    background: var(--ink);
    color: var(--white);
}

.intro-section .section-tag {
    color: var(--lime);
}

.intro-section .section-tag::before {
    background: var(--lime);
}

.intro-section .section-title {
    color: var(--white);
}

.intro-section .section-copy {
    color: rgba(255, 255, 255, .68);
}



.intro-statement strong {
    color: var(--lime);
}

/* =========================
           WHAT IS GLP-1
        ========================= */

.what-section {
    background: var(--white);
}

.definition-card {
    background: var(--soft);
    padding: 45px;
    border-radius: 28px;
    height: 100%;
}

.definition-card h3 {
    font-size: 2rem;
    margin-bottom: 22px;
}

.definition-card p {
    color: var(--gray);
}

.definition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.definition-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
}

.definition-list li:last-child {
    border-bottom: 0;
}

.list-number {
    font-weight: 800;
    color: #969d94;
}

.definition-list strong {
    display: block;
    margin-bottom: 4px;
}

.definition-list span {
    color: var(--gray);
}

/* =========================
           WHY CHOOSE
        ========================= */

.why-section {
    background: var(--cream);
}

.why-card {
    padding: 30px 0;
    border-top: 1px solid var(--ink);
    height: 100%;
}

.why-card h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.why-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 24px;
}

/* =========================
           LIMITED OFFER
        ========================= */

.offer-section {
    background: #608D82;
    overflow: hidden;
}

.offer-box {
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--ink);
    color: var(--lime);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 800;

    text-transform: uppercase;
    margin-bottom: 22px;
}



.offer-copy {
    max-width: 700px;
    font-size: 1.1rem;
}

.offer-details {
    background: rgba(255, 255, 255, .42);
    padding: 28px;
    border-radius: 20px;
    margin-top: 35px;
}

.offer-details strong {
    font-size: 1.1rem;
}

.offer-details p {
    margin: 8px 0 0;
    font-size: .9rem;
}

.offer-image-wrap {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 24px;
}

.offer-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.offer-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.offer-image-caption span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.offer-image-caption small {
    display: block;
    margin-top: 4px;
    color: #666;
}

@media (max-width: 991px) {
    .offer-image-wrap {
        min-height: 350px;
    }

    .offer-image {
        min-height: 350px;
    }
}

/* =========================
           HOW IT WORKS
        ========================= */

.process-section {
    background: var(--white);
}

.process-line {
    position: relative;
}

.process-line::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: var(--line);
}

.process-step {
    position: relative;
    display: flex;
    gap: 28px;
    margin-bottom: 38px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 2;
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.process-step h3 {
    font-size: 1.55rem;
    margin-bottom: 9px;
}

.process-step p {
    color: var(--gray);
    max-width: 620px;
    margin-bottom: 0;
}

/* =========================
           BENEFITS
        ========================= */

.benefits-section {
    background: var(--ink);
    color: var(--white);
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-section .section-tag {
    color: var(--lime);
}

.benefits-section .section-tag::before {
    background: var(--lime);
}

.benefits-section .section-copy {
    color: rgba(255, 255, 255, .68);
}

.benefit-box {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 25px 0;
}

.benefit-box h3 {
    font-size: 1.45rem;
    color: var(--lime);
}

.benefit-box p {
    color: rgba(255, 255, 255, .68);
    margin-bottom: 0;
}

.benefit-visual {
    min-height: 580px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
}

/* =========================
           REVIEWS
        ========================= */

.reviews-section {
    background: var(--cream);
}

.review-card {
    background: var(--white);
    padding: 34px;
    border-radius: 22px;
    height: 100%;
    border: 1px solid var(--line);
}

.review-stars {
    color: #909d3c;
    margin-bottom: 20px;
}

.review-card p {
    color: var(--gray);

}

.review-author {
    margin-top: 25px;
    font-weight: 800;
    font-size: 1.2rem;
}

.review-role {
    color: #8b928a;
    font-size: 1.1rem;
}



.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: white !important;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =========================
           FAQ
        ========================= */

.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    border-radius: 0 !important;
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ink);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 25px 0;
}

.accordion-button::after {
    background-size: 15px;
}

.accordion-body {
    padding: 0 45px 25px 0;
    color: var(--gray);
    font-size: 1.3rem;
}

/* =========================
           FINAL CTA
        ========================= */

.final-cta {
    background: var(--soft);
    text-align: center;
}



.final-cta p {
    color: var(--gray);
    max-width: 1000px;
    margin: 20px auto 30px;
}



/* =========================
   GLP-1 PRODUCT PRICING
========================= */

.glp-pricing-section {
    padding: 50px 0;
    background: var(--cream);
    overflow: hidden;
}

.pricing-heading {
    max-width: 990px;
    margin: 0 auto 55px;
}


/* HORIZONTAL CARD WRAPPER */

.glp-pricing-wrapper {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 15px 0 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    justify-content: center;
}

.glp-pricing-wrapper::-webkit-scrollbar {
    display: none;
}


/* PRODUCT CARD */

.glp-price-card {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 300px;
    background: #f9faf7;
    border-radius: 22px;
    overflow: hidden;

    border: 1px solid rgba(23, 23, 23, .04);
    transition: .3s ease;
}

.glp-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}


/* IMAGE AREA */

.glp-product-image {
    height: 340px;
    background: #eef2e8;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.glp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;

}


/* CARD CONTENT */

.glp-card-content {
    text-align: center;
    padding: 30px 25px 35px;
}

.glp-price {
    color: #199b76;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.glp-price strong {
    font-weight: 800;
}

.glp-card-content h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
    color: var(--ink);
}

.glp-card-content p {
    color: #6f746e;
    font-size: .95rem;
    margin-bottom: 25px;
}


/* BUTTON */

.glp-card-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    background: #252422;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .5px;
    transition: .3s ease;
}

.glp-card-btn:hover {
    background: var(--lime);
    color: var(--ink);
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .glp-price-card {
        flex: 0 0 46%;
    }

}

@media (max-width: 575px) {

    .glp-pricing-section {
        padding: 75px 0;
    }

    .glp-price-card {
        flex: 0 0 88%;
    }



}


/* =========================
           FOOTER
        ========================= */

footer {
    background: #101010;
    color: var(--white);
    padding: 80px 0 30px;
}

footer h3 {
    font-size: 1.8rem;
}

footer h4 {
    font-size: 1rem;
    margin-bottom: 22px;
}

footer p,
footer li {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--lime);
}

.legal-section {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 35px;
    margin-top: 45px;
}

.legal-section h4 {
    color: var(--lime);
    margin-bottom: 15px;
}



.copyright {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 25px;
    margin-top: 35px;
    color: rgba(255, 255, 255, .45);
    font-size: 1.1rem;
}

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--cream);
        padding: 20px;
        border-radius: 0 0 16px 16px;
    }

    .nav-cta {
        display: inline-block;
        margin-top: 10px;
    }

    .hero {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .hero-visual {
        min-height: 470px;
        margin-top: 30px;
    }

    .hero-shape {
        right: 10%;
    }

    .hero-photo {
        right: 18%;
    }

}

@media (max-width: 575px) {




    .hero-visual {
        min-height: 390px;
    }

    .hero-shape {
        width: 290px;
        height: 290px;
        right: 5%;
        top: 30px;
    }

    .hero-photo {
        width: 245px;
        height: 335px;
        right: 14%;
    }

    .floating-label {
        bottom: 10px;
        left: 0;
    }

    .definition-card {
        padding: 28px;
    }

    .process-line::before {
        left: 25px;
    }

    .step-number {
        flex-basis: 50px;
        height: 50px;
    }

    .process-step {
        gap: 18px;
    }

    .benefit-visual {
        min-height: 400px;
    }

}