/* Base Styles */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8860b;
    --secondary-color: #16213e;
    --secondary-dark: #0a0a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #888888;
    --background-light: #f8f9fa;
    --background-dark: #0a0a1a;
    --border-color: rgba(212, 175, 55, 0.3);
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.separator span {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 10px;
}

.dark-section {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

.dark-section .section-header h2 {
    color: var(--text-light);
}

.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.column {
    flex: 1;
    min-width: 300px;
}

.reverse {
    flex-direction: row-reverse;
}

/* Language Switcher */
.language-switcher {
    background-color: var(--secondary-dark);
    padding: 5px 0;
}

.language-switcher ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.language-switcher li {
    margin-left: 15px;
}

.language-switcher a {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: var(--primary-color);
}

/* Header */
.site-header {
    background-color: rgba(10, 10, 26, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(to right, #d4af37, #f5e7a3, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 2px 0;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-gradient {
    background: linear-gradient(to right, #d4af37, #f5e7a3, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero .cta-button {
    margin-bottom: 2rem;
}

.hero .exclusivity {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
}

.sacred-geometry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="35" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="25" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><line x1="5" y1="50" x2="95" y2="50" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><line x1="50" y1="5" x2="50" y2="95" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.fibonacci-spiral {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><path d="M250,250 Q350,250 350,150 Q350,50 250,50 Q150,50 150,150 Q150,250 250,250 Q250,350 350,350 Q450,350 450,250 Q450,150 350,150" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.2"/></svg>');
    opacity: 0.15;
    z-index: 1;
}

/* Problem Section */
.problem {
    padding: 100px 0;
}

.problem-image .image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.subliminal-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.05);
    opacity: 0;
    animation: flash 10s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0; }
    49.9% { opacity: 0; }
    50% { opacity: 1; }
    50.1% { opacity: 0; }
    74.9% { opacity: 0; }
    75% { opacity: 0.5; }
    75.1% { opacity: 0; }
}

/* Solution Section */
.solution {
    padding: 100px 0;
}

.solution-image .image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ascending-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><polygon points="100,20 180,160 20,160" fill="none" stroke="%23d4af37" stroke-width="2" opacity="0.5"/></svg>');
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--background-light);
}

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

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-controls button {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-dark);
}

/* Scarcity Section */
.scarcity {
    padding: 100px 0;
    background-color: var(--background-light);
}

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

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.countdown-item {
    margin: 0 15px;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.remaining-spots {
    margin-bottom: 2rem;
}

.spots-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.spots-label {
    margin-right: 10px;
}

.spots-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 5px;
}

.spots-progress {
    width: 100%;
    max-width: 400px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 0 auto;
    overflow: hidden;
}

.spots-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.scarcity-message {
    margin-top: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-options {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.pricing-card.featured {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-bonuses {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.pricing-bonuses h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-bonuses ul {
    list-style: none;
}

.pricing-bonuses li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-bonuses i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.9rem;
}

.pricing-guarantee i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.guarantee-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
}

.badge-content {
    display: flex;
    align-items: center;
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.badge-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.badge-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.sacred-geometry-overlay.bottom {
    transform: rotate(180deg);
}

/* Footer */
.site-footer {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #d4af37, #f5e7a3, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
}

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

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Subliminal Elements */
.subliminal-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.fibonacci-spiral-small {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M100,100 Q140,100 140,60 Q140,20 100,20 Q60,20 60,60 Q60,100 100,100 Q100,140 140,140 Q180,140 180,100 Q180,60 140,60" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/></svg>');
    opacity: 0.05;
}

.ascending-triangle-small {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><polygon points="75,20 130,120 20,120" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.2"/></svg>');
    opacity: 0.05;
}

.concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="150" cy="150" r="140" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><circle cx="150" cy="150" r="100" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><circle cx="150" cy="150" r="60" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><circle cx="150" cy="150" r="20" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/></svg>');
    opacity: 0.03;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-dark);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: transform var(--transition-speed) ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 15px 0;
        margin-left: 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        margin: 0 10px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 10px;
    }
    
    .spots-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
}
