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

body {
    font-family: Inter, Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    /* 🔥 KEY FIX */
    justify-content: space-between;

    padding: 12px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 40px;
}

.nav-desktop {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: #fff;
}

.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section.alt {
    background: #f9fafb;
}

.grid-4,
.grid-3 {
    display: grid;
    gap: 20px;
}

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

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

.footer {
    background: #111827;
    color: #fff;
    padding: 40px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111827;
    color: #fff;
    padding: 15px;
    display: none;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    color: #fff;
    padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: 0.85;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

/* ======================================================
   ENTERPRISE LANDING UPGRADE – BtSh
   Clean spacing + structured look
====================================================== */

.section {
    padding: 90px 8%;
    max-width: 1300px;
    margin: 0 auto;
}

.section.alt {
    background: #f7f9fc;
}

.section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 700px;
}

/* GRID SPACING */
.grid-3,
.grid-4 {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ENTERPRISE CARDS */
.card,
.role {
    background: #ffffff;
    border: 1px solid #e6e9ef;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.card:hover,
.role:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.card h3,
.role h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.card p,
.role ul li {
    color: #6b7280;
    line-height: 1.6;
}

/* ROLE LISTS */
.role ul {
    padding-left: 18px;
    margin-top: 15px;
}

.role ul li {
    margin-bottom: 10px;
}

/* STEPS SECTION */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: #ffffff;
    border: 1px solid #e6e9ef;
    padding: 20px 30px;
    border-radius: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step span {
    background: #1f3ae0;
    color: #fff;
    font-weight: 600;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TRUST SECTION CARDS */
#trust .card {
    text-align: center;
    font-weight: 500;
}

/* TESTIMONIALS */
blockquote {
    background: #ffffff;
    border-left: 4px solid #1f3ae0;
    padding: 25px;
    border-radius: 14px;
    font-style: normal;
    line-height: 1.6;
    color: #374151;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #ffffff;
}

.copy {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

.section-intro {
    max-width: 750px;
    margin-bottom: 50px;
    color: #6b7280;
    font-size: 17px;
}

#trust {
    padding: 100px 0;
}

#trust .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

#trust .card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#trust .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

#trust.section.alt {
    background: #f9fafc;
}

#trust.section.alt {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #555;
}

.locations {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-cta {
    background: #f8fafc;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-cta h3 {
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.trust-mini span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.contact-section {
    background: linear-gradient(to bottom, #ffffff, #f9fafc);
}

#trust {
    padding: 100px 0;
}

#trust .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

#trust .card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#trust .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

#trust.section.alt {
    background: #f9fafc;
}

#trust.section.alt {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.demo-banner {
    background: #ffcc00;
    color: #000;
    text-align: center;
    padding: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    height: 420px;
    /* taller chat box */
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Header */
.support-header {
    background: #0a5cff;
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px 14px 0 0;
    cursor: pointer;
}

/* Messages area */
.support-replies {
    flex: 1;
    /* fills remaining height */
    overflow-y: auto;
    padding: 12px;
    font-size: 14px;
}

/* Input row */
.support-input-row {
    display: flex;
    border-top: 1px solid #eee;
}

/* Input */
.support-input-row input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

/* Send button */
.support-input-row button {
    border: none;
    background: #0a5cff;
    color: white;
    padding: 12px 18px;
    font-weight: 500;
    cursor: pointer;
}

/* User message */
.user {
    text-align: right;
    margin: 8px 0;
    font-size: 14px;
}

/* Bot message */
.bot {
    text-align: left;
    margin: 8px 0;
    color: #0a5cff;
    font-size: 14px;
}

/* Chat bubble */

#supportBubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #0a5cff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

/* Chat widget */

.support-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Header */

.support-header {
    background: #0a5cff;
    color: white;
    padding: 12px 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages */

.support-replies {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

/* Input */

.support-input-row {
    display: flex;
    border-top: 1px solid #eee;
}

.support-input-row input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.support-input-row button {
    border: none;
    background: #0a5cff;
    color: white;
    padding: 10px 16px;
}

/* Messages */

.user {
    text-align: right;
    margin: 6px 0;
}

.bot {
    text-align: left;
    margin: 6px 0;
    color: #0a5cff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
}

.hero-stats .stat b {
    font-size: 15px;
    font-weight: 700;
}

.hero-stats .stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

/* HERO CTA BUTTONS */

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    justify-content: center;
    align-items: center;
}

/* PRIMARY CTA */

.btn-primary.large {
    background: #0a5cff;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .2s ease;
}

.btn-primary.large:hover {
    background: #0848c9;
    transform: translateY(-1px);
}

/* SECONDARY CTA */

.btn-ghost.large {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 10px;
}

.btn-ghost.large:hover {
    text-decoration: underline;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    opacity: .9;
}

.btn-secondary {
    background: #0ea5e9;
    color: white;
    border-radius: 6px;
    padding: 12px 20px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #0284c7;
}

@media (min-width: 1024px) {

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .brand img {
        height: 34px;
    }

    .brand span {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }

    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-desktop a {
        display: flex;
        align-items: center;
        font-size: 14px;
        white-space: nowrap;
    }

}

@media (min-width: 1024px) {

    .btn-outline,
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        height: 36px;
        padding: 0 14px;

        font-size: 14px;
        border-radius: 6px;
    }

}

@media (min-width: 1024px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;

        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

}

@media (min-width: 1024px) {

    .nav-desktop a {
        transition: color 0.2s ease;
    }

    .nav-desktop a:hover {
        color: #0b1a33;
        opacity: 0.7;
    }

    .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

}

.nav-mobile {
    display: none;
    /* THIS LINE FIXES YOUR BUG */
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-mobile.open {
    display: flex;
}

@media (min-width: 1024px) {

    .nav-mobile {
        position: absolute;
        top: 60px;
        right: 20px;

        width: 260px;
        border-radius: 12px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand img {
    height: 32px;
    width: auto;
    display: block;
}

.brand span {
    font-size: 14px;
    font-weight: 600;
    color: #0b1a33;
    line-height: 1.2;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(11, 26, 51, 0.12);
    border-radius: 10px;
    background: #fff;
    color: #0b1a33;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(11, 26, 51, 0.06);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px 18px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.4;
}

.nav-mobile hr {
    width: 100%;
    border: 0;
    border-top: 1px solid #eee;
    margin: 4px 0;
}

.menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: #0b1a33;
    color: #fff !important;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .header-inner {
        padding: 14px 24px;
    }

    .brand span {
        font-size: 15px;
        white-space: nowrap;
    }

    .nav-mobile {
        position: absolute;
        top: calc(100% + 8px);
        right: 24px;
        width: 280px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        border-top: none;
    }
}