:root {
    /* Praarabdh Theme - Vibrant Purple & Gradients */
    --bg-body: #f0f4f8;
    /* Light gray-blue background */
    --bg-white: #ffffff;
    --text-primary: #1A051D;
    /* Dark purple/black */
    --text-secondary: #5A2D5C;
    /* Muted purple */

    /* Vibrant Palette from Screenshot */
    --color-purple: #86007F;
    --color-pink: #C5176F;
    --color-red: #EE4F5C;
    --color-orange: #FF884C;
    --color-yellow: #FFC14E;

    /* Matching Gradients */
    --gradient-start: #86007F;
    --gradient-mid: #494EBA;
    --gradient-end: #0094D4;
    /* Blue */

    /* Primary Action Colors */
    --primary-action: #494EBA;
    /* Royal Blue for buttons */
    --primary-action-hover: #353995;

    /* Keeping some original accents for specific contexts if needed, but re-mapped */
    --primary-green: #00A0B9;
    /* Teal from palette */
    --primary-green-light: #00C097;
    /* Lighter Teal */
    --primary-green-hover: #007D91;
    --brand-maroon: #86007F;
    /* Replaced with Purple */
    --brand-maroon-light: #C5176F;
    /* Replaced with Pink */
    --primary-orange: #FF884C;
    --primary-orange-hover: #E06C30;
    --brand-blue: #1A051D;
    /* Dark Purple */

    /* Slide Backgrounds */
    --slide-bg-1: #F4E6F3;
    /* Light Purple */
    --slide-bg-2: #E6F0F8;
    /* Light Blue */
    --slide-bg-3: #FFF0E5;
    /* Light Orange */

    /* UI Elements */
    --border-light: #EADCE9;
    --shadow-sm: 0 2px 8px rgba(134, 0, 127, 0.08);
    --shadow-hover: 0 12px 32px rgba(134, 0, 127, 0.15);
    --radius-main: 16px;
    --top-bar-height: 42px;
    --nav-height: 80px;
    /* Slightly taller for the new layout */

    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', 'Mangal', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Thin Scrollbar - Global */
* {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

*::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #999;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--brand-blue);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 157, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

/* ===== TOP UTILITY BAR (InsuranceDekho Style) ===== */
.top-bar {
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.slogan {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.slogan-hindi {
    font-family: var(--font-hindi);
    color: #ffd54f;
    font-weight: 500;
}

.slogan-divider {
    color: rgba(255, 255, 255, 0.4);
}

.slogan-english {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-link:hover {
    color: var(--primary-orange);
}

.top-link.login-btn {
    background: var(--primary-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
}

.top-link.login-btn:hover {
    background: var(--primary-orange-hover);
}

/* ===== NAVIGATION - Clean White ===== */
.navbar {
    height: var(--nav-height);
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    /* Changed from fixed */
    /* top: var(--top-bar-height); Removed */
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* Desktop Menu Layout */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-action);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s;
}

.nav-dropdown .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(55, 59, 144, 0.08) 0%, transparent 100%);
    color: var(--primary-action);
    padding-left: 24px;
}

.nav-dropdown .dropdown-menu a i {
    width: 18px;
    color: var(--primary-action);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Get Started Button - Custom Gradient from Screenshot */
.btn-get-started {
    background: linear-gradient(135deg, #373B90 0%, #494EBA 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(55, 59, 144, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #2A2E75 0%, #373B90 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(55, 59, 144, 0.4);
    color: white;
}

/* ===== HERO BANNER SLIDER ===== */
.hero-banner {
    padding-top: 4px;
    padding-bottom: 16px;
    background: var(--bg-body);
}

.banner-slider {
    position: relative;
    background: var(--slide-bg-1);
    border-radius: var(--radius-main);
    overflow: hidden;
    min-height: 320px;
}





.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-size: cover;;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: var(--radius-main);
}

.banner-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.banner-slide[data-slide="0"] {
    background-color: var(--slide-bg-1);
}

.banner-slide[data-slide="1"] {
    background-color: var(--slide-bg-2);
}

.banner-slide[data-slide="2"] {
    background-color: var(--slide-bg-3);
}

.banner-slide[data-slide="3"] {
    background-color: #f3e8ff;
}

.banner-slide[data-slide="4"] {
    background-color: #e0f2fe;
}

.slide-content {
    display: flex;
    align-items: center;
    padding: 48px;
    border-radius: var(--radius-main);
    height: 500px;
    min-height: 320px;
}

.slide-text {
    max-width: 520px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-maroon);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-badge.green {
    background: var(--primary-green);
}

.offer-badge.maroon {
    background: var(--brand-maroon);
}

.offer-badge.purple {
    background: #7c3aed;
}

.offer-badge.blue {
    background: #2563eb;
}

.slide-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.slide-content h2 .highlight {
    color: var(--primary-green);
}

.slide-features {
    list-style: none;
    margin-bottom: 24px;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.slide-features li i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.btn-cta {
    background: var(--brand-maroon);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--brand-maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 47, 71, 0.25);
}

/* Slide Visual (Icon) */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-icon {
    width: 160px;
    height: 160px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-green);
}

.visual-icon.green {
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary-green);
}

.visual-icon.maroon {
    background: rgba(139, 47, 71, 0.1);
    color: var(--brand-maroon);
}

/* Banner Images for Slider */
.banner-image {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-green);
    width: 28px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--primary-green-light);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 24px;
    margin-top: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-sm);
}

.stats-bar .stat-item {
    text-align: center;
}

.stats-bar .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stats-bar .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stats-bar .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 32px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    padding: 10px;
    display: flex;
    gap: 48px;
    animation: scroll-partners 25s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-body);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    /* box-shadow: var(--shadow-hover); */
    border-color: var(--primary-green);
}

.partner-logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* 3D Icon Styles for Partners */
.icon-3d {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: perspective(500px) rotateX(10deg);
    transition: all 0.3s ease;
}

.partner-logo:hover .icon-3d {
    transform: perspective(500px) rotateX(0deg) scale(1.1);
}

.icon-3d.bank {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
}

.icon-3d.gov {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    color: white;
}

.icon-3d.card {
    background: linear-gradient(135deg, #ff7043 0%, #e64a19 100%);
    color: white;
}

.icon-3d.atm {
    background: linear-gradient(135deg, #ab47bc 0%, #7b1fa2 100%);
    color: white;
}

.icon-3d.chart {
    background: linear-gradient(135deg, #5c6bc0 0%, #3949ab 100%);
    color: white;
}

.icon-3d.shield {
    background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
    color: white;
}

.icon-3d.heart {
    background: linear-gradient(135deg, #ec407a 0%, #c2185b 100%);
    color: white;
}

.icon-3d.star {
    background: linear-gradient(135deg, #ffa726 0%, #f57c00 100%);
    color: white;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef2ff 0%, #F8F8F9 50%, #fdf4ff 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.step-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 3D Step Icons */
.step-icon-3d {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transform: perspective(500px) rotateX(10deg) rotateY(-5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon-3d {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
}

.step-icon-3d.step-1 {
    background: linear-gradient(145deg, #a74eb5 0%, #86007F 50%, #4a0046 100%);
    color: white;
}

.step-icon-3d.step-2 {
    background: linear-gradient(145deg, #e85c9d 0%, #C5176F 50%, #8a104e 100%);
    color: white;
}

.step-icon-3d.step-3 {
    background: linear-gradient(145deg, #ffda85 0%, #FFC14E 50%, #FF884C 100%);
    color: #4a2800;
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(17, 20, 57, 0.3);
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    color: var(--primary-accent);
    opacity: 0.8;
}

/* Agent Assistance Card */
.agent-assistance {
    margin-top: 48px;
}

.agent-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: white;
}

.agent-icon,
.agent-icon-3d {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    transform: perspective(500px) rotateX(10deg) rotateY(-5deg);
    transition: all 0.3s ease;
}

.agent-card:hover .agent-icon-3d {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
}

.agent-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.agent-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.agent-card .btn-cta {
    background: white;
    color: var(--primary-green);
}

.agent-card .btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== LOGIN MODAL STYLES ===== */
.login-modal {
    max-width: 420px;
}

.login-modal .modal-header p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

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

.login-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.login-divider span {
    padding: 0 16px;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.login-footer a {
    color: var(--primary-green);
    font-weight: 600;
}

/* ===== VIBRANT BUTTON ENHANCEMENTS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    box-shadow: 0 4px 15px rgba(17, 20, 57, 0.25);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-mid) 50%, var(--gradient-start) 100%);
    box-shadow: 0 8px 25px rgba(17, 20, 57, 0.35);
    transform: translateY(-3px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--gradient-mid) 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Interactive Card Animations */
.product-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Pulse Animation for CTAs */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(247, 127, 0, 0);
    }
}

.btn-primary.pulse {
    animation: pulse-glow 2s infinite;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brand-blue);
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 90%;
}

.badge {
    background: #e6f6ff;
    color: #0078d4;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Dashboard Card (Visual) */
.hero-visual {
    position: relative;
    height: 400px;
}

.dashboard-card.main-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    border: 1px solid var(--border-light);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Products Section (The main grid) */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.product-category {
    margin-bottom: 32px;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e6e9f0;
    padding-bottom: 8px;
    color: var(--brand-blue);
}

.category-title i {
    color: var(--primary-orange);
}

/* Responsive Grid - 4 Columns on Mobile matches reference */
/* Responsive Grid - Compact 6 Columns */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Mobile: 4 cols */
    gap: 8px;
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

/* Category Dashboard Layout */
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    padding: 0 10px;
}

@media (max-width: 900px) {
    .categories-wrapper {
        grid-template-columns: 1fr;
    }
}

.category-col {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
}

.category-col h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 buttons per category row */
    gap: 12px;
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ensure mobile stays 4 columns but handles tiny screens */
@media (max-width: 360px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--bg-white);
    border: none;
    border-radius: 12px;
    /* Smaller radius */
    padding: 8px 4px;
    /* Minimal padding */
    text-align: center;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Top aligned */
    height: auto;
    min-height: 80px;
    /* Reduced height */
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-card .icon-box {
    width: 32px;
    /* Reduced from 52px */
    height: 32px;
    /* Reduced from 52px */
    margin-bottom: 6px;
    border-radius: 8px;
    /* Smaller radius */
    background: linear-gradient(145deg, #ffecd2 0%, #fcb69f 50%, #f77f00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    /* Smaller icon */
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    /* Orphaned properties removed */
    transform: perspective(500px) rotateX(10deg) rotateY(-5deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .icon-box {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.15);
    box-shadow:
        0 10px 20px rgba(247, 127, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Different colors for different product categories */
.product-category:nth-child(2) .icon-box {
    background: linear-gradient(145deg, #d4fc79 0%, #96e6a1 50%, #2d6a4f 100%);
    box-shadow:
        0 6px 12px rgba(45, 106, 79, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.product-category:nth-child(2) .product-card:hover .icon-box {
    box-shadow:
        0 10px 20px rgba(45, 106, 79, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.product-category:nth-child(3) .icon-box {
    background: linear-gradient(145deg, #fccb90 0%, #d57eeb 50%, #8b2f47 100%);
    box-shadow:
        0 6px 12px rgba(139, 47, 71, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.product-category:nth-child(3) .product-card:hover .icon-box {
    box-shadow:
        0 10px 20px rgba(139, 47, 71, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.product-category:nth-child(4) .icon-box {
    background: linear-gradient(145deg, #a8c0ff 0%, #667eea 50%, #3949ab 100%);
    box-shadow:
        0 6px 12px rgba(57, 73, 171, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.product-category:nth-child(4) .product-card:hover .icon-box {
    box-shadow:
        0 10px 20px rgba(57, 73, 171, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.product-card h3 {
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.product-card p {
    display: none;
    /* Hide description on mobile for compact view */
}

/* Button style inside card - Pill Shape */
.btn-link {
    display: none;
    /* Hidden on mobile to save space, whole card clickable */
}

@media (min-width: 768px) {
    .product-card {
        padding: 24px;
        min-height: 220px;
    }

    .product-card .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .product-card p {
        display: block;
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 16px;
    }

    .btn-link {
        display: inline-flex;
        background: #fff5e5;
        color: var(--primary-orange);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        align-items: center;
        gap: 6px;
        transition: 0.2s;
        margin-top: auto;
        position: static;
        width: auto;
    }

    .btn-link:hover {
        background: var(--primary-orange);
        color: white;
    }
}

/* Calculators - Clean White */
.calculator-container {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border: 1px solid var(--border-light);
}

.calc-tabs {
    background: #f8f9fc;
    border-bottom: 1px solid var(--border-light);
}

.calc-tab {
    color: var(--text-secondary);
    padding: 16px 24px;
    font-weight: 600;
}

.calc-tab.active {
    color: var(--primary-orange);
    background: white;
    border-bottom: 3px solid var(--primary-orange);
}

.input-group label {
    color: var(--text-primary);
    font-weight: 600;
}

.range-display {
    color: var(--brand-blue);
}

/* Range Slider Styling */
input[type=range] {
    background: #e6e9f0;
}

input[type=range]::-webkit-slider-thumb {
    background: var(--primary-orange);
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Modal - Light Mode */
.modal-overlay {
    background: rgba(9, 44, 76, 0.6);
    /* Dark Blue overlay */
}

.modal-container {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.modal-icon {
    background: #fff5e5;
    color: var(--primary-orange);
}

.modal-form {
    padding-top: 16px;
}

.btn-block {
    background: var(--primary-orange);
}

.btn-block:hover {
    background: var(--primary-orange-hover);
}

/* Footer */
.footer-pro {
    background: var(--bg-body);
    border-top: 1px solid var(--border-light);
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
}

.link-col h4 {
    color: var(--brand-blue);
}

.link-col a {
    color: var(--text-secondary);
}

.link-col a:hover {
    color: var(--primary-orange);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        background: white;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-btn {
        color: var(--text-primary);
    }

    .nav-links a {
        color: var(--text-primary);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        color: var(--text-primary);
    }

    .nav-links a {
        color: var(--text-primary);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== MISSING STYLES - FIXES ===== */

/* Stat Divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    bottom: 15%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 10%;
    right: -30px;
    animation-delay: 1.5s;
}

.floating-card .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Icon Circles */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.icon-circle.bg-blue {
    background: #e6f0ff;
    color: #0066cc;
}

.icon-circle.bg-green {
    background: #e6fff0;
    color: #00b359;
}

/* Dashboard Card Elements */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    border-radius: 50%;
}

.user-info h5 {
    font-size: 0.9rem;
    margin: 0 0 4px 0;
    color: var(--text-primary);
}

.tag {
    background: #e6fff0;
    color: #00b359;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Bar Chart */
.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    padding-top: 20px;
}

.bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(to top, var(--primary-orange), #ffb84d);
    animation: grow 1s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 {
    height: 40%;
    animation-delay: 0.1s;
}

.bar-2 {
    height: 65%;
    animation-delay: 0.2s;
}

.bar-3 {
    height: 50%;
    animation-delay: 0.3s;
}

.bar-4 {
    height: 80%;
    animation-delay: 0.4s;
}

.bar-5 {
    height: 95%;
    animation-delay: 0.5s;
}

@keyframes grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Calculator Tabs Container */
.calc-tabs {
    display: flex;
    gap: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.calc-tab {
    flex: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.calc-tab:hover {
    background: rgba(255, 157, 0, 0.1);
}

/* Calculator Body */
.calc-body {
    padding: 32px;
}

.calc-view {
    display: none;
}

.calc-view.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media (max-width: 768px) {
    .calc-view.active {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Input Groups */
.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
}

.range-display {
    font-size: 1.5rem;
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

/* Chart Box */
.calc-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.chart-box {
    position: relative;
    width: 180px;
    height: 180px;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #e6e9f0;
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.circle.color-purple {
    stroke: #8b5cf6;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-center span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.chart-center h3 {
    font-size: 1.25rem;
    margin: 4px 0 0 0;
}

/* Results Breakdown */
.results-breakdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breakdown-item span:last-of-type {
    flex: 1;
}

.breakdown-item strong {
    font-weight: 700;
    color: var(--brand-blue);
}

.breakdown-item.total {
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 4px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.bg-blue {
    background: #0066cc;
}

.dot.bg-green {
    background: var(--primary-orange);
}

.dot.bg-purple {
    background: #8b5cf6;
}

/* Eligibility Card */
.centered-result {
    justify-content: center;
}

.eligibility-card {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #fff5e5 0%, #fff 100%);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.eligibility-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.eligibility-card h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.eligibility-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 16px;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
}

/* Background Variants */
.bg-darker {
    background: #f0f4f8;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    padding: 20px 24px 12px;
    text-align: center;
}

.modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 10px;
}

.modal-header h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.modal-form {
    padding: 0 24px 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 157, 0, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    margin-top: 8px;
}

/* Footer Styles */
.footer-pro {
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-image {
    height: 44px;
    width: auto;
}



.footer-slogan {
    font-family: var(--font-hindi);
    color: var(--primary-orange);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px !important;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex: 1;
    margin-left: 40px;
}

.link-col {
    flex-shrink: 0;
}

.link-col:last-child {
    max-width: 220px;
    text-align: left;
    font-size: 0.85rem;
}

.link-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.link-col a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.link-col a i {
    margin-right: 8px;
    width: 16px;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 5px;
}

.footer-address i {
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: var(--text-secondary);
}

.legal-links a:hover {
    color: var(--primary-orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}



@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-actions {
        width: 100%;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .calc-tabs {
        flex-direction: column;
    }

    .calc-tab {
        justify-content: flex-start;
        padding: 14px 20px;
    }

    .calc-body {
        padding: 20px;
    }

    /* Top Bar Mobile */
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
    }

    .slogan-english {
        display: none;
    }

    .slogan-divider {
        display: none;
    }

    .top-bar-actions {
        gap: 12px;
    }

    .top-link {
        font-size: 0.75rem;
    }

    /* Logo Mobile */
    .logo-image {
        height: 36px;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer-logo-image {
        height: 36px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    /* Banner Slider Mobile */
    .banner-slider {
        min-height: auto;
    }

    .slide-content {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-content h2 {
        font-size: 1.4rem;
    }

    .slide-features {
        display: inline-block;
        text-align: left;
    }

    .slide-visual {
        display: none;
    }

    .slider-dots {
        bottom: 12px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 16px 32px;
        padding: 16px;
    }

    .stats-bar .stat-divider {
        display: none;
    }

    .stats-bar .stat-num {
        font-size: 1.25rem;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 48px 0;
    }

    .steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .agent-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .agent-content h4 {
        font-size: 1.2rem;
    }

    /* Login Menu Mobile */
    .login-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .login-dropdown.active .login-menu {
        transform: translateY(0);
    }

    /* Partners Mobile */
    .partners-track {
        gap: 24px;
    }

    .partner-logo {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ===== NEW LOGIN MODAL STYLES ===== */

/* Overlay Background */
.modal-overlay {
    background: rgba(17, 20, 57, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    padding: 32px;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tabs */
.login-tabs {
    display: flex;
    background: var(--bg-body);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.login-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-tab.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--primary-action);
}

/* Form Styles */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.2s;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    /* Left padding for icon */
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--bg-white);
}

.input-icon-wrapper input:focus {
    outline: none;
    border-color: var(--primary-action);
    box-shadow: 0 0 0 3px rgba(73, 78, 186, 0.15);
}

.input-icon-wrapper:focus-within i {
    color: var(--primary-action);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 12px;
}

.social-login {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-color: var(--border-light);
    color: var(--text-primary);
}

.social-login:hover {
    background: var(--bg-body);
    border-color: var(--border-light);
}

/* ===== MOBILE OPTIMIZATIONS (Small Screens) ===== */
@media (max-width: 480px) {

    /* Reduce 3D Icon Size */
    .step-icon-3d {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    .agent-icon-3d {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
        /* Match step icon style */
    }

    /* Adjust Step Cards Spacing */
    .step-card {
        padding: 20px;
    }

    .steps-container {
        gap: 30px;
        /* More space between stacked steps */
    }

    /* Footer Optimizations */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .link-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .link-col:last-child {
        max-width: 100%;
    }

    .footer-brand {
        text-align: center;
        margin: 0 auto 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .legal-links {
        justify-content: center;
    }
}

/* ===== SHARED BLOG STYLES ===== */
.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-color: #e0e7ff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.read-more-link {
    margin-top: auto;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== AI CHATBOT STYLES ===== */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chat-widget.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-action));
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(55, 59, 144, 0.4);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s;
    animation: bounce 2s infinite;
}

.chat-toggle-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-action));
    padding: 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-info p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.8;
}

.minimize-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.message.bot {
    align-self: flex-start;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: var(--primary-action);
    /* Brand Blue/Purple */
    color: white;
    box-shadow: 0 2px 5px rgba(55, 59, 144, 0.2);
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 12px;
    background: white;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    border: none;
    background: #f1f5f9;
    padding: 10px 14px;
    border-radius: 20px;
    outline: none;
}

.voice-btn,
.send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.send-btn {
    background: var(--primary-action);
    color: white;
}

.voice-btn {
    background: #f1f5f9;
    color: var(--text-secondary);
}

.voice-btn.listening {
    background: #ff4757;
    color: white;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* 5-Column Grid for Banking Products */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: 1fr;
    }
}

/* ===== VISIBILITY FIXES ===== */
.btn-cta {
    background: var(--primary-purple) !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(55, 59, 144, 0.4);
}

.btn-cta:hover {
    background: var(--primary-action) !important;
    transform: translateY(-2px);
}

.chat-toggle-btn {
    background: #373B90 !important;
    /* Solid Purple */
    color: #ffffff !important;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn i {
    font-size: 1.6rem !important;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE RESPONSIVENESS UPGRADES ===== */

/* 1. Grid Adaptations */
@media (max-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    /* Cards: 2 columns on tablets/large phones, 1 on very small */
    .grid-5 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

 

    .banner-slide .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .slide-text h2 {
        font-size: 2rem;
        /* Smaller Heading */
    }

    .slide-visual {
        display: none;
        /* Hide 3D visual on mobile to save space */
    }

    /* Stats Bar scrollable on mobile */
    .stats-bar {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .stats-bar .stat-divider {
        display: none;
    }
}

/* 2. Chat Widget Mobile */
@media (max-width: 480px) {
    .chat-widget {
        width: 90%;
        height: 80vh;
        right: 5%;
        bottom: 80px;
    }

    .chat-toggle-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* 3. Navigation Adjustments - DISABLED (moved to animated sidebar at bottom) */
/* @media (max-width: 900px) - Old dropdown menu styles removed */

/* ===== TILE STYLE PRODUCT CARDS (InsuranceDekho Style) ===== */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 24px 16px !important;
    min-height: 140px !important;
    /* Fixed height for uniformity */
    border: 1px solid var(--border-light) !important;
    background: white !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer !important;
    border-radius: 16px !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--primary-action) !important;
}

.product-card .icon-box {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    font-size: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f1f5f9;
    /* Neutral bg for icons */
    color: var(--primary-action);
    /* Brand color icon */
}

/* Product icon images */
.product-card .product-icon {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    margin-bottom: 8px !important;
}

/* Smaller, bolder product text */
.product-card h3 {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
}

/* Specific colors for categories if needed, but keeping uniform is cleaner */

/* Category Title Alignment */
.category-title {
    text-align: center !important;
    margin-bottom: 24px !important;
    font-size: 1.2rem !important;
    color: #444 !important;
}

/* Icon Colors Overrides to match standard vibrant style */
.product-card[data-product="Home Loan"] .icon-box {
    color: #00bcd4;
    background: #e0f7fa;
}

.product-card[data-product="Personal Loan"] .icon-box {
    color: #8e44ad;
    background: #f3e5f5;
}

.product-card[data-product="Business Loan"] .icon-box {
    color: #2e7d32;
    background: #e8f5e9;
}

.product-card[data-product="Life/Term Insurance"] .icon-box {
    color: #ff5252;
    background: #ffebee;
}

.product-card[data-product="Health Insurance"] .icon-box {
    color: #ff1744;
    background: #ffebee;
}

.product-card[data-product="Mutual Funds"] .icon-box {
    color: #ff9800;
    background: #fff3e0;
}


/* ===== SMALLER BUTTONS ===== */
.btn {
    padding: 8px 16px !important;
    /* Reduced from 10px 24px */
    font-size: 0.9rem !important;
    /* Reduced from 1rem */
    min-width: auto;
}

.btn-cta {
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
}

.top-link.login-btn {
    padding: 4px 12px !important;
    font-size: 0.8rem !important;
}

.chat-toggle-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
}

/* ===== COMPACT LAYOUT (40% SMALLER) ===== */

/* 1. Tighter Grid */
.grid-5 {
    gap: 12px !important;
    /* Tighter spacing */
}

/* 2. Smaller Cards */
.product-card {
    padding: 12px 8px !important;
    min-height: 90px !important;
    /* Significantly reduced height */
    border-radius: 12px !important;
}

/* 3. Smaller Icons */
.product-card .icon-box {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
}

/* 4. Smaller Text */
.product-card h3 {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

/* 5. Smaller Section Headers to match */
.category-title {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
}

/* 6. Smaller Buttons Globally */
.btn,
.btn-cta,
.top-link.login-btn,
.apply-btn-hero {
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
}

/* ===== ULTRA COMPACT SPACING ===== */
section {
    padding: 30px 0 !important;
    /* Reduced from 60px+ */
}



.section-header {
    margin-bottom: 24px !important;
    /* Reduced from 40px+ */
}

.section-title {
    font-size: 1.8rem !important;
    /* Smaller Main Titles */
    margin-bottom: 8px !important;
}

.section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

/* Tighter Product Categories */
.product-category {
    margin-bottom: 20px !important;
    /* Reduced gap between Banking/Insurance/Investments */
}

.category-title {
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    text-align: left !important;
    /* Align left looks cleaner for compact lists often, or keep center */
    padding-left: 4px;
}

/* ===== COMPACT CALCULATOR (50% SMALLER) ===== */
.calc-container {
    padding: 20px !important;
    max-width: 900px !important;
    /* Constrain width */
    margin: 0 auto;
}

.calc-tabs {
    margin-bottom: 20px !important;
}

.calc-tab {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
}

.calc-body {
    padding: 24px !important;
}

.calc-grid {
    gap: 20px !important;
    /* Reduced gap */
}

/* Inputs */
.input-group {
    margin-bottom: 12px !important;
}

.input-header label {
    font-size: 0.85rem !important;
}

.amount-display {
    font-size: 1.2rem !important;
    /* Smaller number display */
}

input[type=range] {
    height: 4px !important;
    /* Thinner slider */
}

/* Chart */
.chart-wrapper {
    width: 140px !important;
    /* Reduced from ~200px+ */
    height: 140px !important;
}

.chart-center-text h3 {
    font-size: 0.7rem !important;
}

.chart-center-text .result-val {
    font-size: 1.1rem !important;
}

/* Legend */
.chart-legend {
    margin-top: 15px !important;
    font-size: 0.8rem !important;
}

.legend-item {
    padding: 4px 0 !important;
}

/* ===== COMPACT CALCULATOR FIXES ===== */

/* 1. Correct Layout container */
.calc-view.active {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    /* Force tight gap */
    align-items: center;
    /* Vertically align chart and inputs */
}

/* 2. Correct Chart Class Target */
.chart-box {
    width: 120px !important;
    /* Actually resize the chart container */
    height: 120px !important;
    margin: 0 auto;
    /* Center it in its column */
}

/* 3. Ensure no clipping */
.calc-body,
.calc-container,
.calculator-container {
    overflow: visible !important;
}

/* 4. Adjust Results Column */
.calc-results {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

.results-breakdown {
    margin-top: 15px !important;
    width: 100%;
}

.breakdown-item {
    padding: 4px 0 !important;
    font-size: 0.8rem !important;
}

/* 5. Center text inside chart */
.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.chart-center span {
    font-size: 0.6rem !important;
    display: block;
    color: #666;
}

.chart-center h3 {
    font-size: 0.9rem !important;
    margin: 0;
    color: #333;
}

/* ===== REFACTORED STYLES ===== */
.card-armed-forces {
    border: 1px solid #556B2F !important;
    cursor: pointer;
}

.icon-armed-forces {
    background: #556B2F !important;
    color: white !important;
}


/* ===== COMPACT PROCESS STEPS (30% SMALLER) ===== */

/* Steps Container */
.steps-container {
    gap: 16px !important;
    /* Reduced gap */
    max-width: 900px !important;
    margin: 0 auto 30px !important;
}

/* Individual Step Cards */
.step-card {
    padding: 20px 16px !important;
    /* Reduced padding */
    border-radius: 16px !important;
    min-height: auto !important;
}

.step-card .step-icon-3d {
    width: 50px !important;
    /* Reduced from ~70-80px */
    height: 50px !important;
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
}

.step-card h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
}

.step-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}

.step-badge {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.8rem !important;
    top: 10px !important;
    right: 10px !important;
}

/* Arrows */
.step-arrow svg {
    width: 30px !important;
    /* Half size */
}

/* Agent Assistance Banner */
.agent-assistance {
    margin-top: 30px !important;
}

.agent-card {
    padding: 20px 30px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.agent-icon-3d {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.8rem !important;
}

.agent-content h4 {
    font-size: 1.1rem !important;
}

.agent-content p {
    font-size: 0.85rem !important;
}

/* ===== COMPACT BLOG SECTION (50% SMALLER) ===== */
.blog-grid {
    gap: 16px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.blog-card {
    min-height: auto !important;
    border-radius: 12px !important;
}

.blog-image {
    height: 120px !important;
    /* Significantly reduced from 200px+ */
}

/* Badge mini */
.blog-category {
    top: 8px !important;
    left: 8px !important;
    padding: 4px 8px !important;
    font-size: 0.65rem !important;
}

/* Content mini */
.blog-content {
    padding: 12px !important;
    /* Reduced from 24px */
}

.blog-date {
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
}

.blog-title {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    min-height: auto !important;
    /* Remove min-height constraint if set */
}

.read-more-link {
    font-size: 0.75rem !important;
}

/* View All Button */
.view-all-container {
    margin-top: 20px !important;
}

.btn-outline {
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
}

/* Footer Disclaimer */
.footer-disclaimer {
    border-top: 1px solid var(--border-light);
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    width: 100%;
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    min-width: 280px;
    justify-content: flex-start;
}

.trust-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    max-width: 100px;
}

.trust-text {
    text-align: left;
}

.trust-text h5 {
    font-size: 0.95rem;
    color: var(--brand-blue);
    margin: 0 0 4px 0;
    font-weight: 700;
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-family: monospace;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.8;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE FIXES (2024) ===== */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Buttons - Touch Friendly (44px min height) */
    .btn {
        padding: 12px 18px !important;
        font-size: 0.9rem !important;
        min-height: 44px;
        border-radius: 8px !important;
    }

    .btn-cta {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        width: 100%;
        justify-content: center;
    }



    .slide-content {
        padding: 16px !important;
    }

    .slide-content h2 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .offer-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    .slide-features {
        font-size: 0.8rem !important;
    }

    .slide-features li {
        margin-bottom: 6px;
    }

    /* Stats Bar - 2x2 Grid */
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 12px !important;
        margin: 12px !important;
        border-radius: 12px !important;
    }

    .stat-item {
        text-align: center;
        padding: 8px 4px;
    }

    .stat-num {
        font-size: 1rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
    }

    .section-header {
        margin-bottom: 16px !important;
    }

    /* Product Cards - 2 Column Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .product-card {
        padding: 12px 8px !important;
        min-height: 80px !important;
        border-radius: 10px !important;
    }

    .product-card .icon-box {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }

    .product-card h3 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }

    .category-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }

    /* Categories Wrapper */
    .categories-wrapper {
        gap: 20px !important;
    }

    /* Forms */
    .form-container {
        margin: 10px !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .form-title h1 {
        font-size: 1.3rem !important;
    }

    .form-title p {
        font-size: 0.85rem !important;
    }

    .form-group input,
    .form-group select {
        padding: 12px !important;
        font-size: 16px !important; /* Prevents iOS zoom */
    }

    .section-header {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
    }

    .grid-row {
        gap: 16px !important;
        margin-bottom: 16px !important;
    }

    /* Upload Boxes */
    .upload-grid {
        gap: 12px !important;
    }

    .upload-box {
        padding: 16px 10px !important;
    }

    .upload-icon {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .upload-title {
        font-size: 0.85rem !important;
    }

    .upload-desc {
        font-size: 0.7rem !important;
    }

    /* Submit Button */
    .submit-btn {
        padding: 14px !important;
        font-size: 1rem !important;
    }

    /* Navigation */
    .navbar {
        padding: 10px 0 !important;
    }

    .logo-image {
        height: 28px !important;
    }

    .logo-name {
        font-size: 1rem !important;
    }

    /* Top Bar Hidden on Mobile */
    .top-bar {
        display: none !important;
    }

    /* Calculator */
    .calc-container {
        padding: 12px !important;
    }

    .calc-tab {
        padding: 8px 10px !important;
        font-size: 0.8rem !important;
    }

    .calc-body {
        padding: 16px !important;
    }

    .calc-view.active {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .chart-box {
        width: 100px !important;
        height: 100px !important;
    }

    /* Footer */
    .footer {
        padding: 24px 0 16px !important;
    }

    .footer-links {
        gap: 20px !important;
    }

    .link-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    .link-col a {
        font-size: 0.8rem !important;
        padding: 5px 0 !important;
    }

    .footer-bottom {
        padding-top: 16px !important;
        font-size: 0.75rem !important;
    }

    .legal-links {
        gap: 12px !important;
        font-size: 0.75rem !important;
    }

    /* Trust Badges */
    .trust-badges,
    .disclaimer-badges {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .trust-badge {
        min-width: 100% !important;
        padding: 10px 14px !important;
        gap: 12px !important;
    }

    .trust-logo {
        height: 32px !important;
    }

    .trust-text h5 {
        font-size: 0.85rem !important;
    }

    .trust-text p {
        font-size: 0.75rem !important;
    }

    /* Blog Cards */
    .blog-grid-home {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .blog-image {
        height: 150px !important;
    }

    .blog-content {
        padding: 14px !important;
    }

    .blog-title {
        font-size: 0.95rem !important;
    }

    /* How It Works */
    .steps-container {
        gap: 20px !important;
    }

    .step-card {
        padding: 14px !important;
    }

    .step-icon-3d {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }

    .step-card h3 {
        font-size: 0.9rem !important;
    }

    .step-card p {
        font-size: 0.8rem !important;
    }

    /* Agent Card */
    .agent-card {
        padding: 16px !important;
    }

    .agent-icon-3d {
        width: 44px !important;
        height: 44px !important;
    }

    .agent-content h4 {
        font-size: 1rem !important;
    }

    /* Chat Widget */
    .chat-toggle-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.1rem !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    .chat-widget {
        width: 100% !important;
        height: 85vh !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 16px 16px 0 0 !important;
    }

    /* Sections */
    section {
        padding: 24px 0 !important;
    }

    /* Header Simple (Lead Form) */
    .header-simple {
        padding: 10px 12px !important;
    }

    .brand-simple {
        font-size: 0.95rem !important;
        gap: 8px !important;
    }

    .brand-logo-icon {
        padding: 4px 8px !important;
        font-size: 0.85rem !important;
    }

    .back-link {
        font-size: 0.8rem !important;
        gap: 6px !important;
    }

    /* Modal */
    .modal-container {
        padding: 16px !important;
        margin: 10px !important;
        border-radius: 14px !important;
    }

    .login-header h3 {
        font-size: 1.2rem !important;
    }

    .login-tabs {
        margin-bottom: 16px !important;
    }

    .login-tab {
        padding: 8px !important;
        font-size: 0.85rem !important;
    }
}

/* Very Small Devices (320px and below) */
@media (max-width: 360px) {
    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-bar {
        grid-template-columns: 1fr !important;
    }

    .upload-grid {
        grid-template-columns: 1fr !important;
    }

    .slide-content h2 {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 1.2rem !important;
    }

    .product-card {
        min-height: 70px !important;
    }

    .btn {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== ADDITIONAL MOBILE FIXES - Padding & Text ===== */
@media (max-width: 576px) {
    /* Modal - Full Width on Mobile */
    .modal-container {
        width: 95% !important;
        max-width: none !important;
        margin: 8px !important;
        border-radius: 12px !important;
    }

    .modal-header {
        padding: 20px 16px 12px !important;
    }

    .modal-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }

    .modal-header h3 {
        font-size: 1.1rem !important;
    }

    .modal-header p {
        font-size: 0.8rem !important;
    }

    .modal-form {
        padding: 0 16px 20px !important;
    }

    .modal-close {
        top: 12px !important;
        right: 12px !important;
        font-size: 1.1rem !important;
    }

    /* Form Groups - Tighter Spacing */
    .form-group {
        margin-bottom: 12px !important;
    }

    .form-group label {
        font-size: 0.8rem !important;
        margin-bottom: 4px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    /* Journey Page - Timeline */
    .journey-hero {
        padding: 70px 0 40px !important;
    }

    .journey-hero h1 {
        font-size: 1.8rem !important;
    }

    .journey-hero p {
        font-size: 0.9rem !important;
        padding: 0 12px !important;
    }

    .timeline-container {
        margin: 30px auto !important;
        padding: 10px !important;
    }

    .content-box {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .year-badge {
        padding: 4px 12px !important;
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }

    .timeline-title {
        font-size: 1.1rem !important;
        margin-bottom: 6px !important;
    }

    .timeline-desc {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .timeline-item {
        padding-left: 50px !important;
        padding-right: 10px !important;
    }

    /* Page Headers - Less Padding */
    .page-header,
    .section-hero {
        padding: 60px 0 30px !important;
    }

    .page-header h1,
    .section-hero h1 {
        font-size: 1.6rem !important;
    }

    .page-header p,
    .section-hero p {
        font-size: 0.85rem !important;
    }

    /* Content Sections - Tighter */
    .content-section,
    .text-section {
        padding: 20px 12px !important;
    }

    .content-section h2,
    .text-section h2 {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }

    .content-section p,
    .text-section p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    /* Cards & Boxes - Reduced Padding */
    .card,
    .info-card,
    .feature-card {
        padding: 14px !important;
        border-radius: 10px !important;
    }

    .card h3,
    .info-card h3,
    .feature-card h3 {
        font-size: 1rem !important;
    }

    .card p,
    .info-card p,
    .feature-card p {
        font-size: 0.8rem !important;
    }

    /* Body Text */
    body {
        font-size: 14px !important;
    }

    p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.3rem !important; }
    h3 { font-size: 1.1rem !important; }
    h4 { font-size: 1rem !important; }

    /* Checkbox & Terms */
    .checkbox-group,
    .terms-group {
        font-size: 0.75rem !important;
    }

    .checkbox-group label,
    .terms-group label {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    /* Submit Button in Modal */
    .modal-form .btn,
    .modal-form .submit-btn {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    /* Privacy/Terms Pages */
    .legal-content,
    .policy-content {
        padding: 16px !important;
    }

    .legal-content h1,
    .policy-content h1 {
        font-size: 1.4rem !important;
    }

    .legal-content h2,
    .policy-content h2 {
        font-size: 1.1rem !important;
    }

    .legal-content p,
    .policy-content p,
    .legal-content li,
    .policy-content li {
        font-size: 0.85rem !important;
    }

    /* Armed Forces Page */
    .armed-hero {
        padding: 70px 0 40px !important;
    }

    .armed-hero h1 {
        font-size: 1.6rem !important;
    }

    .benefit-card {
        padding: 14px !important;
    }

    .benefit-card h3 {
        font-size: 0.95rem !important;
    }

    /* Lead Form Page */
    .lead-form-container {
        padding: 16px !important;
        margin: 10px !important;
    }

    .lead-form-container h1 {
        font-size: 1.3rem !important;
    }

    .form-step-title {
        font-size: 1rem !important;
    }

    /* Blog Page */
    .blog-header {
        padding: 60px 0 30px !important;
    }

    .blog-header h1 {
        font-size: 1.5rem !important;
    }

    .blog-card {
        border-radius: 10px !important;
    }

    .blog-card-content {
        padding: 12px !important;
    }

    .blog-card-title {
        font-size: 0.95rem !important;
    }

    .blog-card-excerpt {
        font-size: 0.8rem !important;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .modal-container {
        width: 98% !important;
        margin: 4px !important;
    }

    .modal-header {
        padding: 16px 12px 10px !important;
    }

    .modal-form {
        padding: 0 12px 16px !important;
    }

    .timeline-item {
        padding-left: 45px !important;
        padding-right: 8px !important;
    }

    .content-box {
        padding: 12px 10px !important;
    }

    .journey-hero h1 {
        font-size: 1.5rem !important;
    }

    h1 { font-size: 1.3rem !important; }
    h2 { font-size: 1.15rem !important; }
    h3 { font-size: 1rem !important; }
}

/* ===== SLIDER BUTTON FIX - Visible Text ===== */
.slide-content .btn-cta,
.slide-text .btn-cta,
.btn.btn-cta {
    background: #373B90 !important;
    background-color: #373B90 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(55, 59, 144, 0.5) !important;
    opacity: 1 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
}

.slide-content .btn-cta:hover,
.slide-text .btn-cta:hover,
.btn.btn-cta:hover {
    background: #6B1F3D !important;
    background-color: #6B1F3D !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* ===== LOGO FIX - Prevent Cutoff ===== */
@media (max-width: 576px) {
    .logo {
        flex-shrink: 0 !important;
        min-width: 100px !important;
        overflow: visible !important;
    }

    .logo-image {
        height: 32px !important;
        width: auto !important;
        max-width: 120px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .navbar .container,
    .nav-container {
        padding: 0 12px !important;
        overflow: visible !important;
    }

    /* Stats - Better Layout on Small Screens */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }



    .banner-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .slide-content {
        padding: 16px 12px !important;
        margin-top: 0 !important;
    }

    /* Navbar - Reduce bottom margin */
    .navbar {
        margin-bottom: 0 !important;
        padding-bottom: 8px !important;
    }
}

/* ===== ANIMATED MOBILE SIDEBAR ===== */
@media (max-width: 768px) {
    /* Overlay Background */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    /* Sidebar Container */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -280px !important;
        left: auto !important;
        width: 280px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
        flex-direction: column !important;
        padding: 0 !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15) !important;
        z-index: 999 !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Sidebar Header */
    .nav-menu .nav-links {
        flex-direction: column !important;
        width: 100% !important;
        padding: 80px 0 20px !important;
        gap: 0 !important;
    }

    .nav-menu .nav-links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }

    .nav-menu .nav-links a {
        display: block !important;
        padding: 18px 24px !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #1a1a2e !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
    }

    .nav-menu .nav-links a:hover,
    .nav-menu .nav-links a:active {
        background: linear-gradient(90deg, rgba(55, 59, 144, 0.1) 0%, transparent 100%) !important;
        color: #373B90 !important;
        padding-left: 32px !important;
    }

    /* Nav Actions in Sidebar */
    .nav-menu .nav-actions {
        width: 100% !important;
        padding: 20px 24px !important;
        flex-direction: column !important;
        gap: 12px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        margin-top: auto !important;
    }

    .nav-menu .nav-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    /* Hamburger Button - Better Style */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        background: rgba(55, 59, 144, 0.08) !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        z-index: 1001 !important;
    }

    .mobile-menu-btn:hover {
        background: rgba(55, 59, 144, 0.15) !important;
    }

    .mobile-menu-btn i {
        font-size: 1.3rem !important;
        color: #373B90 !important;
        transition: transform 0.3s ease !important;
    }

    /* Close Button State */
    .mobile-menu-btn.active i::before {
        content: "\f00d" !important; /* Font Awesome X icon */
    }

    .mobile-menu-btn.active {
        position: fixed !important;
        top: 16px !important;
        right: 16px !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Body Lock when sidebar open */
    body.menu-open {
        overflow: hidden !important;
    }
}

/* ===== FOOTER ACTIONS SECTION ===== */
.footer-actions-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-action-btn {
    background: linear-gradient(135deg, #373b90 0%, #5a5fc7 100%);
    color: white !important;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(55, 59, 144, 0.3);
}

.footer-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(55, 59, 144, 0.4);
}

.footer-action-btn.outline {
    background: transparent;
    border: 2px solid #373b90;
    color: #373b90 !important;
}

.footer-action-btn.outline:hover {
    background: #373b90;
    color: white !important;
}

@media (max-width: 480px) {
    .footer-actions-section {
        flex-direction: column;
        align-items: center;
    }

    .footer-action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== TRACK MODAL ===== */
.track-input-section {
    padding: 20px 0;
}

.track-input-wrapper {
    display: flex;
    gap: 12px;
}

.track-input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.track-input-wrapper input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(55, 59, 144, 0.1);
}

.track-input-wrapper button {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}

.track-input-wrapper button:hover {
    background: #2a2e70;
}

.track-input-wrapper button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.track-results-section {
    padding-top: 10px;
}

.track-results-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.back-btn {
    background: none;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
    font-family: inherit;
}

.back-btn:hover {
    background: rgba(55, 59, 144, 0.1);
}

.track-results-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 480px) {
    .track-input-wrapper {
        flex-direction: column;
    }

    .track-input-wrapper button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TRACK RESULTS ===== */
.track-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.track-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.track-header h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.track-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.track-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.track-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.track-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.track-error {
    text-align: center;
    padding: 40px 20px;
    color: #dc2626;
}

.track-error i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.application-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.application-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(55, 59, 144, 0.1);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.app-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-info .product {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.9rem;
}

.app-info .date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.app-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.app-status.blue { background: #EEF2FF; color: #4F46E5; }
.app-status.orange { background: #FFF7ED; color: #EA580C; }
.app-status.green { background: #ECFDF5; color: #059669; }
.app-status.red { background: #FEF2F2; color: #DC2626; }
.app-status.yellow { background: #FFFBEB; color: #D97706; }
.app-status.purple { background: #F5F3FF; color: #7C3AED; }
.app-status.cyan { background: #ECFEFF; color: #0891B2; }
.app-status.gold { background: #FEF9C3; color: #A16207; }
.app-status.gray { background: #F3F4F6; color: #6B7280; }

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    margin: 16px 0;
    overflow-x: auto;
    padding: 8px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 55%;
    width: 90%;
    height: 2px;
    background: var(--border-light);
}

.progress-step.active:not(:last-child)::after {
    background: #059669;
}

.step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 1;
    margin-bottom: 6px;
}

.progress-step.active .step-dot {
    background: #059669;
    color: white;
}

.progress-step.current .step-dot {
    background: var(--primary-purple);
    color: white;
    animation: pulse 2s infinite;
}

.step-name {
    font-size: 9px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 60px;
}

.progress-step.active .step-name,
.progress-step.current .step-name {
    color: var(--text-primary);
    font-weight: 500;
}

/* Login Footer Button */
.login-footer-btn {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 12px 20px !important;
}

.login-footer-btn:hover {
    background: rgba(255,255,255,0.1) !important;
}