        :root {
            --brand-green: #00875A;
            --brand-green-light: #00A870;
            --brand-ruby: #BE123C;
            --brand-dark: #0f172a;
            --brand-gray: #f8fafc;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #334155;
            background-color: var(--brand-gray);
            overflow-x: hidden;
        }

        /* --- Custom Colors --- */
        .text-brand-green { color: var(--brand-white) !important; }
        .text-brand-ruby { color: var(--brand-ruby) !important; }
        .text-brand-dark { color: var(--brand-dark) !important; }
        .bg-brand-green { background-color: var(--brand-green) !important; }
        .bg-brand-ruby { background-color: var(--brand-ruby) !important; }
        .bg-brand-dark { background-color: var(--brand-dark) !important; }

        /* --- Buttons --- */
        .btn-brand-green {
            background-color: var(--brand-green);
            color: white;
            font-weight: 700;
            border-radius: 50px;
            padding: 12px 30px;
            border: none;
            transition: transform 0.2s;
        }
        .btn-brand-green:hover {
            background-color: var(--brand-green-light);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-brand-ruby {
            background-color: var(--brand-ruby);
            color: white;
            font-weight: 700;
            border-radius: 15px;
            padding: 15px 30px;
            border: none;
            box-shadow: 0 10px 25px -5px rgba(190, 18, 60, 0.4);
            transition: transform 0.2s;
        }
        .btn-brand-ruby:hover {
            background-color: #9f1239;
            color: white;
            transform: translateY(-2px);
        }

        /* --- Navbar --- */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
        }
        .nav-link {
            font-weight: 600;
            color: #475569;
        }
        .nav-link:hover { color: var(--brand-green); }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--brand-dark);
            position: relative;
            padding-top: 160px;
            padding-bottom: 150px;
            overflow: hidden;
            /* Removed clip-path to fix gap issue */
        }
        
        /* Background Blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
            z-index: 0;
        }
        .blob-green {
            background-color: var(--brand-green);
            width: 500px;
            height: 500px;
            top: 0;
            right: 0;
        }
        .blob-ruby {
            background-color: var(--brand-ruby);
            width: 400px;
            height: 400px;
            bottom: 0;
            left: 0;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
        }
        .text-gradient {
            background: linear-gradient(to right, #4ade80, #2dd4bf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- Phone Frame --- */
        .phone-frame {
            position: relative;
            width: 280px;
            margin: 0 auto;
            overflow: visible;
            z-index: 10;
        }
        
        .phone-screen {
            border-radius: 2rem;
            overflow: hidden;
            width: 100%;
            height: auto;
        }

        @media (min-width: 768px) {
            .phone-frame { width: 340px; border-radius: 3rem; border-width: 10px; }
            .phone-screen { border-radius: 2.5rem; }
            .hero-title { font-size: 4.5rem; }
        }

        /* --- Floating Badges --- */
        .floating-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 20;
            width: max-content;
            max-width: 260px;
            animation: float 6s ease-in-out infinite;
        }

        .badge-bottom-left {
            bottom: 80px;
            left: -40px;
        }

        .badge-top-right {
            top: 60px;
            right: -40px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @media (max-width: 576px) {
            .badge-bottom-left { left: -10px; bottom: 40px; transform: scale(0.9); }
            .badge-top-right { right: -10px; top: 40px; transform: scale(0.9); }
        }

        /* --- Stats Bar --- */
        .stats-bar {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            margin-top: -80px;
            position: relative;
            z-index: 30;
            padding: 2rem;
        }
        
        .stat-divider {
            width: 1px;
            height: 50px;
            background-color: #e2e8f0;
            display: none;
        }
        @media (min-width: 992px) { .stat-divider { display: block; } }

        /* --- Features & Pricing --- */
        .feature-icon-box {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .pricing-card {
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(5px);
            border: 1px solid #334155;
            border-radius: 2rem;
            padding: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* --- FAQ Accordion --- */
        .accordion-button:not(.collapsed) {
            color: var(--brand-green);
            background-color: #f0fdf4;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--brand-green);
        }

        /* --- Footer --- */
        footer {
            background-color: var(--brand-dark);
            color: #94a3b8;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        footer a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
        footer a:hover { color: var(--brand-green); }
.text-muted {
    --bs-text-opacity: 1;
    color: #ffffff !important;
}
/* --- FEATURES PAGE ADDITIONS --- */

/* Badge Styling for Header */
.badge-soft-green {
    background-color: rgba(0, 135, 90, 0.1);
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 135, 90, 0.2);
}

/* Feature Icons (Big) */
.feature-icon-lg {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Glass Cards for Student Section */
.student-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.student-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Finance Step Numbers */
.step-number {
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}
/* --- PRICING PAGE ADDITIONS --- */

/* Pricing Hero Section */
.pricing-hero {
    background-color: var(--brand-dark);
    position: relative;
    padding-top: 160px;
    padding-bottom: 150px;
    overflow: hidden;
}

/* Pricing Card (Expanded Version) */
.pricing-card-lg {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(0, 135, 90, 0.2); /* Green ring */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card-lg:hover {
    transform: translateY(-5px);
}

.pricing-header-gradient {
    height: 8px;
    background: linear-gradient(to right, var(--brand-green), var(--brand-ruby));
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Most Popular Badge */
.badge-popular {
    background-color: rgba(190, 18, 60, 0.1);
    color: var(--brand-ruby);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(190, 18, 60, 0.2);
}

/* Feature Icon Box in Grid */
.icon-box-md {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}
/* --- AUTH PAGES (Login/Register) --- */

.auth-container {
    min-height: 100vh;
    display: flex;
}

/* Left Side (Form) */
.auth-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
    background-color: white;
}

@media (min-width: 992px) {
    .auth-form-side {
        padding: 0 6rem;
        max-width: 50vw; /* Takes up half screen */
    }
}

/* Form Input Styling */
.form-control-lg {
    padding: 0.8rem 1rem;
    padding-left: 2.75rem; /* Space for icon */
    border-radius: 0.75rem;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
}
.form-control-lg:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(0, 135, 90, 0.1);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 5;
}

/* Right Side (Image/Testimonial) */
.auth-image-side {
    display: none;
    flex: 1;
    position: relative;
    background-color: var(--brand-dark);
}

@media (min-width: 992px) {
    .auth-image-side {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.auth-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.9), rgba(15, 23, 42, 0.9));
    z-index: 1;
}

.auth-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.testimonial-box {
    position: relative;
    z-index: 2;
    padding: 4rem;
    text-align: center;
    color: white;
}
  