* {
    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 {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.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);
}