/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav__logo {
    height: 60px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #008EFF;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #008EFF, #49abfc);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, #034195, #4108dd);
    color: white;
    box-shadow: 0 4px 15px #02295f;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #240a6b;
}

.btn--ghost {
    background: transparent;
    color: #333;
    border: 2px solid #e1e5e9;
}

.btn--ghost:hover {
    border-color: #034195;
    color: #034195;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f2 100%);
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Orange Glowing Orbs - Fixed for mobile */
.glowing-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(ellipse 140% 90%, rgba(255, 107, 53, 0.7) 0%, rgba(255, 142, 83, 0.5) 20%, rgba(255, 165, 0, 0.4) 35%, rgba(255, 107, 53, 0.3) 55%, rgba(255, 142, 83, 0.2) 75%, transparent 90%);
    filter: blur(25px);
    pointer-events: none;
    z-index: 1;
    box-shadow: 
        0 0 80px rgba(255, 107, 53, 0.6),
        0 0 160px rgba(255, 142, 83, 0.5),
        0 0 240px rgba(255, 165, 0, 0.4),
        0 0 320px rgba(255, 107, 53, 0.3),
        0 0 400px rgba(255, 142, 83, 0.2);
}

.glowing-orb-1 {
    width: 225px;
    height: 190px;
    top: 5%;
    right: -10%;
    animation: slowFloat1 15s ease-in-out infinite;
}

.glowing-orb-2 {
    width: 175px;
    height: 150px;
    bottom: 15%;
    left: -5%;
    animation: slowFloat2 12s ease-in-out infinite reverse;
}

.glowing-orb-3 {
    width: 140px;
    height: 120px;
    top: 55%;
    right: 10%;
    animation: slowFloat3 18s ease-in-out infinite;
}

.glowing-orb-4 {
    width: 110px;
    height: 95px;
    bottom: 35%;
    left: 15%;
    animation: slowFloat4 14s ease-in-out infinite reverse;
}

.glowing-orb-5 {
    width: 160px;
    height: 140px;
    top: 25%;
    left: 5%;
    animation: slowFloat5 16s ease-in-out infinite;
}

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

@keyframes slowFloat1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(40px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-40px) translateX(10px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes slowFloat2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    30% { 
        transform: translateY(25px) translateX(-15px) rotate(60deg) scale(1.2);
        opacity: 0.7;
    }
    60% { 
        transform: translateY(-15px) translateX(-30px) rotate(120deg) scale(0.8);
        opacity: 0.6;
    }
    90% { 
        transform: translateY(10px) translateX(-5px) rotate(300deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slowFloat3 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    40% { 
        transform: translateY(-20px) translateX(-25px) rotate(144deg) scale(1.3);
        opacity: 0.9;
    }
    80% { 
        transform: translateY(15px) translateX(-10px) rotate(288deg) scale(0.7);
        opacity: 0.5;
    }
}

@keyframes slowFloat4 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    35% { 
        transform: translateY(35px) translateX(20px) rotate(126deg) scale(1.4);
        opacity: 0.8;
    }
    70% { 
        transform: translateY(-5px) translateX(35px) rotate(252deg) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes slowFloat5 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    20% { 
        transform: translateY(-25px) translateX(15px) rotate(72deg) scale(0.8);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(10px) translateX(30px) rotate(180deg) scale(1.2);
        opacity: 0.9;
    }
    80% { 
        transform: translateY(-10px) translateX(5px) rotate(288deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Contact Section Orbs */
.glowing-orb-contact-1 {
    width: 190px;
    height: 160px;
    top: 10%;
    right: -5%;
    animation: slowFloat1 20s ease-in-out infinite;
    z-index: 1;
}

.glowing-orb-contact-2 {
    width: 125px;
    height: 105px;
    bottom: 20%;
    left: -8%;
    animation: slowFloat3 16s ease-in-out infinite reverse;
    z-index: 1;
}

/* Testimonials Section Orbs */
.glowing-orb-testimonial-1 {
    width: 320px;
    height: 280px;
    top: 15%;
    left: -3%;
    animation: slowFloat2 18s ease-in-out infinite;
    z-index: 1;
}

.glowing-orb-testimonial-2 {
    width: 270px;
    height: 230px;
    bottom: 10%;
    right: 5%;
    animation: slowFloat4 22s ease-in-out infinite reverse;
    z-index: 1;
}

.glowing-orb-testimonial-3 {
    width: 180px;
    height: 160px;
    top: 55%;
    right: 15%;
    animation: slowFloat5 14s ease-in-out infinite;
    z-index: 1;
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    background: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: floatParticle 30s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Dynamic Orbs Additional Styles */
.dynamic-orb {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Pulse Animation for Extra Glow Effect */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 107, 53, 0.3),
            0 0 40px rgba(255, 107, 53, 0.2),
            0 0 60px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 107, 53, 0.5),
            0 0 60px rgba(255, 107, 53, 0.3),
            0 0 90px rgba(255, 107, 53, 0.2);
    }
}

/* Add pulse to some orbs */
.glowing-orb-1,
.glowing-orb-contact-1,
.glowing-orb-testimonial-1 {
    animation: slowFloat1 15s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}

/* Features Section Orbs */
.glowing-orb-features-1 {
    width: 165px;
    height: 140px;
    top: 15%;
    right: -2%;
    animation: slowFloat2 17s ease-in-out infinite;
    z-index: 1;
}

.glowing-orb-features-2 {
    width: 130px;
    height: 110px;
    bottom: 25%;
    left: 7%;
    animation: slowFloat4 19s ease-in-out infinite reverse;
    z-index: 1;
}

.glowing-orb-features-3 {
    width: 100px;
    height: 85px;
    top: 60%;
    right: 20%;
    animation: slowFloat5 13s ease-in-out infinite;
    z-index: 1;
}

/* Analytics Section Orbs */
.glowing-orb-analytics-1 {
    width: 145px;
    height: 125px;
    top: 20%;
    left: -2%;
    animation: slowFloat3 21s ease-in-out infinite;
    z-index: 1;
}

.glowing-orb-analytics-2 {
    width: 110px;
    height: 95px;
    bottom: 15%;
    right: 10%;
    animation: slowFloat1 16s ease-in-out infinite reverse;
    z-index: 1;
}

/* Deployment Section Orbs */
.glowing-orb-deployment-1 {
    width: 165px;
    height: 165px;
    top: 15%;
    left: 10%;
    animation: slowFloat4 23s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, rgba(255, 142, 83, 0.3) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-deployment-2 {
    width: 110px;
    height: 110px;
    bottom: 25%;
    right: 8%;
    animation: slowFloat2 18s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.7) 0%, rgba(255, 142, 83, 0.35) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-deployment-3 {
    width: 65px;
    height: 65px;
    top: 55%;
    left: 25%;
    animation: slowFloat5 15s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.8) 0%, rgba(255, 142, 83, 0.4) 40%, transparent 70%);
    z-index: 1;
}

/* AI Powered Section Orbs */
.glowing-orb-ai-1 {
    width: 190px;
    height: 190px;
    top: 10%;
    right: 5%;
    animation: slowFloat1 25s ease-in-out infinite, pulseGlow 6s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.8) 0%, rgba(255, 142, 83, 0.4) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-ai-2 {
    width: 135px;
    height: 135px;
    bottom: 20%;
    left: 8%;
    animation: slowFloat3 20s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.7) 0%, rgba(255, 142, 83, 0.35) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-ai-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation: slowFloat4 17s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.9) 0%, rgba(255, 142, 83, 0.45) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-ai-4 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    left: 30%;
    animation: slowFloat2 14s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, rgba(255, 142, 83, 0.3) 40%, transparent 70%);
    z-index: 1;
}

/* Footer Section Orbs */
.glowing-orb-footer-1 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 12%;
    animation: slowFloat3 22s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 142, 83, 0.25) 40%, transparent 70%);
    z-index: 1;
}

.glowing-orb-footer-2 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 8%;
    animation: slowFloat5 18s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, rgba(255, 142, 83, 0.3) 40%, transparent 70%);
    z-index: 1;
}

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

.hero__title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #008EFF, #59abee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    animation: slideInUp 0.8s ease 0.4s both;
}

/* Dashboard Preview */
.hero__dashboard {
    animation: slideInRight 0.8s ease 0.3s both;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    margin-bottom: 1.5rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e1e5e9;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.nav-item {
    padding: 0.5rem 1rem;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-item.active {
    background: #008EFF;
    color: white;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dashboard-card {
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.card-header {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.card-value {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.card-trend {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-trend.positive { color: #2ecc71; }
.card-trend.negative { color: #e74c3c; }
.card-trend.neutral { color: #f39c12; }

/* Hero Brands */
    .hero__brands {
        background: #f8f9fa;
        padding: 60px 0;
        z-index: 5;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .brands__text {
        text-align: center;
        font-size: 1.1rem;
        color: #6c757d;
        margin-bottom: 40px;
        font-weight: 500;
    }
    .brands__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        align-items: center;
        justify-items: center;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 200px;
        padding: 10px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 280px;
    }
    .brand-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        /*filter: grayscale(1);*/
  
        transition: all 0.3s ease;
    }
    .brand-logo:hover img {
        filter: grayscale(0);
        opacity: 0.7;
    }
    /* Responsive breakpoints */
    @media (max-width: 768px) {
        .hero__brands {
            padding: 40px 0;
        }
        .brands__logos {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .brand-logo {
            height: 150px;
            padding: 15px;
        }
        .brands__text {
            font-size: 1rem;
            margin-bottom: 30px;
        }
    }
    @media (max-width: 480px) {
        .brands__logos {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .brand-logo {
            height: 150px;
            max-width: 250px;
        }
        .container {
            padding: 0 15px;
        }
    }
    @media (min-width: 1024px) {
        .brands__logos {
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
    }

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #034195;
}

.section-title--white {
    color: white;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008EFF, #45a7f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: #333;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Analytics Section */
.analytics {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

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

.analytics__title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #034195;
}

.analytics__description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: -0.005em;
}

.analytics__features {
    list-style: none;
}

.analytics__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.analytics__features i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.chart-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

/* Deployment Section */
.deployment {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.deployment__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #034195;
}

.deployment__features {
    list-style: none;
}

.deployment__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}

.deployment__features i {
    color: #008EFF;
    font-size: 1.3rem;
}

/* AI Powered Section */
.ai-powered {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.ai-powered__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.ai-powered__stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: left;
}

.stat__number {
    font-size: 4rem;
    font-weight: 800;
    color: #008EFF;
    display: inline-block;
}

.stat__suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: #008EFF;
    display: inline-block;
}

.stat__label {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-top: 0.5rem;
}

.ai-powered__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #034195;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact__item p {
    color: #666;
    line-height: 1.6;
}

.form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e1e5e9;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: border-color 0.3s ease;
    background: white;
}

.form__input:focus {
    outline: none;
    border-color: #008EFF;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial__rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    color: #f1c40f;
}

.testimonial__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author__avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author__name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.author__title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #fff;
  padding: 50px 20px 20px;
  font-family: 'Inter', sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

/* Orange gradient glow in top-right */
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center,
      rgba(255, 107, 53, 0.9) 0%,
      rgba(255, 107, 53, 0.5) 40%,
      rgba(255, 107, 53, 0.1) 70%,
      transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite;
}

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #e6e6e6;
  padding-top: 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

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

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

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #008EFF;
}

/* Headings */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Primary Pages */
.footer-pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-pages ul li {
  margin-bottom: 8px;
}

.footer-pages ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-pages ul li a:hover {
  color: #008EFF;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  border: 1px solid #333;
  border-radius: 25px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #FF6B35;
}

.partner-logo {
  max-width: 150px;
  height: auto;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #333;
  border-top: 1px solid #e6e6e6;
  margin-top: 30px;
  padding-top: 15px;
}

/* Glow Animation */
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

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

.social-link:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* MOBILE FIXES - Responsive Design */
@media (max-width: 768px) {
    /* Fix horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Hide or scale down orbs on mobile to prevent overflow */
    .glowing-orb {
        display: none; /* Hide all orbs on mobile to prevent overflow */
    }
    
    /* Alternative: Scale down orbs instead of hiding */
    /*
    .glowing-orb {
        transform: scale(0.3);
        filter: blur(15px);
        opacity: 0.5;
    }
    
    .glowing-orb-1 { right: -30%; top: 10%; }
    .glowing-orb-2 { left: -30%; bottom: 20%; }
    .glowing-orb-3 { right: 5%; top: 60%; }
    .glowing-orb-4 { left: 10%; bottom: 40%; }
    .glowing-orb-5 { left: -10%; top: 30%; }
    */

    /* Navigation fixes */
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav__buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav__toggle {
        display: block;
    }

    /* Hero section fixes */
    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Dashboard fixes */
    .dashboard-preview {
        padding: 1rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .dashboard-nav {
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .dashboard-card {
        padding: 1rem;
    }

    .card-value {
        font-size: 1.4rem;
    }

    /* Hero brands */
    .hero__brands {
        margin-top: 2rem;
    }

    .brands__logos {
        gap: 1.5rem;
        justify-content: center;
    }

    .brand-logo {
        font-size: 0.9rem;
    }

    /* Section content fixes */
    .analytics__content,
    .deployment__content,
    .ai-powered__content,
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stats section fix */
    .ai-powered__stats {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat__number {
        font-size: 3rem;
    }

    .stat__suffix {
        font-size: 2rem;
    }

    /* Testimonials fix */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Features grid fix */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Chart containers */
    .chart-container {
        padding: 1rem;
        overflow-x: auto;
    }

    /* Form fixes */
    .form {
        padding: 1.5rem;
    }

    /* Footer fixes */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .partner-logo {
        margin: 10px auto;
    }

    /* Section padding adjustments */
    .features,
    .analytics,
    .deployment,
    .ai-powered,
    .contact,
    .testimonials {
        padding: 4rem 0;
    }

    /* Title adjustments */
    .section-title,
    .analytics__title,
    .deployment__title,
    .ai-powered__title,
    .contact__title {
        font-size: 2rem;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero__title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .dashboard-preview {
        padding: 0.8rem;
    }

    .dashboard-nav {
        gap: 0.3rem;
    }

    .nav-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .dashboard-card {
        padding: 0.8rem;
    }

    .card-value {
        font-size: 1.2rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat__number {
        font-size: 2.5rem;
    }

    .stat__suffix {
        font-size: 1.8rem;
    }

    .section-title,
    .analytics__title,
    .deployment__title,
    .ai-powered__title,
    .contact__title {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .form {
        padding: 1.2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}