    /* --- Reset & Variables --- */
:root {
    --primary: #0637AD;
    /* User Blue */
    --primary-dark: #04267a;
    --accent: #DD0000;
    /* User Red */
    --accent-hover: #b30000;
    --success: #106D00;
    /* User Green */
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mx-small {
    max-width: 800px;
}

.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
    color: var(--white);
}

/* Slightly adjusted gradient direction to make colors pop more */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white {
    color: var(--white);
}

.mt-4 {
    margin-top: 2rem;
}

/* --- Buttons --- */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    color: var(--dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero {
    background-color: #0b0a1b;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.hero .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.hero-trust i {
    color: var(--success);
    margin-right: 5px;
}



/* --- Strip --- */
.trust-strip {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-strip p {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-grid img {
    height: 80px;
}


/* --- Problem / Solution --- */
.problem-solution {
    padding: 80px 0;
    background: #fff;
}

.section-badge {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card-problem,
.card-solution {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    position: relative;
}

.card-problem {
    background: #fff1f2;
    border-color: #fecdd3;
}

.card-solution {
    background: #f0fdf4;
    border-color: #bbf7d0;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-box.red {
    background: rgba(221, 0, 0, 0.1);
    color: var(--accent);
}

.icon-box.green {
    background: rgba(16, 109, 0, 0.1);
    color: var(--success);
}

.comparison-cards h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-cards ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.card-problem i {
    color: var(--accent);
}

.card-solution i {
    color: var(--success);
}

/* --- Spotlight --- */
.spotlight {
    background: var(--dark);
    padding: 80px 0;
    overflow: hidden;
}

.spotlight-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.spotlight-img {
    width: 100%;
}

.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(221, 0, 0, 0.7);
    animation: pulse-red 2s infinite;
}

.hotspot::after {
    content: attr(data-text);
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    opacity: 1;
}

/* .hotspot:hover::after {
    opacity: 1;
    bottom: 45px;
} */

.h-1 {
    top: 10%;
    right: 15%;
}

.h-2 {
    bottom: 20%;
    left: 20%;
}

.h-3 {
    bottom: 10%;
    right: 30%;
}

/* --- Features --- */
.feature-row {
    padding: 80px 0;
}

.row-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.row-flex>div {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.icon-lg {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.text-col h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.text-col p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.feature-list li::before {
    content: "✓";
    color: var(--success);
    margin-right: 10px;
    font-weight: 800;
}

.img-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- Integrations --- */
.integrations {
    padding: 80px 0;
    background: var(--white);
}

.app-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.app-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--light);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray);
    transition: 0.3s;
}

.app-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.app-icon i {
    font-size: 1.2rem;
}

/* --- Comparison Table --- */
.comparison {
    padding: 80px 0;
    background: #f8fafc;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comp-table th,
.comp-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.comp-table th {
    background: #f1f5f9;
    color: var(--gray);
    font-weight: 600;
}

.comp-table .highlight-col {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 700;
    border-color: #dbeafe;
}

.comp-table th.highlight-col {
    background: var(--primary);
    color: var(--white);
}

/* --- Stakeholders (New Section) --- */
.stakeholders {
    padding: 80px 0;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stakeholder-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.stakeholder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.stakeholder-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.stakeholder-card p {
    color: var(--gray);
}

/* --- Campus Uses (Replaces Sectors) --- */
.sectors {
    padding: 80px 0;
    background: var(--white);
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.campus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.campus-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.campus-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--dark);
}

.campus-card p {
    padding: 0 20px 20px;
    color: var(--gray);
    font-size: 0.95rem;
}

/* --- Specs --- */
.technical-specs {
    padding: 80px 0;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.specs-detail {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
}

.specs-detail tr {
    border-bottom: 1px solid #e2e8f0;
}

.specs-detail th {
    text-align: left;
    padding: 15px;
    color: var(--gray);
    width: 40%;
    background: #f8fafc;
}

.specs-detail td {
    padding: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* --- Process --- */
.process {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    position: relative;
    z-index: 0;
}

.step-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* --- ROI --- */
.roi-section {
    padding: 80px 0;
    background: var(--dark);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.roi-box h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.roi-box p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Gallery --- */
.gallery {
    padding: 80px 0;
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-grid-masonry img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.3s;
    cursor: pointer;
}

.gallery-grid-masonry img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.review-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
}

.review-card {
    min-width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.author {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.author strong {
    display: block;
    color: var(--dark);
}

.author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
}

.accordion {
    margin-top: 40px;
}

.accordion details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.accordion details[open] summary::after {
    content: '-';
}

.accordion p {
    padding: 0 20px 20px;
    color: var(--gray);
    border-top: 1px solid #f1f5f9;
    margin-top: 0;
    padding-top: 20px;
}

/* --- Lead Form --- */
.lead-gen-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-text {
    flex: 1;
}

.form-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-text p {
    margin-bottom: 20px;
}

.offer-list li {
    margin-bottom: 15px;
    font-weight: 500;
}

.offer-list i {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--light);
}

.lead-form {
    flex: 0.8;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lead-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 55, 173, 0.1);
}

.privacy-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--gray);
    margin-top: 15px;
}

/* --- Footer --- */
.footer {
    background: #0b1120;
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
}

.f-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.f-col a,
.f-col p {
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

.f-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.socials a {
    color: #94a3b8;
    margin-left: 20px;
    font-size: 1.2rem;
}

.socials a:hover {
    color: var(--white);
}

/* --- Animations --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(221, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 0, 0, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(221, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 0, 0, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .hero-container,
    .row-flex,
    .form-wrapper,
    .specs-wrapper {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .feature-reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .roi-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    /* Fix background overlap */
    .hero-bg img {
        object-position: 10% center;
    }

    .overlay {
        background: linear-gradient(180deg, rgba(11, 10, 27, 0.9) 0%, rgba(11, 10, 27, 0.7) 100%);
    }

    .hero-text h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-sub {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-title, .form-text h2 {
        font-size: 2rem;
    }

    .hero-text p,
    .hero-cta-group,
    .hero-trust {
        justify-content: center;
        text-align: center;
    }

    /* Stack buttons on mobile */
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        padding: 40px 0;
    }

    .row-flex {
        flex-direction: column;
        gap: 30px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .logos-grid {
        gap: 20px;
    }

    .logos-grid img {
        height: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* --- Video Showcase --- */
.video-showcase {
    padding: 80px 0;
    background: #f8fafc;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Logo Image --- */
.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer .logo-img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make it white for dark footer if needed */
}