/* ============================================
   MENOVELLE - PREMIUM LUXURY LANDING PAGE
   Mobile-First Responsive 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
    overflow-x: hidden;
}

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

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

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

input, select, textarea {
    font-size: 16px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subheading {
    font-size: 16px;
    text-align: center;
    color: #D4AF37;
    margin-bottom: 32px;
    font-weight: 400;
}

@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: 44px;
        margin-bottom: 24px;
    }

    .section-subheading {
        font-size: 20px;
        margin-bottom: 48px;
    }
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 2px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 40px 20px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

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

.nav-menu li {
    margin-bottom: 24px;
}

.nav-link {
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(8px);
}

.nav-cta {
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

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

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        border: none;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }

    .nav-link:hover {
        background: transparent;
        transform: translateX(0);
    }

    .nav-cta {
        padding: 12px 28px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.2) translate(-30px, 30px); opacity: 0.8; }
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 350px;
    animation: productFloat 6s ease-in-out infinite;
}

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

.hero-product-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.4));
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

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

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

.hero-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 32px;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 50px;
    min-height: 56px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

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

.cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

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

    .hero-image, .hero-content {
        flex: 1;
    }

    .hero-content {
        text-align: left;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-description p {
        font-size: 17px;
    }

    .product-showcase {
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 52px;
        margin-bottom: 32px;
    }

    .hero-description p {
        font-size: 18px;
    }

    .product-showcase {
        max-width: 500px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.badge-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

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

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

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

.badge-title {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

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

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

/* ============================================
   WHAT IS MENOVELLE SECTION
   ============================================ */

.what-is-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

.what-is-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.what-is-image {
    width: 100%;
    max-width: 500px;
}

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

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

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

    .what-is-text p {
        font-size: 17px;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.accordion-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    min-height: 50px;
}

.accordion-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
}

.accordion-icon {
    font-size: 28px;
    color: #D4AF37;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

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

.accordion-content p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
}

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

    .accordion-content p {
        font-size: 16px;
    }
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

.review-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.reviewer-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4AF37;
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    text-align: center;
    margin-bottom: 12px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.reviewer-location {
    font-size: 14px;
    color: #D4AF37;
}

.rating {
    text-align: center;
    margin-bottom: 16px;
}

.stars {
    font-size: 20px;
    color: #D4AF37;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
    text-align: center;
    font-style: italic;
}

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

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

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 100px;
}

.timer-number {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.timer-label {
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.pricing-card.popular {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-label {
    font-size: 16px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.pricing-bottles {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

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

.pricing-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 24px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 16px;
    line-height: 1;
}

.price-unit {
    font-size: 18px;
    font-weight: 400;
}

.pricing-total {
    margin-bottom: 20px;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
}

.sale-price {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bonus-tag {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

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

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

.pricing-cta img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.payment-logos img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

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

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

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

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

/* ============================================
   BONUS SECTION
   ============================================ */

.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.bonus-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.bonus-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
}

.bonus-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */

.ingredients-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.ingredient-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

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

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

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

/* ============================================
   SCIENTIFIC EVIDENCE SECTION
   ============================================ */

.science-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.science-content {
    max-width: 1000px;
    margin: 0 auto;
}

.science-item {
    background: rgba(26, 26, 26, 0.6);
    border-left: 4px solid #D4AF37;
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.science-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 12px;
}

.science-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
}

@media (min-width: 768px) {
    .science-item p {
        font-size: 16px;
    }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.guarantee-image {
    width: 100%;
    max-width: 350px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-point {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.guarantee-point h3 {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
}

.guarantee-point p {
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
}

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

    .guarantee-image {
        max-width: 400px;
    }

    .guarantee-point h3 {
        font-size: 22px;
    }

    .guarantee-point p {
        font-size: 16px;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #D4AF37;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

.benefit-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #CCCCCC;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    min-height: 50px;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    color: #D4AF37;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
}

@media (min-width: 768px) {
    .faq-question h3 {
        font-size: 19px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: finalGlow 5s ease-in-out infinite;
}

@keyframes finalGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.final-cta-image {
    width: 100%;
    max-width: 400px;
    animation: finalProductFloat 4s ease-in-out infinite;
}

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

.final-cta-text {
    text-align: center;
}

.final-cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.3;
}

.final-pricing {
    margin-bottom: 32px;
}

.regular-price {
    font-size: 18px;
    color: #CCCCCC;
    margin-bottom: 12px;
}

.crossed-price {
    text-decoration: line-through;
    color: #999;
}

.special-price {
    font-size: 24px;
    color: #FFFFFF;
}

.price-highlight {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
    display: block;
}

.cta-final {
    margin-bottom: 24px;
}

.final-cta-note {
    font-size: 14px;
    color: #D4AF37;
}

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

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

    .final-cta-heading {
        font-size: 36px;
    }
}

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-links a {
    color: #D4AF37;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-links .separator {
    color: rgba(212, 175, 55, 0.3);
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-5px);
}

.footer-copyright p {
    font-size: 14px;
    color: #999;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* ============================================
   PURCHASE NOTIFICATION POPUP
   ============================================ */

.purchase-popup {
    position: fixed;
    bottom: -200px;
    left: 20px;
    max-width: 350px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 998;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.purchase-popup.show {
    bottom: 20px;
}

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

.popup-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #D4AF37;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

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

.popup-text {
    flex: 1;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.5;
}

.popup-name {
    color: #D4AF37;
}

.popup-location {
    color: #CCCCCC;
}

@media (max-width: 480px) {
    .purchase-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* ============================================
   CTA POPUP
   ============================================ */

.cta-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cta-popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 40px 24px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    animation: popupSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cta-popup-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-popup-close:hover {
    transform: rotate(90deg);
    background: #F4D03F;
}

.cta-popup-body {
    text-align: center;
}

.cta-popup-heading {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-popup-text {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    min-height: 56px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-popup-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

@media (max-width: 480px) {
    .cta-popup-content {
        padding: 32px 20px;
    }

    .cta-popup-heading {
        font-size: 24px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .scroll-to-top,
    .purchase-popup,
    .cta-popup {
        display: none !important;
    }
}