/* ===================================
   MEMOFORCE - BOLD & ENERGETIC DESIGN
   CSS RESET & BASE STYLES
   =================================== */
   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

input, select, textarea {
    font-size: 16px;
    font-family: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    border-radius: 10px;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 19px);
    text-align: center;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* ===================================
   BOLD ANIMATIONS
   =================================== */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        transform: scale(0.9) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    60% {
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-2deg);
    }
    75% {
        transform: translateX(10px) rotate(2deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.5),
                    0 0 40px rgba(245, 158, 11, 0.3),
                    0 0 60px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.8),
                    0 0 60px rgba(245, 158, 11, 0.6),
                    0 0 90px rgba(16, 185, 129, 0.4);
    }
}

@keyframes rotate3d {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

@keyframes zigzag {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(-10px);
    }
    75% {
        transform: translateY(15px) translateX(10px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.3);
    }
}

.animate-float {
    animation: zigzag 4s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceIn 1s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   SECTION 1: NAVIGATION - BOLD STYLE
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 4px solid #EF4444;
}

.header.scrolled {
    padding: 4px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 4px solid #F59E0B;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.logo-icon {
    font-size: 36px;
    animation: sparkle 2s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #F59E0B;
    transform: translateY(-2px);
}

.btn-nav-cta {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
    border: 2px solid transparent;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.6);
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid #F59E0B;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu ul {
    padding: 30px 20px;
}

.mobile-menu li {
    padding: 18px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #F59E0B;
    transform: translateX(10px);
}

.mobile-cta {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white !important;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    margin-top: 16px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links,
    .btn-nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

/* ===================================
   SECTION 2: HERO - BOLD & ENERGETIC
   =================================== */

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate3d 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate3d 25s linear infinite reverse;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInBounce 1s ease-out;
}

.product-bottle {
    position: relative;
    z-index: 2;
    max-width: 400px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-bottle:hover {
    transform: scale(1.05) rotate(5deg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, 
        rgba(239, 68, 68, 0.3) 0%, 
        rgba(245, 158, 11, 0.2) 40%, 
        rgba(16, 185, 129, 0.1) 70%, 
        transparent 100%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    animation: slideInBounce 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(36px, 7vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 22px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 900;
    margin-top: 28px;
    min-height: 60px;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
    overflow: hidden;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-cta:hover::before {
    left: 100%;
}

.btn-hero-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.6);
    animation: shake 0.5s ease-in-out;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover .arrow-icon {
    transform: translateX(8px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    border: 3px solid #EF4444;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.badge:hover {
    transform: translateY(-5px) rotate(-2deg);
    border-color: #F59E0B;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.badge svg {
    color: #EF4444;
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .product-bottle {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .btn-hero-cta {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .hero-badges {
        justify-content: center;
    }
}

/* ===================================
   SECTION 3: WHY CHOOSE - GEOMETRIC
   =================================== */

.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
}

.why-choose .section-title {
    color: #ffffff;
}

.why-choose .section-subtitle {
    color: #cbd5e0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #EF4444;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transition: left 0.5s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    border-color: #F59E0B;
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.4);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.why-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
    font-weight: 500;
}

/* Mobile Why Choose */
@media (max-width: 768px) {
    .why-choose {
        padding: 70px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   SECTION 4: WHAT IS - ANGULAR DESIGN
   =================================== */

.what-is {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.what-is::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.what-is-content h2 {
    text-align: left;
    margin-bottom: 28px;
}

.what-is-content h2::after {
    left: 0;
    transform: none;
}

.what-is-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 22px;
    font-weight: 500;
}

.what-is-image {
    position: relative;
}

.what-is-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    z-index: 1;
}

.what-is-image img {
    position: relative;
    z-index: 2;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.what-is-image:hover img {
    transform: translate(10px, -10px);
}

/* Mobile What Is */
@media (max-width: 768px) {
    .what-is {
        padding: 70px 0;
    }
    
    .what-is::before {
        display: none;
    }
    
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-is-image {
        order: -1;
    }
    
    .what-is-content h2 {
        text-align: center;
    }
    
    .what-is-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===================================
   SECTION 5: HOW IT WORKS - BOLD ACCORDION
   =================================== */

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.accordion {
    max-width: 950px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 0;
    margin-bottom: 20px;
    border: 3px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.accordion-item:hover {
    border-color: #EF4444;
    transform: translateX(10px);
}

.accordion-item.active {
    border-color: #F59E0B;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.accordion-header h3 {
    font-size: 19px;
    font-weight: 900;
    color: #ffffff;
    flex: 1;
    text-align: left;
    margin: 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-icon {
    font-size: 32px;
    animation: sparkle 2s ease-in-out infinite;
}

.chevron {
    transition: transform 0.3s ease;
    color: #F59E0B;
    stroke-width: 3px;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
    color: #10B981;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-content p {
    padding: 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Mobile How It Works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 70px 0;
    }
    
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .accordion-icon {
        font-size: 26px;
    }
}

/* ===================================
   SECTION 6: REVIEWS - ENERGETIC CARDS
   =================================== */

.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
}

.reviews .section-title {
    color: #ffffff;
}

.reviews .section-subtitle {
    color: #cbd5e0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.review-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
    border: 3px solid #EF4444;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.review-card:hover::before {
    transform: rotate(180deg);
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.4);
    border-color: #F59E0B;
}

.review-header {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F59E0B;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.review-info h3 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-location {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 10px;
    font-weight: 600;
}

.review-stars {
    color: #F59E0B;
    font-size: 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.review-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* Mobile Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 70px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   SECTION 7 & 12: PRICING - BOLD STYLE
   =================================== */

.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.countdown-timer {
    max-width: 550px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid #EF4444;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    animation: pulse-glow 2s ease-in-out infinite;
}

.timer-label {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    padding: 20px 28px;
    border-radius: 0;
    min-width: 110px;
    text-align: center;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.timer-colon {
    font-size: 56px;
    font-weight: 900;
    color: #F59E0B;
    animation: sparkle 1s ease-in-out infinite;
}

.timer-label-small {
    color: #cbd5e0;
    font-size: 14px;
    font-weight: 800;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #ffffff;
    border: 4px solid #1a1a1a;
    border-radius: 0;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.pricing-card:hover {
    transform: translateY(-20px) rotate(-3deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: #EF4444;
}

.pricing-card.featured {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(245, 158, 11, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) scale(1.08) rotate(3deg);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    animation: bounceIn 1s ease-out;
}

.pricing-label {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.pricing-bottles {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-supply {
    font-size: 15px;
    color: #718096;
    margin-bottom: 28px;
    font-weight: 700;
}

.pricing-image {
    margin: 25px 0;
}

.pricing-image img {
    max-width: 200px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
    transform: rotate(360deg) scale(1.1);
}

.pricing-amount {
    margin: 25px 0;
}

.price-per {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    display: block;
    font-size: 15px;
    color: #718096;
    margin-top: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-total {
    margin: 20px 0;
}

.original-price {
    font-size: 26px;
    color: #cbd5e0;
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 800;
}

.sale-price {
    font-size: 38px;
    font-weight: 900;
    color: #10B981;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.bonus-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-pricing {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 900;
    margin: 25px 0;
    min-height: 56px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-pricing:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.payment-logos {
    margin-top: 20px;
    opacity: 0.8;
}

.rating-section {
    text-align: center;
    margin-top: 50px;
}

/* Mobile Pricing */
@media (max-width: 576px) {
    .pricing {
        padding: 70px 0;
    }
    
    .countdown-timer {
        margin-bottom: 50px;
        padding: 25px;
    }
    
    .timer-number {
        font-size: 42px;
        padding: 16px 22px;
        min-width: 90px;
    }
    
    .timer-colon {
        font-size: 42px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-20px) scale(1) rotate(3deg);
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Continue with remaining sections... */

/* ===================================
   SECTION 8: INGREDIENTS - SHARP DESIGN
   =================================== */

.ingredients {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.ingredient-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 0;
    border-left: 6px solid #EF4444;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
}

.ingredient-card:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #F59E0B;
}

.ingredient-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 500;
}

/* Mobile Ingredients */
@media (max-width: 768px) {
    .ingredients {
        padding: 70px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SECTION 9: SCIENTIFIC EVIDENCE
   =================================== */

.scientific-evidence {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.scientific-evidence .section-title {
    color: #ffffff;
}

.scientific-evidence .section-subtitle {
    color: #cbd5e0;
}

.evidence-content {
    max-width: 950px;
    margin: 0 auto;
}

.evidence-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 38px;
    border-radius: 0;
    margin-bottom: 28px;
    border-left: 6px solid #F59E0B;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.evidence-section:hover {
    transform: translateX(15px);
    border-left-color: #10B981;
}

.evidence-section h3 {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evidence-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #cbd5e0;
    font-weight: 500;
}

/* Mobile Scientific Evidence */
@media (max-width: 768px) {
    .scientific-evidence {
        padding: 70px 0;
    }
    
    .evidence-section {
        padding: 28px;
    }
    
    .evidence-section h3 {
        font-size: 22px;
    }
}

/* ===================================
   SECTION 10: GUARANTEE - BOLD
   =================================== */

.guarantee {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: center;
}

.guarantee-image {
    position: relative;
}

.guarantee-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: 25px;
    bottom: 25px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    z-index: 1;
}

.guarantee-image img {
    position: relative;
    z-index: 2;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.guarantee-image:hover img {
    transform: translate(10px, -10px) rotate(-2deg);
}

.guarantee-point {
    display: flex;
    gap: 24px;
    margin-bottom: 38px;
    align-items: flex-start;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    flex-shrink: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guarantee-point h3 {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-point p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    font-weight: 500;
}

/* Mobile Guarantee */
@media (max-width: 768px) {
    .guarantee {
        padding: 70px 0;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .guarantee-image {
        order: -1;
    }
    
    .guarantee-point {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ===================================
   SECTION 11: BENEFITS - ENERGETIC
   =================================== */

.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.benefits .section-title {
    color: #ffffff;
}

.benefits .section-subtitle {
    color: #cbd5e0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 32px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    border: 3px solid #EF4444;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.benefit-item:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: #F59E0B;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(180deg) scale(1.1);
}

.benefit-content h3 {
    font-size: 21px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e0;
    font-weight: 500;
}

/* Mobile Benefits */
@media (max-width: 768px) {
    .benefits {
        padding: 70px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 24px;
    }
}

/* ===================================
   SECTION 13: FAQ - BOLD ACCORDION
   =================================== */

.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid #1a1a1a;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #EF4444;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    min-height: 48px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-question h3 {
    font-size: 19px;
    font-weight: 900;
    color: #1a1a1a;
    flex: 1;
    margin: 0;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-item.active .chevron {
    color: #F59E0B;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 700px;
}

.faq-answer p {
    padding: 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    font-weight: 500;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 70px 0;
    }
    
    .faq-question {
        padding: 22px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 22px;
        font-size: 15px;
    }
}

/* ===================================
   SECTION 16: FINAL CTA - EXPLOSIVE
   =================================== */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: rotate3d 30s linear infinite;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-animation-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-animation-wrapper img {
    position: relative;
    z-index: 2;
    max-width: 380px;
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.4));
    animation: bounceIn 1.2s ease-out;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

.final-cta-text h2 {
    font-size: clamp(32px, 6vw, 50px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 38px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.final-price {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 0;
    margin-bottom: 38px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.price-strike {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.price-strike span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.strike-amount {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.price-special {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-special span:first-child {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.special-amount {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 24px 48px;
    border-radius: 0;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 28px;
    min-height: 64px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-final-cta:hover {
    transform: translateY(-5px) scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: shake 0.5s ease-in-out;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.urgency-text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile Final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 70px 0;
    }
    
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .cta-animation-wrapper img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }
    
    .final-price {
        text-align: center;
    }
    
    .price-strike,
    .price-special {
        justify-content: center;
    }
}

/* ===================================
   SECTION 17: FOOTER - BOLD
   =================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 70px 0 25px;
    border-top: 5px solid #EF4444;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-column a:hover {
    color: #F59E0B;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #EF4444;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    transform: translateY(-5px) rotate(10deg);
    border-color: #F59E0B;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 0;
    margin-bottom: 28px;
    border-left: 4px solid #F59E0B;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ===================================
   SCROLL TO TOP - BOLD BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    border: 3px solid #ffffff;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.7);
}

/* Mobile Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 54px;
        height: 54px;
    }
}

/* ===================================
   PURCHASE NOTIFICATION - BOLD
   =================================== */

.purchase-notification {
    position: fixed;
    bottom: 35px;
    left: 35px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0;
    padding: 20px 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transform: translateX(-450px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 380px;
    border: 3px solid #10B981;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.notification-icon {
    font-size: 32px;
}

.notification-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 600;
}

.notification-text strong {
    font-weight: 900;
    color: #10B981;
    text-transform: uppercase;
}

/* Mobile Purchase Notification */
@media (max-width: 768px) {
    .purchase-notification {
        left: 50%;
        bottom: 25px;
        transform: translateX(-50%) translateY(200px);
        max-width: calc(100% - 40px);
    }
    
    .purchase-notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* ===================================
   ADDITIONAL RESPONSIVE BREAKPOINTS
   =================================== */

/* Small phones (320px - 479px) */
@media (max-width: 479px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Large desktops (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 4px solid #F59E0B;
    outline-offset: 3px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    body {
        background: white;
    }
    
    .gradient-text {
        -webkit-text-fill-color: #EF4444;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* GPU acceleration */
.animate-float,
.animate-bounce-slow,
.pulse-animation,
.product-bottle,
.pricing-card,
.review-card,
.why-card,
.benefit-item {
    will-change: transform;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .scroll-to-top,
    .purchase-notification,
    .btn-hero-cta,
    .btn-pricing,
    .btn-final-cta,
    .pricing,
    .countdown-timer {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* ===================================
   END OF BOLD & ENERGETIC CSS
   =================================== */
