/* ============================================
   IRON HORSE PILLS - PREMIUM LUXURY DESIGN
   Mobile-First Responsive CSS
   ============================================ */

/* ============================================
   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: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    background: #FFFFFF;
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

h1 {
    font-size: 28px;
    font-weight: 900;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.nav-cta {
    padding: 10px 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        margin-top: 10px;
    }
}

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

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

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

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

.product-img {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 2;
}

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

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

.hero-content {
    color: #FFFFFF;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #D4AF37;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 15px;
}

.feature-item i {
    color: #D4AF37;
    font-size: 18px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    min-height: 48px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

.trust-text {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-text i {
    color: #D4AF37;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .product-img {
        max-width: 450px;
    }
}

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

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

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
}

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

.badge-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #F5F5F5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.badge-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.badge-card:hover::before {
    left: 100%;
}

.badge-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

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

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

.badge-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
}

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

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

@media (min-width: 992px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 42px;
    }
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #FFFFFF 100%);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.what-is-content {
    order: 2;
}

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

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

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

@media (min-width: 768px) {
    .what-is-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .what-is-content {
        order: 1;
    }
    
    .what-is-image {
        order: 2;
    }
}

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

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

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

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

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

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

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

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.accordion-toggle {
    color: #D4AF37;
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

.review-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

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

.reviewer-info {
    flex: 1;
}

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

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

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFD700;
    font-size: 14px;
}

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

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

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

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFFFFF;
}

.pricing .section-title,
.pricing .section-subtitle {
    color: #FFFFFF;
}

.countdown-timer {
    max-width: 500px;
    margin: 0 auto 50px;
    text-align: center;
}

.timer-label {
    font-size: 18px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 15px 25px;
    min-width: 100px;
}

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

.timer-text {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    letter-spacing: 1px;
}

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

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

.pricing-card {
    background: #FFFFFF;
    color: #000000;
    border-radius: 25px;
    padding: 35px 25px;
    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(212, 175, 55, 0.3);
}

.pricing-popular {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
}

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

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing-package {
    font-size: 26px;
    margin-bottom: 8px;
    color: #000000;
}

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

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

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

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

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    display: block;
    line-height: 1;
}

.price-per {
    font-size: 14px;
    color: #666666;
    display: block;
    margin-top: 5px;
}

.pricing-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 20px;
}

.total-original {
    color: #999999;
    text-decoration: line-through;
}

.total-discounted {
    color: #000000;
    font-weight: 700;
    font-size: 28px;
}

.pricing-bonuses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.bonus-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-button {
    display: block;
    margin: 25px 0;
    transition: all 0.3s ease;
}

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

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

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

.payment-methods img {
    max-width: 250px;
    margin: 0 auto;
}

.rating-display {
    text-align: center;
    margin-top: 40px;
}

.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);
    }
    
    .timer-value {
        font-size: 52px;
    }
}

/* ============================================
   BONUS SECTION
   ============================================ */
.bonus {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.bonus-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #FFFFFF 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

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

.bonus-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-image {
    margin: 30px 0;
}

.bonus-image img {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 15px;
}

.bonus-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
}

.bonus-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.bonus-value {
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
}

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

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #FFFFFF 100%);
}

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

.ingredient-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ingredient-name {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.ingredient-description {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 15px;
}

.ingredient-benefits {
    font-size: 14px;
    color: #666666;
    padding-top: 15px;
    border-top: 1px solid #F0F0F0;
}

.ingredient-benefits strong {
    color: #000000;
}

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

/* ============================================
   SCIENTIFIC EVIDENCE SECTION
   ============================================ */
.science {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.science-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #D4AF37;
}

.science-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.science-heading i {
    color: #D4AF37;
    font-size: 24px;
}

.science-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
}

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

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

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

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

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 24px;
    color: #000000;
}

.guarantee-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
}

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

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

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

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #FFFFFF 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 22px;
    color: #000000;
}

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

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

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

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

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

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

.faq-item:hover {
    border-color: #D4AF37;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 44px;
}

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

.faq-q-text {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 25px 25px;
}

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

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

.final-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.final-cta-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.final-cta-image img {
    max-width: 350px;
    animation: float 6s ease-in-out infinite;
}

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

.final-cta-text {
    text-align: center;
    color: #FFFFFF;
}

.final-cta-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

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

.final-special-price {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.price-highlight {
    color: #D4AF37;
    font-size: 36px;
}

.cta-final {
    margin: 0 auto 30px;
    max-width: 400px;
}

.final-cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.final-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.final-feature i {
    color: #D4AF37;
    font-size: 18px;
}

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .final-cta-text {
        text-align: left;
    }
    
    .final-cta-features {
        margin: 0;
    }
    
    .final-feature {
        justify-content: flex-start;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

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

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.legal-link {
    color: #D4AF37;
    font-size: 14px;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.link-separator {
    color: #666666;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 13px;
    line-height: 1.8;
    color: #999999;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-disclaimer strong {
    color: #D4AF37;
}

.footer-social h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

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

.social-icons a:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid #333333;
    font-size: 13px;
    color: #888888;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
}

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

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

.scroll-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #FFFFFF;
    border-radius: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: popupSlide 0.5s ease;
}

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

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

.popup-body {
    padding: 50px 30px 40px;
    text-align: center;
}

.popup-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000000;
}

.popup-text {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333333;
}

.popup-subtext {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-height: 48px;
}

.popup-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {
    .popup-title {
        font-size: 24px;
    }
    
    .popup-text {
        font-size: 16px;
    }
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 320px;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

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

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    color: #000000;
    font-size: 18px;
}

.notification-name {
    display: block;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3px;
}

.notification-message {
    font-size: 14px;
    color: #666666;
}

@media (max-width: 480px) {
    .notification {
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        bottom: 20px;
        max-width: calc(100% - 40px);
    }
    
    .notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for multiple elements */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

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

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

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }
    
    .section-title {
        font-size: 26px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .scroll-top,
    .exit-popup,
    .notification,
    .cta-button {
        display: none !important;
    }
}
