/* ============================================
   VITAL REDS - ENERGETIC RED DESIGN
   Bold & Vibrant - High Energy Theme
   Mobile-First Responsive Styles
   ============================================ */

/* 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #DC2626;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Section Spacing */
section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #DC2626;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #EF4444, #F59E0B, #EF4444);
    border-radius: 3px;
}

.white-title {
    color: #ffffff;
}

.white-title:after {
    background: linear-gradient(90deg, #FCD34D, #FBBF24, #FCD34D);
}

/* Energetic Title Animation */
.energetic-title {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: energetic-fade-in 0.7s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes energetic-fade-in {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   NAVIGATION - BOLD RED THEME
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid #F59E0B;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #FCD34D;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FCD34D;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: #FCD34D;
    transform: translateY(-2px);
}

.cta-btn-nav {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 800;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.7);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #DC2626 0%, #B91C1C 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(220, 38, 38, 0.5);
        transition: right 0.3s ease;
        gap: 20px;
        border-left: 4px solid #F59E0B;
    }

    .nav-links.active {
        right: 0;
    }

    .cta-btn-nav {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ============================================
   HERO SECTION - EXPLOSIVE ENERGY
   ============================================ */
.hero-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 30%, #FCD34D 60%, #FBBF24 100%);
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

/* Animated Energy Rays */
.hero-section:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(220, 38, 38, 0.1) 50%, transparent 100%),
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(239, 68, 68, 0.15) 45deg, 
            transparent 90deg,
            rgba(239, 68, 68, 0.15) 135deg,
            transparent 180deg,
            rgba(239, 68, 68, 0.15) 225deg,
            transparent 270deg,
            rgba(239, 68, 68, 0.15) 315deg,
            transparent 360deg
        );
    transform: translate(-50%, -50%);
    animation: energy-rays 20s linear infinite;
}

@keyframes energy-rays {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Energy Particles */
.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    text-align: center;
    position: relative;
}

.energetic-frame {
    position: relative;
    display: inline-block;
    padding: 20px;
}

/* Pulsating Energy Rings */
.energy-ring {
    position: absolute;
    border: 4px solid;
    border-radius: 50%;
    opacity: 0;
    animation: energy-ring-pulse 3s ease-out infinite;
}

.ring-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-color: #EF4444;
    animation-delay: 0s;
}

.ring-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 330px;
    height: 330px;
    border-color: #F59E0B;
    animation-delay: 1s;
}

.ring-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-color: #FBBF24;
    animation-delay: 2s;
}

@keyframes energy-ring-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.product-bottle {
    max-width: 380px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.4));
    position: relative;
    z-index: 3;
}

.energetic-bounce {
    animation: energetic-bounce 2s ease-in-out infinite;
}

@keyframes energetic-bounce {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(-2deg);
    }
    75% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 16px;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-btn: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 ease;
}

.cta-btn:hover:before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.cta-btn:active {
    transform: translateY(-2px) scale(1.03);
}

.cta-btn-large {
    font-size: 18px;
    padding: 20px 44px;
}

.energetic-btn {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(239, 68, 68, 0.7), 0 0 50px rgba(245, 158, 11, 0.5);
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.trust-item {
    background: linear-gradient(135deg, #ffffff 0%, #FEF3C7 100%);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #DC2626;
    border: 2px solid #F59E0B;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Tablet */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
    }

    .trust-badges {
        justify-content: flex-start;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 42px;
    }
}

/* ============================================
   ENERGETIC CARDS
   ============================================ */
.energetic-card {
    background: #ffffff;
    border: 3px solid #FCD34D;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.energetic-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #DC2626, #EF4444, #F59E0B);
}

.energetic-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    border-color: #EF4444;
}

/* ============================================
   WHY CHOOSE US - VIBRANT ENERGY
   ============================================ */
.why-choose-section {
    background: linear-gradient(135deg, #ffffff 0%, #FEF3C7 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    margin-bottom: 15px;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.feature-icon img {
    max-width: 90px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(239, 68, 68, 0.3));
}

.feature-card h3 {
    color: #DC2626;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-card p {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is-section {
    background: #ffffff;
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.what-is-content p {
    color: #374151;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.what-is-image {
    text-align: center;
}

.image-energetic-frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: 20px;
    border: 4px solid #F59E0B;
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.3);
}

.image-energetic-frame img {
    border-radius: 15px;
}

@media (min-width: 768px) {
    .what-is-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* ============================================
   HOW IT WORKS - ACCORDION
   ============================================ */
.how-it-works-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #ffffff 100%);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.energetic-accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.energetic-accordion-item {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.energetic-accordion-item:hover {
    border-color: #EF4444;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.2);
    transform: translateX(10px);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
    text-transform: uppercase;
}

.accordion-header:hover {
    color: #DC2626;
}

.accordion-icon {
    transition: transform 0.3s ease;
    stroke: #EF4444;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: #374151;
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   CUSTOMER REVIEWS - EXPLOSIVE TESTIMONIALS
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F59E0B 100%);
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.energetic-review {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.energetic-review:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #DC2626, #EF4444, #F59E0B, #FBBF24);
}

.energetic-review:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
    border-color: #EF4444;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #F59E0B;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.5);
}

.review-info h4 {
    color: #1a1a1a;
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 800;
}

.review-location {
    color: #6B7280;
    font-size: 14px;
    font-weight: 700;
}

.star-rating {
    color: #F59E0B;
    font-size: 20px;
    margin-top: 5px;
    text-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
}

.review-text {
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PRICING SECTION - HIGH ENERGY
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #DC2626 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(239, 68, 68, 0.05) 10px,
            rgba(239, 68, 68, 0.05) 20px
        );
    opacity: 0.5;
}

.pricing-subtitle {
    text-align: center;
    font-size: 19px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    border-radius: 20px;
    padding: 30px;
    max-width: 550px;
    margin: 0 auto 3rem;
    text-align: center;
}

.energetic-timer {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    border: 4px solid #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timer-label {
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.energetic-timer-unit {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    padding: 18px 24px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    border: 3px solid #FCD34D;
}

.timer-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-text {
    font-size: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #ffffff;
}

.timer-separator {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.energetic-pricing {
    border: 4px solid #FCD34D;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.energetic-pricing:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
    border-color: #EF4444;
}

.energetic-pricing.featured {
    border: 5px solid #F59E0B;
    transform: scale(1.08);
    background: linear-gradient(135deg, #FEF3C7 0%, #ffffff 100%);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.5);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.energetic-badge {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.pricing-label {
    font-size: 15px;
    font-weight: 800;
    color: #EF4444;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-label {
    color: #F59E0B;
}

.pricing-package {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.pricing-supply {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-width: 220px;
    margin: 0 auto;
}

.pricing-price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.energetic-price {
    color: #DC2626;
}

.pricing-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 22px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 800;
}

.new-price {
    font-size: 34px;
    font-weight: 900;
    color: #DC2626;
}

.featured-price {
    color: #F59E0B;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-badge {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn {
    display: block;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.pricing-btn img {
    max-width: 220px;
    margin: 0 auto;
}

.pricing-btn:hover {
    transform: scale(1.15);
}

.featured-btn:hover {
    transform: scale(1.2);
}

.payment-logos {
    margin-top: 15px;
}

.payment-logos img {
    max-width: 220px;
    margin: 0 auto;
}

.rating-image {
    text-align: center;
    margin-top: 2rem;
}

.rating-image img {
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        grid-column: auto;
    }

    .timer-number {
        font-size: 56px;
    }
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients-section {
    background: linear-gradient(135deg, #ffffff 0%, #FEF3C7 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.energetic-ingredient {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.energetic-ingredient:hover {
    transform: translateX(15px) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.ingredient-card h3 {
    color: #DC2626;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
}

.ingredient-card p {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ============================================
   SCIENTIFIC EVIDENCE
   ============================================ */
.scientific-section {
    background: #ffffff;
}

.scientific-content {
    max-width: 900px;
    margin: 0 auto;
}

.scientific-item {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.energetic-science {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}

.energetic-science:hover {
    transform: translateX(20px);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.scientific-item h3 {
    color: #DC2626;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.scientific-item p {
    color: #374151;
    line-height: 1.8;
}

/* ============================================
   MONEY BACK GUARANTEE
   ============================================ */
.guarantee-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.guarantee-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee-image {
    text-align: center;
}

.guarantee-frame {
    display: inline-block;
    padding: 15px;
    background: #ffffff;
    border-radius: 20px;
    border: 4px solid #F59E0B;
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.3);
}

.energetic-guarantee-frame {
    border-color: #EF4444;
}

.guarantee-frame img {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 15px;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-point {
    padding: 25px;
    border-radius: 15px;
}

.energetic-guarantee {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.15);
}

.guarantee-point h3 {
    color: #DC2626;
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
}

.guarantee-point p {
    color: #374151;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantee-container {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.energetic-benefit {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.energetic-benefit:hover {
    transform: translateX(20px) scale(1.03);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: 26px;
    color: #ffffff;
}

.energetic-icon {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.benefit-text h3 {
    color: #1a1a1a;
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.benefit-text p {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.energetic-faq .faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.energetic-faq-item {
    background: #ffffff;
    border: 3px solid #FCD34D;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.energetic-faq-item:hover {
    border-color: #EF4444;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.3s ease;
    min-height: 48px;
    text-align: left;
    text-transform: uppercase;
}

.faq-question:hover {
    color: #DC2626;
}

.faq-icon {
    transition: transform 0.3s ease;
    stroke: #EF4444;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #374151;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 700px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 24px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F59E0B 100%);
    overflow: hidden;
    position: relative;
}

.cta-energy-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.energy-burst {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: burst-pulse 5s ease-in-out infinite;
}

.burst-1 {
    top: -10%;
    left: -10%;
}

.burst-2 {
    top: 40%;
    right: -15%;
    animation-delay: -2s;
}

.burst-3 {
    bottom: -15%;
    left: 35%;
    animation-delay: -4s;
}

@keyframes burst-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-image {
    position: relative;
}

.final-energetic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: energetic-glow-pulse 4s ease-in-out infinite;
}

@keyframes energetic-glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

.final-product-img {
    max-width: 380px;
    margin: 0 auto;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
}

.energetic-spin {
    animation: energetic-spin 4s ease-in-out infinite;
}

@keyframes energetic-spin {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-20px);
    }
}

.final-cta-content {
    color: #ffffff;
}

.final-cta-title {
    font-size: 28px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.final-regular-price {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-decoration: line-through;
}

.final-special-price {
    font-size: 42px;
    font-weight: 900;
    color: #FCD34D;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.final-cta-btn {
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    color: #1a1a1a;
}

.final-cta-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

@media (min-width: 768px) {
    .final-cta-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .final-pricing {
        align-items: flex-start;
    }

    .final-cta-btn {
        margin: 0 0 1rem 0;
    }

    .final-cta-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 44px;
    }

    .final-special-price {
        font-size: 52px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #DC2626 100%);
    color: white;
    padding: 50px 0 30px;
    border-top: 5px solid #F59E0B;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #FCD34D;
}

.footer-separator {
    color: #9CA3AF;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #D1D5DB;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.6);
}

.footer-copyright p {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 700;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    font-size: 28px;
    font-weight: 900;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-8px) rotate(-10deg);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.7);
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
