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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #111827;
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #8c52ff, #ff914d);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Floating WhatsApp - NO ANIMATION */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    transition: transform 0.2s;
}

    .whatsapp-float:hover {
        transform: scale(1.05);
        color: white;
    }

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(0, 1, 122, 0.1), rgba(140, 82, 255, 0.1));
    color: #00017a;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
}

/* Hero - SLOWER gradient animation */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #00017a 0%, #8c52ff 50%, #ff914d 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="white" opacity="0.3"/><circle cx="300" cy="200" r="3" fill="white" opacity="0.2"/><circle cx="500" cy="150" r="2" fill="white" opacity="0.4"/><circle cx="700" cy="300" r="3" fill="white" opacity="0.3"/><circle cx="200" cy="400" r="2" fill="white" opacity="0.2"/><circle cx="800" cy="500" r="3" fill="white" opacity="0.3"/><circle cx="400" cy="600" r="2" fill="white" opacity="0.4"/><circle cx="600" cy="700" r="3" fill="white" opacity="0.2"/><circle cx="300" cy="800" r="2" fill="white" opacity="0.3"/><circle cx="900" cy="200" r="3" fill="white" opacity="0.2"/></svg>') repeat;
        opacity: 0.1;
        animation: float 20s linear infinite;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 24px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 32px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00017a, #8c52ff);
    background-size: 200% 200%;
    color: white;
}

    .btn-primary:hover {
        background-position: 100% 100%;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(140, 82, 255, 0.3);
    }

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

.btn-light {
    background: white;
    color: #00017a;
}

    .btn-light:hover {
        background: #F3F4F6;
        transform: translateY(-2px);
    }

/* Stats Section - FIXED FOR MOBILE */
.stats-section {
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00017a, #8c52ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    white-space: nowrap;
}

.stat-label {
    color: #4B5563;
    font-weight: 500;
    font-size: 14px;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 32px;
        white-space: normal;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-item {
        padding: 15px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* General mobile fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .problem-grid,
    .solution-grid,
    .case-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-title {
        font-size: 24px;
        padding: 0 16px;
    }
}

/* Problem Grid - NO MOVEMENT */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.problem-card {
    background: #F9FAFB;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .problem-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(140, 82, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .problem-card:hover::before {
        left: 100%;
    }

    .problem-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .problem-card i {
        font-size: 36px;
        color: #8c52ff;
        margin-bottom: 16px;
    }

    .problem-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .problem-card p {
        color: #6B7280;
        font-size: 14px;
    }

/* CTA Sections */
.cta-1, .cta-2 {
    background: linear-gradient(135deg, #00017a, #8c52ff);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Solution Grid - NO MOVEMENT */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.solution-item {
    text-align: center;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .solution-item:hover {
        transform: translateY(-5px);
    }

    .solution-item i {
        font-size: 48px;
        color: #8c52ff;
        margin-bottom: 20px;
    }

    .solution-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .solution-item p {
        color: #6B7280;
    }

/* Use Cases */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.case-card {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .case-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .case-card i {
        font-size: 40px;
        color: #8c52ff;
        margin-bottom: 20px;
    }

    .case-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.case-flow {
    background: white;
    padding: 16px;
    border-radius: 16px;
    margin: 20px 0;
    font-size: 14px;
}

.before {
    color: #DC2626;
}

.after {
    color: #10B981;
}

.result {
    font-weight: 600;
    color: #111827;
    margin-top: 12px;
}

/* How It Works - NO MOVEMENT */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00017a, #8c52ff);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.05);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    color: #6B7280;
}

/* Pricing - NO MOVEMENT */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #F9FAFB;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .pricing-card i {
        font-size: 32px;
        color: #8c52ff;
        margin-bottom: 16px;
    }

    .pricing-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .pricing-card p {
        color: #6B7280;
        font-size: 14px;
    }

/* Contact - FIXED FOR MOBILE */
.contact {
    background: linear-gradient(135deg, #f8f9ff, #fff5f0);
    text-align: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: white;
    border-radius: 60px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    font-size: 16px; /* Added consistent font size */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .contact-item i {
        font-size: 20px;
        flex-shrink: 0;
    }

    /* FIX: Email text wrapping on mobile */
    .contact-item span,
    .contact-item .email-text {
        white-space: nowrap;
    }

    .contact-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(140, 82, 255, 0.2);
    }

.contact-note {
    color: #6B7280;
    font-size: 14px;
}

/* Mobile responsive fix for contact buttons */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .contact-item {
        width: auto;
        min-width: 260px;
        max-width: 90%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px; /* Consistent mobile font size */
    }

        /* Allow email to wrap on very small screens */
        .contact-item span,
        .contact-item .email-text {
            white-space: normal;
            word-break: break-all;
            text-align: left;
        }

        .contact-item i {
            font-size: 18px;
        }
}

@media (max-width: 480px) {
    .contact-item {
        min-width: auto;
        width: calc(100% - 32px);
        max-width: none;
        padding: 10px 16px;
        font-size: 13px; /* Consistent smallest size */
    }

        .contact-item span,
        .contact-item .email-text {
            font-size: 13px; /* Match button text size */
            word-break: break-word;
        }

        .contact-item i {
            font-size: 16px;
        }
}

/* Footer */
.footer {
    background: white;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #E5E7EB;
    color: #6B7280;
    font-size: 14px;
}

/* Logo styling - STATIC, NO MOVEMENT */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00017a, #8c52ff, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    /* Logo span color */
    .logo-text span {
        background: linear-gradient(135deg, #8c52ff, #ff914d);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

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

    .nav-links a {
        text-decoration: none;
        color: #4B5563;
        font-weight: 500;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #8c52ff, #ff914d);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(-10px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-title {
        font-size: 24px;
    }

    .steps {
        gap: 32px;
    }

    .logo-area {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
