/* =========================================
   RYLVI DESIGN SYSTEM & GLOBALS
========================================= */
:root {
    /* Color Palette */
    --royal-blue: #0D1B2A;
    --royal-blue-light: #1B263B;
    --purple-primary: #7C3AED;
    --purple-light: #A78BFA;
    --cyan-primary: #06B6D4;
    --cyan-light: #67E8F9;
    
    /* Surface Colors */
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    
    /* Text Colors */
    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #F1F5F9;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   BUTTONS & CTAS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), #6366F1);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6D28D9, #4F46E5);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid #E2E8F0;
}

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

.btn-outline-small {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--royal-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--royal-blue);
}

.btn-outline-small:hover {
    background: var(--royal-blue);
    color: white;
}

.btn-nav-primary {
    background-color: var(--royal-blue);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav-primary:hover {
    background-color: var(--royal-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 27, 42, 0.2);
    color: white;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: var(--bg-white);
    z-index: 100;
    box-shadow: 0 4px 20px -10px rgba(0,0,0,0.1);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--royal-blue);
    letter-spacing: -0.5px;
}

.logo-text .dot {
    color: var(--cyan-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn) {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

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

/* =========================================
   SECTION 1: HERO
========================================= */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-slogan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    color: var(--purple-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.sparkle {
    color: var(--cyan-primary);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple-primary), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.metric-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: #E2E8F0;
}

/* Mockup Visual */
.hero-visual {
    position: relative;
    width: 100%;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-mockup {
    width: 120%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.1));
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}

.glow-sphere.purple {
    width: 300px;
    height: 300px;
    background: var(--purple-primary);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation: pulse 8s infinite alternate;
}

.glow-sphere.cyan {
    width: 200px;
    height: 200px;
    background: var(--cyan-primary);
    bottom: 10%;
    left: 10%;
    animation: pulse 6s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.8) translateY(-50%); }
    100% { opacity: 0.7; transform: scale(1.1) translateY(-50%); }
}

/* =========================================
   SECTION 1.5: SOCIAL PROOF (ALIADOS)
========================================= */
.social-proof-section {
    padding: 2.5rem 0;
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.social-proof-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    /* Hide scrollbar for a clean look */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.partners-row::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.partner-logo:hover {
    color: var(--royal-blue);
    opacity: 1;
}

.partner-logo span {
    font-size: 20px;
}

/* =========================================
   MISION Y VISION RYLVI
========================================= */
.mission-vision-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.mv-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.2);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mv-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.mv-icon.custom-purple { color: var(--purple-primary); }
.mv-icon.custom-cyan { color: var(--cyan-primary); }

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--royal-blue);
    margin: 0;
}

.mv-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
}

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

/* =========================================
   SECTION 2: THE CHALLENGE
========================================= */
.challenge-section {
    position: relative;
    background-color: var(--royal-blue);
    padding: 100px 0;
    color: var(--text-light);
    overflow: hidden;
}

.challenge-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.challenge-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.challenge-title {
    color: var(--bg-white);
    font-size: 2.8rem;
    font-weight: 700;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Card Hover Effect */
.challenge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.challenge-card:hover::before {
    opacity: 1;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon-wrapper span {
    font-size: 32px;
    color: white;
}

.cyan-glow {
    background: linear-gradient(135deg, var(--cyan-primary), #0284C7);
    box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.4);
}

.purple-glow {
    background: linear-gradient(135deg, var(--purple-primary), #4F46E5);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.4);
}

.red-glow {
    background: linear-gradient(135deg, #EF4444, #B91C1C);
    box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.4);
}

.card-title {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-text {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* =========================================
   SECTION 3: SOLUCION (Alternada)
========================================= */
.solution-section {
    padding: 120px 0;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.section-header {
    margin-bottom: 5rem;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.solution-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.solution-row.row-reverse {
    flex-direction: row-reverse;
}

.solution-row:last-child {
    margin-bottom: 0;
}

.solution-text {
    flex: 1;
}

.solution-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.purple-tag { background: rgba(124, 58, 237, 0.1); color: var(--purple-primary); }
.cyan-tag { background: rgba(6, 182, 212, 0.1); color: #0284C7; }
.blue-tag { background: rgba(13, 27, 42, 0.1); color: var(--royal-blue); }
.dark-tag { background: #E2E8F0; color: var(--text-dark); }

.solution-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--royal-blue);
    line-height: 1.2;
}

.solution-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--royal-blue);
}

.solution-features span {
    color: var(--purple-primary);
}

/* Abstract UI Elements para no usar imágenes estáticas */
.abstract-mockup {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

.abstract-mockup::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.mockup-student { background: linear-gradient(135deg, #F3E8FF, #D8B4FE); }
.mockup-dece { background: linear-gradient(135deg, #CFFAFE, #A5F3FC); }
.mockup-family { background: linear-gradient(135deg, #F1F5F9, #CBD5E1); }
.mockup-teacher { background: linear-gradient(135deg, #DBEAFE, #93C5FD); }

.giant-icon {
    font-size: 120px;
    color: var(--royal-blue);
    opacity: 0.2;
    position: absolute;
    z-index: 0;
}

.giant-icon.outline-blend {
    opacity: 0.1;
}

.aura-coin {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    animation: float-coin 3s ease-in-out infinite;
}

.radar-chart {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px dashed var(--royal-blue);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.radar-chart::after {
    content: "";
    width: 90px; height: 90px; 
    background: rgba(6, 182, 212, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 4s infinite alternate;
}

@keyframes float-coin {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* =========================================
   SECTION 4: MÁS ALLÁ DE LOS CASTIGOS
========================================= */
.restorative-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
    position: relative;
}

.restorative-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.restorative-badge span {
    color: var(--cyan-primary);
}

.restorative-card {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
    border-left: 6px solid var(--purple-primary);
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.mission-text strong {
    color: var(--royal-blue);
}

.highlight-purple {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 1.4rem;
}

/* =========================================
   SECTION 4.5: TESTIMONIOS
========================================= */
.testimonials-section {
    padding: 100px 0;
    /* Fondo ligeramente tintado con Azul Rey al 5% */
    background-color: rgba(13, 27, 42, 0.05);
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(124, 58, 237, 0.1); /* Purple light trans */
    pointer-events: none;
}

.quote-icon span {
    font-size: 90px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid #E2E8F0;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 0.1rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* =========================================
   SECTION 5: FINAL CTA
========================================= */
.cta-section {
    padding: 120px 0;
    background-color: var(--royal-blue);
    position: relative;
    overflow: hidden;
}

.cta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 250px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 1.15rem;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background-color: var(--bg-white);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #E2E8F0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-slogan {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.footer-links a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #F1F5F9;
    color: #94A3B8;
    font-size: 0.85rem;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 2rem; }
    .challenge-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-metrics {
        justify-content: center;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-title { font-size: 2.2rem; }

    .section-title { font-size: 2.2rem; }

    .solution-row, .solution-row.row-reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .solution-heading { font-size: 1.8rem; }

    .restorative-card { padding: 2rem; }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title { font-size: 2.2rem; }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.2rem;
    }
}
