/* ========================================
   VIAPLACA - STYLESHEET
   ======================================== */

/* =====================
   CSS VARIABLES
   ===================== */
:root {
    /* Colors */
    --background: hsl(210, 25%, 97%);
    --foreground: hsl(220, 25%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 25%, 10%);
    
    --primary: hsl(175, 70%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(175, 80%, 45%);
    
    --secondary: hsl(210, 20%, 92%);
    --secondary-foreground: hsl(220, 25%, 15%);
    
    --muted: hsl(210, 15%, 94%);
    --muted-foreground: hsl(220, 10%, 45%);
    
    --accent: hsl(35, 95%, 55%);
    --accent-foreground: hsl(220, 25%, 10%);
    
    --destructive: hsl(0, 75%, 55%);
    --success: hsl(145, 65%, 40%);
    
    --border: hsl(210, 20%, 88%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(175, 70%, 35%) 0%, hsl(195, 75%, 40%) 50%, hsl(210, 70%, 45%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(35, 95%, 55%) 0%, hsl(25, 90%, 50%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px hsla(220, 25%, 10%, 0.05);
    --shadow-md: 0 4px 12px hsla(220, 25%, 10%, 0.08);
    --shadow-lg: 0 12px 40px hsla(220, 25%, 10%, 0.12);
    --shadow-glow: 0 0 30px hsla(175, 70%, 35%, 0.3);
    
    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* =====================
   UTILITIES
   ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

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

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-full {
    width: 100%;
}

/* =====================
   COOKIE CONSENT
   ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--border);
}

.cookie-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: hsla(175, 70%, 35%, 0.1);
    border-radius: var(--radius);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cookie-text a {
    color: var(--primary);
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-buttons {
        width: 100%;
    }
    .cookie-buttons .btn {
        flex: 1;
    }
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
        border-radius: var(--radius);
    }
    
    .nav-links a:hover {
        background: var(--muted);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.08;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(35, 95%, 55%, 0.1);
    border: 1px solid hsla(35, 95%, 55%, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Search Form */
.search-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-input-wrapper {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.25rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-family: monospace;
    text-transform: uppercase;
    outline: none;
}

.btn-search {
    padding: 1rem 2rem;
    border-radius: var(--radius);
}

@media (max-width: 500px) {
    .search-form {
        flex-direction: column;
    }
    .btn-search {
        width: 100%;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Hero Disclaimer */
.hero-disclaimer {
    background: hsla(35, 95%, 55%, 0.05);
    border: 1px solid hsla(35, 95%, 55%, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.disclaimer-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =====================
   VEHICLE RESULT
   ===================== */
.vehicle-result,
.error-result {
    padding: 2rem 0;
}

.result-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.result-header {
    background: hsla(175, 70%, 35%, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.result-header h3 {
    font-size: 1.25rem;
}

.close-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: hsla(175, 70%, 35%, 0.1);
}

.result-content {
    padding: 1.5rem;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.result-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius);
}

.result-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(175, 70%, 35%, 0.1);
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.result-item-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.result-item-value {
    font-weight: 600;
}

.result-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: hsla(35, 95%, 55%, 0.05);
    border: 1px solid hsla(35, 95%, 55%, 0.2);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Error Card */
.error-card {
    max-width: 400px;
    margin: 0 auto;
    background: hsla(0, 75%, 55%, 0.05);
    border: 1px solid hsla(0, 75%, 55%, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-card h3 {
    margin-bottom: 0.5rem;
}

.error-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* =====================
   SECTIONS
   ===================== */
section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: hsla(175, 70%, 35%, 0.1);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
    background: var(--background);
}

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

.step-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

/* =====================
   FEATURES
   ===================== */
.features {
    background: hsla(210, 15%, 94%, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(175, 70%, 35%, 0.1);
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.features-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =====================
   PRICING
   ===================== */
.pricing {
    background: hsla(210, 15%, 94%, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.price-per {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.pricing-note {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* =====================
   MODAL
   ===================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: hsla(220, 25%, 10%, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--muted);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.modal-content > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.form-note a {
    color: var(--primary);
}

.success-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

#modal-success {
    text-align: center;
    padding: 2rem 0;
}

#modal-success h2 {
    margin-bottom: 0.5rem;
}

#modal-success p {
    color: var(--muted-foreground);
}

/* =====================
   FAQ
   ===================== */
.faq {
    background: var(--background);
}

.faq-notice {
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: hsla(35, 95%, 55%, 0.05);
    border: 1px solid hsla(35, 95%, 55%, 0.2);
    border-radius: var(--radius-xl);
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-notice h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.faq-notice p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item.highlight {
    background: hsla(35, 95%, 55%, 0.03);
    border-color: hsla(35, 95%, 55%, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: hsla(175, 70%, 35%, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--foreground);
    color: var(--background);
}

.footer-disclaimer-banner {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: var(--primary);
}

.footer-brand > p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-company h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.3s ease;
}

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

.footer-company p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 1rem;
}

.footer-legal-disclaimer {
    background: hsla(0, 0%, 100%, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.footer-legal-disclaimer h5 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-disclaimer p {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.6);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: hsla(0, 0%, 100%, 0.5);
    transition: color 0.3s ease;
}

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

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }