/* AOS Evidence Repository - Production Styles */
/* Mobile-first, Cathedral Network standards */

:root {
    /* Brand Colors - Professional, Academic */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #0891b2;
    --accent: #8b5cf6;

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-2xl) 0;
    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,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-title {
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--gray-100);
}

.btn-github {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gray-900);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.btn-github:hover {
    background: var(--gray-800);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Sections */
.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--gray-700);
    font-size: 1.125rem;
}

/* Achievement Card */
.achievement-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.achievement-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .achievement-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (max-width: 768px) {
    .achievement-icon {
        margin: 0 auto;
    }
}

.achievement-title {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.achievement-description {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.highlight-box {
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.highlight-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    font-size: 1.0625rem;
}

.highlight-desc {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* Document Grid - 3 Column Grid with Slider */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    position: relative;
}

@media (max-width: 768px) {
    .documents-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding: 0 var(--space-md);
        margin: 0 calc(-1 * var(--space-md)) var(--space-md);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .documents-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }
}


.document-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .document-card {
        flex: 0 0 calc(100vw - var(--space-xl));
        scroll-snap-align: center;
        max-width: 500px;
    }
}


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

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.document-icon {
    font-size: 2rem;
}

.document-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.document-title {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.document-description {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
    flex-grow: 1;
    line-height: 1.6;
}

.document-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.meta-item {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 500;
}

.document-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-fast);
}

.document-link:hover {
    gap: var(--space-sm);
}

/* Coming Soon */
.coming-soon {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.coming-soon-title {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    text-align: center;
}

.coming-soon-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.coming-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.coming-date {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.coming-name {
    color: var(--gray-700);
    font-weight: 500;
}

/* Verification Section */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.verification-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.verification-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.verification-title {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.code-block {
    background: var(--gray-900);
    color: #00ff00;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    overflow-x: auto;
    margin-top: var(--space-sm);
}

.verification-desc {
    color: var(--gray-700);
}

/* Verification Principles */
.verification-principles {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--gray-200);
}

.principles-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.principle-item {
    display: flex;
    align-items: start;
    gap: var(--space-md);
}

.principle-icon {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.principle-text {
    flex-grow: 1;
}

.principle-text strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.principle-text span {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-desc {
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: var(--space-md);
    align-items: start;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-left: 40px;
    /* Space for dot */
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid var(--gray-700);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .timeline-item::before {
        left: 7px;
    }
}

.timeline-highlight::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-current::before {
    background: var(--success);
    border-color: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
    }
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
    text-align: right;
    line-height: 1.3;
    padding-top: 2px;
}

@media (max-width: 768px) {
    .timeline-date {
        text-align: left;
        margin-bottom: var(--space-xs);
        font-size: 0.9375rem;
    }
}

.timeline-title {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    margin-top: 0;
    font-weight: 600;
}

.timeline-desc {
    color: var(--gray-700);
}

/* Priority Box */
.priority-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.priority-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 768px) {
    .priority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.priority-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.priority-text h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.priority-text p {
    color: var(--gray-700);
    margin: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.about-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.about-title {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.about-text {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Ecosystem Cards */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.ecosystem-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.ecosystem-title {
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.ecosystem-desc {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

.ecosystem-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.ecosystem-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-fast);
    color: var(--gray-900);
    font-weight: 500;
}

.ecosystem-link:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.link-icon {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-heading {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-subheading {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all var(--transition-fast);
    border: 2px solid white;
}

.btn-primary-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 700;
    border: 2px solid white;
    transition: all var(--transition-fast);
    font-size: 1.125rem;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}


.footer-title {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.footer-text {
    margin-bottom: var(--space-sm);
    color: var(--gray-400);
}

.footer-text-small {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-badge {
    margin-top: var(--space-md);
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-800);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright,
.footer-updated {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-xl) 0;
    }

    .section {
        padding: var(--space-xl) 0;
    }

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

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

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }
}


/* Print Styles */
@media print {

    .navbar,
    .footer,
    .cta-section {
        display: none;
    }

    body {
        background: white;
    }
}