/* ==========================================================================
   METAOX — NEXT-GENERATION DESIGN SYSTEM (2026 EDITION)
   Clean, Modern, Glassmorphic, High-Performance CSS Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Core Brand Accents */
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --primary-glow: rgba(99, 102, 241, 0.35);
    
    --secondary: #06b6d4;
    --secondary-light: #22d3ee;
    --secondary-glow: rgba(6, 182, 212, 0.35);

    --accent: #a855f7;
    --accent-light: #c084fc;
    --accent-glow: rgba(168, 85, 247, 0.35);

    --rose: #f43f5e;
    --emerald: #10b981;
    --amber: #f59e0b;

    /* Light Theme (Default) */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.72);
    --bg-glass-card: rgba(255, 255, 255, 0.65);
    --bg-subtle: #f1f5f9;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    --text-inverse: #ffffff;

    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-glass: rgba(255, 255, 255, 0.8);
    --border-hover: rgba(99, 102, 241, 0.3);

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.18);

    --header-height: 84px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Theme Variables */
body.dark-mode {
    --bg-main: #07090e;
    --bg-surface: #0f141f;
    --bg-surface-elevated: rgba(18, 24, 38, 0.9);
    --bg-glass: rgba(15, 20, 31, 0.72);
    --bg-glass-card: rgba(18, 24, 38, 0.65);
    --bg-subtle: #141b2b;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    --text-inverse: #0f172a;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(99, 102, 241, 0.45);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.3);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.25);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==========================================================================
   GLASSMORPHISM & SURFACE UTILITIES
   ========================================================================== */

.glass-effect,
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card {
    background: var(--bg-glass-card);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.border-trans {
    border-color: var(--border-subtle) !important;
}

/* Ambient Glow Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    transition: opacity 0.5s ease;
}

.glow-primary {
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.glow-secondary {
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
}

.glow-accent {
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-alt {
    background: linear-gradient(135deg, #a855f7 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Status Pulsing Dot */
.status-dot-pulsing {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.status-dot-pulsing::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
    animation: statusPulse 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    opacity: 0.8;
}

@keyframes statusPulse {
    0% { transform: scale(0.8); opacity: 0.9; }
    50% { transform: scale(1.8); opacity: 0.1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ==========================================================================
   BUTTONS & INTERACTIVE CONTROLS
   ========================================================================== */

/* Universal Button Overrides */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
}

.btn-primary,
.btn-magnetic,
.btn-primary-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    padding: 0.65rem 1.6rem !important;
    font-family: var(--font-heading);
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    letter-spacing: -0.01em;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35) !important;
    transition: var(--transition-smooth) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-magnetic::before,
.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.btn-magnetic:hover::before,
.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-magnetic:hover,
.btn-primary-gradient:hover,
.btn-primary:focus,
.btn-magnetic:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79, 70, 229, 0.55) !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    border: 1.5px solid var(--primary-light) !important;
    color: var(--primary-light) !important;
    background: rgba(99, 102, 241, 0.06) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35) !important;
}

.btn-outline-secondary {
    border: 1.5px solid var(--border-subtle) !important;
    color: var(--text-muted) !important;
    background: var(--bg-surface) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    border-color: var(--primary-light) !important;
    color: var(--primary-light) !important;
    background: rgba(99, 102, 241, 0.08) !important;
    transform: translateY(-2px);
}

.btn-outline-success {
    border: 1.5px solid #10b981 !important;
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.06) !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35) !important;
}

.btn-outline-info {
    border: 1.5px solid #06b6d4 !important;
    color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.06) !important;
}

.btn-outline-info:hover,
.btn-outline-info:focus {
    background: #06b6d4 !important;
    border-color: #06b6d4 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35) !important;
}

.btn-outline-glass {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(12px) !important;
    color: var(--text-main) !important;
    border: 1.5px solid var(--border-subtle) !important;
    border-radius: var(--radius-full) !important;
    padding: 0.65rem 1.6rem !important;
    font-family: var(--font-heading);
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth) !important;
}

.btn-outline-glass:hover {
    border-color: var(--primary-light) !important;
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-light) !important;
    text-decoration: none !important;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

.theme-switch-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.theme-switch-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: rotate(20deg) scale(1.08);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP, CALL & SPEED DIAL)
   ========================================================================== */

.floating-actions-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.floating-actions-container > * {
    pointer-events: auto;
}

.floating-whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: statusPulse 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    opacity: 0.8;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
    color: #ffffff !important;
}

.floating-whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-surface);
    color: var(--text-main);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-call-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-call-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
    color: #ffffff !important;
}

.floating-back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.floating-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-back-to-top:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   HEADER & FLOATING NAVBAR
   ========================================================================== */

.header-sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: transparent;
    transition: var(--transition-smooth);
}

.top-info-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    max-height: 44px;
    overflow: hidden;
}

.top-info-bar .top-bar-link,
.top-info-bar .top-bar-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.top-info-bar .top-bar-link:hover {
    color: var(--primary-light);
}

.header-sticky-wrapper.scrolled .top-info-bar {
    max-height: 0;
    opacity: 0;
    padding: 0 !important;
    border-bottom-color: transparent !important;
}

.metaox-header {
    width: 100%;
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
}

.metaox-header.scrolled {
    padding: 0.4rem 0;
}

.metaox-header .container,
.metaox-header .container-fluid {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(24px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-full) !important;
    padding: 0.5rem 1.4rem !important;
    box-shadow: var(--shadow-md) !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth) !important;
}

.metaox-header.scrolled .container,
.metaox-header.scrolled .container-fluid {
    background: var(--bg-surface-elevated) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
    padding: 0.38rem 1.25rem !important;
}

/* Nav Links */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem !important;
    color: var(--text-main) !important;
    padding: 0.45rem 0.85rem !important;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: var(--transition-fast);
}

.desktop-nav .nav-link:hover {
    color: var(--primary-light) !important;
    background: rgba(99, 102, 241, 0.08);
}

/* Dropdown Menus */
.dropdown-toggle::after,
.nav-link.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    box-shadow: var(--shadow-xl);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: block;
    z-index: 1090;
}

.nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main) !important;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary-light) !important;
    transform: translateX(4px);
}

/* Mega Menu */
.mega-menu-wrapper {
    position: static !important;
}

.mega-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2.4rem !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--border-glass) !important;
    background: var(--bg-surface) !important;
    box-shadow: var(--shadow-xl) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1090;
}

.nav-item.mega-menu-wrapper:hover > .mega-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.mega-column-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-light) !important;
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
    padding-bottom: 0.45rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-sub-items {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mega-sub-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
}

.mega-sub-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    line-height: 1.35;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

@media (min-width: 1200px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

/* Mobile Drawer */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xl);
    z-index: 1070;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    transform: translateX(-360px);
}

.mobile-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 0.5rem;
}

.mobile-accordion-content.active {
    max-height: 800px;
}

/* ==========================================================================
   HERO & BENTO SECTIONS
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-badge-pill {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    padding: 0.45rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-pill-feature {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .hero-section .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 3D Glass Dashboard Mockup Card */
.mockup-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
    position: relative;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dot.dot-red { background: #ef4444; }
.mockup-dot.dot-yellow { background: #f59e0b; }
.mockup-dot.dot-green { background: #10b981; }

.floating-stat-card {
    position: absolute;
    background: var(--bg-surface-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.stat-card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

/* Numbers / Stats Banner Strip */
.stats-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.5rem 0;
}

.stat-counter-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-counter-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.35rem;
}

/* ==========================================================================
   BENTO GRID & SERVICES
   ========================================================================== */

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-6px);
}

.bento-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    transition: var(--transition-bounce);
}

.bento-card:hover .bento-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.bento-icon-indigo { background: rgba(79, 70, 229, 0.12); color: #4f46e5; }
.bento-icon-cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.bento-icon-purple { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.bento-icon-rose { background: rgba(244, 63, 94, 0.12); color: #f43f5e; }
.bento-icon-emerald { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.bento-icon-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

.bento-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

/* City Card */
.city-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.city-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TECH MATRIX TABS
   ========================================================================== */

.tech-tab-pill {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition-fast);
    cursor: pointer;
    width: 100%;
}

.tech-tab-pill.active {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.12));
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.tech-stack-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.tech-stack-badge:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TIMELINE / PROCESS
   ========================================================================== */

.timeline-step-node {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

/* ==========================================================================
   INDUSTRIES & FAQ ACCORDION
   ========================================================================== */

.industry-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-accordion-item:hover {
    border-color: rgba(99, 102, 241, 0.3) !important;
}

.faq-accordion-button {
    background: transparent !important;
    color: var(--text-main) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.faq-accordion-button:not(.collapsed) {
    color: var(--primary-light) !important;
}

.faq-accordion-body {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.metaox-footer {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-xl);
}

.footer-link-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--primary-light) !important;
    transform: translateX(3px);
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-3px);
}

.footer-social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.back-to-top-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-main);
    transition: var(--transition-fast);
}

.back-to-top-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

.modern-form-control {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-main) !important;
    padding: 0.85rem 1.1rem !important;
    font-size: 0.95rem !important;
    transition: var(--transition-fast) !important;
}

.modern-form-control:focus {
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15) !important;
    background: var(--bg-surface) !important;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 991.98px) {
    :root {
        --header-height: 70px;
    }
    
    .footer-panel {
        padding: 2.2rem 1.5rem;
    }
    
    .stat-counter-number {
        font-size: 2.2rem;
    }
    
    .bento-card {
        padding: 1.6rem;
    }

    .floating-actions-container {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .floating-whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
    }
}

/* ==========================================================================
   LEAD GENERATION POPUP & MODAL
   ========================================================================== */

.lead-modal-content {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-xl), 0 0 50px rgba(99, 102, 241, 0.25) !important;
    overflow: hidden;
    position: relative;
}

.lead-modal-header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.75rem 2rem 1.25rem;
}

.lead-value-pill {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lead-success-screen {
    padding: 3rem 2rem;
    text-align: center;
}

.lead-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}