:root {
    /* Humane & Natural Palette */
    --bg-body: #f7fbf9;
    /* App Match */
    --bg-surface: #ffffff;
    --text-main: #0f172a;
    /* App Match */
    --text-light: #64748b;
    /* Slate-500 equivalent for muted */

    --primary: #10b981;
    /* App Brand-500 */
    --primary-dark: #059669;
    /* Emerald-600 */
    --primary-light: #ecfdf5;
    /* App Brand-50 */

    --accent: #f59e0b;
    /* Warm Amber for "human" touch */
    --success: #10b981;
    /* Growth Green */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    min-width: 200px;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

.icon-btn svg {
    margin-left: 8px;
    transition: transform 0.2s;
}

.icon-btn:hover svg {
    transform: translateX(4px);
}

/* Typography Utils */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center-text {
    text-align: center;
}

/* SECTIONS */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* HERO SECTION (Modernized) */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    perspective: 1000px;
    /* For 3D floating effects */
}

/* 1. Aurora Background - Enhanced */
.aurora-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(100px);
    /* Increased blur for smoother look */
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    /* Combine CSS animation with JS variable transform */
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    mix-blend-mode: multiply;
}

/* Use keyframes to drift the blobs independently from mouse movement */
@keyframes drift-1 {

    0%,
    100% {
        margin-top: 0;
        margin-left: 0;
    }

    50% {
        margin-top: -50px;
        margin-left: 30px;
    }
}

@keyframes drift-2 {

    0%,
    100% {
        margin-bottom: 0;
        margin-right: 0;
    }

    50% {
        margin-bottom: 40px;
        margin-right: -40px;
    }
}

@keyframes drift-3 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.blob-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    top: -20%;
    right: -10%;
    animation: drift-1 20s infinite ease-in-out;
}

.blob-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -15%;
    left: -15%;
    animation: drift-2 25s infinite ease-in-out reverse;
}

.blob-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 40%;
    left: 20%;
    animation: drift-3 18s infinite ease-in-out;
}

/* 2. Grain Overlay */
.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 3. Hero Visual Layers (Floating UI) */
.hero-visual-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-fragment {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 4px 6px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Fragment 1: The Plan (Left) */
.frag-1 {
    top: 35%;
    left: 15%;
    animation: float-y 6s ease-in-out infinite, rotate-sway 10s ease-in-out infinite;
}

.frag-1 .frag-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.frag-1 .frag-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.frag-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.w-full {
    width: 80px;
}

.w-half {
    width: 50px;
}

/* Fragment 2: The Data (Right) */
.frag-2 {
    bottom: 30%;
    right: 15%;
    animation: float-y 7s ease-in-out infinite reverse, rotate-sway 12s ease-in-out infinite;
}

.frag-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
}

.bar {
    width: 10px;
    border-radius: 3px;
    background: var(--primary);
    opacity: 0.8;
}

.h-40 {
    height: 40%;
    opacity: 0.4;
}

.h-60 {
    height: 60%;
    opacity: 0.6;
}

.h-80 {
    height: 80%;
}

/* Fragment 3: Focus Mode (Top Right) */
.frag-3 {
    top: 25%;
    right: 20%;
    padding: 8px 16px;
    border-radius: 30px;
    animation: float-float 8s ease-in-out infinite;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.frag-3 svg {
    width: 16px;
    height: 16px;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate-sway {

    0%,
    100% {
        rotate: 0deg;
    }

    50% {
        rotate: 2deg;
    }
}

@keyframes float-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(10px, -15px);
    }

    66% {
        transform: translate(-5px, 10px);
    }
}

/* 4. Hero Content */
.hero-content {
    z-index: 10;
    position: relative;
    max-width: 900px;
}

/* Typography Animations */
.hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    /* Increased size */
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    letter-spacing: -2.5px;
    font-weight: 800;
    color: var(--text-main);
}

/* Gradient Text Flow */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
}

.hero-actions .btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 99px;
    /* Pill shape for modern feel */
    box-shadow:
        0 10px 25px -5px rgba(16, 185, 129, 0.4),
        0 4px 10px -2px rgba(16, 185, 129, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hero-actions .btn-lg:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 35px -5px rgba(16, 185, 129, 0.5),
        0 8px 15px -2px rgba(16, 185, 129, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* PHILOSOPHY SECTION */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.philosophy-text .lead {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.philosophy-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

/* SVG Line Animation logic */
.draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-in-out;
}

.visible .draw-path {
    animation: draw-loop 2.5s infinite alternate ease-in-out;
    stroke-dashoffset: 0;
}

@keyframes draw-loop {
    0% {
        stroke-dashoffset: 1000;
    }

    40% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* SCHEDULE SECTION */
.schedule-section {
    background: white;
}

.schedule-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--text-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 0;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.section-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--bg-body);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-card.highlight {
    background: var(--primary);
    color: white;
}

.step-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.step-card.highlight svg {
    stroke: white;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--primary);
}

.step-card.highlight .step-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.step-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.step-connector {
    color: var(--text-light);
    opacity: 0.5;
    margin: 0 1rem;
}

/* ANIMATION UTILS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* UTILS: Badges & Lists */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

.feature-list li svg {
    color: var(--primary);
}

/* LANDING GRIDS */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .two-col-grid.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .feature-list {
        text-align: left;
        display: inline-block;
    }
}

/* USABILITY SECTION */
.usability-section {
    background: var(--bg-surface);
}

/* USABILITY REFINED */
.step-flow-svg {
    width: 100%;
    height: auto;
}

.step-card-mini {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.step-group:hover .step-card-mini {
    transform: translateX(5px);
    stroke: var(--primary);
}

.cursor-float {
    animation: cursor-move 3s infinite ease-in-out;
    transform-origin: center;
}

@keyframes cursor-move {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

/* CALENDAR SECTION */
.calendar-section {
    background: var(--bg-body);
}

.calendar-visual {
    margin-top: var(--spacing-md);
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* CALENDAR REFINED */
/* CALENDAR DETAILED */
.calendar-interface-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.calendar-showcase {
    margin: 2rem 0;
}

.calendar-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.cal-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.cal-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .calendar-features-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

.popover-anim {
    animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: center;
    transform: scale(0);
    opacity: 0;
}

.progress-bar-anim {
    width: 0;
    transition: width 1s ease-out;
    animation: grow-progress 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes pop-in {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes grow-progress {
    to {
        width: 160px;
    }
}

/* ASSESSMENT SECTION */
.assessment-section {
    background: white;
}

.bar-anim {
    transform-box: fill-box;
    transform-origin: bottom;
    animation: grow-bar 2s ease-out forwards;
    transform: scaleY(0);
}

.visible .bar-anim {
    animation-play-state: running;
}

@keyframes grow-bar {
    to {
        transform: scaleY(1);
    }
}

/* EXAMS SECTION */
.exams-section {
    background: var(--bg-surface);
}

.spin-slow {
    transform-origin: center;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* PRACTICE SECTION */
.practice-section {
    background: var(--bg-body);
}

.line-chart-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

/* REVIEW SECTION */
.review-section {
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Separator before big finale */
}

/* SAFE SPACE */
.safe-section {
    background: white;
}

.float-particle {
    animation: float-particle 5s ease-in-out infinite;
}

.p2 {
    animation-delay: 1s;
}

.p3 {
    animation-delay: 2s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* FINALE SECTION */
.finale-section {
    background: var(--bg-body);
    padding: var(--spacing-xl) 0;
}

.finale-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: var(--spacing-md);
}

.finale-sub {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.finale-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.login-prompt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

.login-prompt a {
    color: var(--primary);
    font-weight: 600;
}

.login-prompt a:hover {
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    background: white;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}