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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* ================= NAVBAR ================= */
.nav {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 55px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.nav-links a:hover {
    color: #5b6cff;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 0;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #eef2ff;
    color: #5b6cff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
}

.hero-text span {
    color: #5b6cff;
    display: block;
}

.hero-text p {
    margin-top: 15px;
    font-size: 18px;
    color: #475569;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.hero-image img {
    max-width: 480px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================= BUTTONS ================= */
.btn {
    padding: 12px 18px;
    background: linear-gradient(90deg, #5b6cff, #7c3aed);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91,108,255,0.3);
}

.btn.small {
    padding: 8px 12px;
    font-size: 14px;
}

.btn-secondary {
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
}

/* ================= SECTION ================= */
.section {
    margin-top: 90px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* ================= GRID ================= */
.grid-3 {
    display: flex;
    gap: 20px;
}

/* ================= CARDS ================= */
.card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* FIX BUTTON ALIGNMENT */
.pricing .btn {
    margin-top: auto;
}

.highlight {
    border: 2px solid #5b6cff;
}

/* ================= CAROUSEL ================= */
.industry-carousel {
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.industry-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.industry-slide {
    min-width: 100%;
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
}

.carousel-controls {
    text-align: center;
    margin-top: 15px;
}

.carousel-controls button {
    background: #5b6cff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 6px;
    cursor: pointer;
}

/* ================= FOOTER ================= */
footer {
    margin-top: 100px;
    background: #0f172a;
    color: white;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-grid div {
    flex: 1;
}

.footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

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

    .grid-3 {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    
    
    
    
    /* ================= SCROLL ANIMATIONS ================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger (premium feel) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
}





/* ================= ELITE ANIMATIONS ================= */

.fade-up {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* STAGGER */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ================= HOVER MICRO INTERACTIONS ================= */

.card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* BUTTON HOVER */
.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ================= HERO PARALLAX ================= */

.hero-image {
    transform: translateY(0px);
    transition: transform 0.2s ease-out;
}

/* ================= SECTION SPACING (DESKTOP POLISH) ================= */

@media (min-width: 1024px) {
    .section {
        margin-top: 120px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-text h1 {
        font-size: 52px;
    }
/* ================= ELITE ANIMATIONS ================= */

.fade-up {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* STAGGER */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ================= HOVER MICRO INTERACTIONS ================= */

.card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* BUTTON HOVER */
.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ================= HERO PARALLAX ================= */

.hero-image {
    transform: translateY(0px);
    transition: transform 0.2s ease-out;
}

/* ================= SECTION SPACING (DESKTOP POLISH) ================= */

@media (min-width: 1024px) {
    .section {
        margin-top: 120px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-text h1 {
        font-size: 52px;
    }
    
    
    /* ================= HOW IT WORKS SIZE FIX ================= */

.section .card {
    min-height: 220px; /* increase overall height */
    justify-content: space-between;
}

/* Better spacing inside cards */
.section .card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.section .card p {
    line-height: 1.6;
    color: #475569;
}


.section .card {
    min-height: 240px;
    padding: 30px;
}


.trust-strip {
    margin: 60px auto;
    padding: 20px;
    border-radius: 12px;
    background: #f1f5ff;
}

.trust-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.trust-sub {
    font-size: 15px;
    color: #475569;
}



/* BRAND BACKGROUNDS */

.hero-brand {
    background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
}

.alt-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
}

.pricing-section {
    background: linear-gradient(180deg, #ffffff, #f1f5ff);
    padding: 50px;
    border-radius: 16px;
}

.trust-bg {
    background: #eef2ff;
    padding: 20px;
    border-radius: 12px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(90deg, #5b6cff, #7c3aed);
    color: white;
    padding: 60px;
    border-radius: 16px;
}

.cta-section .btn {
    background: white;
    color: #5b6cff;
}


/* CTA FIX */
.cta-title {
    margin-bottom: 12px;
    font-size: 28px;
}

.cta-sub {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.85);
}

.cta-actions {
    margin-top: 10px;
}
}