/* VEDTECH - Premium Design System Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    /* Harmonious Indigo & Cyan Color Palette */
    --primary: hsl(243, 75%, 59%);
    --primary-light: hsl(243, 75%, 70%);
    --primary-dark: hsl(243, 75%, 45%);
    --secondary: hsl(188, 86%, 53%);
    --accent: hsl(322, 80%, 58%);
    
    /* Neutrals - Slate Family */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    /* Layout Variables */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 24px -6px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.2);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.5);
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--slate-900);
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Interactive Elements */
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--slate-200) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Landing Page light theme high-contrast button overrides */
.navbar .btn-secondary,
.hero .btn-secondary {
    background: transparent;
    color: var(--slate-700) !important;
    border: 1px solid var(--slate-300);
}

.navbar .btn-secondary:hover,
.hero .btn-secondary:hover {
    background: var(--slate-100);
    color: var(--primary) !important;
    border-color: var(--primary-light);
    transform: translateY(-1.5px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary), hsl(188, 86%, 40%));
    color: var(--slate-950) !important;
    box-shadow: 0 8px 16px -4px rgba(6, 182, 212, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(6, 182, 212, 0.4);
}

/* Landing Page Header & Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-900);
}

.logo img {
    height: 34px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--slate-600);
    font-weight: 600;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Landing Page Hero Section */
.hero {
    min-height: 90vh;
    padding: 150px 24px 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--slate-600);
    margin: 20px 0 32px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Mobile Screen Mockup Card */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 10px var(--slate-800);
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--slate-950);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 20px;
    background: #000;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 100;
}

.phone-header {
    height: 52px;
    background: var(--primary);
    padding: 20px 14px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.phone-header .title {
    font-size: 13px;
    font-weight: 800;
}

.phone-body {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background: #0f172a;
}

.mock-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px;
    color: white;
}

.mock-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-400);
}

.mock-value {
    font-size: 18px;
    font-weight: 800;
    margin-top: 3px;
}

.mock-ad {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(79, 70, 229, 0.15));
    border: 1.5px dashed var(--secondary);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 600;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Features Grid */
.features {
    padding: 100px 24px;
    background: white;
    border-top: 1px solid var(--slate-100);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--slate-500);
    font-size: 1.05rem;
    margin-top: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 24px;
    background: var(--slate-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.2);
}

/* Screenshots Section & Interactive Showcase Gallery */
.screenshots-section {
    padding: 100px 24px;
    background: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--slate-300);
    color: var(--slate-600);
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px;
}

.gallery-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--slate-900);
    background: var(--slate-900);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 8px 24px rgba(79, 70, 229, 0.15);
    border-color: var(--secondary);
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5; /* Mobile screen ratio */
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-card:hover .card-visual img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: var(--transition-smooth);
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 22px;
    margin-bottom: auto;
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    color: white;
}

.overlay-title {
    color: white;
    font-size: 15px;
    font-weight: 800;
    margin-top: 8px;
}

.overlay-desc {
    color: var(--slate-300);
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.3;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.lightbox-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 24px;
    position: relative;
}

.lightbox-slide-wrapper {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#lightbox-img {
    max-height: 65vh;
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 3px solid var(--slate-800);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: white;
    max-width: 500px;
}

.lightbox-caption h3 {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.lightbox-caption p {
    color: var(--slate-300);
    font-size: 13px;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: absolute;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: transparent;
    transform: scale(1.05);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
}

/* ========================================== */
/* ADMIN PANEL LAYOUT - PREMIUM GLASS DARK THEME */
/* ========================================== */

.admin-body {
    background-color: #070b13; /* Deep Space Dark */
    color: #e2e8f0;
}

/* Admin Scaffold Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.admin-sidebar {
    width: 260px;
    background: #0b111e;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    justify-content: space-between;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 40px;
    padding-left: 8px;
}

.sidebar-brand img {
    height: 36px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--slate-400);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.sidebar-menu-item a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.sidebar-menu-item.active a {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--secondary);
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Main Dashboard Panel */
.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 40px 48px;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
}

@media (max-width: 992px) {
    .admin-sidebar {
        display: none;
    }
    .admin-main {
        margin-left: 0;
        padding: 80px 20px 40px;
    }
}

/* Login Card Panel */
.login-card {
    max-width: 420px;
    margin: 100px auto;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(79, 70, 229, 0.15);
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-300);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(7, 11, 19, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Dashboard Metric Blocks - Grid Layout */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.metric-box {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.metric-box:hover::before {
    opacity: 1;
}

.metric-box:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-details h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 2px;
    font-family: var(--font-sans);
    font-weight: 800;
}

.metric-details p {
    color: var(--slate-400);
    font-size: 13px;
    font-weight: 500;
}

/* Dashboard Layout Components */
.dashboard-row {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .dashboard-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.card-header h2 {
    color: white;
    font-size: 20px;
    font-weight: 800;
}

/* Custom Table View */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-400);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

td {
    padding: 16px;
    font-size: 13.5px;
    color: var(--slate-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

/* Status Badges */
.badge {
    display: inline-flex;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-trial {
    background: rgba(6, 182, 212, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-active {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-expired {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Code Request Mono Badge */
.req-badge {
    font-family: var(--font-mono);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: white;
}

/* Action Buttons inside Table */
.action-btn {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-extend {
    background: var(--primary);
    color: white;
}
.btn-extend:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* Custom CSS Charts & Analytics Bar */
.analytics-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chart-label {
    flex: 0 0 100px;
    font-size: 13px;
    color: var(--slate-400);
    font-weight: 600;
}

.chart-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.chart-value {
    flex: 0 0 50px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

/* Footer Section */
footer {
    padding: 60px 24px;
    background: var(--slate-900);
    color: var(--slate-400);
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--slate-400);
}
.footer-links a:hover {
    color: white;
}

/* Admin Portal Specific Footer */
.admin-footer {
    margin-top: 60px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--slate-500);
    font-size: 12px;
}

/* Responsive Grid Overrides for SEO sections */
.deep-dive-section {
    padding: 100px 24px;
    background: white;
}

@media (max-width: 768px) {
    .deep-dive-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
