/* Custom Properties & Reset */
:root {
    /* Colors - Deep Dark Theme with vibrant gradients */
    --bg-main: #060608;
    --bg-secondary: #0c0c11;
    --bg-glass: rgba(20, 20, 28, 0.4);
    --bg-glass-hover: rgba(30, 30, 45, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    
    --accent-1: #00f0ff; /* Neon Cyan */
    --accent-2: #7000ff; /* Deep Purple */
    --accent-3: #ff0055; /* Neon Pink/Red */
    
    --gradient-1: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --gradient-2: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-alt {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--accent-1);
}

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

/* Background Effects */
.bg-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite alternate;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-1);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-2);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-3);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}
.glow-btn:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--accent-1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
}
.btn-outline:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.hover-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.hover-tilt:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo span {
    color: var(--accent-1);
}

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

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent-1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 30px;
}

.img-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--gradient-1);
    border-radius: 30px;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 1;
    border: 1px solid var(--border-glass);
}

.floating-badge {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float-y 4s ease-in-out infinite;
}

.floating-badge.fb-1 {
    top: 10%;
    right: -20px;
}

.floating-badge.fb-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.fb-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent-1);
}

.fb-text {
    display: flex;
    flex-direction: column;
}

.fb-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
}

.fb-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.quote-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-1);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent);
    border-radius: 0 10px 10px 0;
}

.quote-box i {
    color: var(--accent-1);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quote-box p {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

/* Services */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.s-1 { color: var(--accent-1); box-shadow: 0 0 20px rgba(0,240,255,0.2); }
.service-icon.s-2 { color: #1877f2; box-shadow: 0 0 20px rgba(24,119,242,0.2); }
.service-icon.s-3 { color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.2); text-shadow: 2px 2px 0 #ff0050, -2px -2px 0 #00f2fe;}
.service-icon.s-4 { color: var(--accent-2); box-shadow: 0 0 20px rgba(112,0,255,0.2); }

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

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

/* Why Timeline */
.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.why-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-glass);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-point {
    position: absolute;
    left: -35px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-1);
}

.border-left-glow {
    border-left: 2px solid var(--accent-1);
    padding: 2rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.timeline-content p {
    color: var(--text-muted);
}

.bottom-line {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.bottom-line h3 {
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

/* Results section */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spend-banner {
    text-align: center;
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.spend-banner h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

/* Contact / Target */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
    border-radius: 30px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact-content, .cta-box {
    position: relative;
    z-index: 1;
}

.target-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bad-fit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bad-fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #bbb;
}

.bad-fit-list i.fa-times-circle {
    color: #ff3366;
    margin-top: 4px;
}

.bad-fit-list i.fa-check-circle {
    color: #00e676;
    margin-top: 4px;
}

.cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    text-align: center;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
    background: var(--bg-main);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent-1); }

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid var(--border-glass);
}
.footer-socials a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.hidden-onload {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpOnLoad 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUpOnLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container, .about-container, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-image-wrapper { height: 450px; }
    .contact-wrapper { padding: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid var(--border-glass);
        z-index: 99;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .mobile-menu-btn { display: block; }
    
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    
    .floating-badge.fb-1 { right: 0; }
    .floating-badge.fb-2 { left: 0; }
    
    .contact-wrapper { padding: 2rem 1.5rem; }
    .cta-box { padding: 2rem 1.5rem; }
}
