/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-dark: #07070a;
    --bg-card: #12121a;
    --text-main: #f0f0f5;
    --text-muted: #8e8e9c;
    
    /* High Converting Accents */
    --accent-green: #00ff88;
    --accent-green-glow: rgba(0, 255, 136, 0.4);
    --accent-blue: #00b8ff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green-glow);
}

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(7, 7, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn-primary) {
    color: var(--accent-green);
}

/* --- Buttons --- */
.btn-primary {
    background: var(--accent-green);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-green-glow);
}

.btn-primary.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px var(--accent-green-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.w-100 { width: 100%; text-align: center; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background: radial-gradient(circle at top right, rgba(0, 184, 255, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 255, 136, 0.05), transparent 40%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 136, 0.15));
    animation: float 6s ease-in-out infinite;
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.pulse {
    animation: pulse-glow 2s infinite;
}

/* --- Value Proposition Grid --- */
.value-prop {
    padding: 6rem 5%;
    text-align: center;
}

.vp-text {
    margin-bottom: 4rem;
}

.vp-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.05);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Pricing Section --- */
.pricing {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.03));
}

.pricing > h2 {
    font-size: 3rem;
}

.pricing > p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.1);
}

.pricing-card::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tier-header .price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.tier-header .price span {
    font-size: 2rem;
    vertical-align: super;
}

.perfect-for {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 2rem;
}

.deliverables {
    list-style: none;
    margin-bottom: 3rem;
}

.deliverables li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 184, 255, 0.2));
}

.glass-callout {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(18, 18, 26, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-callout h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.glass-callout p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Process Section --- */
.process {
    padding: 6rem 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 184, 255, 0.05), transparent 60%);
}

.process-header {
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 184, 255, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Footer CTA --- */
.footer-cta {
    padding: 8rem 5% 2rem;
    text-align: center;
}

.footer-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.consultation-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.consultation-form input {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 1rem;
    flex: 1;
    transition: var(--transition);
}

.consultation-form input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green-glow);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

/* --- Animations (Intersection Observer Targets) --- */
.fade-in { opacity: 0; transition: opacity 1s ease; }
.fade-in.visible { opacity: 1; }

.fade-in-up { 
    opacity: 0; 
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero, .pricing-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-ctas, .trust-badges {
        justify-content: center;
    }
    .subheadline { margin: 0 auto 2.5rem; }
    .glass-callout { bottom: -20px; right: 20px; left: 20px; max-width: auto; }
    .consultation-form { flex-direction: column; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .tier-header .price { font-size: 3.5rem; }
    .nav-links { display: none; } /* Add hamburger menu in real scaling */
}

/* --- Contact Info Strip --- */
.info-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem 5%;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

/* --- Navigation Logo --- */
.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 184, 255, 0.3));
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.6);
}

.pulse-whatsapp {
    animation: pulse-whatsapp-glow 2s infinite;
}

@keyframes pulse-whatsapp-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .info-strip {
        flex-direction: column;
        gap: 2rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
