/* =============================================================================
   ESGSaathi - Main Stylesheet
   Color Scheme: Teal & Green Gradient (inspired by growth + sustainability)
   ============================================================================= */

:root {
    /* Primary Colors - Teal Gradient */
    --primary: #2EBFAE;
    --primary-dark: #1A8A7D;
    --primary-light: #5DD3C4;
    
    /* Secondary - Leaf Green */
    --secondary: #4CAF7D;
    --secondary-light: #7BC9A0;
    
    /* Accent - Deep Teal */
    --accent: #1B6B6B;
    --accent-dark: #0D4F4F;
    
    /* Backgrounds */
    --bg-dark: #0D3B3B;
    --bg-darker: #082A2A;
    --bg-light: #F4F9F9;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #F4F9F9 0%, #E8F4F3 100%);
    
    /* Text */
    --text-dark: #1A3A3A;
    --text-gray: #4A6B6B;
    --text-light: #7A9A9A;
    
    /* Borders */
    --border: #D4E4E4;
    --border-dark: #2A5A5A;
    
    /* Status Colors */
    --success: #2EBF7E;
    --warning: #E5A84D;
    --error: #E05555;
    
    /* Scope Colors */
    --scope1: #E07B5B;
    --scope2: #2E8FBF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2EBFAE 0%, #4CAF7D 100%);
    --gradient-hero: linear-gradient(135deg, #0D3B3B 0%, #1A5A5A 50%, #0D4F4F 100%);
    --gradient-button: linear-gradient(90deg, #2EBFAE 0%, #4CAF7D 100%);
    
    /* Effects */
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 8px rgba(13, 59, 59, 0.08);
    --shadow-lg: 0 8px 30px rgba(13, 59, 59, 0.12);
    --shadow-teal: 0 4px 20px rgba(46, 191, 174, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--accent); }

/* =============================================================================
   Navigation
   ============================================================================= */

.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.logo-icon { font-size: 1.5rem; }
.logo-img { height: 50px; width: auto; }
.logo-text { font-weight: 600; color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-button);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
    text-decoration: none;
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.btn-block { width: 100%; text-align: center; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-disabled { opacity: 0.5; cursor: not-allowed; background: var(--border); }

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
    background: var(--gradient-hero);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232EBFAE' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: rgba(46, 191, 174, 0.15);
    border: 1px solid rgba(46, 191, 174, 0.4);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: #B8D4D4;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat { text-align: center; }
.stat-value { display: block; font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: #8ABABA; }

/* =============================================================================
   Alert Banner
   ============================================================================= */

.alert-banner {
    background: linear-gradient(90deg, rgba(46, 191, 174, 0.1), rgba(76, 175, 125, 0.1));
    border-top: 1px solid rgba(46, 191, 174, 0.3);
    border-bottom: 1px solid rgba(46, 191, 174, 0.3);
    padding: 1rem;
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
}

/* =============================================================================
   Sections
   ============================================================================= */

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

.features, .revenue-streams, .pricing-preview, .cta-section {
    padding: 5rem 1.5rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* =============================================================================
   Feature Cards
   ============================================================================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* =============================================================================
   Pricing Cards
   ============================================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-teal);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.pricing-card.current {
    border: 2px solid var(--secondary);
}

.popular-badge, .current-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-button);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.current-badge { background: var(--secondary); }

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* =============================================================================
   Dashboard
   ============================================================================= */

.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-info h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.company-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.compliance-badge {
    background: var(--gradient-button);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-teal);
}

.compliance-badge .score {
    font-size: 1.5rem;
    font-weight: 700;
}

.compliance-badge .label {
    font-size: 0.85rem;
}

.plan-alert {
    background: linear-gradient(90deg, rgba(229, 168, 77, 0.1), rgba(229, 168, 77, 0.05));
    border: 1px solid rgba(229, 168, 77, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8B6914;
}

/* =============================================================================
   Metrics Grid
   ============================================================================= */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.metric-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.metric-card.large {
    grid-column: span 2;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.metric-icon { font-size: 1.25rem; }

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.metric-value .unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-left: 0.25rem;
}

.metric-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.scope-breakdown {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.scope-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.scope-bar {
    width: 120px;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.scope-fill {
    height: 100%;
    border-radius: 4px;
}

.scope-fill.scope1 { background: var(--scope1); }
.scope-fill.scope2 { background: var(--scope2); }

/* =============================================================================
   Action Bar
   ============================================================================= */

.action-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.quick-links h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.quick-link:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    text-decoration: none;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.method-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* =============================================================================
   Forms
   ============================================================================= */

.form-page, .page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.form-header, .page-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-header h1, .page-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p, .page-header p {
    color: var(--text-gray);
}

.form-section {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 191, 174, 0.15);
}

.hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.calc-preview {
    background: linear-gradient(90deg, rgba(46, 191, 174, 0.1), rgba(76, 175, 125, 0.1));
    border: 1px solid rgba(46, 191, 174, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 1rem;
}

/* =============================================================================
   Auth Pages
   ============================================================================= */

.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-gradient);
}

.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.auth-header p {
    color: var(--text-gray);
}

.auth-form .form-group { margin-bottom: 1.25rem; }

.auth-benefits {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(46, 191, 174, 0.08), rgba(76, 175, 125, 0.08));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 191, 174, 0.2);
}

.auth-benefits p {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(224, 85, 85, 0.1);
    border: 1px solid rgba(224, 85, 85, 0.3);
    color: var(--error);
}

.alert-success {
    background: rgba(46, 191, 126, 0.1);
    border: 1px solid rgba(46, 191, 126, 0.3);
    color: #065f46;
}

.alert-info {
    background: rgba(46, 143, 191, 0.1);
    border: 1px solid rgba(46, 143, 191, 0.3);
    color: #1e5a7a;
}

.alert-warning {
    background: rgba(229, 168, 77, 0.1);
    border: 1px solid rgba(229, 168, 77, 0.3);
    color: #8B6914;
}

/* =============================================================================
   Report Page
   ============================================================================= */

.print-controls {
    max-width: 800px;
    margin: 1rem auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-page {
    padding: 2rem 1.5rem;
}

.report-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.report-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
}

.report-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.report-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.report-header h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.report-section {
    margin-bottom: 2rem;
}

.report-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.report-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.report-table td:first-child {
    color: var(--text-gray);
}

.report-table td:last-child {
    text-align: right;
}

.data-table th {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.data-table .highlight {
    background: linear-gradient(90deg, rgba(46, 191, 174, 0.1), rgba(76, 175, 125, 0.1));
}

.report-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.75rem;
}

.compliance-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.compliance-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-button);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
}

.compliance-circle .score {
    font-size: 1.5rem;
    font-weight: 700;
}

.status-good { color: var(--success); }
.status-medium { color: var(--warning); }
.status-low { color: var(--error); }

.report-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.disclaimer {
    background: linear-gradient(90deg, rgba(229, 168, 77, 0.15), rgba(229, 168, 77, 0.1));
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    color: #8B6914;
    font-size: 0.8rem;
}

.report-branding {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-light);
}

/* =============================================================================
   Enterprise Dashboard
   ============================================================================= */

.enterprise-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.summary-card.highlight {
    background: linear-gradient(135deg, var(--bg-dark), #1e3a5f);
    color: #fff;
}

.card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.card-value { font-size: 1.75rem; font-weight: 700; }
.card-label { font-size: 0.85rem; color: var(--text-gray); }
.summary-card.highlight .card-label { color: #94a3b8; }

.invite-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.invite-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.supplier-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.supplier-table th,
.supplier-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.supplier-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.verified-badge { margin-left: 0.5rem; }

.compliance-bar {
    width: 60px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    display: inline-block;
    margin-right: 0.5rem;
}

.compliance-fill {
    height: 100%;
    background: var(--success);
    border-radius: 3px;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-good { background: #d1fae5; color: #065f46; }
.status-medium { background: #fef3c7; color: #92400e; }
.status-low { background: #fee2e2; color: #991b1b; }
.status-submitted { background: #dbeafe; color: #1e40af; }
.status-processing { background: #fef3c7; color: #92400e; }
.status-approved { background: #d1fae5; color: #065f46; }

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

.empty-state span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.brsr-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.brsr-note h4 { margin-bottom: 0.5rem; }
.brsr-note p { font-size: 0.9rem; color: var(--text-gray); }

/* =============================================================================
   Green Loans & Verification
   ============================================================================= */

.loan-grid, .tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.loan-card, .tier-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.tier-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.tier-card .popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.loan-icon, .tier-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.loan-card h4, .tier-header h4 { margin-bottom: 0.5rem; }
.loan-card p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 0.5rem; }
.rate { color: var(--success); font-weight: 600; font-size: 0.9rem; }

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tier-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.tier-card li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.partner {
    background: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit {
    text-align: center;
}

.benefit span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit h4 { margin-bottom: 0.5rem; }
.benefit p { font-size: 0.85rem; color: var(--text-gray); }

/* =============================================================================
   Upgrade Required
   ============================================================================= */

.upgrade-required {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.upgrade-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.current-plan {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: left;
}

.current-plan ul {
    list-style: none;
    margin-top: 1rem;
}

.current-plan li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.used { color: var(--error); font-size: 0.8rem; }

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.option-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    position: relative;
}

.option-card.featured {
    border: 2px solid var(--primary);
}

.option-card .badge {
    position: absolute;
    top: -10px;
    right: 10px;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--text-gray);
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.footer-brand p {
    color: #8ABABA;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #B8D4D4;
}

.footer-links a {
    display: block;
    color: #8ABABA;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    color: #8ABABA;
    font-size: 0.85rem;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .metric-card.large { grid-column: span 1; }
    .nav-links { display: none; }
    .dash-header { flex-direction: column; text-align: center; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .footer-container { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 1.5rem; }
}

/* =============================================================================
   Print Styles
   ============================================================================= */

@media print {
    .navbar, .footer, .no-print { display: none !important; }
    body { background: #fff; }
    .report-content { box-shadow: none; padding: 0; }
}

/* =============================================================================
   Feature Locked / Coming Soon Styles
   ============================================================================= */

.feature-locked {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-locked .lock-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-locked h2 {
    margin-bottom: 0.5rem;
}

.feature-locked p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.coming-soon-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.coming-soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.coming-soon-section h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.coming-soon-section p {
    color: #78350f;
    margin-bottom: 1.5rem;
}

.quick-link.locked {
    background: #f1f5f9;
    color: var(--text-light);
}

.quick-link.locked:hover {
    transform: none;
    box-shadow: none;
}

/* =============================================================================
   Report Access Section
   ============================================================================= */

.report-access-section {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.report-access-section h3 {
    margin-bottom: 0.5rem;
    color: #065f46;
}

.report-access-section p {
    color: #047857;
    margin-bottom: 1rem;
}

/* =============================================================================
   Upgrade Required Cards
   ============================================================================= */

.option-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    border: 2px solid var(--border);
}

.option-card.recommended {
    border-color: var(--primary);
}

.option-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.option-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* =============================================================================
   Payment Section
   ============================================================================= */

.payment-section {
    margin-top: 2rem;
}

.payment-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.payment-card h4 {
    margin-bottom: 1rem;
}

.payment-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
}

/* =============================================================================
   Interest Form
   ============================================================================= */

.interest-form {
    margin-top: 1rem;
}

/* =============================================================================
   Status Badge Additional
   ============================================================================= */

.status-pending {
    background: #fef3c7;
    color: #92400e;
}
