/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --cosmic-purple-dark: #4A148C;
    --cosmic-purple: #7B1FA2;
    --celestial-blue: #1A237E;
    --mystical-gold: #FFD700;
    --cosmic-black: #0A0A0A;
    --cosmic-white: #FFFFFF;
    --cosmic-gray: #2A2A2A;
    --cosmic-light-gray: #F8F8F8;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--cosmic-white);
    background: var(--cosmic-black);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--mystical-gold), var(--cosmic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3), rgba(26, 35, 126, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--mystical-gold), var(--cosmic-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--cosmic-light-gray);
    font-weight: 300;
    line-height: 1.7;
}

.trust-indicator {
    margin-top: 2rem;
    text-align: center;
}

.trust-text {
    display: block;
    font-size: 0.9rem;
    color: var(--cosmic-light-gray);
    margin-bottom: 0.5rem;
}

.stars {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--mystical-gold), #FFA000);
    color: var(--cosmic-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--mystical-gold);
    border: 2px solid var(--mystical-gold);
}

.cta-button.secondary:hover {
    background: var(--mystical-gold);
    color: var(--cosmic-black);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cosmic-black), var(--cosmic-gray));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(26, 35, 126, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(123, 31, 162, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
}

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

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--mystical-gold);
}

.feature-description {
    color: var(--cosmic-light-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: var(--cosmic-black);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/sacred-geometry.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--mystical-gold), #FFA000);
    color: var(--cosmic-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.2), rgba(26, 35, 126, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--mystical-gold);
}

.step-description {
    color: var(--cosmic-light-gray);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cosmic-gray), var(--cosmic-black));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(26, 35, 126, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--mystical-gold);
    font-family: var(--font-serif);
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--cosmic-light-gray);
}

.author-name {
    color: var(--mystical-gold);
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--cosmic-black);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mystical-symbols.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(26, 35, 126, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.featured {
    border-color: var(--mystical-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge, .savings-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--mystical-gold), #FFA000);
    color: var(--cosmic-black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--mystical-gold);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cosmic-white);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--cosmic-light-gray);
}

.pricing-description {
    color: var(--cosmic-light-gray);
    margin-bottom: 2rem;
}

.guarantee {
    text-align: center;
    margin-top: 2rem;
}

.guarantee-text {
    color: var(--mystical-gold);
    font-weight: 500;
}

/* Trust Section */
.trust {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cosmic-gray), var(--cosmic-black));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.trust-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--mystical-gold);
}

.trust-item p {
    color: var(--cosmic-light-gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--cosmic-black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--mystical-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--cosmic-light-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cosmic-light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--mystical-gold);
}

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

.footer-bottom p {
    color: var(--cosmic-light-gray);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); }
}

.feature-icon img,
.step-icon img {
    animation: glow 3s ease-in-out infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

