:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #10b981;
    --background: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --foreign: #8b5cf6;

    /* Animation Tokens */
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --transition-fast: 0.3s var(--ease-premium);
    --transition-medium: 0.5s var(--ease-premium);
}

/* Dark Mode Overrides */
body.dark-mode {
    --primary: #6366f1;
    --primary-dark: #818cf8;
    --secondary: #f8fafc;
    --background: #020617;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --white: #0f172a;
    --border: #1e293b;
    --shadow: 0 10px 40px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
    cursor: none; /* Hide default cursor for custom system */
}

/* Custom Cursor System */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform var(--transition-fast), width var(--transition-fast), height var(--transition-fast), opacity var(--transition-fast);
    opacity: 0.8;
}

.cursor-halo {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s linear, width 0.3s var(--ease-premium), height 0.3s var(--ease-premium);
    opacity: 0.3;
}

.custom-cursor.active {
    transform: scale(3);
    opacity: 0.5;
    background: white;
}

.cursor-halo.active {
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

/* Hide custom cursor on mobile */
@media (max-width: 1024px) {
    body { cursor: auto; }
    .custom-cursor, .cursor-halo { display: none; }
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header styling */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 3000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: padding 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.main-header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

body.dark-mode .main-header.scrolled {
    background-color: rgba(15, 23, 42, 0.8);
}

/* Dark Mode Utilities */
body.dark-mode .main-header { background-color: rgba(15, 23, 42, 0.9); }
body.dark-mode .hero-section,
body.dark-mode .loan-hero,
body.dark-mode .emi-hero { background: linear-gradient(135deg, #020617 0%, #0f172a 100%); }
body.dark-mode .rate-card, 
body.dark-mode .white-card, 
body.dark-mode .checker-card { background: var(--white); border-color: var(--border); }
body.dark-mode input, 
body.dark-mode select { background: #1e293b; color: white; border-color: #334155; }
body.dark-mode .lang-toggle { background: #1e293b; border-color: #334155; }
body.dark-mode .lang-toggle button.active { background: #334155; color: white; }

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--secondary);
    text-decoration: none;
}

.logo span span {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    padding: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Language Switcher */
.lang-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
}

.lang-toggle button {
    padding: 4px 12px;
    border-radius: 99px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.2s;
}

.lang-toggle button.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Multi-language font support */
body.lang-bn {
    font-family: 'Hind Siliguri', sans-serif;
}

/* Futuristic UI Blocks */
.glass-dark {
    background: rgba(15, 23, 42, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.neon-glow {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

/* Feature list fix */
.feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.4;
}

/* Glassmorphism & Modern Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #1e293b, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1000;
    top: 100%;
    border: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpElement {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatElement {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fade-up {
    animation: fadeUpElement 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

.animate-float {
    animation: floatElement 4s ease-in-out infinite;
}

/* Premium Text Animations */
.reveal-text {
    overflow: hidden;
    display: block;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease-premium);
}

.reveal-text.active span {
    transform: translateY(0);
}

.word-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
}

.word-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Motion */
.hero-gradient-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Stagger delays for lists */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Buttons */
.btn-primary-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s var(--ease-premium);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease-premium);
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-submit:hover::after {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--background) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    max-width: 850px;
    line-height: 1.2;
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Calculator Card */
.calculator-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 900px;
    border: 1px solid var(--border);
}

.calc-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-tag {
    position: absolute;
    left: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.input-with-icon input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: border-color 0.2s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
}

.tenure-toggle {
    display: flex;
    background-color: var(--background);
    padding: 0.4rem;
    border-radius: 12px;
    gap: 0.25rem;
}

.tenure-btn {
    flex: 1;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    background: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.tenure-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.tax-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Results Section */
.results-section {
    padding: 4rem 0 8rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.header-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.header-info p {
    color: var(--text-muted);
}

.filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 0.75rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-box input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--white);
    width: 250px;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--primary);
}

.filters select {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

/* Bank Grid & Cards */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.bank-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.5s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.bank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.bank-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, rgba(37, 99, 235, 0.03) 50%, transparent 55%);
    background-size: 200% 200%;
    background-position: 200% 200%;
    transition: background-position 0.8s var(--ease-premium);
    pointer-events: none;
}

.bank-card:hover::after {
    background-position: -100% -100%;
}

.bank-card .bank-info, .bank-card .maturity-info {
    transition: transform 0.5s var(--ease-premium);
}

.bank-card:hover .bank-info { transform: translateX(5px); }

.best-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.25rem 3rem;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 1;
    letter-spacing: 0.5px;
}

.empty-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--white);
    border-radius: 24px;
    border: 2px dashed var(--border);
    color: var(--text-muted);
}

.empty-results i {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-results h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.bank-card.private::before { background-color: var(--private); }
.bank-card.islamic::before { background-color: var(--islamic); }
.bank-card.state::before { background-color: var(--state); }
.bank-card.foreign::before { background-color: var(--foreign); }

.bank-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bank-logo-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.bank-logo-wrap.large {
    width: 64px;
    height: 64px;
}

.bank-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    transition: transform 0.5s var(--ease-premium);
}

.bank-card:hover .bank-logo {
    transform: scale(1.1);
}

.hero-visual img {
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--ease-premium);
}

.hero-visual:hover img {
    transform: scale(1.05);
}

.bank-info {
    flex: 1;
}

.bank-info h3 {
    font-size: 1.25rem;
    color: var(--secondary);
}

.bank-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.4rem;
    display: inline-block;
}

.bank-icon-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--background);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.rate-badge {
    text-align: right;
}

.interest-rate {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.interest-rate span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.maturity-info {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.amount-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.maturity-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.profit-data {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.profit-item span:first-child {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.profit-item span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer Styling */
.main-footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 400px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.section-center-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-center-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    width: 95%;
    max-width: 850px;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scheme-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.suggestion-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    padding: 1.5rem;
}

.suggestion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-content h5 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.senior-toggle-group {
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.checkbox-label:hover span {
    color: var(--primary);
}

.guide-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.3rem;
}

.guide-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Modal Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 92% !important;
        padding: 2.5rem 1.5rem !important;
        margin: 5% auto;
    }
    
    .scheme-details-grid {
        grid-template-columns: 1fr !important;
    }
}

.suggestion-content p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.suggestion-content p:last-child {
    margin-bottom: 0;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
}

.rules-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.rules-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.rules-list li i {
    color: var(--accent);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-full-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full-primary:hover {
    background-color: var(--primary-dark);
}

.copyright {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2.5rem;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 2500;
        display: flex; 
        gap: 2rem;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--secondary);
        cursor: pointer;
        padding: 8px;
        z-index: 2600;
        position: relative;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        display: none;
        z-index: 2200;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1.5rem;
        display: none; 
        animation: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }
    .hero-section {
        padding: 2rem 0;
    }
    .bank-grid {
        grid-template-columns: 1fr;
    }
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box input {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Interactive Features - Compare & Favorites */
.card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.action-btn:hover { background: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.05); transform: translateY(-2px); }
.fav-btn.active i { fill: #ef4444; color: #ef4444; }
.compare-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.compare-tray {
    position: fixed;
    bottom: -100px; /* hidden by default */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
}

.compare-tray.visible { bottom: 20px; }

.compare-tray-items { display: flex; align-items: center; gap: 10px; }
.compare-item-chip { background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.compare-item-chip button { background: none; border: none; color: white; cursor: pointer; opacity: 0.6; }
.compare-item-chip button:hover { opacity: 1; }

.compare-matrix-grid { display: grid; grid-template-columns: 150px repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.matrix-col { background: var(--white); }
.matrix-cell { padding: 15px; border-bottom: 1px solid var(--border); font-size: 0.9rem; text-align: center; }
.matrix-cell.header { font-weight: 700; background: var(--background); color: var(--secondary); display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.matrix-sidebar .matrix-cell { text-align: left; font-weight: 600; color: var(--text-muted); background: #f8fafc; display: flex; align-items: center; }
/* Premium Footer */
.main-footer {
    background: #0f172a;
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3.5rem;
    padding: 5rem 1.5rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit';
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-family: 'Outfit';
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-premium);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #64748b;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

body.dark-mode .main-footer {
    background: #020617;
}

/* Starlight Aura Cursor */
.cursor-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200000;
    transition: width 0.4s var(--ease-premium), height 0.4s var(--ease-premium), background 0.4s, border-color 0.4s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.cursor-stardust {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200001;
    opacity: 0.6;
    filter: blur(1px);
}

.cursor-aura.active {
    width: 65px;
    height: 65px;
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    border-width: 2px;
}

@media (max-width: 1024px) {
    .custom-cursor-v2, .cursor-halo-v2 { display: none !important; }
}

/* Safety Meter Component */
.safety-meter {
    height: 6px;
    width: 100%;
    background: rgba(0,0,0,0.05);
    border-radius: 99px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.safety-meter-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    transition: width 1s var(--ease-premium);
}

.safety-meter-fill.aaa { background: linear-gradient(to right, #10b981, #34d399); width: 100%; }
.safety-meter-fill.aa { background: linear-gradient(to right, #3b82f6, #60a5fa); width: 85%; }
.safety-meter-fill.a { background: linear-gradient(to right, #f59e0b, #fbbf24); width: 70%; }
.safety-meter-fill.b { background: linear-gradient(to right, #ef4444, #f87171); width: 50%; }

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body.dark-mode .glass-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Realistic Value (Inflation) styles */
.real-value-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: #fdf2f2;
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

body.dark-mode .real-value-badge {
    background: rgba(239, 68, 68, 0.1);
}

/* Budget Page Header Styles */
.budget-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.budget-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
}

.budget-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.budget-data-source {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tax-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 12px 24px;
    border-radius: 99px;
}

/* Calculator specific styling */
.calculator-title {
    margin-bottom: 2rem;
}

.input-sliders {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Alert Warning Styling */
.alert-warning {
    margin-top: 2rem;
    padding: 20px;
    border-radius: 16px;
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.alert-warning-title {
    color: #c53030;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-warning-text {
    font-size: 0.85rem;
    color: #9b2c2c;
    margin-top: 5px;
}

/* Auto-extracted inline styles */
.in-34a3fc { margin-bottom: 1rem; color: var(--secondary); display: flex; align-items: center; gap: 0.5rem; }
.in-f05990 { width:18px;color:#2563eb; }
.in-9b1308 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.in-49dee6 { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 0.5rem; }
.in-c396d0 { width: 32.4%; }
.in-204790 { width:33%; }
.in-f82cf2 { display:none;margin-top:1rem;padding:12px;background:#fef2f2;border-radius:10px;border:1px solid #fee2e2;font-size:0.85rem;color:#b91c1c;font-weight:600; }
.in-60c8b7 { text-align: right; font-weight: 700; color: var(--primary); }
.in-830a0c { padding-left: 35px; }
.in-122c92 { color: var(--primary); width: 22px; flex-shrink: 0; margin-top: 4px; }
.in-41f277 { font-size:0.8rem;font-weight:600;color:var(--text-muted);margin-bottom:0.5rem; }
.in-71a414 { font-size:0.8rem;color:var(--text-muted); }
.in-3224f9 { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.in-584c82 { width: 100%; text-align: center; border: none; background: transparent; padding: 0; }
.in-6a5b80 { background: var(--white); padding: 2.5rem; border-radius: 24px; border: 1px solid var(--border); }
.in-dd7c31 { margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem; }
.in-2d306e { flex:1; padding: 6px; border-radius: 8px; border: 1px solid var(--border); background: var(--white); cursor: pointer; }
.in-b14c51 { display:flex;align-items:center;gap:0.75rem;cursor:pointer;font-size:0.9rem;font-weight:500;padding:1rem;background:#f8fafc;border-radius:12px;border:1px solid var(--border); }
.in-cf36fb { color:var(--primary); }
.in-029014 { width:16px; }
.in-4eef00 { margin-bottom: 1rem; color: var(--secondary); }
.in-67fd43 { padding-top: 120px; }
.in-a679a6 { width: 4.5%; background: #8b5cf6; }
.in-48df79 { color:#ef4444;width:20px; }
.in-d59ef9 { background: rgba(16, 185, 129, 0.1); color: #059669; padding: 6px 12px; border-radius: 8px; font-weight: 700; font-size: 0.8rem; margin-bottom: 1rem; display: inline-block; }
.in-77c814 { overflow-x:auto; }
.in-9be251 { max-width: 1000px; margin-top: -80px; }
.in-f7a17b { padding-top:1rem;border-top:2px solid rgba(0,0,0,0.08); }
.in-161c90 { font-size: 3rem; font-weight: 800; color: var(--primary); }
.in-1dbd92 { margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center; }
.in-e62464 { padding-bottom: 80px; }
.in-58e548 { display: flex; justify-content: space-between; }
.in-509849 { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; padding: 1rem; background: #f8fafc; border-radius: 12px; border-left: 4px solid var(--primary); }
.in-fe7ebb { margin-top: 0; color: var(--secondary); }
.in-5f2641 { color: #fbbf24 }
.in-07f088 { flex: 1; padding: 10px; border-radius: 10px; border: none; background: transparent; cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.in-f5c49a { margin: 0 0 0.5rem 0; }
.in-dd48a9 { width: 100%; padding: 15px 15px 15px 40px; border-radius: 14px; border: 1.5px solid var(--border); font-size: 1.1rem; font-weight: 700; }
.in-ee34e5 { margin-bottom: 0.5rem; color: var(--secondary); }
.in-8e8c33 { color: #c53030; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.in-c6a4ce { width: 100%; margin-top: 1rem; border-radius: 16px; padding: 18px; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; }
.in-d4f914 { color:#10b981; }
.in-6ba7f5 { width: 11.5%; background: #ea580c; }
.in-5a657f { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }
.in-a8c1e9 { width:16px;color:var(--primary); }
.in-dfb059 { padding: 100px 0 50px; }
.in-3c92e1 { margin-top: 3rem; }
.in-502951 { flex: 1; min-width: 300px; }
.in-b71764 { width: 14px; height: 14px; vertical-align: middle; }
.in-3015e0 { font-weight: 700; color: #34d399; }
.in-534d75 { text-align: center; width: 100%; max-width: 800px; margin: 0 auto 3rem; }
.in-c9d9eb { margin-top:1.5rem; }
.in-d15fb8 { color: #f87171; font-weight: 700; }
.in-eafa85 { font-weight: 700; color: var(--primary); }
.in-552ed1 { margin-right: 10px; color: var(--primary); vertical-align: middle; }
.in-174640 { padding: 20px 0 60px; background: transparent; position: relative; }
.in-d314eb { font-size:0.85rem; color:var(--text-muted); font-weight:600; margin-bottom:0.5rem; }
.in-91207c { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.in-172040 { margin: 0; font-size: 1.1rem; }
.in-f728b9 { padding: 14px 28px; border-radius: 99px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.in-a729d7 { margin-bottom: 4rem; }
.in-a97a9c { background: linear-gradient(to right, #60a5fa, #a855f7); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.in-970963 { display: none; padding: 10px 20px; border-radius: 12px; margin-left: 10px; }
.in-79ed40 { display: flex; justify-content: space-between; align-items: center; margin: 0; font-size: 1.2rem; }
.in-2da5d6 { margin-bottom:1.5rem; }
.in-cb0951 { width: 20px; height: 20px; accent-color: var(--primary); }
.in-70e57a { width:50%; }
.in-4da48e { line-height: 1.8; color: var(--text-muted); margin-left: 1.5rem; }
.in-643691 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 3rem; }
.in-fc2ca5 { font-size: 1.25rem; opacity: 0.8; line-height: 1.8; }
.in-2f5811 { width:0%; }
.in-5b9e55 { display:inline-flex;align-items:center;gap:0.5rem;background:rgba(129,140,248,0.2);border:1px solid rgba(129,140,248,0.4);padding:6px 16px;border-radius:99px;margin-bottom:1.5rem;font-size:0.85rem;font-weight:600;color:#a5b4fc; }
.in-43f157 { margin-bottom:2rem;color:var(--secondary);display:flex;align-items:center;gap:0.5rem; }
.in-cdc501 { color:#ef4444;width:18px; }
.in-6eb4b6 { color: var(--accent); }
.in-955332 { font-size:1.4rem;color:#059669; }
.in-818795 { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.in-c0b859 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; opacity: 0.9; margin-bottom: 0.5rem; }
.in-5d98ab { font-weight:700;color:#059669; }
.in-967874 { margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); background: #fef2f2; padding: 15px; border-radius: 12px; border: 1px solid #fee2e2; }
.in-d3297f { margin-bottom: 1.5rem; }
.in-33179a { width: 100%; padding: 12px; border: 1px solid #fca5a5; background: #fef2f2; border-radius: 12px; }
.in-93b638 { font-size: 0.85rem; color: var(--text-muted); margin-top: 5px; }
.in-5df410 { font-size:0.85rem;color:var(--text-muted);margin-bottom:1rem; }
.in-8203b3 { width:18px;height:18px;accent-color:#059669; }
.in-64b73d { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-weight: 700; }
.in-28e6a7 { color: #94a3b8; }
.in-cc0fc6 { margin: 5px 0 0; color: var(--text-muted); font-size: 0.95rem; }
.in-484fe4 { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; }
.in-743650 { padding: 8px 12px; font-size: 0.85rem; border-color: rgba(255,255,255,0.2); color:white; border-radius:8px; }
.in-268fb7 { display: grid; gap: 1.5rem; }
.in-a7d915 { text-align: right; font-weight: 700; color: var(--primary); margin-top: 0.5rem; }
.in-a2e72d { width: 80px; height: 80px; background: rgba(37,99,235,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.in-e038d7 { color: #065f46; max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; }
.in-64a82b { grid-column: span 1; }
.in-cd7cdb { color:var(--primary);width:20px; }
.in-d7eb53 { font-size: 0.7rem; color: var(--text-muted); margin-top: 5px; }
.in-e2b74b { margin: 0; }
.in-236c80 { max-width: 700px; margin: 0 auto; opacity: 0.8; font-size: 1.1rem; line-height: 1.6; }
.in-ef196d { font-weight: 600; margin-bottom: 0.5rem; display:block; color: #ef4444; }
.in-1aef2d { width:18px;flex-shrink:0;color:#1d4ed8;margin-top:2px; }
.in-e60fe6 { color: #6366f1; }
.in-9e9801 { display: grid; gap: 1rem; margin-top: 1rem; }
.in-9adca6 { position: relative; height: 350px; width: 100%; }
.in-224b51 { display: none; }
.in-32ad3d { display: flex; gap: 10px; margin-bottom: 10px; }
.in-3f909e { color: #f43f5e; }
.in-8554df { margin-top: 2rem; padding: 20px; border-radius: 16px; background: #fff5f5; border: 1px solid #fed7d7; display: none; }
.in-7bb9a4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.in-fc68ae { position: relative; z-index: 20; }
.in-bb021e { background: #d1fae5; color: #065f46; padding: 4px 10px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; }
.in-c63c7c { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 5px; }
.in-0c45f0 { font-size: 1.8rem; }
.in-6872ec { margin-bottom:1.5rem;color:var(--secondary); }
.in-620886 { width:34%; }
.in-2c350c { display:inline-flex;align-items:center;gap:0.5rem;background:rgba(165,180,252,0.2);border:1px solid rgba(165,180,252,0.4);padding:6px 16px;border-radius:99px;margin-bottom:1.5rem;font-size:0.85rem;font-weight:600;color:#a5b4fc; }
.in-0c4da6 { font-weight: 600; margin-bottom: 0.75rem; display: block; }
.in-cafce0 { margin-top: 2rem; padding: 20px; border-radius: 16px; background: #fef2f2; border: 1px solid #fee2e2; display: none; }
.in-3759f1 { color: #94a3b8; font-size: 0.9rem; }
.in-5e4a79 { flex: 1; min-width: 300px; background: var(--background); padding: 2rem; border-radius: 20px; }
.in-8bbd91 { display: flex; align-items: center; gap: 0.75rem; }
.in-835a25 { font-size: 0.85rem; color: #b91c1c; margin-top: 5px; }
.in-d08981 { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; border-top: 1px solid #eee; padding-top: 2rem; }
.in-154079 { margin-bottom:1.25rem;color:var(--secondary);display:flex;align-items:center;gap:0.5rem; }
.in-32bc43 { margin-top: 2.5rem; height: 60px; }
.in-24d122 { color: var(--text-muted) }
.in-f77eb5 { color: var(--secondary); }
.in-ddeb68 { color:#059669;width:20px; }
.in-84df9a { display: flex; flex-direction: column; gap: 0.75rem; }
.in-2b7992 { position:relative;z-index:1; }
.in-78a2f0 { display:flex;gap:8px;margin-bottom:12px;flex-wrap:wrap; }
.in-aae1e5 { color:#f97316; }
.in-a08cff { display:flex;justify-content:space-between;margin-bottom:0.5rem;font-size:0.85rem;font-weight:600; }
.in-be8e63 { font-weight: 700; }
.in-747205 { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 1.5rem; border-top: 1px solid #f1f5f9; padding-top: 1.5rem; }
.in-c3375c { width: 17.2%; background: #f43f5e; }
.in-af633e { color:#059669; }
.in-ce25e1 { font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #60a5fa; margin-bottom: 1rem; display: block; }
.in-c54179 { width: 100%; margin-top: 2rem; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 15px; }
.in-47b7fc { background: var(--white); border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); overflow-x: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.in-5eeed6 { grid-column: span 1.5 / span 1.5; }
.in-18b7c3 { font-size: 0.85rem; color: #9b2c2c; margin-top: 5px; }
.in-b2d203 { color: #3b82f6; }
.in-678c6c { border: 1.5px solid var(--border); padding: 8px 12px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; background: var(--white); cursor: pointer; }
.in-4cb8ce { position:relative; }
.in-ecc5dd { color: #ef4444; }
.in-9fbb62 { display:block;font-weight:600;margin-bottom:0.5rem;font-size:0.9rem; }
.in-51cef4 { width: 14px; vertical-align: middle; color: #ef4444; }
.in-db04d5 { position: relative; overflow: hidden; }
.in-6ed62c { margin-bottom: 3rem; }
.in-982dc3 { background: var(--white); padding: 2rem; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.05); text-align: center; }
.in-7fbe70 { display:block; font-weight: 600; margin-bottom: 0.5rem; }
.in-a1a690 { display: flex; align-items: flex-start; gap: 1rem; }
.in-949047 { padding: 10px 20px; font-size: 0.85rem; border-radius: 12px; display: flex; align-items: center; gap: 0.5rem; }
.in-ae54fc { display:flex;align-items:center;gap:6px;padding:10px;border:1.5px solid var(--border);border-radius:10px;cursor:pointer;font-size:0.85rem;font-weight:600; }
.in-4d6e37 { flex-shrink: 0; width: 24px; height: 24px; }
.in-aad981 { width:100%;padding:12px 14px 12px 30px;border-radius:12px;border:1.5px solid var(--border);font-size:1.1rem;font-weight:700;font-family:inherit; }
.in-f63413 { margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.in-af9170 { display: flex; justify-content: space-between; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1rem; font-size: 0.9rem; }
.in-a08509 { width: 100%; padding: 12px; border-radius: 12px; border: 1.5px solid var(--border); font-family: inherit; font-size: 1rem; }
.in-fe3163 { width: 100%; padding: 12px; border-radius: 12px; border: 1.5px solid var(--border); font-family: inherit; font-size: 1rem; background: var(--white); }
.in-95e640 { width:14px; height:14px; margin-right:5px; vertical-align:middle; }
.in-addfff { font-size: 0.85rem; color: var(--text-main); line-height: 1.6; }
.in-be1d23 { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.in-b53e23 { position: relative; overflow: hidden; text-align: center; padding: 6rem 0; }
.in-1222e8 { width: 16px; }
.in-554758 { opacity: 0.8; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.in-6c766c { background:var(--white);border-radius:20px;padding:1.5rem 2rem;box-shadow:0 8px 30px rgba(0,0,0,0.05);border:1px solid var(--border);margin-bottom:2rem; }
.in-6976bd { font-size:1.8rem; font-weight:700; color:#10b981; }
.in-bdf8c0 { margin-top: 2rem; width: 100%; max-width: 280px; }
.in-4dea06 { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 12px; font-size: 1.25rem; font-weight: 600; }
.in-cafd82 { text-align: center; margin-top: 1.5rem; }
.in-cc73ef { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 12px; }
.in-efc457 { display:grid;grid-template-columns:repeat(3,1fr);gap:0.5rem;margin-top:8px; }
.in-721cb1 { color: #10b981; width: 22px; flex-shrink: 0; margin-top: 4px; }
.in-c36a57 { color: #ef4444; width: 22px; flex-shrink: 0; margin-top: 4px; }
.in-fea957 { margin-bottom: 1.5rem; color: var(--secondary); display: flex; align-items: center; gap: 0.5rem; }
.in-6fe779 { display:inline-flex;align-items:center;gap:0.5rem;background:rgba(251,146,60,0.2);border:1px solid rgba(251,146,60,0.4);padding:6px 16px;border-radius:99px;margin-bottom:1.5rem;font-size:0.85rem;font-weight:600;color:#fdba74; }
.in-11fa1d { font-size: 1.25rem; opacity: 0.8; line-height: 1.6; margin-bottom: 2rem; }
.in-acffac { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.in-0f55f5 { color: var(--primary); vertical-align: middle; }
.in-4675dc { font-size: 2.5rem; margin-bottom: 1rem; }
.in-40b72c { font-size: 1.8rem; }
.in-c713cb { margin-bottom:2rem; }
.in-c43568 { background: var(--primary); color: white; width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2); }
.in-deab34 { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 12px; font-size: 1.1rem; background: var(--bg); }
.in-5ee243 { padding-bottom: 60px; }
.in-6c8698 { font-size: 1.25rem; opacity: 0.9; }
.in-f92838 { font-weight: 600; margin-bottom: 0.5rem; display:block; }
.in-21321d { padding-left:32px; }
.in-8fdce8 { text-decoration:none; }
.in-20d1e8 { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.in-d2b566 { display:flex;align-items:center;gap:0.75rem;margin-top:0.5rem;padding:1rem;background:#f8fafc;border-radius:14px;border:1px solid var(--border); }
.in-e36043 { margin:1.5rem 0 0.75rem;color:var(--secondary);font-size:0.95rem;display:flex;align-items:center;gap:0.5rem; }
.in-8354e9 { text-decoration: none; }
.in-d72693 { background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.in-8ecf90 { width: 100%; border-radius: 12px; padding: 16px; font-size: 1.1rem; font-weight: 700; }
.in-25cb8a { color:#ef4444; }
.in-27e0e1 { width:100%;margin-top:10px; }
.in-32102a { font-weight: 700; font-size: 1.1rem; }
.in-880c3c { background: #ef4444; color: white; font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; font-weight: 700; margin-left: 5px; vertical-align: middle; }
.in-efbc51 { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.in-2d0821 { width: 14px; height: 14px; }
.in-6db0e7 { font-size: 0.8rem; color: #94a3b8; }
.in-d37f7c { display: flex; background: #f8fafc; padding: 5px; border-radius: 14px; border: 1px solid #f1f5f9; }
.in-c42e0e { margin-bottom: 0; }
.in-200ca4 { width:12px;vertical-align:middle; }
.in-dd2b10 { font-size: 0.9rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.5rem; }
.in-009cc8 { color: var(--primary); }
.in-88aa25 { margin-top: 0; }
.in-3dc89e { width:18px;color:#059669; }
.in-7cae0e { width: 9.2%; background: #dc2626; }
.in-cdd8ca { text-align: center; }
.in-d43543 { background: var(--white); padding: 1.5rem; border-radius: 16px; margin-bottom: 1rem; border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; }
.in-b177fe { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; font-size: 0.95rem; font-weight: 500; }
.in-0c172f { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.in-7e7ff1 { display: flex; gap: 1rem; flex-wrap: wrap; }
.in-1dccac { color: var(--accent); width: 22px; flex-shrink: 0; margin-top: 4px; }
.in-0d4c27 { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.in-b9183a { font-weight:700;font-size:0.9rem;color:var(--secondary);display:block;margin-bottom:8px; }
.in-20bb59 { color: #10b981; }
.in-8f93cc { accent-color:#059669; }
.in-fbf552 { display:flex;justify-content:space-between;font-size:0.75rem;color:var(--text-muted);margin-top:4px; }
.in-740c0b { width: 16px; height: 16px; accent-color: var(--primary); }
.in-185d79 { margin-top: 1.5rem; }
.in-516c49 { padding: 14px 28px; border-radius: 99px; font-weight: 600; text-decoration: none; border-color: rgba(255,255,255,0.2); color: white; }
.in-052ff0 { width: 18px; height: 18px; }
.in-d1c2ca { font-weight: 600; margin-bottom: 0.5rem; display: block; }
.in-bde1cc { width:14px;height:14px; }
.in-7abb3a { color: var(--text-muted); }
.in-8c7b88 { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.in-0becb6 { font-size:0.85rem;color:var(--text-muted);margin-bottom:2rem; }
.in-c73c82 { font-size:1.4rem;color:#ef4444; }
.in-2d7cfc { color: #ef4444; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.in-63adda { margin-bottom:0.5rem; }
.in-bdaf09 { font-size: 0.8rem; color: #64748b; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.in-ec4fb9 { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.in-0ba205 { display: flex; gap: 1rem; }
.in-960ee1 { width:18px;color:#f97316; }
.in-9818a6 { width:100%;padding:10px;border-radius:10px;border:1.5px solid var(--border);font-family:inherit;font-size:0.9rem; }

.in-86cf41 { font-weight:700;color:var(--secondary); }
.in-ee1c80 { background: var(--white); border-radius: 24px; padding: 3rem; border: 1px solid var(--border); }
.in-03ee1f { position: relative; overflow: hidden; padding: 6rem 0; }
.in-4efca3 { margin-bottom:0.5rem;color:var(--secondary); }
.in-91148b { font-weight:700;font-size:0.95rem; }
.in-93ce80 { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.in-0d72b9 { margin: 0 0 0.5rem 0; color: var(--secondary); }
.in-b2d3b5 { display:flex;gap:1rem;font-size:0.75rem;font-weight:600;margin-top:6px; }
.in-9d8447 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.in-ba1ada { display: flex; flex-direction: column; gap: 2rem; }
.in-718a17 { width:18px;height:18px;accent-color:var(--primary); }
.in-d85c4e { position: relative; }
.in-e4a16c { margin-top: 4rem; }
.in-035cc8 { color:var(--primary) }
.in-d8c2db { color:#2563eb; }
.in-d9b534 { width:16px;flex-shrink:0;margin-top:2px;color:#d97706; }
.in-b5d421 { font-weight:700;font-size:0.8rem;text-transform:uppercase;color:#9a3412;margin-bottom:1rem;letter-spacing:1px; }
.in-257995 { margin-bottom: 2rem; }
.in-34e37c { font-size: 0.85rem; font-weight: 600; color: #9f1239; margin-bottom: 0.5rem; text-transform:uppercase; }
.in-8d20e1 { background: rgba(37,99,235,0.1); color: var(--primary); padding: 6px 12px; border-radius: 8px; font-weight: 700; font-size: 0.8rem; display: inline-block; margin-bottom: 1rem; text-transform: uppercase; }
.in-74bdbd { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.in-d0d7b9 { color: #6366f1; width: 22px; flex-shrink: 0; margin-top: 4px; }
.in-29bdce { font-size: 1.5rem; }
.in-260e7b { color: var(--text-muted); margin: 1rem 0 0 0; line-height: 1.5; padding-left: 34px; }
.in-9a6a53 { width: 40px; height: 40px; }
.in-a7d11d { width: 21.8%; background: #3b82f6; }
.in-e6cfd5 { display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.in-057fd3 { display:inline-flex;align-items:center;gap:0.5rem;background:rgba(110,231,183,0.2);border:1px solid rgba(110,231,183,0.4);padding:6px 16px;border-radius:99px;margin-bottom:1.5rem;font-size:0.85rem;font-weight:600;color:#6ee7b7; }
.in-585891 { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.in-b09c31 { display: none; padding: 10px 20px; border-radius: 12px; }
.in-bc6c20 { color: var(--text-muted); line-height: 1.6; }
.in-121a89 { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.in-3b10eb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.in-eba4f5 { color:var(--primary);width:18px; }
.in-dc56d0 { border-top: 4px solid #fbbf24; }
.in-1464f2 { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.in-697a24 { color:var(--text-muted); }
.in-627789 { font-size:1.8rem; font-weight:700; color:#ef4444; }
.in-bd308a { font-size: 0.8rem; color: var(--text-muted); }
.in-74d439 { position:absolute;left:14px;top:50%;transform:translateY(-50%);font-weight:700;color:var(--text-muted); }
.in-b9a0cf { background: var(--primary-light); color: var(--primary); padding: 12px; border-radius: 12px; }
.in-cbbb73 { color: var(--primary) }
.in-850e7c { width: 100%; margin-top: 2rem; padding: 18px; border-radius: 16px; background: #2563eb; color: white; border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.75rem; transition: 0.3s; }
.in-07c618 { width: 100%; accent-color: var(--primary); }
.in-66d30b { width:18px;flex-shrink:0;color:#0369a1; }
.in-41ffa6 { display:flex;align-items:center;gap:0.75rem;cursor:pointer;font-size:0.9rem;font-weight:500; }
.in-b0cbea { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.in-693f5f { max-width: 900px; }
.in-66b3e4 { font-size: 3.5rem; margin-bottom: 1rem; }
.in-c962d7 { position: relative; z-index: 2; }
.in-997a5b { padding: 60px 0; }
.in-514ed9 { display:flex;justify-content:space-between;font-size:0.85rem;font-weight:600; }

/* Restored font-family classes */
.in-238321 { font-family: 'Outfit'; margin-bottom: 1rem; }
.in-35ca97 { font-family: 'Outfit'; }
.in-ff71c5 { font-family: 'Outfit'; margin-bottom: 1.5rem; }
.in-b6b846 { font-family: 'Outfit'; margin: 0; font-size: 1.8rem; display: flex; align-items: center; gap: 10px; }
.in-fb5418 { font-family: 'Outfit'; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.in-0d60e7 { font-family: 'Outfit'; font-weight: 700; }
.in-9d41e9 { font-family: 'Outfit'; margin-bottom: 1.5rem; text-align: center; }
.in-ba92fc { font-family: 'Outfit'; font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
.in-da6d8f { font-family: 'Outfit'; font-size: 3rem; font-weight: 800; color: #064e3b; margin-bottom: 1rem; }
.in-939a76 { font-family: 'Outfit'; font-weight: 700; color: var(--secondary); margin: 0.5rem 0; }
.in-130107 { font-family: 'Outfit'; font-weight: 800; margin-bottom: 1rem; }
.in-f36a4a { font-family: 'Outfit'; font-size: 2.8rem; font-weight: 800; text-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.in-4e6369 { font-family: 'Outfit'; font-size: 3rem; font-weight: 800; margin-bottom: 1rem; color: var(--secondary); }
.in-aa9f0e { font-family: 'Outfit'; font-size:2rem; font-weight:800; color:#e11d48; }
.in-2a7fd1 { font-family: 'Outfit'; font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; }

/* Zero Tax Section Utilities */
.zero-tax-section { background: var(--white); padding: 5rem 0; border-top: 1px solid var(--border); }
.zt-header { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; }
.zt-badge { display:inline-flex; align-items:center; gap:0.5rem; background:rgba(16, 185, 129, 0.1); color:#059669; padding:6px 16px; border-radius:99px; margin-bottom:1rem; font-size:0.85rem; font-weight:700; margin-left:auto; margin-right:auto;}
.zt-icon-sm { width: 14px; }
.zt-highlight { color: #10b981; }
.zt-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.5fr 1fr; margin-top: 3rem; }
@media (max-width: 900px) { .zt-grid { grid-template-columns: 1fr; } }
.zt-card { padding: 2.5rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.zt-corporate { border-top: 4px solid #10b981; background: #f8fafc; border: 1px solid var(--border); }
.zt-corporate h3 { font-family: 'Outfit'; font-size: 1.6rem; color: var(--secondary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.zt-highlight-icon { color: #10b981; }
.zt-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.zt-list { list-style: none; padding: 0; margin-bottom: 2rem; }
.zt-list li { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.5; color: var(--text-muted); }
.zt-list strong { color: var(--secondary); }
.zt-btn { display:inline-flex; align-items:center; gap:8px; padding: 12px 24px; border-radius: 12px; background: #10b981; color: white; text-decoration: none; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
.zt-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3); }

.zt-individual { background: var(--secondary); color: white; }
.zt-individual h3 { font-family: 'Outfit'; font-size: 1.6rem; color: white; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.zt-blue { color: #60a5fa; }
.zt-text-light { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.zt-sub-box { background: rgba(255,255,255,0.05); padding: 1.25rem; border-radius: 12px; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.1); }
.zt-sub-box h4 { color: #60a5fa; margin-bottom: 0.5rem; font-size: 0.95rem; }
.zt-sub-box p { font-size: 0.85rem; color: #cbd5e1; margin: 0; line-height: 1.6; }
.zt-list-light { list-style: none; padding: 0; color: #cbd5e1; margin: 0; }
.zt-list-light li { font-size: 0.85rem; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.zt-check { width: 16px; height: 16px; color: #10b981; flex-shrink: 0; margin-top: 2px; }

/* Mega Projects Tracker */
.mega-hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 6rem 0 8rem; color: white; text-align: center; }
.mega-hero h1 { font-size: 3.5rem; font-family: 'Outfit'; font-weight: 800; margin-bottom: 1rem; }
.mega-hero h1 span { color: #3b82f6; }
.mega-hero p { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.tracker-dashboard { margin-top: -4rem; position: relative; z-index: 10; margin-bottom: 4rem; }
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.proj-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: transform 0.3s; }
.proj-card:hover { transform: translateY(-5px); }

.proj-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.proj-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.proj-badge { padding: 4px 12px; border-radius: 99px; color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.proj-title { font-size: 1.4rem; font-family: 'Outfit'; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; line-height: 1.3; }
.proj-tags { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.proj-tags span { background: #f1f5f9; color: var(--text-muted); font-size: 0.8rem; padding: 4px 10px; border-radius: 8px; font-weight: 600; }

.proj-finance { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px dashed var(--border); }
.fin-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.fin-stat span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.fin-stat strong { font-size: 1.1rem; color: var(--text-main); font-weight: 800; font-family: 'Outfit'; }

.proj-progress-wrap { width: 100%; }
.prog-meta { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-muted); }
.prog-bg { width: 100%; height: 8px; background: #f1f5f9; border-radius: 99px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 99px; transition: width 1s cubic-bezier(0.16, 1, 0.3, 1); }

.project-analytics-card { background: var(--white); border-radius: 24px; padding: 3rem; margin-bottom: 4rem; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
.analytics-header { margin-bottom: 2rem; text-align: center; }
.analytics-header h2 { font-size: 2rem; font-family: 'Outfit'; font-weight: 800; color: var(--secondary); display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 0.5rem; }
.analytics-header p { color: var(--text-muted); }

/* Trade Intelligence Dashboard */
.trade-hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 6rem 0 8rem; color: white; text-align: center; }
.trade-hero h1 { font-size: 3.5rem; font-family: 'Outfit'; font-weight: 800; margin-bottom: 1rem; }
.trade-hero h1 span { color: #f97316; }
.trade-hero p { color: #94a3b8; font-size: 1.1rem; max-width: 650px; margin: 0 auto; line-height: 1.6; }

.trade-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: -3.5rem; position: relative; z-index: 10; margin-bottom: 3rem; }
@media (max-width: 900px) { .trade-kpi-grid { grid-template-columns: 1fr; } }

.kpi-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: flex; align-items: center; gap: 1.5rem; transition: transform 0.3s; }
.kpi-card:hover { transform: translateY(-5px); }
.kpi-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(239, 68, 68, 0.1); color: #ef4444; display: flex; align-items: center; justify-content: center; }
.kpi-icon i { width: 30px; height: 30px; }
.kpi-icon.bg-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.kpi-icon.bg-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.kpi-data { display: flex; flex-direction: column; gap: 0.25rem; }
.kpi-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.kpi-value { font-size: 1.8rem; font-family: 'Outfit'; font-weight: 800; }
.text-red { color: #ef4444; }
.text-green { color: #10b981; }
.text-orange { color: #f97316; }

.trade-dashboard { display: grid; grid-template-columns: 350px 1fr; gap: 2rem; margin-bottom: 5rem; }
@media (max-width: 1024px) { .trade-dashboard { grid-template-columns: 1fr; } }

.breakdown-col { display: flex; flex-direction: column; gap: 2rem; }
.chart-box { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.02); height: 100%; }
.main-chart-box { padding: 2.5rem; }
.chart-box h3 { font-family: 'Outfit'; font-size: 1.3rem; color: var(--secondary); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.chart-box h3 i { color: var(--primary); }

.chart-container-sm { height: 220px; width: 100%; position: relative; margin-bottom: 1.5rem; }
.chart-container-lg { height: 400px; width: 100%; position: relative; margin-bottom: 1.5rem; }
.chart-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-top: -1rem; margin-bottom: 2rem; }

.legend-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.legend-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-main); font-weight: 500; }
.legend-color { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.legend-list strong { font-weight: 800; font-family: 'Outfit'; }

.insight-box { background: #f8fafc; border-left: 4px solid var(--primary); padding: 1.5rem; border-radius: 0 12px 12px 0; }
.insight-box h4 { display: flex; align-items: center; gap: 8px; color: var(--primary); margin-bottom: 0.5rem; font-size: 0.95rem; }
.insight-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.mt-4 { margin-top: 1.5rem; }

/* Forex Reserves Dashboard */
.reserves-hero { background: radial-gradient(circle at top right, #0f172a, #020617); padding: 5rem 0 7rem; color: white; text-align: center; }
.live-pulse-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #10b981; padding: 6px 14px; border-radius: 99px; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 1.5rem; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

.reserves-hero h1 { font-size: 3.2rem; font-family: 'Outfit'; font-weight: 800; margin-bottom: 1rem; }
.reserves-hero h1 span { color: #10b981; }
.reserves-hero p { color: #94a3b8; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.reserves-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: -3.5rem; position: relative; z-index: 10; margin-bottom: 3rem; }
@media (max-width: 900px) { .reserves-kpi-row { grid-template-columns: 1fr; gap: 1rem; } }

.glass-panel { background: var(--white); border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.03); }
.res-kpi-card { padding: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.highlight-panel { background: linear-gradient(135deg, #2563eb, #1d4ed8); border: none; box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2); }
.text-center { text-align: center; }

.kpi-title { font-size: 0.85rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.kpi-value { font-size: 2.2rem; font-family: 'Outfit'; font-weight: 800; }
.kpi-subtext { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 0.5rem; }
.shadow-text { text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.reserves-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 5rem; }
@media (max-width: 1024px) { .reserves-grid { grid-template-columns: 1fr; } }
.span-2 { grid-column: span 1; }

.p-6 { padding: 2rem; }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.panel-header h3 { display: flex; align-items: center; gap: 10px; font-family: 'Outfit'; font-size: 1.2rem; color: var(--secondary); }
.panel-header h3 i { color: var(--primary); width: 20px; }

.time-filters { display: flex; gap: 5px; background: #f1f5f9; padding: 4px; border-radius: 10px; }
.time-filters button { background: transparent; border: none; padding: 6px 12px; font-size: 0.8rem; font-weight: 600; border-radius: 6px; cursor: pointer; color: var(--text-muted); transition: 0.2s; }
.time-filters button.active { background: white; color: var(--primary); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

.bg-gradient-dark { background: linear-gradient(135deg, #1e293b, #0f172a); border: none; }
.text-white { color: white !important; }
.op-80 { opacity: 0.8; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.pt-2 { padding-top: 0.75rem; }
.flex-center-gap { display: flex; align-items: center; gap: 10px; font-family: 'Outfit'; font-size: 1.2rem; }
.text-yellow { color: #f59e0b; }
.text-blue { color: #3b82f6; }

.driver-item { display: flex; flex-direction: column; gap: 8px; }
.driver-name { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.driver-bar-bg { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 99px; }
.driver-bar-fill { height: 100%; border-radius: 99px; }
.driver-val { align-self: flex-end; font-size: 1.1rem; font-weight: 700; font-family: 'Outfit'; margin-top: -30px; }
.bg-green { background-color: #10b981; }
.bg-blue { background-color: #3b82f6; }
.flex-col { display: flex; flex-direction: column; }
.gap-6 { gap: 1.5rem; }
.icon-sm { width: 16px; height: 16px; }
