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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Mystical Background System */
.mystical-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 80%, #1a1a2e 0%, #16213e 40%, #0a0a0a 100%);
}

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #ff6b35, transparent),
        radial-gradient(2px 2px at 40px 70px, #ffab00, transparent),
        radial-gradient(1px 1px at 90px 40px, #ff6b35, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffab00, transparent),
        radial-gradient(2px 2px at 160px 30px, #ff6b35, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particle-drift 20s linear infinite;
    opacity: 0.6;
}

@keyframes particle-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

.floating-runes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.rune-float {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
    animation: float-mystical 15s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.rune-float:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.rune-float:nth-child(2) { top: 20%; right: 15%; animation-delay: -3s; }
.rune-float:nth-child(3) { top: 60%; left: 20%; animation-delay: -6s; }
.rune-float:nth-child(4) { top: 40%; right: 10%; animation-delay: -9s; }
.rune-float:nth-child(5) { bottom: 20%; left: 15%; animation-delay: -12s; }
.rune-float:nth-child(6) { bottom: 30%; right: 20%; animation-delay: -15s; }

@keyframes float-mystical {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
    50% { transform: translateY(-40px) rotate(-5deg); opacity: 0.4; }
    75% { transform: translateY(-20px) rotate(3deg); opacity: 0.7; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
}

.logo-section {
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: logo-glow 3s ease-in-out infinite alternate;
}

.flow {
    background: linear-gradient(135deg, #ffab00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logo-glow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8)); }
}

.tagline {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #00ff87, #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlight-pulse 2s ease-in-out infinite;
}

@keyframes highlight-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-description {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 171, 0, 0.2));
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

.urgency-icon {
    font-size: 1.5rem;
    animation: lightning-flash 1.5s ease-in-out infinite;
}

@keyframes lightning-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-title {
    font-weight: 700;
    color: #ff6b35;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffab00;
}

/* Primary CTA */
.cta-section {
    margin-top: 3rem;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.cta-subtext {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 1rem;
}

/* Social Proof */
.social-proof {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.proof-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.proof-label {
    color: #d1d5db;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Power Preview */
.power-preview {
    padding: 6rem 2rem;
}

.preview-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.preview-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

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

.category-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 171, 0, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.category-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.category-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tags span {
    background: rgba(255, 171, 0, 0.2);
    color: #ffab00;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 171, 0, 0.3);
}

/* Packages Section */
.packages {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 171, 0, 0.02));
}

.packages-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.packages-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.packages-subtitle {
    color: #d1d5db;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.package {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.package.featured {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 171, 0, 0.05));
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    100% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.8); }
}

.package-header h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.package-header p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.package-price {
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Cinzel', serif;
}

.price-period {
    color: #d1d5db;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.package-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    margin-bottom: 0.8rem;
    color: #d1d5db;
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.annual .package-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.annual .package-btn:hover {
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    color: #ff6b35;
    margin-bottom: 0.2rem;
}

.guarantee-text span {
    color: #d1d5db;
    font-size: 0.9rem;
}

/* Trust Signals */
.trust-signals {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

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

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

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.trust-item p {
    color: #d1d5db;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 171, 0, 0.05));
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.final-cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.btn-final {
    background: linear-gradient(135deg, #ff6b35, #ffab00);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .proof-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .template-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .package.featured {
        transform: none;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
}
