/* =========================================
   VARIABLES & SETUP
   ========================================= */
:root {
    --bg-color: #050505;
    --bg-darker: #020202;
    --text-white: #ffffff;
    --text-silver: #c4c4c4;
    --text-muted: #888888;
    
    --accent-silver: #e0e0e0;
    --accent-red: #ff3b3b;
    --border-light: rgba(255, 255, 255, 0.08);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #888, #fff);
    z-index: 2000;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Dynamic Mesh Background */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: #050505;
}

.blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(192,192,192,0.05) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; animation-duration: 30s; opacity: 0.15; }
.blob-2 { bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 70%); animation-delay: -5s; animation-duration: 35s; opacity: 0.1; }
.blob-3 { top: 40%; left: 30%; width: 40vw; height: 40vw; animation-delay: -10s; animation-duration: 40s; opacity: 0.08; }

/* Star Field */
.star-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

#stars1 { width: 1px; height: 1px; box-shadow: 1726px 426px #fff , 1133px 1904px #fff , 1042px 1019px #fff , 233px 1673px #fff , 174px 1759px #fff , 1672px 156px #fff , 1533px 290px #fff , 1804px 504px #fff , 1104px 119px #fff , 183px 1390px #fff , 1119px 123px #fff , 156px 1334px #fff , 1119px 156px #fff , 1334px 1119px #fff , 400px 800px #fff, 1200px 300px #fff, 600px 1400px #fff, 1500px 900px #fff, 200px 1100px #fff, 900px 500px #fff, 1300px 1500px #fff, 100px 200px #fff, 1800px 1200px #fff, 450px 1650px #fff, 1150px 750px #fff, 250px 550px #fff, 1450px 1050px #fff, 850px 1350px #fff, 1750px 450px #fff, 350px 1750px #fff, 1050px 950px #fff, 150px 1450px #fff, 1650px 150px #fff, 550px 1850px #fff, 1250px 1150px #fff, 750px 250px #fff, 1350px 1450px #fff, 1950px 650px #fff, 50px 850px #fff, 1750px 1550px #fff; animation: twinkle 8s infinite alternate; }
#stars2 { width: 2px; height: 2px; box-shadow: 1226px 1426px #fff , 133px 904px #fff , 42px 119px #fff , 1233px 673px #fff , 1174px 759px #fff , 672px 1156px #fff , 533px 1290px #fff , 804px 1504px #fff , 104px 1119px #fff , 1183px 390px #fff , 219px 23px #fff , 1156px 334px #fff , 219px 56px #fff , 334px 119px #fff, 700px 900px #fff, 1100px 1100px #fff, 400px 1300px #fff, 1400px 700px #fff, 900px 1600px #fff, 200px 400px #fff, 1600px 100px #fff, 800px 1500px #fff, 500px 200px #fff, 1500px 800px #fff; animation: twinkle 12s infinite alternate-reverse; }
#stars3 { width: 3px; height: 3px; box-shadow: 172px 26px #fff , 13px 404px #fff , 10px 12px #fff , 233px 73px #fff , 174px 59px #fff , 67px 156px #fff , 53px 290px #fff , 804px 504px #fff , 104px 119px #fff , 18px 390px #fff , 11px 23px #fff , 56px 334px #fff , 19px 56px #fff , 34px 119px #fff, 1000px 1000px #fff, 500px 500px #fff, 1500px 1500px #fff, 200px 1800px #fff, 1800px 200px #fff, 1200px 800px #fff, 400px 1200px #fff; opacity: 0.5; animation: twinkle 15s infinite alternate; }

/* Shooting Star */
.shooting-star {
    position: fixed;
    top: 0;
    left: 50%;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1),
                0 0 0 8px rgba(255,255,255,0.1),
                0 0 20px rgba(255,255,255,1);
    animation: shoot 5s linear infinite;
    z-index: -1;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes shoot {
    0% { transform: rotate(315deg) translateX(0); opacity: 0; }
    70% { opacity: 1; }
    100% { transform: rotate(315deg) translateX(-1000px); opacity: 0; }
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 0 -2000px; }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, 5vh) scale(1.1); }
    66% { transform: translate(-5vw, 15vh) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glow Follower */
.glow-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

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

html { scroll-behavior: smooth; font-family: var(--font-main); color: var(--text-white); background-color: var(--bg-color); }
body { overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.dark-bg { background-color: var(--bg-darker); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);}
.text-center { text-align: center; }
.text-silver { color: var(--text-silver); }
.text-sm { font-size: 0.9rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.w-100 { width: 100%; display: block; text-align: center; }
.mt-auto { margin-top: auto; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* Effects */
.sweep-text {
    position: relative;
    background: linear-gradient(
        110deg, 
        #888 20%, 
        #fff 40%, 
        #fff 50%, 
        #888 60%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sweep 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    display: inline-block;
}

@keyframes sweep {
    0% { background-position: 200% center; opacity: 0.8; }
    50% { opacity: 1; }
    100% { background-position: -200% center; opacity: 0.8; }
}

.pulse-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background-color: var(--accent-red);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(255, 59, 59, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%); border-radius: 50%; z-index: -1; pointer-events: none; }
.glow-1 { top: -200px; left: -200px; }
.glow-2 { top: 30%; right: -300px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: var(--transition); cursor: pointer; font-family: var(--font-heading);
}

.btn-primary { background: linear-gradient(135deg, #eeeeee 0%, #a0a0a0 100%); color: var(--bg-color); box-shadow: 0 0 20px rgba(255, 255, 255, 0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25); background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%); }

.btn-outline { border: 1px solid var(--text-silver); color: var(--text-white); padding: 0.5rem 1.2rem; }
.btn-outline:hover { background: var(--text-white); color: var(--bg-color); }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled { background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); padding: 1rem 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--text-silver); font-weight: 400; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a:not(.btn) { font-size: 0.95rem; font-weight: 500; color: var(--text-silver); transition: var(--transition); }
.nav-links a:not(.btn):hover { color: var(--text-white); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.mobile-menu-btn span { display: block; width: 28px; height: 2px; background-color: var(--text-white); transition: var(--transition); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 80px; overflow: hidden; }
.hero-content { max-width: 900px; z-index: 10; padding: 0 1rem; }
.headline { font-size: 4.5rem; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 1.5rem; }
.subtitle { font-size: 1.25rem; color: var(--text-silver); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Social Proof Bar */
.social-proof-bar { background: rgba(255, 255, 255, 0.03); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 1rem 0; text-align: center; font-weight: 500; letter-spacing: 1px;}

/* Titles */
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; margin-bottom: 1rem; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }

/* Cards & Boxes */
.card, .feature-box, .testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}
.card:hover, .feature-box:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.card h3 { font-size: 1.2rem; display: inline; vertical-align: middle; }

.icon-sm { width: 24px; height: 24px; vertical-align: middle; margin-right: 12px; color: var(--text-silver); stroke-width: 1.5; }
.icon-inline { width: 20px; height: 20px; vertical-align: middle; margin-right: 8px; color: var(--text-silver); stroke-width: 2; }
.icon-inline-sm { width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; stroke-width: 3; }
.icon-accent { width: 22px; height: 22px; color: #fff; margin-right: 12px; flex-shrink: 0; stroke-width: 2; }
.icon-lg lucide-icon, .icon-lg svg { width: 48px; height: 48px; color: var(--text-silver); stroke-width: 1.2; }

/* Features List */
.features-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; padding: 1rem; background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid transparent; transition: var(--transition);}
.feature-item:hover { border-color: var(--border-light); background: rgba(255,255,255,0.04); }

/* Pricing */
.pricing-cards { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    max-width: 1200px; 
    margin: 0 auto 4rem; 
}

.pricing-card { 
    background: rgba(10,10,10,0.8); 
    border: 1px solid var(--border-light); 
    border-radius: 20px; 
    padding: 3rem 2rem; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    overflow: hidden; 
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pricing-card.highlight { border-color: rgba(255,255,255,0.3); background: rgba(20,20,20,0.8); box-shadow: 0 10px 40px rgba(255,255,255,0.05); }
.popular-badge { position: absolute; top: 0; left: 0; width: 100%; background: var(--text-white); color: var(--bg-color); text-align: center; font-weight: 800; font-size: 0.8rem; padding: 0.3rem 0; letter-spacing: 1px; }
.price-header { margin-bottom: 2rem; margin-top: 1rem;}
.price-header h3 { font-size: 1.2rem; color: var(--text-silver); margin-bottom: 0.5rem; }
.price { font-size: 3.5rem; font-weight: 900; font-family: var(--font-heading); margin-bottom: 0.5rem; }
.price-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.price-features li { padding: 0.8rem 0; border-bottom: 1px solid var(--border-light); display: flex; align-items: flex-start; font-size: 0.95rem; }
.price-features li::before { content: '✓'; color: var(--text-silver); font-weight: bold; margin-right: 10px; }

/* Add-ons Section */
.addons-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border-light);
    border-radius: 20px;
    margin-top: 4rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.addon-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

@media (max-width: 1100px) {
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-cards { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .headline { font-size: 3rem; }
}

/* Why Choose Me Icons */
.icon-lg { font-size: 2.5rem; margin-bottom: 1rem; }

/* Workflow */
.steps-container { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; }
.step { flex: 1; min-width: 180px; padding: 2rem 0; border-top: 1px solid var(--border-light); position: relative; }
.step::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--text-white); transition: width 0.6s ease; }
.step:hover::before { width: 50%; }
.step-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: rgba(255, 255, 255, 0.1); margin-bottom: 1rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Scarcity Banner */
.scarcity-banner { background: rgba(255, 59, 59, 0.1); border: 1px solid rgba(255, 59, 59, 0.2); padding: 2rem; border-radius: 12px; margin: 2rem auto; max-width: 800px;}
.scarcity-text { font-size: 1.1rem; font-weight: 600; color: var(--accent-red); }

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.quote { font-size: 1.1rem; font-style: italic; margin-bottom: 2rem; color: var(--text-white); line-height: 1.6; }
.client-info { margin-top: auto; }
.client-info strong { display: block; color: var(--text-white); font-size: 1rem; margin-bottom: 0.2rem; }
.client-info span { display: block; font-size: 0.85rem; color: var(--text-muted); }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 0; font-size: 1.1rem; font-weight: 600; font-family: var(--font-main); color: var(--text-white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-btn::after { content: '+'; font-size: 1.5rem; transition: transform 0.3s; color: var(--text-silver);}
.faq-btn.active::after { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-content p { padding-bottom: 1.5rem; color: var(--text-silver); }

/* Contact CTA */
.glass-panel { background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 5rem 3rem; text-align: center; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; }
.contact-methods { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem;}
.contact-box { display: flex; align-items: center; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-light); border-radius: 16px; padding: 1.5rem 2rem; min-width: 280px; text-align: left; transition: var(--transition); }
.contact-box .icon { font-size: 2rem; margin-right: 1.5rem; }
.hover-lift:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }

/* Footer */
footer { border-top: 1px solid var(--border-light); padding: 3rem 0; text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-silver); }
.footer-content p { color: var(--text-muted); font-size: 0.9rem; }

/* Scroll Animations */
.reveal { opacity: 0; visibility: hidden; filter: blur(10px); }
.reveal.active { opacity: 1; visibility: visible; filter: blur(0); }

.fade-up { transform: translateY(40px) scale(0.95); transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease-out; }
.fade-up.active { transform: translateY(0) scale(1); }

.fade-down { transform: translateY(-20px) scale(0.95); transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease-out; }
.fade-down.active { transform: translateY(0) scale(1); }

.fade-left { transform: translateX(40px) scale(0.95); transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease-out; }
.fade-left.active { transform: translateX(0) scale(1); }

/* Magnetic Button Prep */
.btn-primary, .btn-outline { transition: transform 0.2s ease-out, box-shadow 0.3s ease; }

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.2rem; line-height: 1.1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .headline span { display: block; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; transition: right 0.4s ease; padding: 2rem; }
    .nav-links.active { right: 0; }
    .nav-links a:not(.btn) { font-size: 1.5rem; }

    .section-padding { padding: 4rem 0; }
    .section-title h2 { font-size: 2.2rem; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    
    .steps-container { flex-direction: column; gap: 0; }
    .step { border-top: none; border-left: 2px solid var(--border-light); padding: 0 0 2.5rem 2rem; margin-left: 1rem; }
    .step::before { left: -2px; top: 0; width: 2px; height: 0; }
    .step:hover::before { width: 2px; height: 50%; }

    .glass-panel { padding: 3rem 1.5rem; }
    .contact-methods { flex-direction: column; }
    .contact-box { width: 100%; min-width: auto; }
    
    .glow-follower { display: none; }
}
