/* ==========================================
   Dubai Wealth Secret - Premium Luxury Theme
   Mobile-First Responsive Design
   Colors: #000000 (Black), #D4AF37 (Gold), #FFFFFF (White), #1a1a1a (Dark Gray)
   ========================================== */

/* 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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

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

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

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

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    list-style: none;
    padding: 100px 30px 30px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

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

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

.nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #FFFFFF;
    transition: color 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-link:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.nav-cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Hero Section */
.hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-image {
    order: -1;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 25px 80px rgba(212, 175, 55, 0.4);
    }
}

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

.hero-title {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.hero-benefits {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.hero-benefits li {
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 22px;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    min-height: 52px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

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

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

.primary-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
}

.large-cta {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 60px;
}

/* Section Styles */
section {
    padding: 60px 20px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Why Choose Section */
.why-choose {
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #000000;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.feature-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* What Is Section */
.what-is {
    background: #000000;
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.content-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.content-image {
    order: -1;
}

.responsive-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* How It Works Section */
.how-it-works {
    background: #1a1a1a;
}

.how-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.how-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.step-item {
    background: #000000;
    padding: 30px 25px;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: #000000;
}

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

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.review-card.slide-in {
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.review-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 5px;
}

.review-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

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

.review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
}

/* Science Section */
.science {
    background: #1a1a1a;
}

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

.science-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.science-points {
    list-style: none;
    max-width: 700px;
    margin: 30px auto 40px;
}

.science-points li {
    padding: 15px 20px 15px 50px;
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.science-points li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    background: #000000;
}

.countdown-timer {
    max-width: 500px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid #D4AF37;
}

.timer-label {
    font-size: 16px;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

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

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

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #D4AF37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pricing-package {
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

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

.pricing-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 15px;
}

.pricing-details {
    text-align: center;
    margin: 30px 0;
}

.price-original {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

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

.price-special {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
}

.savings-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

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

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item img {
    width: 60px;
    height: auto;
}

.trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: #D4AF37;
}

.instant-badge svg {
    width: 30px;
    height: 30px;
}

.payment-methods {
    text-align: center;
    margin-top: 30px;
}

.payment-methods p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Benefits Section */
.benefits {
    background: #1a1a1a;
}

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

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

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

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

.benefit-content h3 {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Evidence Section */
.evidence {
    background: #000000;
}

.evidence-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.evidence-card {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.evidence-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

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

.evidence-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Guarantee Section */
.guarantee {
    background: #1a1a1a;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.guarantee-image {
    order: -1;
}

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

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.guarantee-point p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Included Section */
.included {
    background: #000000;
}

.included-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    align-items: flex-start;
    transition: all 0.3s ease;
}

.included-item:hover {
    border-color: #D4AF37;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.included-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.included-content h3 {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.included-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Bonuses Section */
.bonuses {
    background: #1a1a1a;
}

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

.bonus-card {
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

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

.bonus-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-content {
    padding: 30px 25px;
}

.bonus-value {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.bonus-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Pros and Cons Section */
.pros-cons {
    background: #000000;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pros-section, .cons-section {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pros-title, .cons-title {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 25px;
    text-align: center;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 15px;
    font-size: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    line-height: 1.6;
}

.pros-list li {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    color: rgba(255, 255, 255, 0.9);
}

.cons-list li {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* Where to Buy Section */
.where-to-buy {
    background: #1a1a1a;
}

.buy-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.buy-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq {
    background: #000000;
}

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

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

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

.faq-question:hover {
    color: #D4AF37;
}

.faq-icon {
    font-size: 24px;
    color: #D4AF37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

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

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

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

/* Final CTA Section */
.final-cta {
    background: #1a1a1a;
    padding: 80px 20px;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-image {
    margin-bottom: 30px;
}

.final-cta-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

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

.final-pricing {
    margin: 30px 0;
}

.final-regular {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.final-special {
    font-size: 36px;
    color: #D4AF37;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.final-savings {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}

.final-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.badge-item {
    font-size: 14px;
    color: #D4AF37;
    font-weight: 600;
}

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

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    margin: 30px 0;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

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

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

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

.footer-social a:hover svg {
    fill: #000000;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C542 100%);
    color: #000000;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

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

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

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    max-width: 350px;
    background: #1a1a1a;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 998;
    transition: bottom 0.5s ease;
}

.purchase-notification.show {
    bottom: 30px;
}

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

.notification-icon {
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .final-badges {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    
    .trust-badges {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: 30px;
        box-shadow: none;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 8px 0;
        border-bottom: none;
    }
    
    .nav-link:hover {
        transform: translateX(0);
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-image {
        flex: 1;
        order: 0;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-button {
        width: auto;
        display: inline-block;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .content-split {
        flex-direction: row;
        align-items: center;
    }
    
    .content-image {
        flex: 1;
        order: 1;
    }
    
    .content-text {
        flex: 1;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guarantee-content {
        flex-direction: row;
        align-items: center;
    }
    
    .guarantee-image {
        flex: 1;
        order: 0;
    }
    
    .guarantee-text {
        flex: 1;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pros-cons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purchase-notification {
        left: auto;
        right: 30px;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-top,
    .purchase-notification {
        display: none;
    }
}