        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* background: #f9f8f8; */
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
                'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
         
        }

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

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

        * {
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
        }

        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
        }

        nav{
            background: linear-gradient(135deg, #0a0a0a 0%, #991b1b 100%);
        }
 
/* Navbar Styles */
.nav {
    background: linear-gradient(135deg, #0a0a0a 0%, #991b1b 100%);
    
    padding: 0 2rem;
    height: 100px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* margin-left: 50px; */
}

.logo-wrap {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo-wrap img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.logo-wrap a:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(248, 250, 252, 0.4));
}

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

.nav-item {
    margin-left: 10px;
}

.nav-link {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 160ms ease-in-out;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

.nav-link:hover {
    color: #e5e7eb;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

.order-wrap {
    margin-left: 10px;
}

.order-button {
    background: linear-gradient(145deg, #ffd700, #ffb700);
    color: #1a1200;
    font-weight: 700;
    padding: 0.75rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    min-width: 140px;
    min-height: 48px;
    transition: all 220ms ease;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        0 4px 14px rgba(255, 215, 0, 0.5);
}

.order-button:hover {
    background: linear-gradient(145deg, #ffed4e, #ffc500);
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.6),
        0 6px 20px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

.order-button:active {
    background: linear-gradient(145deg, #e6c200, #d4a017);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.25),
        0 3px 10px rgba(255, 215, 0, 0.4);
    transform: translateY(0);
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
    position: relative;
    order: 3;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    /* background-color: #000; */
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-order-item {
    display: none;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-order-button {
    width: 100%;
}

.overlay {
    display: none;
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    height: calc(100vh - 108px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 48;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive - Mobile Navigation */
@media (max-width: 768px) {
    .nav {
    background: linear-gradient(135deg, #0a0a0a 0%, #3d2f0f 100%);
    /* color: white !important; */
    }
    .nav-container {
        justify-content: space-between;
        margin-left: 0;
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .order-wrap {
        display: none;
    }

    .mobile-order-item {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 108px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 108px);
        flex-direction: column;
        background: linear-gradient(180deg, #1a1a1a 0%, #991b1b 100%);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
        transition: right 0.3s ease;
        z-index: 49;
        align-items: flex-start;
    
    }


    .nav-list.open {
        right: 0;
    }

    .nav-item {
        width: 100%;
        margin-left: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* color: white !important; */
    }

    .nav-link {
        font-size: 1.125rem;
        display: block;
        width: 100%;
    }

    .overlay.show {
        display: block;
    }
}

@media (max-width: 480px) {


    .nav {
        padding: 0 1rem;
        height: 80px;
    }

    .logo-wrap {
        margin-left: 0;
    }

    .logo-wrap img {
        width: 100px;
        height: auto;
    }

    .nav-list {
        top: 80px;
        height: calc(100vh - 80px);
        width: 260px;
    }

    .overlay {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .hamburger {
        width: 28px;
        height: 22px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .hamburger.open .hamburger-line:nth-child(1) {
        transform: translateY(9.75px) rotate(45deg);
    }

    .hamburger.open .hamburger-line:nth-child(3) {
        transform: translateY(-9.75px) rotate(-45deg);
    }
    .nav-item {
        font-size: 0.9rem;
        color: white !important;
    }
}



/* Hero Styles */
.hero-main {
    background: linear-gradient(135deg, rgba(40, 15, 15, 0.88) 0%, rgba(40, 15, 15, 0.92) 50%, rgba(40, 15, 15, 0.96) 100%),
                url('assets/heroback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 100px);
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(223, 26, 36, 0.22) 0%, transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-main > * {
    position: relative;
    z-index: 1;
    padding: 2.25rem 1.5rem 1.5rem 0.1rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-wrapper {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
    justify-items: center;
}

@media (min-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1.25fr 1fr;
        gap: 1.75rem;
        align-items: center;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 620px;
}

.hero-left-box {
    width: 100%;
    max-width: 620px;
    padding: 0.4rem 1.5rem 0.4rem;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .hero-left-box {
        padding: 1.4rem 1.25rem 1.3rem;
        border-radius: 16px;
    }
}

/* Certifications Section */
.certifications-section {
    background: linear-gradient(135deg, #282725 0%, #898787 50%, #282725 100%);
    padding: 3.5rem 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(223, 26, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(223, 26, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.certifications-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.certifications-text-block {
    max-width: 720px;
}

.certifications-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.certifications-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

.certifications-trust {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #fde68a;
}

.certifications-image {
    margin: 0 auto;
    display: block;
    max-width: 65%;
}

.hero-title h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    white-space: normal;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.02em;
}

.hero-title-brand {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: #fee2e2;
    margin-top: 0;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

.hero-why {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffe4e6;
    margin: 0 0 0.9rem 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-title .muted {
    color: #ffffff;
}

.hero-title .accent {
    color: #ffffff;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 560px;
}

.hero-card {
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(223, 26, 36, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-card .icon span {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-card-text {
    color: #fecaca;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.hero-card:hover {
    transform: translateY(-2px) scale(1.01);
    transform-origin: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(223, 26, 36, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover .icon {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card1 {
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.25) 0%, rgba(223, 26, 36, 0.2) 100%);
}

.hero-card2 {
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.25) 0%, rgba(223, 26, 36, 0.2) 100%);
}

.hero-card3 {
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.25) 0%, rgba(223, 26, 36, 0.2) 100%);
}

.hero-card1 .icon {
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card2 .icon {
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card3 .icon {
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
    max-width: 34rem;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 560px;
}

.hero-card {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(220, 38, 38, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-card .icon span {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-card-text {
    color: #fecaca;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.hero-card1 {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(185, 28, 28, 0.2) 100%);
}

.hero-card2 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
}

.hero-card3 {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.25) 0%, rgba(239, 68, 68, 0.2) 100%);
}

.hero-card1 .icon {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card2 .icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card3 .icon {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    box-shadow: 0 4px 16px rgba(248, 113, 113, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card:hover {
    transform: translateY(-2px) scale(1.01);
    transform-origin: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(220, 38, 38, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover .icon {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: center;
}

.badge-img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.hero-cta {
    display: flex;
    align-items: center;
    margin-top: 0.35rem;
    margin-bottom: 0;
    width: 100%;
}

.hero-cta-button-merged {
    background: linear-gradient(145deg, #ffd700, #ffb700);
    color: #1a1200;
    font-weight: 700;
    padding: 0.3rem 2.9rem;
    height: 64px;
    border-radius: 14px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    border: none;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), 0 4px 14px rgba(255, 215, 0, 0.5);
    transition: all 220ms ease;
    cursor: pointer;
    line-height: 1.3;
    gap: 0.15rem;
}

.hero-cta-button-merged .button-main-text {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-cta-button-merged .button-sub-text {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-cta-button-merged:hover {
    background: linear-gradient(145deg, #ffed4e, #ffc500);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.6), 0 6px 20px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

.hero-cta-button-merged:active {
    background: linear-gradient(145deg, #e6c200, #d4a017);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(255, 215, 0, 0.4);
    transform: translateY(0);
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.review-card {
    position: absolute;
    top: -20px;
    right: 1.75rem;
    background: linear-gradient(135deg, #2a2010 0%, #3d2f0f 50%, #2a2010 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.4), 0 0 20px rgba(212, 160, 23, 0.2);
    border: 2px solid rgba(212, 160, 23, 0.5);
    max-width: 240px;
    min-height: 140px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    animation-name: reviewAnim;
    animation-duration: 16s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.review-card.center {
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
}

.review-card.top {
    top: 14%;
    right: 2.5rem;
    transform: translateY(-10%);
}

.review-card-b {
    animation-delay: 8s;
}

@keyframes reviewAnim {
    0% { opacity: 1; }
    31.25% { opacity: 1; }
    37.5% { opacity: 0; }
    100% { opacity: 0; }
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    border: 2px solid #ef4444;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

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

.bottle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.bottle-wrap img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Provider / Social Proof Section */
.hero-providers {
    margin-top: 0.75rem;
}

.provider-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.provider-card {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fee2e2 100%) !important;
    background-color: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fee2e2 100%) !important;
    border-radius: 12px;
    border: 2px solid #df1a24;
    padding: 1rem 1.2rem;
    min-width: 150px;
    max-width: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(223, 26, 36, 0.2);
}

.provider-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: none;
    filter: brightness(1.05);
}

.provider-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
}

.provider-meta {
    font-size: 0.78rem;
    color: #282725;
    font-weight: 600;
}

@media (max-width: 768px) {
    .provider-card {
        min-width: 46%;
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-main > * {
        padding: 1rem;
    }

    .hero-wrapper {
        gap: 2rem;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .bottle-wrap img {
        max-width: 320px;
    }

    .hero-title h1 {
        font-size: 1.75rem;
        text-align: center;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-features {
        margin-top: 1rem;
        flex-direction: column;
    }

    .hero-card {
        flex: none;
        width: 100%;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .badge-img {
        width: 80px;
        height: 80px;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta-button-merged {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        height: auto;
        gap: 0.15rem;
    }

    .hero-cta-button-merged .button-main-text {
        font-size: 1rem;
    }

    .hero-cta-button-merged .button-sub-text {
        font-size: 0.8rem;
    }

    .review-card {
        position: static;
        margin: 1rem auto 0;
        max-width: 300px;
        animation: none;
        opacity: 1;
    }

    .review-card-b {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-main > * {
        padding: 0.75rem;
    }

    .hero-title h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-card {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .hero-card .icon {
        width: 40px;
        height: 40px;
    }

    .hero-card-title {
        font-size: 0.95rem;
    }

    .hero-card-text {
        font-size: 0.85rem;
    }

    .hero-cta-button-merged {
        height: auto;
        padding: 0.875rem 1.5rem;
        gap: 0.1rem;
    }

    .hero-cta-button-merged .button-main-text {
        font-size: 0.95rem;
    }

    .hero-cta-button-merged .button-sub-text {
        font-size: 0.75rem;
    }

    .badge-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 414px) and (min-width: 375px) {
    .hero-title h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .hero-main > * {
        padding: 0.75rem;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-card {
        padding: 0.75rem;
    }

    .hero-cta-button-merged {
        height: auto;
        padding: 0.75rem 1.25rem;
        gap: 0.1rem;
    }

    .hero-cta-button-merged .button-main-text {
        font-size: 0.9rem;
    }

    .hero-cta-button-merged .button-sub-text {
        font-size: 0.7rem;
    }

    .badge-img {
        width: 60px;
        height: 60px;
    }
}

/* Benefits Timeline Section */
.benefits-timeline-section {
    background: linear-gradient(135deg, #282725 0%, #df1a24 50%, #282725 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.benefits-timeline-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="15%25" cy="25" r="140" fill="%23fca5a522"/><circle cx="88%25" cy="80%25" r="170" fill="%23fee2e222"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.benefits-timeline-section > * {
    position: relative;
    z-index: 1;
}

.benefits-timeline-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.timeline-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.timeline-bottle {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(212, 160, 23, 0.5));
    animation: bottleFloat 3s ease-in-out infinite;
}

.timeline-right {
    color: white;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-title sup {
    font-size: 1.2rem;
    font-weight: 400;
}

.clinical-evidence-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1200;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.clinical-evidence-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-item:hover {
    padding-left: 1rem;
    border-color: rgba(220, 38, 38, 0.4);
}

.timeline-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.3));
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 229, 143, 0.3);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #fee2e2;
}

.timeline-content h3 sup {
    font-size: 0.8rem;
    font-weight: 400;
}

.timeline-item:nth-child(1) .timeline-badge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.35), rgba(220, 38, 38, 0.35));
}

.timeline-item:nth-child(2) .timeline-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.35), rgba(248, 113, 113, 0.35));
}

.timeline-item:nth-child(3) .timeline-badge {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.35), rgba(220, 38, 38, 0.35));
}

.timeline-item:nth-child(4) .timeline-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.35), rgba(185, 28, 28, 0.35));
}

/* Plus Icon for Timeline Items */
.timeline-item::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: rgba(252, 165, 165, 0.5);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.timeline-item:hover::after {
    transform: rotate(90deg);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-timeline-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-bottle {
        max-width: 350px;
    }

    .timeline-title {
        font-size: 2rem;
        text-align: center;
    }

    .clinical-evidence-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .benefits-timeline-section {
        padding: 3rem 1.5rem;
    }

    .timeline-bottle {
        max-width: 280px;
    }

    .timeline-title {
        font-size: 1.75rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .timeline-badge {
        align-self: flex-start;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-item::after {
        position: absolute;
        right: 1rem;
        top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-timeline-section {
        padding: 2.5rem 1rem;
    }

    .timeline-bottle {
        max-width: 240px;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .clinical-evidence-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .timeline-items {
        gap: 0.75rem;
    }

    .timeline-item {
        padding: 1.25rem 0;
    }

    .timeline-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        min-width: 90px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }
}

/* Pricing Section */
/* ==================== About Stallionx Section ==================== */
.about-Stallionx-section {
    background: linear-gradient(135deg, rgba(40, 15, 15, 0.9) 0%, rgba(223, 26, 36, 0.7) 50%, rgba(40, 15, 15, 0.95) 100%),
                url('assets/aboutus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4.5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.about-Stallionx-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(223, 26, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-Stallionx-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(223, 26, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-Stallionx-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-Stallionx-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-Stallionx-text {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.about-Stallionx-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-Stallionx-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.about-Stallionx-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
}

.about-Stallionx-note {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    margin: 0;
    font-style: italic;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.about-Stallionx-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-Stallionx-image img {
    max-width: 80%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.8));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-Stallionx-image:hover img {
    transform: scale(1.02);
}

.Stallionx-benefits {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(40, 15, 15, 0.75) 0%, rgba(40, 15, 15, 0.78) 50%, rgba(40, 15, 15, 0.82) 100%),
                url('assets/healthybody.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.08) 50%, rgba(239, 68, 68, 0.12) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(239, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.12) 50%, rgba(239, 68, 68, 0.18) 100%);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1200;
    margin-bottom: 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(180deg, #ffd700 0%, #ffb700 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.benefit-icon-1,
.benefit-icon-2,
.benefit-icon-3,
.benefit-icon-4 {
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%) !important;
    box-shadow: 0 4px 12px rgba(223, 26, 36, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 12px;
}

.benefit-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    stroke-width: 2.5;
    color: #ffffff;
}

.benefit-card:hover .benefit-icon-1 {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.6), 0 0 20px rgba(223, 26, 36, 0.3);
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
}

.benefit-card:hover .benefit-icon-2 {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.6), 0 0 20px rgba(223, 26, 36, 0.3);
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
}

.benefit-card:hover .benefit-icon-3 {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.6), 0 0 20px rgba(223, 26, 36, 0.3);
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
}

.benefit-card:hover .benefit-icon-4 {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.6), 0 0 20px rgba(223, 26, 36, 0.3);
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
}

.benefit-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.35s ease;
}

.benefit-card:hover .benefit-card-title {
    color: #ffffff;
}

.benefit-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

/* Responsive Design for About Stallionx Section */
@media (max-width: 968px) {
    .about-Stallionx-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-Stallionx-image {
        order: -1;
    }
    
    .about-Stallionx-image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-Stallionx-section {
        padding: 3.5rem 1.5rem;
    }
    
    .about-Stallionx-title {
        font-size: 2rem;
    }
    
    .about-Stallionx-description {
        font-size: 1rem;
    }
    
    .about-Stallionx-note {
        font-size: 0.95rem;
    }
    
    .Stallionx-benefits {
        padding: 3rem 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-Stallionx-section {
        padding: 2.5rem 1rem;
    }
    
    .about-Stallionx-title {
        font-size: 1.75rem;
    }
    
    .about-Stallionx-content {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-Stallionx-image img {
        max-height: 300px;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card-title {
        font-size: 1.1rem;
    }
    
    .benefit-card-text {
        font-size: 0.95rem;
    }
}

/* How Stallionx Works Section */
.how-Stallionx-works-section {
    background: linear-gradient(135deg, rgba(40, 15, 15, 0.78) 0%, rgba(40, 15, 15, 0.82) 45%, rgba(40, 15, 15, 0.9) 100%),
                url('assets/Fitbody.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-Stallionx-works-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.45) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.how-Stallionx-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-Stallionx-works-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.how-Stallionx-works-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.how-Stallionx-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.how-Stallionx-card {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
    border: 2px solid rgba(34, 211, 238, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.how-Stallionx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.how-Stallionx-card:hover::before {
    transform: scaleX(1);
}

.how-Stallionx-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 211, 238, 0.2);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(34, 211, 238, 0.06) 100%);
}

.how-Stallionx-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(223, 26, 36, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.how-Stallionx-card:hover .how-Stallionx-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #c21822 0%, #a5151e 100%);
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.6), 0 0 20px rgba(223, 26, 36, 0.3);
}

.how-Stallionx-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.how-Stallionx-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
}

.how-Stallionx-works-closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(34, 211, 238, 0.02) 100%);
    border-left: 4px solid rgba(34, 211, 238, 0.4);
    border-radius: 12px;
}

.how-Stallionx-works-closing-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
    font-style: italic;
}

/* Health Experts Section */
.health-experts-section {
    background: linear-gradient(135deg, rgba(24, 6, 6, 0.95) 0%, rgba(159, 18, 18, 0.88) 45%, rgba(24, 6, 6, 0.98) 100%),
                url('assets/herobackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.health-experts-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.06) 0%, transparent 50%),
        rgba(15, 6, 6, 0.65);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.health-experts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.health-experts-title {
    font-size: 3.2rem;
    font-weight: 850;
    color: #fef2f2;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    position: relative;
    letter-spacing: -0.02em;
    animation: titleFadeIn 0.8s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.health-experts-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    animation: underlineGrow 1s ease-out 0.3s both;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

.health-experts-content {
    margin-bottom: 5rem;
}

.health-experts-box {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(239, 68, 68, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.health-experts-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.3);
}

.health-experts-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.health-experts-image img {
    width: 110%;
    height: 110%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.health-experts-box:hover .health-experts-image img {
    transform: scale(1.05);
}

.health-experts-text {
    display: flex;
    flex-direction: column;
    padding: 0;
    animation: textFadeIn 0.7s ease-out 0.15s both;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.expert-reasons-section {
    width: 100%;
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(239, 68, 68, 0.15);
    backdrop-filter: blur(10px);
}

.expert-reasons {
    width: 100%;
    margin-top: 2rem;
}


@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15px);
    }
    70% {
        opacity: 0.9;
        transform: translateX(-2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.health-experts-intro {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #f3f4f6;
    margin: 0;
    padding: 2.5rem;
    padding-left: 3rem;
    background: transparent;
    border-left: 4px solid #ffd700;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.health-experts-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ffb700);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    border-radius: 2px;
}

.health-experts-subtitle {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 1.25rem;
    width: 100%;
    text-align: left;
    letter-spacing: -0.01em;
}

.health-experts-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, rgba(255, 215, 0, 0.6) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}

.expert-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: textFadeIn 0.8s ease-out 0.4s both;
    max-width: 100%;
}

.expert-reason-item:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    justify-self: auto;
}

.expert-reason-item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: reasonItemFadeIn 0.75s ease-out both;
    backdrop-filter: blur(10px);
    width: 100%;
}

.expert-reason-item:nth-child(1) { animation-delay: 0.15s; }
.expert-reason-item:nth-child(2) { animation-delay: 0.35s; }
.expert-reason-item:nth-child(3) { animation-delay: 0.55s; }

@keyframes reasonItemFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15px) translateY(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(2px) translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.expert-reason-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.expert-reason-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 25px rgba(239, 68, 68, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.expert-reason-item:hover::before {
    opacity: 1;
}

.expert-reason-item:hover .expert-reason-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffb700 100%);
}

.expert-reason-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(223, 26, 36, 0.5), 0 0 20px rgba(223, 26, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.expert-reason-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 14px;
}

.expert-reason-icon svg {
    width: 26px;
    height: 26px;
    position: relative;
    color: #ffffff;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.expert-reason-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.expert-reason-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.expert-reason-item:hover .expert-reason-title {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.expert-reason-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #e5e7eb;
    margin: 0;
}

.expert-reasons-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.expert-buy-button {
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1200;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 3rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(255, 215, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    animation: button-shimmer 3s ease-in-out infinite;
}

.expert-buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-sweep 2s ease-in-out infinite;
}

@keyframes button-shimmer {
    0%, 100% {
        box-shadow: 0 7px 18px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.8);
    }
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.expert-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.9);
    animation: none;
}

.expert-buy-button:hover::before {
    animation: none;
}

.pricing-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-bundle-note {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin: 0 auto 2.5rem;
    max-width: 900px;
    padding: 1.5rem 2rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.pricing-bundle-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ffb700);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    color: #d1d5db;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.pricing-container {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* middle card only slightly wider */
    gap: 2rem; /* modest space between cards */
    position: relative;
    z-index: 1;
    align-items: center;
}

.pricing-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;           /* fill grid column */
    max-width: none;
    margin: 0;
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 20px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.pricing-card.featured {
    border: 2px solid rgba(239, 68, 68, 0.5);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    margin-top: -20px;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-header {
    background: rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
}

.pricing-card.featured .pricing-image {
    background: rgba(239, 68, 68, 0.08);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.pricing-card.featured .pricing-details {
    background: rgba(239, 68, 68, 0.05);
}

.pricing-card.featured .pricing-header {
    padding-top: 2.25rem;
}

.pricing-card.featured .pricing-image {
    min-height: 270px;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1200;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    letter-spacing: 0.08em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(255, 215, 0, 0.5);
}

.pricing-header {
    background: rgba(239, 68, 68, 0.1);
    padding: 1.5rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.pricing-image {
    background: rgba(239, 68, 68, 0.05);
    padding: 2rem;
    text-align: center;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    overflow: hidden;
}

.pricing-image img {
    max-width: 240px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Slightly larger images for 2nd and 3rd pricing cards (2x & 4x offers) */
.pricing-container .pricing-card:nth-child(2) .pricing-image img,
.pricing-container .pricing-card:nth-child(3) .pricing-image img {
    max-width: 270px;
}

.pricing-details {
    padding: 2rem 2.5rem;
    background: rgba(239, 68, 68, 0.03);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.rrp, .current-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.old-price {
    font-size: 1.3rem;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 600;
}

.price {
    font-size: 1.65rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    animation: price-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.price::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: price-shine 3s ease-in-out infinite;
}

@keyframes price-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes price-glow {
    0%, 100% {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
        color: #ffffff;
    }
    50% {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.5);
        color: #ffed4e;
    }
}

.capsules {
    text-align: center;
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1200;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.buy-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(255, 215, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.buy-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.shipping {
    text-align: center;
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.shipping svg {
    color: #9ca3af;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.payment-methods img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: all 0.2s ease;
}

.payment-methods img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* How Stallionx Works Responsive */
@media (max-width: 1024px) {
    .how-Stallionx-works-section {
        padding: 5rem 2rem;
    }
    
    .how-Stallionx-works-title {
        font-size: 2.5rem;
    }
    
    .how-Stallionx-works-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .how-Stallionx-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .how-Stallionx-card {
        padding: 2rem 1.5rem;
    }
}

/* Health Experts Responsive */
@media (max-width: 1024px) {
    .health-experts-content {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .health-experts-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .how-Stallionx-works-section {
        padding: 4rem 1.5rem;
    }
    
    .how-Stallionx-works-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .how-Stallionx-works-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .how-Stallionx-works-grid {
        gap: 1.5rem;
    }
    
    .how-Stallionx-card {
        padding: 1.75rem 1.5rem;
    }
    
    .how-Stallionx-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .how-Stallionx-card-title {
        font-size: 1.3rem;
    }
    
    .how-Stallionx-card-text {
        font-size: 1rem;
    }
    
    .how-Stallionx-works-closing {
        padding: 2rem 1.5rem;
    }
    
    .how-Stallionx-works-closing-text {
        font-size: 1.05rem;
    }
    
    .health-experts-section {
        padding: 4rem 1.5rem;
    }
    
    .health-experts-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .health-experts-box {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .health-experts-image {
        width: 100%;
        height: 300px;
    }
    
    .health-experts-text {
        padding: 2rem 1.5rem;
    }
    
    .health-experts-intro {
        font-size: 1.05rem;
        padding-left: 1.25rem;
    }
    
    .health-experts-subtitle {
        font-size: 1.6rem;
    }
    
    .expert-reason-item {
        padding: 1.5rem;
    }
    
    .expert-reason-icon {
        width: 50px;
        height: 50px;
    }
    
    .expert-reason-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .how-Stallionx-works-section {
        padding: 3rem 1rem;
    }
    
    .how-Stallionx-works-title {
        font-size: 1.9rem;
    }
    
    .how-Stallionx-works-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .how-Stallionx-card {
        padding: 1.5rem 1.25rem;
    }
    
    .how-Stallionx-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .how-Stallionx-card-title {
        font-size: 1.2rem;
    }
    
    .how-Stallionx-card-text {
        font-size: 0.95rem;
    }
    
    .how-Stallionx-works-closing {
        padding: 1.5rem 1.25rem;
    }
    
    .how-Stallionx-works-closing-text {
        font-size: 1rem;
    }
    
    .health-experts-section {
        padding: 3rem 1rem;
    }
    
    .health-experts-title {
        font-size: 1.9rem;
        margin-bottom: 2.5rem;
    }
    
    .health-experts-box {
        grid-template-columns: 1fr;
    }
    
    .health-experts-image {
        height: 250px;
    }
    
    .health-experts-text {
        padding: 1.5rem 1.25rem;
    }
    
    .health-experts-intro {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .health-experts-subtitle {
        font-size: 1.4rem;
    }
    
    .expert-reason-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .expert-reason-icon {
        width: 48px;
        height: 48px;
    }
    
    .expert-reason-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .expert-reason-title {
        font-size: 1.15rem;
    }
    
    .expert-reason-text {
        font-size: 0.95rem;
    }
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        margin-top: 0;
        margin-bottom: 0;
    }

    .pricing-card.featured .pricing-image {
        min-height: 200px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-card.featured .pricing-header {
        padding-top: 1rem;
    }

    .pricing-card.featured::before {
        font-size: 0.68rem;
        padding: 0.32rem 0.9rem;
        top: -12px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2.5rem 1.5rem;
    }

    .pricing-bundle-note {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-section-header {
        margin-bottom: 2rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
    }

    .price-row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .buy-button {
        font-size: 1rem;
        padding: 0.7rem 1.25rem;
    }

    .pricing-image {
        min-height: 190px;
    }

    .pricing-image img {
        max-width: 135px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-bundle-note {
        font-size: 0.9rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .pricing-section-header {
        margin-bottom: 1.5rem;
    }

    .pricing-title {
        font-size: 1.6rem;
    }

    .pricing-subtitle {
        font-size: 0.9rem;
    }

    .pricing-container {
        max-width: 100%;
        gap: 1.25rem;
    }

    .pricing-card.featured .pricing-header {
        padding-top: 1rem;
    }

    .pricing-card.featured::before {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        top: -10px;
    }

    .pricing-header {
        padding: 0.875rem 1rem;
    }

    .pricing-image {
        min-height: 170px;
        padding: 1.25rem;
    }

    .pricing-image img {
        max-width: 120px;
    }

    .pricing-details {
        padding: 1.25rem 1rem;
    }

    .price-row {
        gap: 0.5rem;
    }

    .label {
        font-size: 0.7rem;
    }

    .old-price {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .capsules {
        font-size: 0.85rem;
    }

    .buy-button {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }

    .shipping {
        font-size: 0.8rem;
    }

    .payment-methods {
        gap: 0.4rem;
    }

    .payment-methods img {
        width: 30px;
        height: 20px;
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="70%25" cy="30" r="150" fill="%23fca5a522"/><circle cx="20%25" cy="90%25" r="200" fill="%23fee2e222"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.features-section > * {
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1500px;
    margin: 0 auto;
}

.features-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.feature-card {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 160, 23, 0.3);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 160, 23, 0.4);
    border-color: rgba(220, 38, 38, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
    animation-delay: 0.6s;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    animation: iconPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.4);
    animation: iconPulse 2s ease-in-out infinite, iconAppear 0.8s ease 0.4s backwards;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(201, 151, 18, 0.4);
    animation: iconPulse 2s ease-in-out infinite, iconAppear 0.8s ease 0.6s backwards;
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #dc2626 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
    animation: iconPulse 2s ease-in-out infinite, iconAppear 0.8s ease 0.8s backwards;
}

@keyframes iconAppear {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.feature-text {
    color: #fecaca;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-text strong {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-text strong {
    color: #e5e7eb;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Features Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .features-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .feature-card {
        animation: fadeInUp 0.6s ease forwards;
    }

    .feature-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-card:nth-child(3) {
        animation-delay: 0.3s;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1.5rem;
    }

    .features-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2.5rem 1rem;
    }

    .features-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .feature-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Formula Section */
.formula-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.formula-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="30" cy="70%25" r="180" fill="%23fca5a522"/><circle cx="80%25" cy="30" r="150" fill="%23fee2e222"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.formula-section > * {
    position: relative;
    z-index: 1;
}

.formula-container {
    max-width: 1300px;
    margin: 0 auto;
}

.formula-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.formula-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.formula-subtitle {
    color: #fee2e2;
    font-size: 1rem;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
}

.formula-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.formula-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    min-height: 450px;
    overflow: visible;
    cursor: pointer;
}

.main-bottle {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 160, 23, 0.4));
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.formula-image:hover .main-bottle {
    transform: translateY(-8px);
}

/* Background ingredients (behind bottle) */
.ingredient-bg {
    position: absolute;
    max-width: 420px;
    height: auto;
    z-index: 1;
    opacity: 1;
    transition: transform 0.4s ease;
}

.ingredient-bg-left {
    left: -8%;
    top: 50%;
    transform: translateY(-50%);
}

.ingredient-bg-right {
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
}

.formula-image:hover .ingredient-bg-left {
    transform: translateY(-50%) scale(1.05) translateX(-3px);
}

.formula-image:hover .ingredient-bg-right {
    transform: translateY(-50%) scale(1.05) translateX(3px);
}

/* Foreground ingredients (in front of bottle) */
.ingredient-fg {
    position: absolute;
    max-width: 180px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 10px 25px rgba(212, 160, 23, 0.35));
    transition: transform 0.4s ease;
}

.ingredient-fg-left {
    left: 16%;
    bottom: 8%;
}

.ingredient-fg-right {
    right: 16%;
    bottom: 8%;
}

.formula-image:hover .ingredient-fg {
    transform: scale(1.08) translateY(-6px);
}

.formula-image:hover .ingredient-fg-left {
    transform: scale(1.08) translateY(-6px) translateX(-4px);
}

.formula-image:hover .ingredient-fg-right {
    transform: scale(1.08) translateY(-6px) translateX(4px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    perspective: 1500px;
}

.benefit-badge {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 160, 23, 0.3);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
}

/* Animation only when visible */
.benefits-grid.animate .benefit-badge {
    animation: smoothSlideIn 1s ease-out forwards;
}

.benefit-badge:nth-child(1) { 
    animation-delay: 0s;
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
    border-color: rgba(220, 38, 38, 0.4);
}

.benefit-badge:nth-child(2) { 
    animation-delay: 4s;
    background: linear-gradient(135deg, #1a3a4a 0%, #0f2535 100%);
    border-color: rgba(74, 127, 159, 0.4);
}

.benefit-badge:nth-child(3) { 
    animation-delay: 8s;
    background: linear-gradient(135deg, #2a4020 0%, #1a2810 100%);
    border-color: rgba(95, 160, 72, 0.4);
}

.benefit-badge:nth-child(4) { 
    animation-delay: 12s;
    background: linear-gradient(135deg, #2d4f6f 0%, #1a3550 100%);
    border-color: rgba(95, 143, 175, 0.4);
}

.benefit-badge:nth-child(5) { 
    animation-delay: 16s;
    background: linear-gradient(135deg, #4a3520 0%, #2f2010 100%);
    border-color: rgba(184, 134, 11, 0.4);
}

.benefit-badge:nth-child(6) { 
    animation-delay: 20s;
    background: linear-gradient(135deg, #3a2a40 0%, #251a2a 100%);
    border-color: rgba(143, 111, 175, 0.4);
}

/* Smooth Slide In Animation */
@keyframes smoothSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.benefit-badge:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.benefit-badge:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-badge:nth-child(1):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 160, 23, 0.4);
    border-color: rgba(220, 38, 38, 0.7);
}

.benefit-badge:nth-child(2):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(74, 127, 159, 0.4);
    border-color: rgba(74, 127, 159, 0.7);
}

.benefit-badge:nth-child(3):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(95, 160, 72, 0.4);
    border-color: rgba(95, 160, 72, 0.7);
}

.benefit-badge:nth-child(4):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(95, 143, 175, 0.4);
    border-color: rgba(95, 143, 175, 0.7);
}

.benefit-badge:nth-child(5):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(184, 134, 11, 0.4);
    border-color: rgba(184, 134, 11, 0.7);
}

.benefit-badge:nth-child(6):hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 25px rgba(143, 111, 175, 0.4);
    border-color: rgba(143, 111, 175, 0.7);
}

.benefit-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.875rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(223, 26, 36, 0.5);
}

.benefit-badge:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.benefit-badge:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.benefit-badge:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.benefit-badge:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.benefit-badge:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.benefit-badge:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #8f6faf 0%, #6f4f8f 100%);
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-badge:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Formula Responsive */
@media (max-width: 1024px) {
    .formula-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .formula-image {
        min-height: 400px;
    }

    .main-bottle {
        max-width: 280px;
    }

    .ingredient-bg {
        max-width: 340px;
    }

    .ingredient-fg {
        max-width: 150px;
    }

    .ingredient-bg-left {
        left: -10%;
    }

    .ingredient-bg-right {
        right: -10%;
    }

    .ingredient-fg-left {
        left: 14%;
    }

    .ingredient-fg-right {
        right: 14%;
    }

    .benefits-grid {
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .formula-section {
        padding: 2.5rem 1.5rem;
    }

    .formula-header {
        margin-bottom: 2rem;
    }

    .formula-title {
        font-size: 1.6rem;
    }

    .formula-subtitle {
        font-size: 0.95rem;
    }

    .formula-image {
        min-height: 350px;
    }

    .main-bottle {
        max-width: 240px;
    }

    .ingredient-bg {
        max-width: 280px;
    }

    .ingredient-fg {
        max-width: 120px;
    }

    .ingredient-bg-left {
        left: -12%;
    }

    .ingredient-bg-right {
        right: -12%;
    }

    .ingredient-fg-left {
        left: 12%;
    }

    .ingredient-fg-right {
        right: 12%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-badge {
        padding: 1.25rem 1rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon img {
        width: 28px;
        height: 28px;
    }

    .benefit-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .formula-section {
        padding: 2rem 1rem;
    }

    .formula-header {
        margin-bottom: 1.5rem;
    }

    .formula-title {
        font-size: 1.4rem;
    }

    .formula-subtitle {
        font-size: 0.9rem;
    }

    .formula-image {
        padding: 1rem;
        min-height: 300px;
    }

    .main-bottle {
        max-width: 200px;
    }

    .ingredient-bg {
        max-width: 200px;
    }

    .ingredient-fg {
        max-width: 100px;
    }

    .ingredient-bg-left {
        left: -18%;
        top: 50%;
    }

    .ingredient-bg-right {
        right: -18%;
        top: 50%;
    }

    .ingredient-fg-left {
        left: 10%;
        bottom: 8%;
    }

    .ingredient-fg-right {
        right: 10%;
        bottom: 8%;
    }

    .benefit-badge {
        padding: 1rem 0.875rem;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .benefit-icon img {
        width: 24px;
        height: 24px;
    }

    .benefit-title {
        font-size: 0.9rem;
    }
}

/* Member Reviews Section */
.member-reviews-section {
    background: #f7f7f7;
    color: #111;
    padding: 4rem 1.5rem 4.5rem;
}

.member-reviews-container {
    max-width: 1120px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.member-reviews-header {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.member-reviews-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
}

.member-reviews-rating-summary {
    min-width: 260px;
}

.rating-score-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-score {
    font-size: 2.4rem;
    font-weight: 600;
    color: #111;
}

.rating-stars {
    color: #f4b400;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.rating-count {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #666;
}

.rating-bars {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 40px 1fr 60px;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #444;
}

.rating-bar-track {
    height: 6px;
    border-radius: 999px;
    background: #e1e1e1;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #0c8a3f;
    border-radius: 999px;
}

.rating-bar-fill.fill-5 { width: 88%; }
.rating-bar-fill.fill-4 { width: 72%; }
.rating-bar-fill.fill-3 { width: 40%; }
.rating-bar-fill.fill-2 { width: 22%; }
.rating-bar-fill.fill-1 { width: 15%; }

.member-reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.search-wrap {
    flex: 1;
}

.reviews-search-input {
    width: 100%;
    max-width: 260px;
    padding: 0.55rem 0.75rem;
    border-radius: 2px;
    border: 1px solid #c8c8c8;
    font-size: 0.85rem;
    background: #fff;
}

.reviews-search-input::placeholder {
    color: #999;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #555;
}

.reviews-sort-select {
    padding: 0.4rem 1.2rem 0.4rem 0.55rem;
    border-radius: 2px;
    border: 1px solid #c8c8c8;
    background: #fff;
    font-size: 0.8rem;
}

.member-reviews-topics {
    margin-bottom: 0.75rem;
}

.topics-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.topics-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-chip {
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #c8c8c8;
    background: #fff;
    font-size: 0.75rem;
    color: #333;
    cursor: pointer;
}

.topic-chip.chip-secondary {
    border-style: dashed;
}

.member-reviews-divider {
    border-bottom: 1px solid #ddd;
    margin: 1rem 0 0.75rem;
}

.member-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.review-item {
    padding: 0.75rem 0 0.5rem;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto 80px;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.3rem;
}

.review-author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}

.review-badges {
    margin-top: 0.15rem;
}

.verified-badge {
    font-size: 0.7rem;
    color: #0c8a3f;
}

.review-rating {
    color: #df1a24;
    font-size: 0.9rem;
    justify-self: center;
}

.review-date {
    font-size: 0.75rem;
    color: #777;
    justify-self: end;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #777;
}

.review-helpful-actions {
    display: flex;
    gap: 0.4rem;
}

.helpful-button {
    padding: 0.1rem 0.55rem;
    font-size: 0.72rem;
    border-radius: 999px;
    border: 1px solid #ccc;
    background: #fff;
    color: #444;
    cursor: pointer;
}

.member-reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.75rem;
    font-size: 0.8rem;
}

.pagination-page,
.pagination-arrow {
    min-width: 28px;
    height: 28px;
    border-radius: 2px;
    border: 1px solid #ccc;
    background: #fff;
    color: #444;
    cursor: pointer;
}

.pagination-page.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (max-width: 768px) {
    .member-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .member-reviews-rating-summary {
        width: 100%;
        max-width: 360px;
    }

    .member-reviews-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-search-input {
        max-width: 100%;
    }

    .review-header {
        grid-template-columns: minmax(0, 1.5fr) auto;
        grid-template-rows: auto auto;
    }

    .review-date {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }
}

/* Ingredients Section */
.ingredients-section {
    background: linear-gradient(135deg, #181717 0%, #991b1b 50%, #050505 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="20%25" cy="20" r="150" fill="%23fca5a522"/><circle cx="85%25" cy="85%25" r="180" fill="%23fee2e222"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.ingredients-section > * {
    position: relative;
    z-index: 1;
}

.ingredients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ingredients-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ingredients-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.ingredients-subtitle {
    color: #ffffff;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

.ingredients-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: center;
    justify-items: center;
}

/* Central Bottle */
.ingredients-bottle {
    grid-column: 2;
    grid-row: 1 / 4;
    z-index: 1;
    max-width: 320px;
    width: 100%;
    pointer-events: none;
    animation: bottleFloat 4s ease-in-out infinite;
}

.bottle-main {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(34, 211, 238, 0.3));
}

@keyframes bottleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Ingredient Cards */
.ingredient-card {
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.25) 0%, rgba(223, 26, 36, 0.2) 50%, rgba(223, 26, 36, 0.25) 100%);
    border: 2px solid rgba(223, 26, 36, 0.4);
    border-radius: 16px;
    padding: 1rem 1.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(223, 26, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: cardSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    max-width: 380px;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Right side cards - icon on right */
.card-2,
.card-4 {
    flex-direction: row-reverse;
}

.ingredient-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 25px rgba(223, 26, 36, 0.3);
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.3) 0%, rgba(223, 26, 36, 0.25) 50%, rgba(223, 26, 36, 0.3) 100%);
    border-color: rgba(223, 26, 36, 0.6);
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    60% {
        transform: translateY(-3px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-1 { 
    animation-delay: 0.15s; 
    grid-column: 1;
    grid-row: 1;
}

.card-2 { 
    animation-delay: 0.25s; 
    grid-column: 3;
    grid-row: 1;
}

.card-3 { 
    animation-delay: 0.35s; 
    grid-column: 1;
    grid-row: 2;
}

.card-4 { 
    animation-delay: 0.45s; 
    grid-column: 3;
    grid-row: 2;
}

.card-5 { 
    animation-delay: 0.55s; 
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
    max-width: 450px;
    width: 100%;
}

.ingredient-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.ingredient-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ingredient-card:hover .ingredient-icon {
    transform: rotate(5deg) scale(1.05);
}

.ingredient-card:hover .ingredient-icon img {
    transform: scale(1.08);
}

.ingredient-info {
    flex: 1;
}

.ingredient-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.ingredient-card:hover .ingredient-name {
    color: #ffffff;
}

.ingredient-description {
    color: #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ingredient-card:hover .ingredient-description {
    opacity: 1;
}

.ingredients-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-closing-text {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .ingredients-showcase {
        column-gap: 4rem;
        max-width: 1300px;
    }

    .ingredients-bottle {
        max-width: 420px;
    }

    .ingredient-card {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .ingredients-showcase {
        column-gap: 3rem;
        padding: 0 2rem;
    }

    .ingredients-bottle {
        max-width: 360px;
    }

    .ingredient-card {
        max-width: 450px;
    }
}

@media (max-width: 1024px) {
    .ingredients-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 600px;
    }

    .ingredients-bottle {
        grid-column: 1;
        grid-row: 1;
        max-width: 250px;
        margin: 0 auto;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5 {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
    }

    .card-1 { grid-row: 2; }
    .card-2 { grid-row: 3; }
    .card-3 { grid-row: 4; }
    .card-4 { grid-row: 5; }
    .card-5 { grid-row: 6; }
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 3rem 1.5rem;
    }

    .ingredients-header {
        margin-bottom: 2.5rem;
    }

    .ingredients-title {
        font-size: 1.75rem;
    }

    .ingredients-subtitle {
        font-size: 0.95rem;
    }

    .ingredients-showcase {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .ingredients-bottle {
        max-width: 220px;
    }

    .ingredient-card {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
        gap: 1rem;
    }

    .card-2,
    .card-4 {
        flex-direction: column;
    }

    .ingredient-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .ingredient-name {
        font-size: 1rem;
    }

    .ingredient-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ingredients-section {
        padding: 2.5rem 1rem;
    }

    .ingredients-title {
        font-size: 1.5rem;
    }

    .ingredients-subtitle {
        font-size: 0.9rem;
    }

    .ingredients-showcase {
        gap: 1.25rem;
        padding: 0;
    }

    .ingredients-bottle {
        max-width: 200px;
    }

    .ingredient-card {
        padding: 1rem;
    }

    .ingredient-icon {
        width: 60px;
        height: 60px;
    }

    .ingredient-name {
        font-size: 0.95rem;
    }

    .ingredient-description {
        font-size: 0.8rem;
    }
}

/* ==================== Member Reviews Section ==================== */
.member-reviews-section {
    background: linear-gradient(135deg, #050505 0%, #7f1d1d 50%, #020202 100%),
                url('assets/heroback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.member-reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 40%, transparent 70%),
        rgba(10, 4, 4, 0.7);
    border-radius: 50%;
    pointer-events: none;
}

.member-reviews-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, rgba(239, 68, 68, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.member-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Additional Decorative Pattern */
.member-reviews-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(circle at 30% 40%, rgba(239, 68, 68, 0.06) 0%, rgba(239, 68, 68, 0.03) 30%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.04) 30%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
.member-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
}

.member-reviews-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, transparent);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.member-reviews-title-block {
    flex: 1;
}

.member-reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.member-reviews-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.member-reviews-subtitle {
    font-size: 1.1rem;
    color: #f9fafb;
    font-style: italic;
}

.member-reviews-intro {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin-top: 1.25rem;
    max-width: 900px;
    text-align: left;
}

.member-reviews-closing {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
}

.member-reviews-closing p {
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* Rating Summary */
.member-reviews-rating-summary {
    min-width: 320px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.member-reviews-rating-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.rating-score-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.rating-stars-wrapper {
    position: relative;
}

.rating-stars {
    font-size: 1.75rem;
    color: #ffffff;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.5));
}

.rating-count {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 1.25rem;
}

.rating-count strong {
    color: #ffffff;
    font-weight: 700;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-label {
    font-size: 0.875rem;
    color: #333333;
    min-width: 36px;
    font-weight: 500;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffb700);
    border-radius: 10px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.rating-number {
    font-size: 0.8rem;
    color: #333333;
    min-width: 45px;
    text-align: right;
    font-weight: 600;
}

/* Controls */
.member-reviews-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.search-wrap {
    flex: 1;
    position: relative;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #d1d5db;
    pointer-events: none;
}

.reviews-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 42px;
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #2a2010 0%, #1a1410 100%);
    color: #ffffff;
}

.reviews-search-input::placeholder {
    color: rgba(252, 165, 165, 0.5);
}

.reviews-search-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2), 0 4px 12px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #3a2818 0%, #2a1f15 100%);
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.reviews-sort-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 10px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #2a2010 0%, #1a1410 100%);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
}

.reviews-sort-select:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2), 0 4px 12px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #3a2818 0%, #2a1f15 100%);
}

/* Topics */
.member-reviews-topics {
    margin-bottom: 2rem;
}

.topics-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.875rem;
}

.topics-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topic-chip {
    padding: 0.5rem 1.125rem;
    border: 2px solid rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, #2a2010 0%, #1a1410 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.topic-chip:hover {
    border-color: #991b1b;
    background: linear-gradient(135deg, #3a2818 0%, #2a1f15 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.topic-chip.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-color: #d4a017;
    color: #ffffff;
    font-weight: 600;
}

.topic-chip.chip-secondary {
    border-color: rgba(212, 160, 23, 0.3);
    color: #d1d5db;
}

.topic-chip.chip-secondary:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #1a1208 0%, #0f0a05 100%);
    color: #ffffff;
}

.member-reviews-divider {
    height: 1px;
    background: rgba(239, 68, 68, 0.2);
    margin: 2rem 0;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

/* Review Items */
.member-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    background: linear-gradient(135deg, #1f0101 0%, #5b0b0b 50%, #1f0101 100%);
    border: 1px solid rgba(248, 250, 252, 0.4);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.review-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.review-item:hover {
    border-color: rgba(248, 250, 252, 0.9);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.8), 0 0 34px rgba(248, 250, 252, 0.2);
    transform: translateY(-4px);
    background: linear-gradient(135deg, #3b0202 0%, #7f1d1d 50%, #3b0202 100%);
}

.review-item:hover::before {
    opacity: 1.5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3), 0 0 12px rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
}

.review-item:hover .review-author-avatar {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4), 0 0 16px rgba(239, 68, 68, 0.25);
    transform: scale(1.05);
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.review-badges {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.verified-icon {
    flex-shrink: 0;
}

.verified-badge {
    font-size: 0.8rem;
    color: #d1d5db;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.review-date {
    font-size: 0.85rem;
    color: #d1d5db;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.85;
    color: #fdfdfd;
    margin-bottom: 1.35rem;
}

.review-text strong {
    color: #ffffff;
    font-weight: 600;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
}

.review-helpful-label {
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 500;
}

.review-helpful-actions {
    display: flex;
    gap: 0.75rem;
}

.helpful-button {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, #1a1208 0%, #0f0a05 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.helpful-button:hover:not(:disabled) {
    border-color: #ef4444;
    background: linear-gradient(135deg, #dc2626 0%, #dc2626 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.5);
}

.helpful-button.voted {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: #ffffff;
}

.helpful-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.helpful-button svg {
    width: 16px;
    height: 16px;
}

/* Pagination */
.member-reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 160, 23, 0.4);
}

.pagination-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, #2a2010 0%, #1a1410 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-button:hover:not(:disabled) {
    border-color: #ef4444;
    background: linear-gradient(135deg, #dc2626 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

.pagination-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, #2a2010 0%, #1a1410 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: #991b1b;
    background: linear-gradient(135deg, #3a2818 0%, #2a1f15 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.pagination-number.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

.pagination-dots {
    color: #d1d5db;
    font-weight: 600;
    padding: 0 0.25rem;
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .member-reviews-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .member-reviews-rating-summary {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .member-reviews-section {
        padding: 3rem 1.5rem;
    }
    
    .member-reviews-title {
        font-size: 2rem;
    }
    
    .member-reviews-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-wrap {
        max-width: 100%;
    }
    
    .sort-wrap {
        width: 100%;
        justify-content: space-between;
    }
    
    .reviews-sort-select {
        flex: 1;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-meta {
        align-items: flex-start;
        flex-direction: row;
        gap: 1rem;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .pagination-button {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .member-reviews-section {
        padding: 2.5rem 1rem;
    }
    
    .member-reviews-title {
        font-size: 1.75rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .review-item {
        padding: 1.25rem;
    }
    
    .pagination-numbers {
        gap: 0.25rem;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .pagination-button span {
        display: none;
    }
}

/* ==================== FAQ Section ==================== */
.faq-section {
    background: linear-gradient(135deg, #111111 0%, #7f1d1d 50%, #050505 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(223, 26, 36, 0.3);
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #282725;
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, #1b0505 0%, #4c0b0b 50%, #1b0505 100%);
    border: 2px solid #fef2f2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.faq-item.active {
    border-color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.85), 0 0 32px rgba(248, 250, 252, 0.18);
    background: linear-gradient(135deg, #3b0202 0%, #7f1d1d 50%, #3b0202 100%);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(223, 26, 36, 0.1);
}

.faq-item.active .faq-question {
    background: transparent;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #df1a24 0%, #ef4444 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid #df1a24;
}

.faq-item.active .faq-number {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
    color: #df1a24;
    box-shadow: 0 4px 16px rgba(223, 26, 36, 0.4), 0 0 20px rgba(223, 26, 36, 0.3);
    border-color: #df1a24;
}

.faq-question-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    transition: all 0.3s ease;
    margin: 0;
}

.faq-question-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.faq-item:hover .faq-question-text,
.faq-item:hover .faq-question-text h3 {
    color: #f9fafb;
}

.faq-item.active .faq-question-text,
.faq-item.active .faq-question-text h3 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(223, 26, 36, 0.3);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(223, 26, 36, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #df1a24;
}

.faq-icon svg {
    color: #df1a24;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: rgba(223, 26, 36, 0.25);
    border-color: #df1a24;
}

.faq-item:hover .faq-icon svg {
    color: #df1a24;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
    border-color: #df1a24;
    box-shadow: 0 2px 8px rgba(223, 26, 36, 0.3);
}

.faq-item.active .faq-icon svg {
    color: #df1a24;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.75rem 1.9rem 5.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f9fafb;
    margin: 0;
}

.faq-item.active .faq-answer p {
    color: #ffffff;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
        gap: 0.75rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem 3.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-header {
        margin-bottom: 2.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.625rem;
    }
    
    .faq-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .faq-question-text {
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 3rem;
        font-size: 0.9rem;
    }
}

/* ==================== Who Should Use It Section ==================== */
.who-should-use-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.who-should-use-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.who-should-use-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.who-should-use-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-should-use-header {
    text-align: center;
    margin-bottom: 3rem;
}

.who-should-use-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0 auto 3rem;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.who-should-use-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.who-should-use-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.who-should-use-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.who-should-use-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-should-use-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #ffd700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.who-should-use-item:hover {
    background: rgba(239, 68, 68, 0.12);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.who-should-use-check {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.who-should-use-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

.who-should-use-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(239, 68, 68, 0.3);
    transition: transform 0.3s ease;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
}

.who-should-use-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 68, 68, 0.4);
}

.who-should-use-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
    object-fit: cover;
}

.who-should-use-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.who-should-use-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.who-should-use-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.who-should-use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.use-case-card {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0d0d 50%, #1a0a0a 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(13, 148, 136, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.use-case-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover::after {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #dc2626 100%);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(8, 145, 178, 0.1) 50%, rgba(13, 148, 136, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(13, 148, 136, 0.25);
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, #ef4444 0%, #ef4444 50%, #fca5a5 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.6), 0 0 20px rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
}

.use-case-icon svg {
    color: rgba(220, 38, 38, 0.6);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.use-case-card:hover .use-case-icon svg {
    color: #ffffff;
}

.use-case-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.use-case-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

/* CTA Section */
.who-should-use-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1208 0%, #2a2010 50%, #1a1208 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 160, 23, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.who-should-use-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.who-should-use-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-button-large {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1200;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #e6c200 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive Design for Who Should Use */
@media (max-width: 1024px) {
    .who-should-use-content {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .who-should-use-section {
        padding: 3rem 1.5rem;
    }
    
    .who-should-use-title {
        font-size: 2rem;
    }
    
    .who-should-use-intro {
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }
    
    .who-should-use-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .who-should-use-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .who-should-use-image img {
        height: 400px;
    }
    
    .who-should-use-subtitle {
        font-size: 1.3rem;
    }
    
    .who-should-use-item {
        padding: 1.25rem;
    }
    
    .who-should-use-item p {
        font-size: 0.95rem;
    }
    
    .use-case-description {
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
    
    .cta-button-large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .who-should-use-section {
        padding: 2.5rem 1rem;
    }
    
    .who-should-use-header {
        margin-bottom: 3rem;
    }
    
    .who-should-use-title {
        font-size: 1.75rem;
    }
    
    .who-should-use-content {
        gap: 2.5rem;
    }
    
    .who-should-use-intro {
        font-size: 1rem;
    }
    
    .who-should-use-subtitle {
        font-size: 1.2rem;
    }
    
    .who-should-use-item {
        padding: 1rem;
    }
    
    .who-should-use-item p {
        font-size: 0.95rem;
    }
    
    .who-should-use-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button-large {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ==================== Money Back Guarantee Section ==================== */
.guarantee-section {
    background: radial-gradient(circle at top, #1a0505 0%, #3b0b0f 40%, #050505 100%);
    padding: 4.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="20%25" cy="20" r="150" fill="%2322d3ee22"/><circle cx="85%25" cy="85%25" r="180" fill="%23a5f3fc22"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.guarantee-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-box {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(26, 5, 5, 0.98), rgba(59, 11, 15, 0.96));
    border: 2px solid rgba(252, 211, 77, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.9), 0 0 40px rgba(248, 250, 252, 0.05), 0 0 60px rgba(252, 211, 77, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.guarantee-box:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 50px rgba(34, 211, 238, 0.3);
    transform: translateY(-4px);
}

.guarantee-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.75rem;
    background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), transparent 70%);
    position: relative;
    overflow: hidden;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.28) 0%, transparent 72%);
    animation: badgeGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.guarantee-badge-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(34, 211, 238, 0.4));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.guarantee-box:hover .guarantee-badge-image {
    transform: scale(1.08) rotate(2deg);
}

.badge-inner {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffd700 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.8),
            0 10px 30px rgba(0, 0, 0, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
}

.badge-text-top {
    font-size: 0.65rem;
    font-weight: 800;
    color: #1a1200;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.badge-text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.badge-percent {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1200;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.badge-separator {
    font-size: 1.2rem;
    color: #1a1200;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-text-bottom {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1200;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.guarantee-content {
    background: transparent;
    border-radius: 0;
    padding: 3rem 3.5rem;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.guarantee-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.01em;
}

.guarantee-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #22d3ee 0%, rgba(34, 211, 238, 0.6) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}

.guarantee-text-block {
    margin-bottom: 2.5rem;
    padding: 0;
    background: transparent;
    border-left: 4px solid #22d3ee;
    border-radius: 0;
    padding-left: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.guarantee-text-block p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #e5e7eb;
    margin: 0;
    font-weight: 400;
}

.guarantee-text-block strong {
    color: #ffffff;
    font-weight: 700;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.25);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantee-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #22d3ee, #06b6d4);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}

.guarantee-feature-item:hover {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.08) 100%);
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(34, 211, 238, 0.2);
}

.guarantee-check {
    color: #1a1300;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(248, 250, 252, 0.25), 0 0 18px rgba(250, 204, 21, 0.55);
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.guarantee-feature-item:hover .guarantee-check {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(248, 250, 252, 0.35), 0 0 24px rgba(250, 204, 21, 0.7);
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
}

.guarantee-feature-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    margin: 0;
    font-weight: 400;
}

/* Money Back Guarantee Responsive */
@media (max-width: 1024px) {
    .guarantee-section {
        padding: 3.5rem 1.75rem;
    }

    .guarantee-box {
        grid-template-columns: 220px 1fr;
    }

    .guarantee-content {
        padding: 2.5rem 2.75rem;
    }

    .guarantee-title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .guarantee-text-block {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 3rem 1.5rem;
    }

    .guarantee-box {
        grid-template-columns: 1fr;
    }

    .guarantee-badge {
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .guarantee-badge-image {
        max-width: 180px;
    }

    .guarantee-content {
        padding: 2.25rem 2rem 2.5rem;
        align-items: flex-start;
    }

    .guarantee-title {
        font-size: 1.7rem;
        text-align: left;
        margin-bottom: 1.25rem;
    }

    .guarantee-text-block {
        margin-bottom: 1.75rem;
        border-left-width: 3px;
        padding-left: 1.25rem;
    }

    .guarantee-text-block p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .guarantee-features {
        row-gap: 1.25rem;
    }

    .guarantee-feature-item {
        column-gap: 0.9rem;
        padding-right: 0.5rem;
    }

    .guarantee-feature-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 2.5rem 1.25rem;
    }

    .guarantee-box {
        border-radius: 18px;
    }

    .guarantee-badge {
        padding: 1.25rem 1.25rem 0.25rem;
    }

    .guarantee-badge-image {
        max-width: 150px;
    }

    .guarantee-content {
        padding: 2rem 1.5rem 2.25rem;
    }

    .guarantee-title {
        font-size: 1.45rem;
    }

    .guarantee-text-block {
        margin-bottom: 1.5rem;
        padding-left: 1rem;
    }

    .guarantee-text-block p {
        font-size: 0.9rem;
    }

    .guarantee-feature-item {
        align-items: flex-start;
    }

    .guarantee-feature-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .guarantee-check {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* How to Take Stallionx Section */
.how-to-take-section {
    background: linear-gradient(135deg, #3b0b0f 0%, #df1a24 45%, #3b0b0f 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-to-take-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 85% 85%, rgba(137, 135, 135, 0.22) 0%, transparent 55%);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.how-to-take-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-take-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
    letter-spacing: -0.02em;
}

.how-to-take-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.how-to-take-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.how-to-take-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.gummies-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(223, 26, 36, 0.5));
    transition: transform 0.4s ease;
}

.how-to-take-image:hover .gummies-image {
    transform: scale(1.05);
}

.how-to-take-Steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-to-take-Step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.16) 0%, rgba(254, 202, 202, 0.1) 100%);
    border: 2px solid rgba(223, 26, 36, 0.45);
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

/* How to Take Stallionx Responsive */
@media (max-width: 1024px) {
    .how-to-take-section {
        padding: 4.5rem 1.75rem;
    }

    .how-to-take-title {
        font-size: 2.4rem;
    }

    .how-to-take-intro {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }

    .how-to-take-content {
        gap: 3.5rem;
    }

    .gummies-image {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .how-to-take-section {
        padding: 3.5rem 1.5rem;
    }

    .how-to-take-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-to-take-image {
        order: -1;
        padding: 1.5rem 1.25rem 0;
    }

    .gummies-image {
        min-height: 320px;
    }

    .how-to-take-title {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }

    .how-to-take-intro {
        font-size: 1rem;
        margin-bottom: 2.75rem;
        max-width: 100%;
    }

    .how-to-take-Steps {
        gap: 1.5rem;
    }

    .how-to-take-Step {
        padding: 1.5rem;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .how-to-take-section {
        padding: 3rem 1.25rem;
    }

    .how-to-take-title {
        font-size: 1.8rem;
    }

    .how-to-take-intro {
        font-size: 0.95rem;
    }

    .how-to-take-image {
        padding: 1.25rem 0.75rem 0;
    }

    .gummies-image {
        min-height: 260px;
    }

    .how-to-take-Step {
        padding: 1.35rem 1.1rem;
        gap: 1rem;
    }

    .Step-number {
        font-size: 1.5rem;
    }

    .Step-title {
        font-size: 0.85rem;
    }

    .Step-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .how-to-take-note-text {
        font-size: 0.9rem;
    }
}

.how-to-take-Step:hover {
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.18) 0%, rgba(223, 26, 36, 0.1) 100%);
    border-color: rgba(223, 26, 36, 0.8);
    transform: translateX(5px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55), 0 0 30px rgba(223, 26, 36, 0.3);
}

.Step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-family: 'Arial Black', sans-serif;
}

.Step-content {
    flex: 1;
}

.Step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
}

.Step-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    margin: 0;
}

.how-to-take-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.2) 0%, rgba(254, 202, 202, 0.12) 100%);
    border-left: 4px solid rgba(223, 26, 36, 0.8);
    border-radius: 12px;
}

.how-to-take-note-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
    font-style: italic;
}

/* Generic list reset so LI items show without bullets */
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* How to Take Stallionx Section */
.how-to-take-section {
    background: linear-gradient(135deg, #0a1419 0%, #0f1a20 25%, #152028 50%, #0f1a20 75%, #0a1419 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-to-take-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><rect width="100%25" height="100%25" fill="none"/><circle cx="20%25" cy="20" r="150" fill="%2322d3ee22"/><circle cx="85%25" cy="85%25" r="180" fill="%23a5f3fc22"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.how-to-take-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-take-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
    letter-spacing: -0.02em;
}

.how-to-take-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.how-to-take-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.how-to-take-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.gummies-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(34, 211, 238, 0.3));
    transition: transform 0.4s ease;
}

.how-to-take-image:hover .gummies-image {
    transform: scale(1.05);
}

.how-to-take-Steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-to-take-Step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
    border: 2px solid rgba(34, 211, 238, 0.25);
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.how-to-take-Step:hover {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.08) 100%);
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 211, 238, 0.2);
}

.Step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-family: 'Arial Black', sans-serif;
}

.Step-content {
    flex: 1;
}

.Step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
}

.Step-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
    margin: 0;
}

.how-to-take-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
    border-left: 4px solid rgba(34, 211, 238, 0.4);
    border-radius: 12px;
}

.how-to-take-note-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
    font-style: italic;
}

/* Safety Information & Warnings Section */
.safety-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.references-section {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 40%, #dc2626 100%);
    padding: 3.25rem 2rem 3.5rem;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.references-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fef2f2;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.references-logos {
    margin-bottom: 1.5rem;
}

.references-logos-image {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.references-disclaimer {
    font-size: 0.85rem;
    color: #fee2e2;
    background: rgba(0, 0, 0, 0.35);
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    margin-bottom: 2rem;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.ref-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ref-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: transparent;
    border-radius: 0;
    padding: 0.25rem 0;
    color: #f9fafb;
    box-shadow: none;
    border: none;
}

.ref-index {
    font-weight: 800;
    font-size: 1rem;
    color: #fee2e2;
}

.ref-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 0.4rem 0;
}

.ref-link {
    font-size: 0.85rem;
    color: #fee2e2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ref-link:hover {
    color: #fffbeb;
}

@media (max-width: 768px) {
    .references-section {
        padding: 3rem 1.25rem 3.25rem;
    }

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

/* Footer */
.site-footer {
    background: #020617;
    padding: 2.75rem 1.5rem 2.5rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.75rem;
    margin-bottom: 1.75rem;
    background: transparent;
}

.footer-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.85;
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-link:hover {
    opacity: 1;
    color: #facc15;
}

.footer-check {
    color: #22c55e;
    font-size: 0.8rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-nav {
        gap: 0.7rem 1.25rem;
    }
}

.safety-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.safety-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    min-height: 320px;
    overflow: hidden;
}

.safety-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/safety.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.safety-image {
    display: none;
}

.safety-text {
    position: relative;
    z-index: 1;
    max-width: 60%;
    padding-right: 2rem;
}

.safety-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.safety-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #e5e7eb;
    margin: 0;
}

/* Safety Section Responsive */
@media (max-width: 768px) {
    .safety-section {
        padding: 2.5rem 1.5rem;
    }

    .safety-content {
        padding: 2rem;
        min-height: 250px;
    }

    .safety-content::before {
        opacity: 0.22;
        background-position: center;
    }

    .safety-text {
        max-width: 70%;
    }

    .safety-title {
        font-size: 1.5rem;
    }

    .safety-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .safety-section {
        padding: 2rem 1rem;
    }

    .safety-content {
        padding: 1.5rem;
        min-height: 220px;
    }

    .safety-content::before {
        opacity: 0.2;
    }

    .safety-text {
        max-width: 85%;
        padding-right: 1rem;
    }

    .safety-title {
        font-size: 1.35rem;
    }

    .safety-description {
        font-size: 0.9rem;
    }
}

/* Privacy & Secure Checkout Section */
.privacy-section {
    background: linear-gradient(135deg, #282725 0%, #898787 50%, #282725 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.privacy-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-content {
    position: relative;
    background: linear-gradient(135deg, rgba(40, 39, 37, 0.96) 0%, rgba(24, 24, 24, 0.96) 50%, rgba(40, 39, 37, 0.96) 100%);
    border: 2px solid rgba(223, 26, 36, 0.45);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-height: 320px;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/privacy.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    filter: brightness(0.9);
}

.privacy-text {
    position: relative;
    z-index: 1;
    max-width: 55%;
    padding-right: 2.5rem;
}

.privacy-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, rgba(223, 26, 36, 0.8), transparent);
    border-radius: 2px;
}

.privacy-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
}

/* Contact Support & Last Updated Section */
.support-updated-section {
    background: linear-gradient(135deg, #282725 0%, #1f2933 50%, #282725 100%);
    padding: 3.5rem 2rem 4rem;
}

.support-updated-container {
    max-width: 1100px;
    margin: 0 auto;
}

.support-updated-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.support-box,
.updated-box {
    background: linear-gradient(135deg, rgba(40, 39, 37, 0.98) 0%, rgba(24, 24, 24, 0.98) 50%, rgba(40, 39, 37, 0.98) 100%);
    border-radius: 18px;
    border: 1.5px solid rgba(223, 26, 36, 0.5);
    padding: 2.25rem 2.5rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
    position: relative;
    overflow: hidden;
}

.support-box::before,
.updated-box::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(223, 26, 36, 0.24), transparent 55%),
                radial-gradient(circle at bottom right, rgba(137, 135, 135, 0.22), transparent 55%);
    opacity: 1;
    pointer-events: none;
}

.updated-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.support-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.support-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: #fedc5a;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.support-link:hover {
    color: #ffed4e;
}

.updated-label {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.updated-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 1.5rem;
}

.updated-stamp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px dashed rgba(248, 250, 252, 0.85);
    position: relative;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
    background: radial-gradient(circle, rgba(251, 191, 36, 0.14), transparent 70%);
}

.updated-stamp::before {
    content: 'UPDATED';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .support-updated-section {
        padding: 3rem 1.5rem 3.5rem;
    }

    .support-updated-grid {
        grid-template-columns: 1fr;
    }

    .support-box,
    .updated-box {
        padding: 2rem 1.75rem;
    }

    .updated-box {
        align-items: center;
        text-align: center;
    }

    .updated-stamp {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .support-updated-section {
        padding: 2.5rem 1rem 3rem;
    }

    .support-title {
        font-size: 1.5rem;
    }

    .updated-date {
        font-size: 1.3rem;
    }

    .updated-stamp {
        width: 100px;
        height: 100px;
    }
}

.privacy-link {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #ffd700;
    text-decoration-color: #ffd700;
}

/* Privacy Section Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 3rem 1.5rem;
    }

    .privacy-content {
        padding: 2.5rem;
        min-height: 280px;
        border-radius: 18px;
    }

    .privacy-content::before {
        opacity: 0.25;
        background-position: center;
    }

    .privacy-text {
        max-width: 65%;
        padding-right: 2rem;
    }

    .privacy-title {
        font-size: 1.65rem;
    }

    .privacy-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 2.5rem 1rem;
    }

    .privacy-content {
        padding: 2rem;
        min-height: 240px;
        border-radius: 16px;
    }

    .privacy-content::before {
        opacity: 0.22;
    }

    .privacy-text {
        max-width: 80%;
        padding-right: 1.5rem;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-description {
        font-size: 0.95rem;
    }
}

.guarantee-highlight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-left: 4px solid #ffd700;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.guarantee-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee-highlight p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
}

.guarantee-highlight strong {
    color: #ffffff;
    font-weight: 700;
}

.guarantee-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(45, 212, 191, 0.3);
}

.guarantee-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1200;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 400px;
}

.guarantee-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #e6c200 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.guarantee-button:active {
    transform: translateY(-1px);
}

/* Responsive Design for Guarantee Section */
@media (max-width: 1024px) {
    .guarantee-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guarantee-badge {
        position: relative;
        top: 0;
    }

    .badge-inner {
        width: 240px;
        height: 240px;
    }

    .badge-percent {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 3rem 1.5rem;
    }

    .guarantee-content {
        padding: 2rem 1.5rem;
    }

    .guarantee-title {
        font-size: 1.75rem;
    }
    
    .guarantee-text-block {
        padding: 1.5rem;
    }
    
    .guarantee-feature-item {
        padding: 1.5rem;
    }
    
    .guarantee-check {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .guarantee-button {
        min-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .guarantee-badge-image {
        width: 200px;
    }

    .badge-inner {
        width: 200px;
        height: 200px;
        padding: 1.5rem;
    }

    .badge-percent {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 2.5rem 1rem;
    }

    .guarantee-content {
        padding: 1.5rem 1rem;
    }

    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .guarantee-text-block {
        padding: 1.25rem;
    }
    
    .guarantee-text-block p {
        font-size: 1rem;
    }
    
    .guarantee-feature-item {
        padding: 1.25rem;
    }
    
    .guarantee-feature-item p {
        font-size: 1rem;
    }
    
    .guarantee-check {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .guarantee-text-block p,
    .guarantee-highlight p {
        font-size: 0.95rem;
    }

    .guarantee-subtitle {
        font-size: 1.2rem;
    }

    .guarantee-badge-image {
        width: 180px;
    }

    .badge-inner {
        width: 180px;
        height: 180px;
        padding: 1rem;
    }

    .badge-percent {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .badge-text-top {
        font-size: 0.55rem;
    }

    .badge-text-bottom {
        font-size: 0.75rem;
    }
}

