/* ========== CSS Variables & Reset ========== */
:root {
    /* 003161, 016a67, 000b58, fdeb9e */
    --bg: #f8fafc;
    --bg-secondary: #f1f5f9;
    --text: #0f172a;
    --text-muted: #64748b;
    --primary: #016a67;
    --primary-light: #016A67; /* teal – active, modern */
    --primary-dark: #003161; 
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #22c55e;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: rgba(15, 23, 42, 0.08);
    --gradient-primary: linear-gradient(135deg, #003161 0%, #016A67 100%);
    --gradient-accent: linear-gradient(135deg, #016A67 0%, #FDEB9E 100%);
    --radius: 12px;
    --transition: all 0.3s ease;
}

.dark {
    --bg: #0f172a;
    --bg-secondary: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --card: #1e293b;
    --border: #334155;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Utilities ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

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

.btn-secondary {
    background: var(--card);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-secondary);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
}

/* ========== Animations ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

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

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.dark .header {
    background: rgba(15, 23, 42, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    width: 60px;
    height: 60px;
    /* background: var(--gradient-primary); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text);
    background: var(--bg-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.theme-toggle:hover {
    background: var(--card);
    border-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
}

.mobile-nav a:hover {
    background: var(--bg-secondary);
    color: var(--text);
}

@media (max-width: 768px) {

    .nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ========== Hero Section ========== */
.hero {
    padding: 110px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    z-index: -1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.2);
    top: 10%;
    left: 5%;
    animation: float 4s ease-in-out infinite;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.2);
    bottom: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-trust {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.hero-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.hero-trust-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.hero-trust-item:hover {
    color: var(--text);
}

/* ========== Features Grid ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
}

/* ========== Split Section ========== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.split-content .section-badge {
    margin-bottom: 16px;
}

.split-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 17px;
}

.feature-list svg {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
}

.exams-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.exams-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.exam-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exam-tag {
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.split-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.mock-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.mock-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mock-card-label {
    font-size: 13px;
    color: var(--text-muted);
}

.mock-card-badge {
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.mock-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mock-card-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== How It Works ========== */
.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    display: none;
}

@media (min-width: 900px) {
    .steps-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== Analytics Section ========== */
.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.analytics-icon {
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 20px;
    flex-shrink: 0;
}

.analytics-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.analytics-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.chart-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.progress-bar-container {
    margin-bottom: 16px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-label span:last-child {
    font-weight: 600;
}

.progress-track {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-fill.primary {
    background: var(--gradient-primary);
}

.progress-fill.accent {
    background: var(--gradient-accent);
}

.progress-fill.success {
    background: var(--success);
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== Platform Features ========== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.platform-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--shadow);
}

.platform-icon {
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.platform-card:hover .platform-icon span {
    filter: brightness(10);
}

.platform-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== Testimonials ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars span {
    color: var(--accent);
    font-size: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== Pricing ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.pricing-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 28px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.pricing-card .btn {
    width: 100%;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.cta-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-section::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.cta-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== Footer ========== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-legal a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text);
}

/* ========== Scroll Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}