/* =====================================================
   SUPREME MALE ALPHA GUMMIES - STYLES.CSS
   Mobile-First Responsive Design
   Design Style: Bold & Energetic
   ===================================================== */

/* ===== 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION SPACING ===== */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

/* ===== TYPOGRAPHY ===== */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subheading {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .section-subheading {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 42px;
    }
}

/* ===== CTA BUTTON STYLES ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    min-height: 48px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.cta-btn:active {
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .cta-btn {
        width: 100%;
        padding: 18px 24px;
    }
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    font-size: 20px;
    color: #EF4444;
    font-weight: 800;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .logo h2 {
        font-size: 24px;
    }
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #EF4444;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EF4444;
}

.nav-cta {
    width: 100%;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-links {
        flex-direction: row;
        margin-bottom: 0;
        gap: 30px;
    }

    .nav-link {
        padding: 0;
    }

    .nav-cta {
        width: auto;
        padding: 12px 24px;
        min-height: auto;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #fff5f5 0%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        gap: 60px;
    }
}

/* Hero Image with Animation */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.product-showcase img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(239, 68, 68, 0.3));
    animation: productZoom 3s ease-in-out infinite;
}

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

@media (min-width: 768px) {
    .product-showcase img {
        max-width: 400px;
    }
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: bounceBadge 2s ease-in-out infinite;
}

@keyframes bounceBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Text */
.hero-text {
    flex: 1;
}

.hero-heading {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 42px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.hero-cta {
    margin-top: 30px;
    margin-bottom: 20px;
}

.trust-badges-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
}

.trust-badges-mini span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== WHAT IS PRODUCT SECTION ===== */
.what-is-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fff5f5 100%);
}

.what-is-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .what-is-content {
        flex-direction: row;
        gap: 60px;
    }
}

.what-is-text {
    flex: 1;
}

.what-is-text .section-heading {
    text-align: left;
}

.what-is-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.what-is-image {
    flex: 1;
}

.what-is-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background: #fff;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #EF4444;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

@media (min-width: 768px) {
    .accordion-header {
        font-size: 18px;
        padding: 20px 25px;
    }
}

.accordion-header:hover {
    background: #fff5f5;
    color: #EF4444;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: #fffbeb;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

@media (min-width: 768px) {
    .accordion-content {
        padding: 0 25px;
    }

    .accordion-item.active .accordion-content {
        padding: 25px;
    }
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.review-card.review-animate {
    opacity: 1;
    transform: scale(1);
    animation: reviewPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes reviewPop {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.review-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F59E0B;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.review-location {
    font-size: 13px;
    color: #888;
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.star {
    color: #F59E0B;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.pricing-section .section-heading {
    color: #fff;
}

.pricing-section .section-subheading {
    color: #ddd;
}

/* Countdown Timer */
.countdown-timer {
    max-width: 400px;
    margin: 0 auto 50px;
    text-align: center;
}

.timer-label {
    font-size: 16px;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 15px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 18px;
    }
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-box {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 80px;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
}

@media (min-width: 768px) {
    .timer-box {
        min-width: 100px;
        padding: 20px 25px;
    }
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

@media (min-width: 768px) {
    .timer-value {
        font-size: 42px;
    }
}

.timer-label-small {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.timer-separator {
    font-size: 32px;
    font-weight: 700;
    color: #F59E0B;
}

@media (min-width: 768px) {
    .timer-separator {
        font-size: 42px;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.3);
}

.pricing-card-popular {
    border: 3px solid #F59E0B;
    background: linear-gradient(135deg, #fffbeb 0%, #fff5f5 100%);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .pricing-card-popular {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

.pricing-label {
    background: #EF4444;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-bottles {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pricing-supply {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-width: 150px;
    margin: 0 auto;
}

.pricing-amount {
    margin: 20px 0;
}

.price-per-bottle {
    font-size: 36px;
    font-weight: 800;
    color: #EF4444;
}

.per-text {
    font-size: 16px;
    font-weight: 600;
}

.pricing-total {
    margin: 15px 0;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 28px;
    font-weight: 800;
    color: #10B981;
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.badge-bonus,
.badge-shipping {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: #10B981;
    color: #fff;
}

.badge-shipping {
    background: #F59E0B;
}

.pricing-btn {
    display: block;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    transform: scale(1.05);
}

.pricing-btn img {
    max-width: 200px;
    margin: 0 auto;
}

.payment-logos {
    margin-top: 15px;
}

.payment-logos img {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.7;
}

.rating-display {
    text-align: center;
}

.rating-display img {
    max-width: 250px;
    margin: 0 auto;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
    background: #fff;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.ingredient-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fff5f5 100%);
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    border-color: #F59E0B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.ingredient-name {
    font-size: 18px;
    font-weight: 700;
    color: #EF4444;
    margin-bottom: 10px;
}

.ingredient-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== SCIENTIFIC EVIDENCE SECTION ===== */
.scientific-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fffbeb 100%);
}

.scientific-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-block {
    background: #fff;
    border-left: 4px solid #10B981;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.evidence-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.evidence-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    background: #fff;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-content {
        flex-direction: row;
        gap: 60px;
    }
}

.guarantee-image {
    flex: 1;
}

.guarantee-image img {
    max-width: 300px;
    margin: 0 auto;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text .section-heading {
    text-align: left;
    margin-bottom: 30px;
}

.guarantee-point {
    margin-bottom: 25px;
}

.guarantee-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #EF4444;
    margin-bottom: 10px;
}

.guarantee-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fff5f5 100%);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(239, 68, 68, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 17px;
        padding: 20px 25px;
    }
}

.faq-question:hover {
    background: #fffbeb;
    color: #F59E0B;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    background: #fff5f5;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 20px;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 25px;
    }
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
        gap: 60px;
    }
}

.final-cta-image {
    flex: 1;
}

.final-cta-image img {
    max-width: 300px;
    margin: 0 auto;
    animation: finalBounce 3s ease-in-out infinite;
}

@keyframes finalBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.final-cta-text {
    flex: 1;
}

.final-cta-heading {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .final-cta-heading {
        font-size: 36px;
    }
}

.final-price-display {
    margin-bottom: 30px;
}

.final-price-old {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.price-strike {
    font-size: 24px;
    text-decoration: line-through;
}

.final-price-special {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.price-highlight {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #F59E0B 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-btn {
    margin-bottom: 20px;
}

.final-trust-points {
    font-size: 14px;
    line-height: 1.8;
}

.final-trust-points p {
    color: #10B981;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-links a {
    color: #F59E0B;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.separator {
    color: #666;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 13px;
    color: #666;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

/* ===== PURCHASE NOTIFICATION POPUP ===== */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 20px;
    max-width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 998;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
}

.purchase-popup.show {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .purchase-popup {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.popup-icon {
    font-size: 24px;
}

.popup-text {
    font-size: 13px;
    line-height: 1.4;
}

.popup-name {
    color: #EF4444;
    font-weight: 700;
}

.popup-location {
    color: #666;
}

.popup-close {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #EF4444;
}

/* ===== CTA POPUP (EXIT-INTENT / SCROLL / DELAY) ===== */
.cta-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cta-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-box {
    position: relative;
    background: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 40px 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.5s ease;
    z-index: 1;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 767px) {
    .popup-box {
        max-width: 95%;
        padding: 30px 20px;
    }
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #EF4444;
    color: #fff;
    transform: rotate(90deg);
}

.popup-content-main {
    text-align: center;
}

.popup-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .popup-heading {
        font-size: 28px;
    }
}

.popup-subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.popup-offer {
    margin-bottom: 25px;
}

.popup-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-price-old {
    font-size: 28px;
    color: #999;
    text-decoration: line-through;
}

.popup-price-new {
    font-size: 42px;
    font-weight: 800;
    color: #EF4444;
}

.popup-discount {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
    margin-bottom: 15px;
}

.popup-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.popup-guarantee {
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
}

/* ===== ANIMATIONS FOR REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LOADING LAZY IMAGES ===== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
