/* ===== 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-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

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

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo-accent {
    color: #D4AF37;
    margin-left: 2px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    cursor: pointer;
}

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

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

.hamburger:hover span {
    background: #F4D03F;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #D4AF37;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #F4D03F;
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: #D4AF37;
    padding-left: 10px;
}

.mobile-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    display: block;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 40px;
    }
}

.hero-image {
    order: 1;
}

@media (min-width: 768px) {
    .hero-image {
        order: 2;
    }
}

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

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

.hero-product {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-content {
    order: 2;
}

@media (min-width: 768px) {
    .hero-content {
        order: 1;
    }
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
}

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

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

.highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

@media (min-width: 576px) {
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
}

@media (min-width: 576px) {
    .feature-item {
        flex: 0 0 auto;
    }
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #D4AF37;
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #D4AF37;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-height: 56px;
    width: 100%;
    justify-content: center;
    margin-top: 32px;
}

@media (min-width: 576px) {
    .hero-cta {
        width: auto;
    }
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
    position: relative;
    padding-bottom: 20px;
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 2px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 80px 0;
    background: #ffffff;
}

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

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

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

.info-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    background: #ffffff;
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

/* ===== ABOUT PRODUCT ===== */
.about-product {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 768px) {
    .about-content {
        order: 1;
    }
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.about-image {
    order: 1;
}

@media (min-width: 768px) {
    .about-image {
        order: 2;
    }
}

.product-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.accordion-item.active {
    border-color: #D4AF37;
    background: #ffffff;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    min-height: 44px;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 24px 32px;
    }
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.05);
}

.accordion-number {
    font-size: 24px;
    font-weight: 800;
    color: #D4AF37;
    min-width: 40px;
}

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-align: left;
}

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

.accordion-icon {
    width: 24px;
    height: 24px;
    color: #D4AF37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.accordion-content p {
    padding: 0 24px 24px 84px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

@media (max-width: 767px) {
    .accordion-content p {
        padding: 0 24px 24px 24px;
    }
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

@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: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.reviewer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4AF37;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

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

.reviewer-location {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 8px;
}

.star-rating {
    color: #D4AF37;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    font-style: italic;
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-second {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin-top: 12px;
    margin-bottom: 32px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    margin: 0 auto;
}

.timer-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .timer-box {
        padding: 24px 40px;
        min-width: 120px;
    }
}

.timer-value {
    font-size: 36px;
    color: #D4AF37;
    line-height: 1;
}

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

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

.timer-separator {
    font-size: 32px;
    color: #D4AF37;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    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);
    }
}

.pricing-card {
    background: #f8f8f8;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-color: #D4AF37;
    transform: scale(1.05);
}

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

.pricing-card.popular:hover {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.package-label {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-card.popular .package-label {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

.package-info {
    margin-bottom: 24px;
}

.package-title {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.pricing-card.popular .package-title {
    color: #D4AF37;
}

.package-supply {
    font-size: 14px;
    color: #7a7a7a;
}

.pricing-card.popular .package-supply {
    color: #ffffff;
}

.package-image {
    margin: 32px 0;
}

.package-image img {
    max-width: 200px;
    margin: 0 auto;
}

.package-price {
    margin: 24px 0;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    display: block;
}

.pricing-card.popular .price-amount {
    color: #D4AF37;
}

.price-label {
    font-size: 14px;
    color: #7a7a7a;
}

.pricing-card.popular .price-label {
    color: #ffffff;
}

.package-total {
    margin: 20px 0;
}

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

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

.pricing-card.popular .new-price {
    color: #D4AF37;
}

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

.bonus-badge, .shipping-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.package-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #D4AF37;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.popular .package-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

.rating-badge {
    text-align: center;
    margin-top: 60px;
}

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

/* ===== BONUS ===== */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.bonus-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bonus-image {
    width: 100%;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image img {
    transform: scale(1.05);
}

.bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    padding: 24px 30px 12px;
}

.bonus-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    padding: 0 30px 30px;
}

/* ===== INGREDIENTS ===== */
.ingredients {
    padding: 80px 0;
    background: #ffffff;
}

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

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

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

.ingredient-card {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

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

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

/* ===== SCIENTIFIC EVIDENCE ===== */
.scientific-evidence {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.evidence-section {
    background: #ffffff;
    padding: 32px;
    border-radius: 15px;
    margin-bottom: 24px;
    border-left: 4px solid #D4AF37;
}

.evidence-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.evidence-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===== FORMULATION ===== */
.formulation {
    padding: 80px 0;
    background: #ffffff;
}

.formulation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

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

.formulation-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.formulation-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.formulation-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000000;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.formulation-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.formulation-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

/* ===== GUARANTEE ===== */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.guarantee-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-content {
    order: 2;
}

@media (min-width: 768px) {
    .guarantee-content {
        order: 2;
    }
}

.guarantee-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
    color: #D4AF37;
}

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

.guarantee-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 80px 0;
    background: #ffffff;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f8f8;
    padding: 24px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #D4AF37;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

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

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 48px;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #D4AF37;
    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;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1.5fr;
        text-align: left;
        gap: 60px;
    }
}

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

.final-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 24px;
}

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

.final-cta-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .final-cta-pricing {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

.final-regular-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.final-special-price {
    font-size: 32px;
    font-weight: 800;
    color: #D4AF37;
}

@media (min-width: 768px) {
    .final-special-price {
        font-size: 40px;
    }
}

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

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

.final-cta-button svg {
    width: 20px;
    height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

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

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

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

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

.social-link svg {
    width: 20px;
    height: 20px;
    color: #D4AF37;
}

.social-link:hover svg {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-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;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 999;
}

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

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

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 320px;
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 50%;
        transform: translateX(-50%) translateY(150px);
        bottom: 20px;
    }
}

.purchase-notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 576px) {
    .purchase-notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

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

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

.notification-text {
    font-size: 14px;
    color: #2a2a2a;
}

.notification-name {
    color: #D4AF37;
    font-weight: 700;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
