/* ==========================================================================
   PREMIUM CORPORATE DESIGN SYSTEM - TARAN GROUP
   ========================================================================== */

:root {
    /* Brand Color Palette */
    --primary: #7928CA;
    /* Royal Purple */
    --secondary: #2563EB;
    /* Royal Blue */
    --accent: #06B6D4;
    /* Cyan */
    --background: #F8FAFC;
    /* Premium Light Background */
    --text-dark: #0F172A;
    /* Dark Charcoal Text for Light Mode */
    --text-muted: #64748B;
    /* Muted Slate Text */

    /* Supporting Surface Colors */
    --surface: #FFFFFF;
    /* Clean White Card Background */
    --surface-dark: #F1F5F9;
    --border-light: rgba(15, 23, 42, 0.08);
    --border-dark: rgba(15, 23, 42, 0.12);

    /* Override v2-master.css variables for light theme */
    --bg-deep: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F1F5F9;
    --text-main: #0F172A;
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(20px);

    /* Visual Effects */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- GLOBAL CORE STYLES --- */
body {
    background-color: var(--background) !important;
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark) !important;
    font-weight: 700;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-muted) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

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

/* --- NAVIGATION --- */
.navbar-floating {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    margin-top: 24px;
    padding: 12px 24px !important;
    transition: var(--transition-smooth);
}

.navbar-floating .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #FFFFFF !important;
}

.navbar-floating .brand-accent {
    color: var(--accent);
}

.navbar-floating .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 100px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}

.navbar-floating .nav-link:hover,
.navbar-floating .nav-link.active {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-floating .btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #1D4ED8 100%) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
    color: #FFFFFF !important;
    font-weight: 600;
    border-radius: 100px !important;
    padding: 8px 20px !important;
}

/* --- BUTTONS --- */
.btn-magnetic {
    background: linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 100px;
    padding: 16px 36px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition: var(--transition-smooth);
}

.btn-magnetic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    background: var(--secondary);
}

.btn-outline-glass {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 100px;
    padding: 14px 34px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-outline-glass:hover {
    background: var(--primary);
    color: #FFFFFF !important;
}

/* --- STATS CARD --- */
.stat-card-premium {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.stat-number-premium {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

/* --- BENTO GRID SYSTEM --- */
.bento-grid-premium {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.bento-card.has-bg-img {
    padding: 0;
    min-height: 380px;
}

.bento-card.has-bg-img .bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.bento-card.has-bg-img .bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card.has-bg-img:hover .bento-bg {
    transform: scale(1.06);
}

.bento-card.has-bg-img .bento-inner {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFFFFF;
}

.bento-card.has-bg-img .bento-inner h3,
.bento-card.has-bg-img .bento-inner p {
    color: #FFFFFF !important;
}

.icon-badge {
    width: 54px;
    height: 54px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion-premium .accordion-item {
    background: var(--surface) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-accordion-premium .accordion-item:hover {
    border-color: var(--secondary) !important;
    box-shadow: var(--shadow-md);
}

.faq-accordion-premium .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary) !important;
    background: transparent !important;
    padding: 24px;
    box-shadow: none !important;
}

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

.faq-accordion-premium .accordion-body {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card-premium {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- PORTFOLIO CARD --- */
.portfolio-card-premium {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.portfolio-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.portfolio-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-premium:hover .portfolio-image {
    transform: scale(1.05);
}

/* --- FOOTER OVERHAUL --- */
.footer-v3 {
    background: var(--surface) !important;
    color: var(--text-muted) !important;
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-v3 .footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-dark) !important;
}

.footer-v3 .footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark) !important;
    margin-bottom: 24px;
}

.footer-v3 .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-v3 .footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-v3 .footer-links a:hover {
    color: var(--secondary) !important;
    padding-left: 4px;
}

.footer-v3 .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-right: 12px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-v3 .social-link:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: scale(1.1);
}

/* --- GLASS BADGES & OVERLAYS --- */
.glass-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

/* --- RESPONSIVENESS AND SPACING --- */
.section-premium-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .bento-grid-premium {
        grid-template-columns: repeat(1, 1fr);
    }

    .bento-card {
        grid-column: span 1 !important;
    }

    .section-premium-padding {
        padding: 60px 0;
    }

    .navbar-floating {
        border-radius: 20px;
        margin-top: 10px;
        width: 92% !important;
    }
}

/* --- IMAGE WRAPPERS & HERO LAYOUT BG --- */
.bg-image-wrapper {
    position: relative;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-image-wrapper>*:not(.bg-image):not(.bg-overlay) {
    position: relative;
    z-index: 2;
}

/* --- LIGHT GLASS OUTLINE BUTTON (FOR DARK BACKGROUNDS) --- */
.btn-outline-glass-light {
    background: transparent;
    color: var(--text-dark) !important;
    border: 2px solid rgba(15, 23, 42, 0.15);
    border-radius: 100px;
    padding: 14px 34px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-outline-glass-light:hover {
    background: var(--text-dark);
    color: var(--background) !important;
    border-color: var(--text-dark);
}

/* Pricing Page Hero Button Overrides */
.inner-hero-banner .btn-outline-glass-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.inner-hero-banner .btn-outline-glass-light:hover {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border-color: #ffffff !important;
}

/* Pricing Page Hero Button Overrides */
.inner-hero-banner .btn-outline-glass-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.inner-hero-banner .btn-outline-glass-light:hover {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border-color: #ffffff !important;
}

/* Pricing Page Enterprise Hero Button Overrides */
.enterprise-hero-banner .btn-outline-glass-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.enterprise-hero-banner .btn-outline-glass-light:hover {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border-color: #ffffff !important;
}

/* --- PREMIUM TECHNOLOGY STACK SECTION --- */
.tech-section-premium {
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

/* Background Grid Pattern */
.grid-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    top: -50px;
    left: -50px;
}

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

.blob-3 {
    width: 300px;
    height: 300px;
    background: #4F46E5;
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.1);
    }

    100% {
        transform: translate(-20px, -40px) scale(0.95);
    }
}

/* Stats Bullet & List */
.stat-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    flex-shrink: 0;
}

/* Bento Grid */
.tech-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.tech-bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 28px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tech-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.02), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tech-bento-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: var(--shadow-lg);
}

.tech-bento-card:hover::before {
    opacity: 1;
}

/* Bento Column Spanning */
.bento-col-1 {
    grid-column: span 1;
}

.bento-col-2 {
    grid-column: span 2;
}

.tech-bento-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-bento-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-bottom: 8px;
}

.tech-bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted) !important;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Tech Bento Grid */
@media (max-width: 991px) {
    .tech-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-col-1,
    .bento-col-2 {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .tech-bento-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .bento-col-1,
    .bento-col-2 {
        grid-column: span 1;
    }
}

/* --- CUSTOM HERO SECTION STYLES --- */
.hero-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-badge-pill {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: #c084fc;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge-pill i {
    font-size: 0.9rem;
    animation: pulseLightning 1.5s infinite alternate;
}

@keyframes pulseLightning {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 100px;
    padding: 14px 34px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
    filter: brightness(1.1);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 14px 34px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-laptop-img {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px) rotateY(-5deg);
    }

    50% {
        transform: translateY(-12px) rotateY(-3deg) rotateX(1deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg);
    }
}

.hero-stat-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.hero-stat-circle.blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.hero-stat-circle.purple {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.hero-stat-circle.green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

/* --- INNER HERO BANNERS --- */
.inner-hero-banner {
    position: relative;
    padding-top: 160px;
    padding-bottom: 90px;
    background-color: #030305;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 10% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Subtle dot grid pattern */
.inner-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    z-index: 0;
    opacity: 0.8;
}

/* Diagonal top-left accent bar */
.inner-hero-banner::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

/* Animated orb — top right */
.inner-hero-banner .hero-orb-1 {
    position: absolute;
    top: -40px;
    right: 8%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

/* Animated orb — bottom left */
.inner-hero-banner .hero-orb-2 {
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

/* Decorative geometric ring */
.inner-hero-banner .hero-ring {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.08);
    z-index: 0;
}

.inner-hero-banner .hero-ring::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.05);
}

/* Accent top border line */
.inner-hero-banner .hero-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(37, 99, 235, 0.3) 20%,
            rgba(6, 182, 212, 0.5) 50%,
            rgba(124, 58, 237, 0.3) 80%,
            transparent 100%);
    z-index: 2;
}

/* Bottom wave shape */
.inner-hero-banner .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}

.inner-hero-banner .hero-wave svg {
    display: block;
    width: 100%;
}

/* Floating mini particles */
.inner-hero-banner .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.15;
    z-index: 0;
    animation: particlePulse 4s ease-in-out infinite;
}

.inner-hero-banner .hero-particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.inner-hero-banner .hero-particle:nth-child(2) {
    width: 5px;
    height: 5px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: var(--accent);
}

.inner-hero-banner .hero-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 35%;
    left: 92%;
    animation-delay: 2s;
    background: var(--primary);
}

.inner-hero-banner .hero-particle:nth-child(4) {
    width: 4px;
    height: 4px;
    top: 75%;
    left: 30%;
    animation-delay: 0.5s;
}

.inner-hero-banner .hero-particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 15%;
    left: 60%;
    animation-delay: 1.5s;
    background: var(--accent);
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes particlePulse {

    0%,
    100% {
        opacity: 0.12;
        transform: scale(1);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.3);
    }
}

/* Breadcrumb nav */
.inner-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.inner-hero-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.inner-hero-breadcrumb a:hover {
    color: #FFFFFF;
}

.inner-hero-breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.inner-hero-breadcrumb .bc-current {
    color: #FFFFFF;
}

/* Bottom decorative divider */
.inner-hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--background));
    z-index: 1;
    pointer-events: none;
}


/* --- LIGHT GLASS INPUTS --- */
.form-control {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    color: var(--text-dark) !important;
    border-radius: 12px !important;
    padding: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    background: #FFFFFF !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15) !important;
    color: var(--text-dark) !important;
}

.form-control::placeholder {
    color: #94A3B8 !important;
}

/* --- GLOBAL LIGHT THEME OVERRIDES --- */
.cinematic-title {
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.subtitle-text {
    color: var(--text-muted) !important;
}

.inner-hero-banner h1 {
    color: #FFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFF !important;
    background-clip: unset !important;
}

.inner-hero-banner p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.btn-hero-outline {
    background: rgba(15, 23, 42, 0.02) !important;
    color: #0F172A !important;
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
}

.btn-hero-outline:hover {
    background: rgba(15, 23, 42, 0.06) !important;
    border-color: rgba(15, 23, 42, 0.3) !important;
}

/* --- STAT LABEL --- */
.stat-label {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- SECTION HEADINGS FORCE LIGHT --- */
/* Override any inline color: #FFFFFF on section headings */
.section-title-v2 {
    color: var(--text-dark) !important;
}

/* Tech stack section left side – force light-mode text */
.tech-section-premium .display-5,
.tech-section-premium h2 {
    color: var(--text-dark) !important;
}

.tech-section-premium p {
    color: var(--text-muted) !important;
}

.tech-section-premium .stat-val {
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

.tech-section-premium .stat-desc {
    color: var(--text-muted) !important;
}

/* --- LIGHT THEME BADGE (replace dark glass badge) --- */
/* Badges using rgba(255,255,255,0.03) bg + white text → switch to light slate */
.badge.border {
    background: rgba(15, 23, 42, 0.04) !important;
    color: var(--text-dark) !important;
    border-color: rgba(15, 23, 42, 0.10) !important;
}

/* --- TESTIMONIAL TEXT FIX --- */
.testimonial-card-premium p {
    color: var(--text-dark) !important;
    font-style: italic;
}

.testimonial-card-premium h5 {
    color: var(--text-dark) !important;
}

/* --- PORTFOLIO CARD TITLE FIX --- */
.portfolio-card-premium h3 {
    color: var(--text-dark) !important;
}

/* --- CONTACT / BENTO CARD WHITE TEXT FIX --- */
/* Contact info card links and text */
.bento-card a.text-white {
    color: var(--secondary) !important;
    text-decoration: none;
}

.bento-card h3,
.bento-card h4,
.bento-card h5,
.bento-card h6 {
    color: var(--text-dark) !important;
}

.bento-card span.fw-bold {
    color: var(--text-dark) !important;
}

/* Social / outline-light buttons on light bg */
.btn-outline-light {
    color: var(--text-dark) !important;
    border-color: rgba(15, 23, 42, 0.15) !important;
    background: rgba(15, 23, 42, 0.03) !important;
}

.btn-outline-light:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #FFFFFF !important;
}

/* Hero badge pill text fix for light bg */
.hero-badge-pill {
    color: #7c3aed;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

.inner-hero-banner .hero-badge-pill {
    color: #c084fc !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* CTA section heading fix */
.cinematic-title.mb-4 {
    -webkit-text-fill-color: transparent;
}


/* --- PRICING FEATURES LIST --- */
.pricing-features li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--secondary);
    flex-shrink: 0;
}

/* --- HERO MESH BACKGROUND --- */
.hero-mesh {
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.012) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

/* =========================================================================
   SERVICES PAGE COMPONENTS
   ========================================================================= */

/* Quick Service Navigation Pills */
.service-pill-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.service-pill-link:hover {
    background: var(--secondary);
    color: #FFFFFF;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.inner-hero-banner .service-pill-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
}

.inner-hero-banner .service-pill-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

/* Service Detail Card */
.service-detail-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 44px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

/* Service Icon Wrap */
.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

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

/* Service Feature Items */
.service-feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 0;
}

.service-feature-item i {
    flex-shrink: 0;
    color: var(--secondary);
}

/* Service Highlight Box */
.service-highlight-box {
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    padding: 28px;
    margin-top: 8px;
}

.service-highlight-box strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

/* Service Bullet */
.service-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 8px currentColor;
}

/* =========================================================================
   PRICING PAGE COMPONENTS
   ========================================================================= */

/* Pricing Trust Badges */
.pricing-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    /* subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.pricing-trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

/* Removed overridden dark rule */

/* Pricing Card */
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Featured / Popular Pricing Card */
.pricing-card-featured {
    border: 2px solid var(--secondary) !important;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.1), var(--shadow-md) !important;
    background: linear-gradient(145deg, #FFFFFF 0%, rgba(37, 99, 235, 0.02) 100%) !important;
}

.pricing-card-featured:hover {
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.18), var(--shadow-lg) !important;
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--secondary);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price-block {
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

/* Pricing Features (enhanced) */
.pricing-features li {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.9rem;
}

.section-premium-padding .col-lg-6,
.section-premium-padding .col-lg-4,
.section-premium-padding .col-md-6,
.section-premium-padding .col-lg-12 {
    text-align: center;
}

.section-premium-padding .row {
    justify-content: center;
}


/* Pricing Comparison Table */
.pricing-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    font-size: 0.92rem;
}

.pricing-comparison-table thead tr {
    background: var(--background);
}

.pricing-comparison-table th {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--border-light);
    text-align: left;
}

.pricing-comparison-table td {
    padding: 16px 24px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.pricing-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-comparison-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.02);
}

.pricing-comparison-table .featured-col {
    background: rgba(37, 99, 235, 0.04);
    border-left: 2px solid rgba(37, 99, 235, 0.15);
    border-right: 2px solid rgba(37, 99, 235, 0.15);
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-comparison-table thead .featured-col {
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary);
    border-top: 2px solid var(--secondary);
}

/* Add-on Cards */
.addon-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.addon-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.addon-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* Responsive */
@media (max-width: 991px) {
    .service-detail-card {
        padding: 28px;
    }

    .pricing-card {
        padding: 28px;
    }

    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .pricing-amount {
        font-size: 2.4rem;
    }
}

/* =========================================================================
   ABOUT PAGE COMPONENTS
   ========================================================================= */

/* Core Value Cards */
.about-value-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

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

.about-value-card h4 {
    color: var(--text-dark);
    font-size: 1.15rem;
}

/* Process Step Cards */
.process-step-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.process-step-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(37, 99, 235, 0.06);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: -2px;
}

.process-step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.process-step-card h5 {
    color: var(--text-dark);
}

/* About Standard Items */
.about-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.about-standard-item:hover {
    border-color: rgba(37, 99, 235, 0.15);
    background: rgba(37, 99, 235, 0.02);
}

.about-standard-item strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}

/* About Differentiator Cards */
.about-differentiator-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.about-differentiator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.about-differentiator-card h6 {
    color: var(--text-dark);
}

/* Tech Category Cards */
.tech-category-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.tech-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.12);
}

.tech-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.tech-category-card h6 {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tech Mini Badges */
.tech-mini-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Stat Card Premium */
.stat-card-premium {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number-premium {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive About */
@media (max-width: 991px) {
    .about-value-card {
        padding: 24px;
    }

    .process-step-card {
        padding: 24px 20px;
    }

    .about-standard-item {
        padding: 14px 16px;
    }
}

/* =========================================================================
   ENTERPRISE HERO BANNER ($100k+ aesthetic)
   ========================================================================= */

.enterprise-hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #030305;
}

.enterprise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.7) contrast(1.1);
}

.enterprise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(3, 3, 5, 0.95) 0%, rgba(3, 3, 5, 0.7) 40%, rgba(3, 3, 5, 0.4) 100%);
}

.enterprise-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: -100px;
    right: -100px;
    animation: pulseLightning 6s infinite alternate;
}

.enterprise-hero-banner h1 {
    color: #FFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFF !important;
    background-clip: unset !important;
    text-align: center !important;
}

.enterprise-hero-banner p,
.enterprise-hero-banner .enterprise-hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.enterprise-hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
}

.enterprise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.enterprise-hero-banner .space-grotesk-title {
    color: #FFF !important;
}

.enterprise-hero-glow-alt {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    bottom: -150px;
    left: -50px;
    animation: pulseLightning 8s infinite alternate-reverse;
}

.enterprise-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.space-grotesk-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.enterprise-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.btn-enterprise-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-enterprise-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
}

.btn-enterprise-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .enterprise-hero-banner {
        min-height: 500px;
        padding-top: 120px;
    }
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
}

/* Mobile navbar adjustment */
@media (max-width: 576px) {
    nav.navbar {
        width: 100% !important;
        max-width: 100% !important;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.enterprise-hero-content .pricing-trust-badge {
    margin: 8px;
}