@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: default;
}

:root {
    --primary: #2B7FFF;
    --primary-dark: #1A5FCC;
    --primary-light: #E8F0FE;
    --dark: #0A1628;
    --gray-900: #1A1D29;
    --gray-700: #4A5568;
    --gray-500: #64748B;
    --gray-300: #CBD5E0;
    --gray-100: #F7FAFC;
    --white: #FFFFFF;
    --success: #10B981;
    --gradient-primary: linear-gradient(135deg, #2B7FFF 0%, #5B9FFF 100%);
    --gradient-hero: linear-gradient(to bottom, #FFFFFF 0%, #F0F7FF 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .navbar .logo img {
    height: 60px;      /* perfect navbar size */
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 8px;          /* small spacing between logo and text */
}

.navbar .logo span {
    font-size: 20px;
    font-weight: 600;
}


        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .btn-signin {
            padding: 11px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(43, 127, 255, 0.2);
        }

        .btn-signin:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(43, 127, 255, 0.3);
        }
        .btn-signin a {
    text-decoration: none;
    color: white;
    display: block;   /* makes the whole area clickable */
}
  .btn-try {
            padding: 11px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(43, 127, 255, 0.2);
        }

        .btn-try:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(43, 127, 255, 0.3);
        }
        .btn-try a {
    text-decoration: none;
    color: white;
    display: block;   /* makes the whole area clickable */
}

        /* Hero Section */
        .hero {
            padding: 100px 0 120px;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -20%;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(43, 127, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 28px;
            font-size: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(43, 127, 255, 0.1);
        }

        .badge-new {
            background: var(--dark);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 64px;
            line-height: 1.15;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -1.5px;
            color: var(--dark);
        }

        .hero-description {
            font-size: 19px;
            color: var(--gray-700);
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 560px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 60px;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(43, 127, 255, 0.25);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(43, 127, 255, 0.35);
        }

        .btn-secondary {
            padding: 16px 36px;
            background: var(--white);
            color: var(--dark);
            border: 2px solid var(--gray-300);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .integrations {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

        .integrations-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .integration-logo {
            color: var(--gray-700);
            font-weight: 600;
            font-size: 15px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .integration-logo:hover {
            opacity: 1;
        }

        /* Dashboard Mockup */
        .dashboard-mockup {
            background: var(--white);
            border-radius: 24px;
            padding: 8px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.08);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s;
        }

        .dashboard-mockup:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .dashboard-card {
            background: linear-gradient(to bottom, #FAFBFC 0%, #FFFFFF 100%);
            border-radius: 18px;
            padding: 32px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .dashboard-header {
            margin-bottom: 32px;
        }

        .dashboard-card h3 {
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--dark);
        }

        .dashboard-card > p {
            color: var(--gray-500);
            font-size: 14px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }

        .stat-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--gray-300);
        }

        .stat-item h4 {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--dark);
        }

        .stat-change {
            color: var(--success);
            font-size: 14px;
            font-weight: 700;
        }

        .stat-subtitle {
            color: var(--gray-500);
            font-size: 13px;
        }

        .chart-area {
            height: 180px;
            background: linear-gradient(to top, var(--primary-light) 0%, transparent 100%);
            border-radius: 12px;
            margin-bottom: 28px;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            gap: 8px;
            border: 1px solid rgba(43, 127, 255, 0.1);
        }

        .chart-bar {
            flex: 1;
            background: var(--gradient-primary);
            border-radius: 6px 6px 0 0;
            transition: all 0.3s;
        }

        .chart-bar:hover {
            opacity: 0.8;
            transform: translateY(-4px);
        }

        .transaction-history h4 {
            font-size: 16px;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--dark);
        }

        .transaction-history p {
            color: var(--gray-500);
            font-size: 14px;
        }
        /* =========================
   RESPONSIVE HERO SECTION
========================= */

/* Large laptops (≤1200px) */
@media (max-width: 1200px) {
    .hero-content {
        gap: 48px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description {
        font-size: 18px;
    }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .integrations {
        justify-content: center;
    }

    .dashboard-mockup {
        max-width: 720px;
        margin: 0 auto;
        transform: none;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .hero {
        padding: 64px 0 80px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
        max-width: 320px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .chart-area {
        height: 150px;
        padding: 16px;
    }

    .dashboard-card {
        padding: 24px;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .dashboard-card h3 {
        font-size: 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    .integrations {
        gap: 16px;
    }
}


        /* Features Section */
        .features-intro {
            padding: 100px 0 60px;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-light);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .section-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 19px;
            color: var(--gray-700);
            line-height: 1.7;
        }

        /* Feature Cards */
        .features-grid {
            padding: 60px 0 100px;
            background: var(--white);
        }

        .feature-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .feature-card-large {
            background: var(--gray-100);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card-large:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .feature-preview {
    background: linear-gradient(120deg, #b8e3ff, #1a73e8, #000000);
    background-size: 300% 300%;
    animation: gradientWave 8s ease-in-out infinite;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

       .feature-preview img {
    width: 100%;
    height: auto;
    max-height: 280px; /* keeps layout controlled */
    object-fit: contain; /* shows full image without crop */
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}



        .feature-preview::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .pipeline-mockup,
        .contacts-mockup,
        .reporting-mockup {
            background: white;
            border-radius: 12px;
            padding: 24px;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .pipeline-mockup h3,
        .contacts-mockup h3,
        .reporting-mockup h3 {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .pipeline-chart,
        .reporting-charts {
            height: 200px;
            background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 50%, var(--primary-light) 100%);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            background: var(--gray-100);
            transition: background 0.3s;
        }

        .contact-item:hover {
            background: var(--primary-light);
        }

        .contact-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-primary);
            flex-shrink: 0;
        }

        .contact-info {
            flex: 1;
        }

        .contact-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--dark);
        }

        .contact-email {
            color: var(--gray-500);
            font-size: 12px;
        }

        .feature-card-large h3 {
            font-size: 26px;
            margin-bottom: 14px;
            font-weight: 800;
            color: var(--dark);
        }

        .feature-card-large p {
            color: var(--gray-700);
            font-size: 16px;
            line-height: 1.7;
        }

        /* Side Features */
        .side-features {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .side-features-wrapper {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }

        .side-features-content {
            position: sticky;
            top: 120px;
        }

        .side-features-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dark);
        }

        .side-features-content p {
            color: var(--gray-700);
            font-size: 17px;
            line-height: 1.7;
        }

        .side-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .mini-feature {
            background: var(--white);
            padding: 32px;
            border-radius: 16px;
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mini-feature:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            font-size: 36px;
            margin-bottom: 16px;
            display: block;
        }

        .mini-feature h4 {
            font-size: 17px;
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--dark);
        }

        .mini-feature p {
            color: var(--gray-700);
            font-size: 14px;
            line-height: 1.6;
        }

        /* CRM Benefits */
        .crm-benefits {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .crm-benefits h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dark);
        }

        .crm-benefits p {
            color: var(--gray-700);
            font-size: 19px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 0;
            margin: 40px 0 60px;
            background: white;
            padding: 6px;
            border-radius: 12px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .toggle-btn {
            padding: 12px 32px;
            background: transparent;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            color: var(--gray-700);
        }

        .toggle-btn.active {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(43, 127, 255, 0.3);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            padding: 48px;
            border-radius: 20px;
            border: 2px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: 0 24px 80px rgba(43, 127, 255, 0.15);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: 700;
            color: var(--dark);
        }

        .price {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .price span {
            font-size: 16px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .pricing-card > p {
            color: var(--gray-700);
            margin-bottom: 32px;
            font-size: 15px;
        }

        .pricing-card h4 {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .features-list {
            list-style: none;
            margin-bottom: 36px;
        }

        .features-list li {
            padding: 10px 0;
            color: var(--gray-700);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .features-list li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            font-size: 18px;
        }

        .btn-outline {
            width: 100%;
            padding: 16px 32px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(43, 127, 255, 0.25);
        }

        .pricing-card .btn-primary {
            width: 100%;
        }

        /* Footer */
       /* Enhanced Footer */
.footer-enhanced {
    background: #000; /* Pure black */
    color: #fff; 
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary);
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.footer-bottom-left p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-right a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}

.footer-bottom-right span {
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #b3d9ff, #000000);
    text-align: center;
    color: var(--white);
}


.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content > p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-note {
    font-size: 14px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #b3d9ff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--gray-700);
}

.contact-highlights li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

/* Form Styling */
.contact-form {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    font-size: 16px;
    background: var(--gray-50);
}

.form-group textarea {
    height: 130px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 28px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f9fafb;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-badge {
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin: 18px 0;
    line-height: 1.3;
}

.about-description {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.about-btn {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}


/* Partners Section */
/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, auto));
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}
.partners-grid a {
    text-decoration: none;
    color: inherit;
}


.partner-card {
    background: var(--gray-100);
    padding: 20px 16px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    min-height: 120px; /* Reduced height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-logo {
    width: 70px;
    height: 70px; /* FIXED compact logo area */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.partner-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Smaller placeholder */
.partner-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.partner-name {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.partner-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-grid {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.clients-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.client-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.client-logo-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.client-logo-large img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.client-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.client-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.client-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 28px;
    font-style: italic;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.client-stat {
    text-align: center;
    padding: 16px;
    background: var(--gray-100);
    border-radius: 12px;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
}

/* Clients Logo Section */
.clients-logo-section {
    text-align: center;
    padding-top: 60px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.clients-logo-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 850px; /* reduce width so logos stay grouped */
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}


.client-logo-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s;
}

.client-logo-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-fallback {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 1024px) {
    .clients-showcase {
        grid-template-columns: 1fr;
    }
    
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .client-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
    }
    
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


        /* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(43, 127, 255, 0.1);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 28px;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--gray-500);
}
/* Stats Section */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-section {
        padding: 50px 0;
    }
}



@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .dashboard-mockup {
                transform: none;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .side-features-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .side-features-content {
                position: static;
            }
            
            .side-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 36px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .feature-row {
                grid-template-columns: 1fr;
            }
            
            .side-features-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons button {
                width: 100%;
            }
        }

        /* Fade In */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide From Left */
@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Slide From Right */
@keyframes slideFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Base animation class (hidden before load) */
.animate-on-load {
    opacity: 0;
}

.animate-fade {
    animation: fadeIn 1s ease-out forwards;
}

.animate-left {
    animation: slideFromLeft 1s ease-out forwards;
}

.animate-right {
    animation: slideFromRight 1s ease-out forwards;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff; /* white background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* stays above everything */
     transition: opacity 1.5s ease, visibility 1.5s ease;
}

.loader-content {
    position: relative;
    width: 140px;
    height: 140px;
}

/* Logo */
.loader-logo {
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Rotating Ring */
.loader-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #d8e8ff; /* light */
    border-top-color: #2b7fff; /* primary color */
    animation: rotateRing 1.2s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hide After Loaded */
#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary); /* your brand blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
}

/* When visible */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
#scrollTopBtn:hover {
    transform: translateY(-4px);
}

/* WhatsApp Button */
#whatsappBtn {
    position: fixed;
    bottom: 90px; /* stacked above scroll button */
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366; /* WhatsApp green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 9999;
    text-decoration: none;
}

/* Hover effect */
#whatsappBtn:hover {
    transform: translateY(-4px);
}
