/* =========================================
   Variables & Theme Setup
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #07070a;
    --bg-darker: #040406;
    --bg-card: rgba(20, 20, 28, 0.6);
    --bg-card-hover: rgba(30, 30, 45, 0.8);
    
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    
    /* Brand Gradients & Accents */
    --accent-primary: #00f2fe;
    --accent-secondary: #4facfe;
    --accent-tertiary: #b122e5;
    --gradient-brand: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.5), rgba(79, 172, 254, 0.5), rgba(177, 34, 229, 0.5));
    
    /* UI Elements */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.2);
    
    /* Spacing & Layout */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --container-width: 1200px;
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom one */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 800px; }
.relative-z { position: relative; z-index: 10; }

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

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* =========================================
   Typography & Gradients
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 1.5rem; }

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

.subtitle {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* =========================================
   Custom Cursor
   ========================================= */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
}

/* Hover effects for cursor */
body:has(a:hover) .cursor, body:has(button:hover) .cursor {
    width: 0;
    height: 0;
}

body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-primary);
    mix-blend-mode: screen;
}

/* =========================================
   Glow Orbs & Backgrounds
   ========================================= */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.orb-1 { width: 400px; height: 400px; background: rgba(0, 242, 254, 0.15); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: rgba(177, 34, 229, 0.15); top: 20%; right: -200px; }
.orb-3 { width: 600px; height: 600px; background: rgba(79, 172, 254, 0.1); bottom: 10%; left: -300px; }
.orb-4 { width: 500px; height: 500px; background: rgba(177, 34, 229, 0.1); top: 30%; right: -100px; }
.orb-5 { width: 800px; height: 800px; background: rgba(0, 242, 254, 0.15); bottom: -400px; left: 50%; transform: translateX(-50%); }

/* =========================================
   Buttons & Links
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: none;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-darker);
    border: none;
}

.btn-glow {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(0, 242, 254, 0.5);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-secondary), var(--accent-primary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-glow:hover {
    box-shadow: 0 15px 40px -5px rgba(177, 34, 229, 0.6);
    transform: translateY(-3px);
}

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

.btn-huge {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: none;
}

.play-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
}

.play-btn:hover .play-icon-wrap {
    background: var(--text-main);
    color: var(--bg-darker);
    transform: scale(1.1);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 40px;
    object-fit: contain;
}

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

.hover-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.hover-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}

.hover-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
}

.mobile-menu-btn span {
    width: 30px; height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 28, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

.stat-card-1 { top: 0%; left: 0; animation: float 6s ease-in-out infinite; }
.stat-card-2 { bottom: 20%; right: -20%; animation: float 7s ease-in-out infinite 1s; }
.stat-card-3 { bottom: -5%; left: 10%; animation: float 5s ease-in-out infinite 2s; }

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    width: 80%;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border-color), 0 30px 60px rgba(0,0,0,0.5);
}

.hero-map-img {
    width: 100%;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-map-img {
    transform: scale(1);
}

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

/* =========================================
   Features / Difference Grid
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--accent-primary);
}

.lottie-icon {
    width: 40px; height: 40px;
}

/* =========================================
   Proven Results Section
   ========================================= */
.results-section {
    position: relative;
    padding: var(--space-xl) 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.result-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.result-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.result-card:hover .result-img-wrap img {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.result-overlay .badge {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.5);
    color: var(--accent-primary);
    backdrop-filter: blur(10px);
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* =========================================
   Us vs Them Comparison
   ========================================= */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.comparison-card.bad {
    background: rgba(20, 20, 28, 0.4);
    opacity: 0.8;
}

.comparison-card.good {
    background: rgba(20, 20, 35, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.1);
}

.active-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 1px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.x-mark { background: rgba(255, 50, 50, 0.1); color: #ff5555; }
.check-mark { background: rgba(0, 242, 254, 0.1); color: var(--accent-primary); }

/* =========================================
   Process Section
   ========================================= */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-image-wrap {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.process-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    opacity: 0.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 24px; top: 0; bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.step-item {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.step-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    width: 100%;
    transition: var(--transition-smooth);
}

.step-content:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
}

.step-content h4 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.step-content p { margin: 0; font-size: 1rem; }

/* =========================================
   Services Grid
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    transform: translateY(-5px);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
    font-family: monospace;
}

/* =========================================
   Showcase / Glass Panel
   ========================================= */
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 4rem;
    overflow: hidden;
    position: relative;
}

.showcase-text { position: relative; z-index: 2; }

.strategist-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.strategist-info .name { color: var(--text-main); font-weight: 700; margin-bottom: 0.2rem; }
.strategist-info .role { font-size: 0.875rem; color: var(--accent-primary); margin: 0; }

.glass-panel {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.showcase-content:hover .glass-panel {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* =========================================
   FAQ Accordion
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    font-family: var(--font-family);
    transition: background 0.3s;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-info .info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.info-item p {
    font-size: 1rem;
    margin: 0;
}

.working-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.working-hours h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.working-hours p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    cursor: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 242, 254, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 160, 176, 0.5);
}

.contact-form .btn {
    margin-top: 1rem;
}

/* =========================================
   CTA & Footer
   ========================================= */
.cta-section {
    padding: var(--space-xl) 0;
    position: relative;
}

.cta-actions {
    margin: 3rem 0;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer {
    background: #020203;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: grayscale(1) brightness(2);
    opacity: 0.8;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .process-layout, .showcase-content, .comparison-container, .results-grid {
        grid-template-columns: 1fr;
    }
    
    .process-image-wrap {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu styling needed for actual toggle */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .floating-card {
        padding: 1rem;
        transform: scale(0.8);
    }
    
    .stat-card-1 { left: -10%; }
    .stat-card-2 { right: -10%; }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info .info-card,
    .contact-form-wrap {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cursor, .cursor-follower {
        display: none; /* Disable custom cursor on mobile */
    }
    body.dark-theme { cursor: auto; }
    .btn, .play-btn, .hover-link { cursor: pointer; }
}

/* =========================================
   Floating Action Buttons
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.floating-actions1 {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.float-btn svg {
    width: 28px;
    height: 28px;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.call-btn {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
}

.call-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}
