/* Dubai Wealth Secret - Premium Styles */
/* Mobile-First, Production-Ready CSS */

:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8941F;
    --primary-gold-light: #F4D03F;
    --secondary-blue: #1a1a2e;
    --secondary-blue-light: #16213e;
    --accent-purple: #5f27cd;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f1e;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.18);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: var(--bg-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

.nav-cta-btn {
    padding: 10px 24px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 20px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .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);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: particleMove 15s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.title-word {
    display: inline-block;
    margin-right: 12px;
}

.gradient-gold {
    background: var(--bg-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-guarantee svg {
    color: #10b981;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
}

.product-showcase {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.product-showcase img {
    width: 100%;
    height: auto;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
    animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.floating-element {
    position: absolute;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: var(--bg-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.element-1 {
    top: 10%;
    right: -10%;
}

.element-2 {
    bottom: 30%;
    left: -15%;
}

.element-3 {
    bottom: 5%;
    right: 5%;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--bg-white);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .floating-element {
        position: static;
        margin: 10px 0;
        display: inline-flex;
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Timer Banner */
.timer-banner {
    background: linear-gradient(135deg, #ee5a6f 0%, #f29263 100%);
    padding: 16px 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-content {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--text-white);
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.timer-icon {
    font-size: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

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

.timer-unit {
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 28px;
    font-weight: 700;
}

.timer-cta {
    padding: 10px 24px;
    background: var(--bg-white);
    color: #ee5a6f;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.timer-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .timer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .timer-text {
        font-size: 14px;
    }
    
    .timer-box {
        min-width: 60px;
        padding: 6px 12px;
    }
    
    .timer-value {
        font-size: 24px;
    }
    
    .timer-cta {
        width: 100%;
        text-align: center;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.pricing-image {
    text-align: center;
    margin-top: 32px;
}

.pricing-image img {
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.pricing-image img:hover {
    transform: scale(1.02);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.image-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-gold);
}

.about-text .btn-primary {
    margin-top: 20px;
}

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

/* How It Works */
.how-it-works-section {
    background: var(--bg-light);
}

.how-content p {
    max-width: 900px;
    margin: 0 auto 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

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

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold-light);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 18px;
}

.reviewer-location {
    font-size: 14px;
    color: var(--text-secondary);
}

.review-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* What's Inside */
.whats-inside-section {
    background: var(--bg-light);
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.inside-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.inside-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.inside-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.inside-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--primary-gold-light);
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-item::before {
        display: none;
    }
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

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

.guarantee-badge img {
    max-width: 250px;
    animation: rotate 20s linear infinite;
}

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

.guarantee-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .guarantee-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-badge img {
        max-width: 180px;
        margin: 0 auto;
    }
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Bonuses Section */
.bonuses-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bonus-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.bonus-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.bonus-image img {
    border-radius: var(--border-radius);
    width: 100%;
}

.bonus-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.bonus-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .bonus-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Where to Buy */
.where-to-buy-section {
    background: var(--bg-light);
}

.buy-content p {
    max-width: 900px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.buy-reasons h3 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-primary);
}

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

.reason-item {
    display: flex;
    gap: 24px;
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-gold);
}

.reason-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.reason-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.reason-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.reason-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ Section */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    animation: ctaBgMove 10s ease-in-out infinite;
}

@keyframes ctaBgMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cta-content-wrapper {
    position: relative;
    text-align: center;
    color: var(--text-white);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-image-wrapper {
    margin: 40px 0;
}

.cta-image-wrapper img {
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.cta-pulse {
    display: inline-flex;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.cta-guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cta-guarantee-text svg {
    color: #10b981;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-content a {
    color: var(--primary-gold-light);
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--primary-gold);
}

.copyright {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top:active {
        transform: scale(0.95);
    }
}

/* Purchase Popup */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-slow);
    max-width: 350px;
}

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

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

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

.popup-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
}

.popup-name {
    color: var(--primary-gold);
    font-weight: 600;
}

.popup-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--text-primary);
}

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

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-intent-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-container {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideInUp 0.4s ease;
    z-index: 1;
}

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

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-secondary);
    transition: var(--transition);
    z-index: 1;
}

.popup-close-btn:hover {
    background: var(--primary-gold);
    color: var(--text-white);
    transform: rotate(90deg);
}

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

.popup-body h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.popup-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.popup-offer {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 32px;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.popup-offer h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.popup-benefits {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.popup-benefits li {
    padding: 8px 0;
    font-size: 16px;
}

.popup-cta-btn {
    display: block;
    width: 100%;
    padding: 18px 36px;
    background: var(--bg-gold-gradient);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.popup-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.popup-timer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.popup-timer span {
    font-weight: 700;
    color: #ee5a6f;
    font-size: 16px;
}

@media (max-width: 768px) {
    .popup-body {
        padding: 40px 24px;
    }
    
    .popup-body h2 {
        font-size: 24px;
    }
    
    .popup-offer h3 {
        font-size: 20px;
    }
}

/* Touch Feedback */
@media (max-width: 768px) {
    .btn-primary:active,
    .nav-link:active,
    .faq-question:active {
        transform: scale(0.98);
    }
}

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

/* Scroll Reveal */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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