:root {
    --primary-dark: #0f172a;
    --primary-blue: #2563eb;
    --border-gray: #e2e8f0;
    --dark-blue: #0f172a;
    --text-gray: #64748b;

    /* Module Colors */
    --bg-blue-light: #eff6ff;
    --border-blue: #93c5fd;
    --bg-purple: #faf5ff;
    --border-purple: #d8b4fe;
    --bg-green-light: #f0fdf4;
    --light-bg: #f8fafc; /* Slate-50 */
    --border-green: #86efac;

    /* Comparison Before/After Colors */
    --before-bg: #fffcf5;
    --before-border: #fde68a;
    --before-accent: #f59e0b;
    --after-bg: #f5fdf7;
    --after-border: #bbf7d0;
    --after-accent: #16a34a;
    --border-color: #e2e8f0;
}

.bg-green-light {
    background-color: #f0fdf4;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    overflow-x: hidden;
}

a {
    text-decoration: unset !important;
}

.text-small {
    font-size: 0.85rem;
}

.text-xsmall {
    font-size: 0.75rem;
}

/* Split Layout */
.split-screen {
    height: 100vh;
    width: 100%;
}

/* Left Side - Brand */
.brand-side {
    background-color: var(--dark-blue);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* subtle pattern overlay for left side */
.brand-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
    pointer-events: none;
}

.navbar-brand-width{
    width: 20%;
}

.nav-logo{
    width: 100%;
}

.footer-logo{
    width: 63%;
}

.nav-logo-width{
    width: 38%;
}

/* Right Side - Form */
.form-side {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto; /* Allow scroll if form is tall */
}

.form-container {
    width: 100%;
    max-width: 420px;
}

/* Logo */
.cc-brand-logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Elements */
.form-control, .form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.btn-sign-in {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: transform 0.2s;
}

.btn-sign-in:hover {
    background-color: #1d4ed8; /* Slightly darker blue */
    transform: translateY(-1px);
    color: white;
}

.btn-back {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--dark-blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-back:hover {
    background-color: var(--light-bg);
}
.tm {
    font-size: 10px;
}
.text-purple{
    color: #a855f7;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 24px 0;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

/* Text Utilities */
.text-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

.quote-box {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
}

@media (max-width: 992px) {
    body {
        overflow: auto;
        height: auto;
    }

    .split-screen {
        height: auto;
        flex-direction: column-reverse;
    }

    .brand-side {
        padding: 40px;
        min-height: 300px;
    }

    .navbar-brand-width{
        width: 45%;
    }

    .form-side {
        padding: 40px 20px;
        min-height: 100vh;
    }
}

/* ====================
   SCROLL REVEAL ANIMATION
   ==================== */
.reveal-section {
    opacity: 0;
    transform: translateY(80px); /* Starts 80px lower */
    transition: all 1s ease-out; /* Smooth 1s transition */
    will-change: opacity, transform;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0); /* Moves to natural position */
}

/* ====================
   NAVBAR
   ==================== */
.navbar {
    padding: 1.2rem 0;
    background: white;
    z-index: 1000;
}

.brand-logo {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    color: #475569 !important;
    font-size: 0.95rem;
    margin: 0 10px;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
}

/* ====================
   HERO SECTION
   ==================== */
.hero-section {
    padding: 200px 0 100px;
    text-align: center;
}

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-hero-dark {
    background: var(--primary-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.btn-hero-outline {
    border: 1px solid var(--border-gray);
    color: var(--primary-dark);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 12px;
    background: white;
}

.btn-hero-dark:hover {
    transform: translateY(-2px);
    color: white;
}

/* ====================
   PROBLEM SECTION
   ==================== */
.problem-card {
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 35px 50px;
    height: 100%;
    text-align: center;
    background: white;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box-yellow {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fcd34d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

.problem-alert {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #451a03;
    padding: 35px 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    font-size: 0.95rem;
}

/* ====================
   MODULES SECTION
   ==================== */
.module-section {
    padding: 80px 0;
}

.module-row {
    margin-bottom: 120px;
    align-items: center;
}

/* Module UI Mocks */
.ui-header {
    font-size: 20px;
}

.ui-item-blue {
    border: 1px solid #bfdbfe;
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.ui-icon-blue {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 12px;
}

.ui-item-purple {
    border: 1px solid #e9d5ff;
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.prog-bar {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.prog-fill-purple {
    height: 100%;
    background: #a855f7;
    border-radius: 3px;
}

.ui-item-green {
    border: 1px solid #bbf7d0;
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-icon-green-sq {
    width: 32px;
    height: 32px;
    background: #f0fdf4;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 12px;
}

/* ====================
   COMPARISON SECTION
   ==================== */
.comparison-section {
    padding: 30px 0;
    background: white;
}

.comp-card {
    border-radius: 16px;
    height: 660px;
    position: relative;
    padding: 30px;
    width: 100%;
}

/* Before Card */
.card-before {
    background-color: var(--before-bg);
    border: 1px solid var(--before-border);
}

.badge-before {
    background: #fffbeb;
    border: 1px solid var(--before-accent);
    color: #b45309;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Central "60 Days" box */
.delay-box {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid var(--before-accent);
    border-radius: 8px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.delay-num {
    font-size: 2rem;
    font-weight: 700;
    color: #b45309;
    line-height: 1;
}

.delay-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--before-accent);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Scattered Papers */
.scatter-item {
    position: absolute;
    background: white;
    border: 1px solid #fde047;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    width: 140px;
    z-index: 1;
}

.scatter-item i {
    margin-right: 6px;
}

.scatter-warning {
    color: #f59e0b;
    font-size: 0.65rem;
    margin-top: 4px;
    display: block;
}

.item-1 {
    top: 25%;
    left: 15%;
    transform: rotate(-8deg);
}

.item-2 {
    top: 30%;
    right: 10%;
    transform: rotate(12deg);
}

.item-3 {
    top: 45%;
    left: 35%;
    transform: rotate(-5deg);
    width: 160px;
}

.item-4 {
    top: 55%;
    left: 10%;
    transform: rotate(6deg);
}

.item-5 {
    top: 50%;
    right: 20%;
    transform: rotate(3deg);
}

.item-6 {
    top: 65%;
    right: 25%;
    transform: rotate(-4deg);
    border-color: #fca5a5;
}

/* After Card */
.card-after {
    background-color: var(--after-bg);
    border: 1px solid var(--after-border);
}

.badge-after {
    background: #dcfce7;
    border: 1px solid var(--after-accent);
    color: #15803d;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.activation-ui {
    background: white;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.live-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.prog-item {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.prog-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.prog-title {
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prog-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.prog-track {
    width: 100%;
    height: 4px;
    background: #dcfce7;
    border-radius: 2px;
}

.prog-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 2px;
}

.prog-desc {
    margin-top: 5px;
    margin-bottom: 5px;
}

.bottleneck-badge {
    position: absolute;
    bottom: -12px;
    right: 20px;
    background: white;
    border: 1px solid #22c55e;
    color: #15803d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats-row {
    display: flex;
    gap: 15px;
}

.mini-stat {
    flex: 1;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    text-align: center;
    padding: 15px 5px;
}

.mini-val {
    font-weight: 700;
    color: #15803d;
    font-size: 0.9rem;
    margin-top: 5px;
}

.mini-label {
    font-size: 0.65rem;
    color: #475569;
}

.footer-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* ====================
   STATS SECTION
   ==================== */
.stats-section {
    padding: 80px 0;
}

.stats-card {
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    background: white;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-num {
    font-size: 3rem;
    margin-bottom: 5px;
    line-height: 1;
}

.callout-green {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #14532d;
    padding: 35px 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
}

/* ====================
   ACCESS CARD & FOOTER
   ==================== */
.access-card {
    border: 1px solid #93c5fd;
    background: white;
    border-radius: 24px;
    padding: 80px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px -10px rgba(37, 99, 235, 0.1);
}

.role-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    text-align: center;
}

.role-icon {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-gray);
    margin-top: 100px;
}

.footer-head {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: var(--primary-dark);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-blue);
}
        /* Custom Styles to match the image */
        .modal-content {
            background-color: #1b3a8d; /* Dark Blue Background */
            color: white;
            border-radius: 12px;
            border: none;
            padding: 20px;
        }

        .modal-header {
            border-bottom: none;
            padding-bottom: 0;
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }
        #partnerForm .form-label {
            color: #fff;
        }
        .form-label {
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        .form-control::placeholder {
            color: #adb5bd;
        }
        
        .sub-text {
            font-size: 0.85rem;
            color: #d1d9ff;
            margin-bottom: 25px;
        }

        .btn-submit {
            background-color: #3174ee;
            border: none;
            padding: 12px;
            font-weight: 600;
            width: 100%;
            margin-top: 15px;
            color: white;
            border-radius: 8px;
        }

        .btn-submit:hover {
            background-color: #265ec7;
            color: white;
        }

        .footer-note {
            font-size: 0.7rem;
            color: #bcc6f1;
            text-align: center;
            margin-top: 15px;
        }

        .form-check-label {
            font-size: 0.8rem;
            color: #d1d9ff;
        }

        /* Validation Colors */
        .was-validated .form-control:invalid {
            border: 2px solid #ff4d4d;
        }
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-brand-width{
        width: 50%;
    }

    .comp-card {
        height: 500px;
    }

    .delay-box {
        padding: 10px 15px;
    }

    .scatter-item {
        width: 110px;
        font-size: 0.65rem;
    }
}
