@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Core Design System Tokens --- */
:root {
    --bg-dark: #0A0A0C;
    --bg-card: rgba(20, 20, 25, 0.65);
    --border-glass: rgba(255, 255, 255, 0.07);
    --text-primary: #F3F4F6;
    --text-muted: #9CA3AF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Dynamic Theme Colors (switched by class on body) */
    --accent-primary: #C5A03D; /* Warm Brass / Champagne */
    --accent-glow: rgba(197, 160, 61, 0.15);
    --accent-gradient: linear-gradient(135deg, #E5C158, #A38027);
    --hero-overlay: radial-gradient(circle at 50% 50%, rgba(197, 160, 61, 0.08) 0%, transparent 70%);
    
    --transition-speed: 0.4s;
    --transition-curve: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Developer Mode Specific Tokens */
body.mode-developer {
    --accent-primary: #10B981; /* Premium Emerald */
    --accent-glow: rgba(16, 185, 129, 0.15);
    --accent-gradient: linear-gradient(135deg, #34D399, #059669);
    --hero-overlay: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed) var(--transition-curve);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #FFF;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    filter: brightness(1.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* --- Layout Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 12, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-primary);
    transition: color var(--transition-speed) var(--transition-curve);
}

/* Mode Switch Toggle Widget */
.mode-toggle-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 4px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mode-btn {
    padding: 0.6rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.mode-btn.active {
    color: #0A0A0C;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--accent-gradient);
    border-radius: 50px;
    z-index: 1;
    transition: transform var(--transition-speed) var(--transition-curve), background var(--transition-speed) var(--transition-curve);
}

body.mode-developer .toggle-slider {
    transform: translateX(100%);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: var(--hero-overlay);
    transition: background-image var(--transition-speed) var(--transition-curve);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--accent-primary);
    transition: color var(--transition-speed) var(--transition-curve);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background var(--transition-speed) var(--transition-curve);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--transition-curve);
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #0A0A0C;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Glass Card Premium Styling */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-curve);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
}

/* Quick specs banner in Hero card */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.spec-item {
    text-align: center;
}

.spec-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
}

.spec-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mode-Dependent Display Toggle Utilities */
.only-buyer {
    display: block;
}
.only-developer {
    display: none !important;
}

body.mode-developer .only-buyer {
    display: none !important;
}
body.mode-developer .only-developer {
    display: block !important;
}

body.mode-developer .only-developer-flex {
    display: flex !important;
}

/* --- Features & Highlight Section --- */
.section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-glass);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    color: var(--accent-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color var(--transition-speed) var(--transition-curve);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid for Details */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
    transition: color var(--transition-speed) var(--transition-curve);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* School Cards in Buyer Mode */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.school-card {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.school-rating {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.school-name {
    font-size: 1.1rem;
    margin: 0.5rem 0 0.2rem 0;
}

.school-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* --- Interactive Seller Financing Calculator (Developer Mode) --- */
.calc-container {
    max-width: 800px;
    margin: 2rem auto;
}

.calc-row {
    margin-bottom: 1.8rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.calc-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.calc-val-box {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: color var(--transition-speed) var(--transition-curve);
}

/* Input Range Styling */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Calculator Results Block */
.calc-summary {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: border-color var(--transition-speed) var(--transition-curve);
}

.calc-sum-item {
    text-align: left;
}

.calc-sum-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calc-sum-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
    margin-top: 0.2rem;
}

/* --- Offer Submission Section --- */
.offer-section {
    padding: 8rem 0;
    background: radial-gradient(ellipse at bottom, rgba(197, 160, 61, 0.04), transparent 60%);
    transition: background var(--transition-speed) var(--transition-curve);
}

body.mode-developer .offer-section {
    background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.04), transparent 60%);
}

.offer-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.trust-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: color var(--transition-speed) var(--transition-curve);
}

.trust-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.trust-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Advanced Interactive Form */
.offer-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.02), 0 0 5px var(--accent-glow);
}

/* Custom Select styling */
select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

/* Floating Success / Error message styles */
.form-feedback {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease;
}

.form-feedback.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #34D399;
    display: block;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #F87171;
    display: block;
}

/* Custom JS Validation Error Styling */
input.error-field,
select.error-field,
textarea.error-field {
    border: 1px solid #EF4444 !important;
    background: rgba(239, 68, 68, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
    outline: none !important;
}

.field-error-msg {
    color: #F87171;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: block;
    font-family: var(--font-body);
    animation: fadeIn 0.2s ease;
}

/* --- Interactive Seller Dashboard (Simulated Database viewer) --- */
.dashboard-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.dashboard-trigger:hover {
    border-color: var(--accent-primary);
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.dashboard-card {
    width: 100%;
    max-width: 1000px;
    max-height: 85vh;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1.5rem;
}

.dashboard-close {
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.dashboard-close:hover {
    color: #FFF;
}

.dashboard-table-container {
    overflow-y: auto;
    flex-grow: 1;
}

table.offers-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table.offers-table th, 
table.offers-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9rem;
}

table.offers-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

table.offers-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.badge-mode {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-mode.buyer {
    background: rgba(197, 160, 61, 0.15);
    color: #E5C158;
}

.badge-mode.developer {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

/* Empty Dashboard state */
.dashboard-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

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

/* Footer Section */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-primary);
}

/* Keyframes animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Radar Pre-Screening Visualizer */
.radar-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    animation: pulse 1.8s infinite ease-out;
}

.radar-core {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--accent-glow);
    z-index: 2;
}

/* Pre-Screening Checklist Tasks */
.audit-checklist {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.5rem;
}

.audit-task {
    transition: all 0.3s ease;
}

.audit-task.active {
    opacity: 1 !important;
    color: #FFF;
    font-weight: 500;
}

.audit-task.complete {
    opacity: 1 !important;
    color: #34D399;
}

.audit-task.complete .task-status {
    color: #34D399;
}

.task-status {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--text-muted);
}

/* AI Report Side Drawer Content Formatting */
#report-drawer-content {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
}

#report-drawer-content h1, 
#report-drawer-content h2, 
#report-drawer-content h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #FFF;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.4rem;
}

#report-drawer-content h1:first-of-type {
    margin-top: 0;
}

#report-drawer-content p {
    margin-bottom: 1rem;
}

#report-drawer-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

#report-drawer-content li {
    margin-bottom: 0.5rem;
}

#report-drawer-content blockquote {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent-primary);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

#report-drawer-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Highlighting specific warning blocks inside generated reports */
#report-drawer-content blockquote.warning-block {
    border-left-color: #EF4444;
    background: rgba(239, 68, 68, 0.04);
}

#report-drawer-content code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #E5C158;
}

/* Print CSS overrides for clean reporting */
@media print {
    body {
        background: #FFF !important;
        color: #000 !important;
    }
    header, footer, .dashboard-trigger, .btn, #report-drawer-close {
        display: none !important;
    }
    .dashboard-overlay {
        position: relative !important;
        background: none !important;
        padding: 0 !important;
        display: block !important;
        height: auto !important;
        overflow: visible !important;
    }
    .dashboard-card {
        border: none !important;
        box-shadow: none !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 100% !important;
        padding: 0 !important;
        background: none !important;
    }
    #report-drawer-content {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        color: #000 !important;
    }
    #report-drawer-content h1, 
    #report-drawer-content h2, 
    #report-drawer-content h3 {
        color: #000 !important;
        border-bottom-color: #DDD !important;
    }
}

/* Responsive Grid Media Queries */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .schools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .container {
        padding: 0 1.2rem;
    }
    .calc-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
