:root {
    --primary-red: #c60b1e;
    --primary-yellow: #f1bf00;
    --dark: #111111;
    --darker: #0a0a0a;
    --light: #ffffff;
    --gray: #333333;
    --accent: #ff4655;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--darker) 0%,
        rgba(198, 11, 30, 0.1) 50%,
        rgba(241, 191, 0, 0.1) 100%
    );
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(198, 11, 30, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(241, 191, 0, 0.15) 0%, transparent 40%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, transparent 20%, var(--darker) 100%);
    opacity: 0.9;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.particle:nth-child(even) {
    background: var(--primary-red);
    width: 6px;
    height: 6px;
}

.features .particle {
    background: var(--primary-yellow);
}

.features .particle:nth-child(even) {
    background: var(--primary-red);
}

@keyframes particleAnimation {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    display: block;
    opacity: 0;
    animation: logoAppear 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 3px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    line-height: 0;
}

.logo-image {
    width: 100px;
    height: auto;
    display: block;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    padding: 2px 0;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
        var(--primary-red),
        var(--primary-yellow)
    );
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

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

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    border: none;
    transform-style: preserve-3d;
    color: var(--light);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    box-shadow: 
        0 6px 0 #8b0816,
        0 8px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: buttonAppear 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 1s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    height: 80px;
    width: 20px;
    background: rgba(255, 255, 255, 0.3);
    top: -20px;
    left: -50px;
    transform: rotate(35deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: perspective(1000px) translateZ(10px);
    background: linear-gradient(45deg, #ff1f35, var(--primary-yellow));
    box-shadow: 
        0 4px 0 #8b0816,
        0 12px 20px rgba(0, 0, 0, 0.4);
}

.btn:hover::after {
    left: 120%;
}

.btn:active {
    transform: perspective(1000px) translateZ(0) translateY(4px);
    box-shadow: 
        0 0 0 #8b0816,
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.features {
    padding: 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/arriba.png') center/50% no-repeat;
    opacity: 0;
    z-index: 1;
    animation: backgroundImageAppear 1s ease-out forwards;
    animation-play-state: paused;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(198, 11, 30, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: featureCardAppear 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-play-state: paused;
    animation-delay: 0.2s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-red),
        var(--primary-yellow),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 20px;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 10%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(198, 11, 30, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(198, 11, 30, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.feature-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    font-size: 3rem;
    line-height: 1;
}

.feature-card h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: block;
    text-align: center;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 15px;
    text-align: center;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        var(--darker) 0%,
        rgba(198, 11, 30, 0.1) 50%,
        rgba(241, 191, 0, 0.1) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(198, 11, 30, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(241, 191, 0, 0.15) 0%, transparent 40%);
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, transparent 20%, var(--darker) 100%);
    opacity: 0.9;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 100px rgba(198, 11, 30, 0.1),
        inset 0 0 50px rgba(241, 191, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: ctaAppear 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-play-state: paused;
}

.cta .particles {
    z-index: 2;
}

.cta .particle {
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
}

.cta .particle:nth-child(even) {
    background: var(--primary-red);
    width: 6px;
    height: 6px;
}

@keyframes particleAnimation {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.cta.visible .cta-content {
    animation-play-state: running;
}

@keyframes ctaAppear {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta h2 {
    color: var(--light);
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    padding: 20px 50px;
    font-size: 1.2rem;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    border: none;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.cta .btn:hover {
    transform: perspective(1000px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(198, 11, 30, 0.4);
}

.cta .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta .btn:hover::after {
    transform: rotate(45deg) translateX(100%) translateY(100%);
}

.cta .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cta .stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.cta .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .cta .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 30px;
    }
}

.footer {
    background: var(--darker);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(20px);
}

.footer-logo:hover {
    opacity: 1;
}

.footer.visible .footer-logo {
    animation: footerLogoAppear 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.footer.visible .footer-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
}

.footer.visible p {
    animation: footerLogoAppear 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes footerLogoAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .footer-logos {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }
    
    section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    
    section {
        min-height: auto;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .character-left, .character-right {
        position: absolute;
        bottom: 0;
        width: 50%;
        max-width: 200px;
        height: auto;
        top: auto;
        transform: none;
        opacity: 0.7;
    }

    .character-left {
        left: 0;
        transform-origin: bottom left;
    }

    .character-right {
        right: 0;
        transform-origin: bottom right;
    }

    .hero-content {
        padding: 0 15px;
        margin-bottom: 200px; /* Espacio para las imágenes */
    }
}

@media (max-width: 480px) {
    .character-left, .character-right {
        max-width: 150px;
    }

    .hero-content {
        margin-bottom: 150px; /* Ajuste del espacio para pantallas más pequeñas */
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%) translateY(-50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(-50%) scale(1);
        opacity: 0.9;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%) translateY(-50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(-50%) scale(1);
        opacity: 0.9;
    }
}

@keyframes logoAppear {
    0% {
        transform: translateY(-30px) scale(0.8);
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes buttonAppear {
    0% {
        transform: perspective(1000px) translateY(30px) translateZ(-100px);
        opacity: 0;
    }
    100% {
        transform: perspective(1000px) translateY(0) translateZ(0);
        opacity: 1;
    }
}

.character-left {
    position: absolute;
    left: -25%;
    top: 70%;
    width: 100%;
    height: 170vh;
    background-image: url('assets/image2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0;
    z-index: 1;
    animation: slideInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
    pointer-events: none;
}

.character-right {
    position: absolute;
    right: -25%;
    top: 60%;
    width: 100%;
    height: 170vh;
    background-image: url('assets/image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0;
    z-index: 1;
    animation: slideInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.8s;
    pointer-events: none;
}

.scroll-trigger {
    display: block;
    margin-top: 40px;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    animation: scrollTriggerAppear 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 2s;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-trigger::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: scrollDot 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.scroll-trigger:hover {
    border-color: var(--primary-yellow);
    height: 55px;
}

.scroll-trigger:hover::before {
    background: var(--primary-red);
}

@keyframes scrollDot {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 20px);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes scrollTriggerAppear {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes featureCardAppear {
    0% {
        transform: translateY(30px);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes backgroundImageAppear {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.1;
        transform: scale(1);
    }
}

.features.visible::before {
    animation-play-state: running;
}

.features.visible .feature-card {
    animation-play-state: running;
}

/* Estilos para el menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light);
    transition: all 0.3s ease;
}

/* Admin link styling */
.admin-link {
    background-color: rgba(255, 140, 0, 0.2);
    border-radius: 4px;
    padding: 5px 15px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.admin-link:hover {
    background-color: rgba(255, 140, 0, 0.4);
}

/* Footer links styling */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-links i {
    margin-right: 5px;
}

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

    .nav-content {
        justify-content: space-between;
        padding: 10px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 50px 0;
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-logo {
        width: 80%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .cta-content {
        padding: 20px;
    }

    .footer-content {
        padding: 20px;
    }

    .footer-logos {
        gap: 15px;
    }

    .footer-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 90%;
        max-width: 250px;
    }

    .feature-card {
        margin: 10px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}