/* =========================================================
   MAX FORCE™ OFFICIAL STYLESHEET
   Clean Reset, Uniform Typography & Consistent Theming
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --secondary-color: #0b132b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #0b132b;
    --light-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;

    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-btn: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-dark-card: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);

    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 14px 20px -4px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 24px 36px -6px rgba(0, 0, 0, 0.25);
}

img {
    image-rendering: -webkit-optimize-contrast;
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    touch-action: manipulation;
}

@media (min-width: 992px) {
    html {
        font-size: 17px;
    }
}

body {
    width: 100%;
    position: relative;
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: #ffffff;
    overflow-x: hidden;
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
}

/* =========================================================
   NAVIGATION
========================================================= */

.glass-nav {
    background: #0b132b;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.glass-nav.scrolled {
    background: #0b132b;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.navbar-collapse {
    background: transparent;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.4rem 0.6rem !important;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.special-price-ribbon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff !important;
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-gradient {
    background: var(--gradient-btn);
    border: none;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    color: #ffffff !important;
}

.btn-outline-warning {
    border: 2px solid #f59e0b;
    color: #f59e0b !important;
    border-radius: 30px;
    padding: 0.55rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-warning:hover {
    background: #f59e0b;
    color: #0b132b !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}

.navbar-toggler {
    padding: 0;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    width: 32px;
    height: 32px;
}

.hamburger-icon {
    display: block;
    width: 22px;
    height: 16px;
    position: relative;
    margin: 0 auto;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) { top: 0px; }
.hamburger-icon span:nth-child(2) { top: 7px; }
.hamburger-icon span:nth-child(3) { top: 14px; }

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-135deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #0b132b;
        padding: 1.25rem;
        border-radius: 16px;
        margin-top: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        align-items: stretch;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-link::after {
        display: none;
    }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
    background: #0b132b;
}

.hero-background {
    background: #0b132b;
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.9) 100%), radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.25) 0%, transparent 60%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 8%; animation-delay: 0s; }
.floating-element:nth-child(2) { width: 100px; height: 100px; top: 65%; right: 8%; animation-delay: 2s; }
.floating-element:nth-child(3) { width: 50px; height: 50px; top: 25%; right: 25%; animation-delay: 4s; }
.floating-element:nth-child(4) { width: 70px; height: 70px; bottom: 15%; left: 20%; animation-delay: 1s; }
.floating-element:nth-child(5) { width: 45px; height: 45px; top: 85%; left: 55%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(220, 38, 38, 0.15);
    backdrop-filter: blur(12px);
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ff4d4d 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.25;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reviews-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    padding: 1.2rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.reviews-text strong {
    color: #f59e0b;
    font-weight: 900;
    font-size: 1.4rem;
}

.reviews-stars {
    color: #fbbf24;
    font-size: 1.4rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-left: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.product-wrapper {
    position: relative;
}

.product-showcase {
    position: relative;
    display: inline-block;
}

.product-showcase img {
    max-width: 580px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}

.product-glow {
    position: absolute;
    inset: -10%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.65;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

/* =========================================================
   BUTTONS
========================================================= */

.order-btn-unique {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-btn);
    color: #ffffff !important;
    border: 2px solid #ff4d4d;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 36px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    animation: glowPulse 3s infinite;
}

.order-btn-unique::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: autoShine 3.5s linear infinite;
}

@keyframes autoShine {
    0% { left: -120%; }
    100% { left: 140%; }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.8); }
    100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.4); }
}

.order-btn-unique:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.8);
    color: #ffffff !important;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================================
   MAX FORCE™ PRODUCT HIGHLIGHT SECTION
========================================================= */

.product-bg-section {
    position: relative;
    padding: 90px 0;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(11, 19, 43, 0.04) 0%, transparent 50%);
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-bg-section .text-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.product-bg-section .mbr-section-title.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #0b132b !important;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    margin-bottom: 1.5rem;
}

.product-bg-section .mbr-section-title.display-1 strong {
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-bg-section .mbr-section-title.display-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 5px;
    border-radius: 10px;
    background: linear-gradient(90deg, #dc2626 0%, #f59e0b 100%);
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.45);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-bg-section .text-wrapper:hover .mbr-section-title.display-1::after {
    width: 140px;
}

.product-bg-section .mbr-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155 !important;
    margin-bottom: 1.5rem;
}

.product-bg-section .mbr-text strong {
    color: #0b132b;
}

.product-bg-section .image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-animate {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.product-animate:hover {
    transform: translateY(-8px) scale(1.02);
}

.simple-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    border: 2px solid #ff4d4d;
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.simple-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: simpleBtnShine 3.5s linear infinite;
}

@keyframes simpleBtnShine {
    0% { left: -120%; }
    100% { left: 140%; }
}

.simple-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 35px rgba(239, 68, 68, 0.6);
    color: #ffffff !important;
}

.simple-btn:active {
    transform: scale(0.98);
}

/* =========================================================
   WHY CHOOSE SECTION & TRUST BADGES
========================================================= */

.why-choose-section {
    padding: 0 0 4rem 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.section-header {
    background: #0b132b;
    text-align: center;
    position: relative;
    padding: 2.5rem 0;
    box-shadow: var(--shadow-md);
}

.section-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
}

.section-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.why-choose-section .benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 2rem auto;
    padding: 0;
}

.why-choose-section .benefits-list li {
    list-style: none;
    width: 33.33%;
    padding: 0.85rem 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b132b;
    text-align: left;
}

.why-choose-section .benefits-list li::before {
    content: "✔";
    color: #dc2626;
    font-weight: 900;
    font-size: 1.3rem;
    margin-right: 10px;
}

.why-choose-section .trust-box {
    border: 3px solid #e2e8f0;
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
    background: #f8fafc;
    box-shadow: var(--shadow-sm);
    gap: 1.5rem 0;
}

.why-choose-section .trust-item img {
    max-width: 100px;
    margin: 0.5rem auto 1rem;
}

.why-choose-section .trust-item h6 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0b132b;
}

.why-choose-section .trust-item p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================================================
   WHAT IS SECTION
========================================================= */

.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.section-header-red {
    background: #0b132b;
    text-align: center;
    position: relative;
    padding: 2.5rem 0;
}

.section-header-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
}

.section-title-red {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0;
    position: relative;
    z-index: 2;
}

.what-is-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.what-is-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.what-is-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.what-is-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-is-image-wrapper:hover .what-is-image { transform: scale(1.04); }

.what-is-description {
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.25rem;
}

.what-is-highlights {
    margin: 2rem 0;
    padding: 1.8rem 2rem;
    background: #f8fafc;
    border-radius: 18px;
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem 0;
    color: #0b132b;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.highlight-item i {
    font-size: 1.35rem;
    flex-shrink: 0;
}

/* =========================================================
   HOW IT WORKS MECHANISMS
========================================================= */

.how-it-works-intro {
    margin-bottom: 3.5rem;
    text-align: center;
}

.intro-text {
    font-size: clamp(1.15rem, 2.5vw, 1.3rem);
    color: #334155;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 600;
}

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mechanism-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.2rem;
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mechanism-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #fee2e2;
}

.mechanism-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.mechanism-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.mechanism-header h4 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #0b132b;
    margin: 0;
}

.mechanism-description {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

.summary-card {
    background: var(--gradient-dark-card);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.summary-header i {
    color: #ef4444;
}

.summary-header h4 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 900;
    color: #ffffff;
}

.summary-text {
    font-size: 1.15rem;
    color: #f1f5f9;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================================
   REVIEWS & TESTIMONIALS
========================================================= */

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #fee2e2;
}

.avatar-image {
    width: 400px;
    height: auto;
    
    object-fit: cover;
    
    box-shadow: var(--shadow-md);
}

.reviewer-info {
    margin-bottom: 0.75rem;
}

.reviewer-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 0.3rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-text {
    color: #10b981;
    font-weight: 800;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin: 0;
    padding-left: 1.2rem;
    border-left: 4px solid #dc2626;
}

.reviews-summary {
    background: #0b132b;
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 18px;
    padding: 1.8rem 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ff4d4d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.05rem;
    color: #cbd5e1;
    font-weight: 700;
}

.reviews-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.reviews-cta p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* =========================================================
   PRICING & BOTTLES SECTION
========================================================= */

.bottles-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 10% 10%, rgba(220, 38, 38, 0.05), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05), transparent 40%),
                #f8fafc;
    overflow: hidden;
}

.bottles-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 900;
    color: #0b132b;
}

.highlight-hero {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    width: 340px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 22px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #fca5a5;
}

.pricing-card.featured {
    border: 3px solid #dc2626;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    padding: 16px 20px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.card-header.dark {
    background: #0b132b;
}

.card-header.light {
    background: var(--gradient-btn);
}

.card-body {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 1rem;
}

.product-img {
    display: block;
    width: 100%;
    max-width: 250px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.product-img.multiple {
    max-width: 280px;
}

.pricing-card:hover .product-img {
    transform: scale(1.05);
}

.price {
    font-size: 3.2rem;
    font-weight: 950;
    color: #0b132b;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.price span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
}

.offer-benefits {
    margin: 1rem 0;
    padding: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
}

.offer-benefits p {
    margin: 4px 0;
    color: #991b1b;
    font-size: 0.95rem;
    font-weight: 800;
}

.shipping-text {
    color: #64748b;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.shipping-text.free {
    color: #059669;
    font-weight: 900;
}

.btn-primary-outline,
.btn-primary-solid {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 1rem;
}

.btn-primary-outline {
    color: #dc2626;
    background: #ffffff;
    border: 2px solid #dc2626;
}

.btn-primary-outline:hover {
    background: #dc2626;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary-solid {
    color: #ffffff !important;
    background: var(--gradient-btn);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.btn-primary-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.5);
}

.today-price {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.today-price strong {
    color: #0b132b;
    font-size: 1.3rem;
    font-weight: 900;
}

.payment-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.secure-payment-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

//* Ingredients & Scientific Evidence */
.ingredients-section { padding: 80px 0; background: #ffffff; text-align: center; }

.evidence-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.evidence-item:hover { transform: translateY(-4px); border-color: var(--primary-color); box-shadow: var(--shadow-xl); }

.ingredient-number {
    flex-shrink: 0; width: 55px; height: 50px;
    background: #011643; color: #ffffff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; font-weight: 900; margin-right: 1.2rem;
}

.ingredient-title { font-size: clamp(1.35rem, 3vw, 1.6rem); font-weight: 800; color: #011643; }

.evidence-block, .mechanism-block {
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #f1f5f9;
    margin-top: 1rem;
}

.evidence-label, .mechanism-label { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-bottom: 0.5rem; }
.evidence-text, .mechanism-text { color: #334155; line-height: 1.7; font-size: 1.1rem; text-align: justify; }


/* =========================================================
   FORMULATION & GUARANTEE SECTION
========================================================= */

.formulation-section {
    padding: 5rem 0;
    background: #ffffff;
}

.formulation-title {
    font-size: clamp(2rem, 4.5vw, 2.6rem);
    font-weight: 900;
    color: #0b132b;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-circle {
    width: 65px;
    height: 65px;
    background: #0b132b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    background: #dc2626;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.step-arrow {
    color: #cbd5e1;
    font-size: 1.5rem;
}

.guarantee-section {
    background: var(--gradient-dark-card);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-xl);
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-badge-container {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.guarantee-badge-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guarantee-main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.guarantee-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: #f59e0b;
}

.point-content {
    color: #f8fafc;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* =========================================================
   FAQ ACCORDIONS
========================================================= */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b132b;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    border-top: 1px solid #f1f5f9;
}

/* =========================================================
   FINAL CTA & FOOTER
========================================================= */

.security-cta-section {
    background: #ffffff;
    padding: 60px 0 100px;
}

.security-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.security-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 1rem;
}

.security-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
}

.support-email {
    color: #dc2626;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.15rem;
}

.cta-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #0b132b;
}

.btn-final-order {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.legal-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

.footer-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.urgency-banner {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

#scrollToTop {
    position: fixed;
    bottom: calc(75px + env(safe-area-inset-bottom));
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    display: none;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

#scrollToTop:hover {
    transform: translateY(-4px);
    background-color: #b91c1c;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS & MOBILE ADJUSTMENTS
========================================================= */

@media (max-width: 991px) {
    .product-bg-section {
        padding: 60px 0;
    }

    .product-overlay {
        background: rgba(255, 255, 255, 0.95);
    }

    .product-bg-section .text-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .product-bg-section .mbr-text {
        text-align: left;
    }

    .product-animate {
        margin: 20px auto !important;
    }

    .product-bg-section .mbr-section-title.display-1 {
        text-align: center;
        display: block;
    }

    .product-bg-section .mbr-section-title.display-1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-arrow {
        display: none;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-badge-container {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .why-choose-section .benefits-list li {
        width: 100%;
        text-align: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 380px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .review-item {
        flex-direction: column;
        text-align: center;
    }

    .avatar-image {
        margin: 0 auto;
    }

    .review-text {
        padding-left: 0;
        border-left: none;
    }

    .review-rating {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-bg-section {
        padding: 45px 0;
    }

    .product-bg-section .mbr-section-title.display-1 {
        font-size: 2rem;
    }

    .product-bg-section .mbr-text {
        font-size: 1.05rem;
    }

    .simple-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
}