:root {
    /* High-End Dark Theme Palette */
    --bg-color: #030303;
    --surface: rgba(15, 15, 15, 0.6); /* Slightly transparent for background gradient bleed */
    --surface-solid: #0f0f0f;
    --surface-hover: rgba(22, 22, 22, 0.8);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #f5f5f5;
    --text-muted: #999999;
    
    /* High-Contrast Conversion Color */
    --accent: #FF4A00;
    --accent-glow: rgba(255, 74, 0, 0.2);
    --success: #00F58A;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --section-pad: 120px 24px;
}

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

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

/* --- GLOBAL BACKGROUND GRADIENTS --- */
.bg-gradients {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
    background-color: var(--bg-color);
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(255,74,0,0.15); }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: rgba(0,245,138,0.08); animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 40vw; height: 40vw; background: rgba(100,50,255,0.08); animation-delay: -10s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vw) scale(1.2); }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-xl {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==========================================================================
   2. UI COMPONENTS & 3D EFFECTS
   ========================================================================== */

/* 3D Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floatOrb 6s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 { 
    width: 180px; height: 180px; 
    top: 15%; right: 5%; 
    background: radial-gradient(circle at 30% 30%, #ff7a33, #FF4A00);
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.5), inset 10px 10px 20px rgba(255,255,255,0.4), 0 20px 40px rgba(255,74,0,0.3);
}

.orb-2 { 
    width: 100px; height: 100px; 
    bottom: 30%; left: 10%; 
    animation-delay: -3s; 
    background: radial-gradient(circle at 30% 30%, #33ffaa, #00F58A);
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.5), inset 10px 10px 20px rgba(255,255,255,0.4), 0 20px 40px rgba(0,245,138,0.2);
}

.orb-3 { 
    width: 60px; height: 60px; 
    top: 40%; left: 80%; 
    animation-delay: -1.5s; 
    background: radial-gradient(circle at 30% 30%, #9966ff, #5511ff);
    box-shadow: inset -5px -5px 10px rgba(0,0,0,0.5), inset 5px 5px 10px rgba(255,255,255,0.4), 0 10px 20px rgba(85,17,255,0.2);
}

@keyframes floatOrb {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(15deg); }
}

/* 3D Tilt Card Base */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(30,30,30,0.4) 0%, rgba(10,10,10,0.6) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Make the inner content pop out */
.tilt-inner {
    transform: translateZ(40px);
    transform-style: preserve-3d;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 74, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Trust Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 245, 138, 0.1);
    border: 1px solid rgba(0, 245, 138, 0.2);
    color: var(--success);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 245, 138, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 245, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 245, 138, 0); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: rgba(3, 3, 3, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: padding 0.3s ease, background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    transition: color 0.2s;
}

.phone-link:hover { color: var(--accent); }

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Sticky CTA for Mobile */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px;
    z-index: 99;
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

/* ==========================================================================
   4. SECTIONS
   ========================================================================== */

/* --- HERO SECTION --- */
.hero {
    padding: 180px 24px 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Strip under Hero */
.trust-strip {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}

.trust-strip p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    opacity: 0.6;
    flex-wrap: wrap;
}

.trust-logos span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    transform: translateZ(10px); /* Minor 3D pop if ever inside a tilt container */
}



/* --- PROBLEM VS SOLUTION SECTION --- */
.problem-solution {
    padding: var(--section-pad);
    position: relative;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.split-card {
    padding: 60px 48px;
    /* Applies .tilt-card base styles */
}

.card-problem {
    background: linear-gradient(145deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.8) 100%);
}

.card-solution {
    background: linear-gradient(145deg, rgba(30,10,0,0.6) 0%, rgba(15,5,0,0.8) 100%);
    border-color: rgba(255,74,0,0.3);
    box-shadow: 0 10px 40px rgba(255, 74, 0, 0.1);
}

.split-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card-problem h3 { color: var(--text-muted); }
.card-solution h3 { color: var(--accent); }

.check-list {
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
}

.card-problem .check-list li::before {
    content: '✕';
    color: #ff3333;
    font-weight: bold;
}

.card-solution .check-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,245,138,0.5);
}

/* --- SERVICES SECTION --- */
.services {
    padding: var(--section-pad);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    perspective: 1000px;
}

.service-card {
    padding: 48px;
    /* Applies .tilt-card base styles */
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 74, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 74, 0, 0.1);
    transform: translateZ(30px); /* 3D layer */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transform: translateZ(20px); /* 3D layer */
}

.service-card p {
    color: var(--text-muted);
    transform: translateZ(10px); /* 3D layer */
}

/* --- PROCESS SECTION --- */
.process {
    padding: var(--section-pad);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    perspective: 1000px;
}

.step-card {
    position: relative;
    padding: 40px;
    /* Applies .tilt-card base styles */
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transform: translateZ(-10px); /* Pushed back */
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 20px;
    color: #fff;
    transform: translateZ(20px);
}

.step-card p {
    transform: translateZ(10px);
}

/* --- RESULTS & TESTIMONIALS --- */
.results {
    padding: var(--section-pad);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    perspective: 1000px;
}

.testimonial-card {
    padding: 40px;
    /* Applies .tilt-card base styles */
}

.stars {
    color: #FFB800;
    margin-bottom: 24px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transform: translateZ(25px);
    text-shadow: 0 0 10px rgba(255,184,0,0.3);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 32px;
    color: #fff;
    transform: translateZ(15px);
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateZ(20px);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--border);
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- FINAL CTA SECTION --- */
.cta {
    padding: var(--section-pad);
    text-align: center;
}

.cta-box {
    /* 3D tilt applied */
    background: linear-gradient(135deg, rgba(30,10,0,0.8) 0%, rgba(10,5,0,0.9) 100%);
    border: 1px solid rgba(255, 74, 0, 0.4);
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255,74,0,0.15);
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.urgency-tag {
    display: inline-block;
    background: rgba(255,0,0,0.15);
    color: #ff4444;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255,0,0,0.3);
    transform: translateZ(30px);
}

/* --- FOOTER --- */
footer {
    background: var(--surface-solid);
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ==========================================================================
   5. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .split-grid, .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 80px 20px; }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: #fff;
    }
    
    .nav-actions .btn, .nav-actions .phone-link { display: none; }
    
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 80px; }
    .trust-logos { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .orb { display: none; /* Hide heavy 3D orbs on mobile for performance */ }
    
    /* Disable 3D tilt on mobile where touch reigns */
    .tilt-card { transform: none !important; transition: none !important; }
    .tilt-inner { transform: none !important; }
}
