/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    user-select: none;
    text-decoration: none;
    scroll-behavior: smooth;

    --primary-color: #4a6cf7;
    --secondary-color: #6f42c1;
    --accent-color: #20c997;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --light-text: #6c757d;
    --border-color: #dee2e6;
}

body {
    color: #333;
    line-height: 1.6;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4A6CF7;
    text-decoration: none;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4A6CF7;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0rem 0.8rem;
    display: flex;
    align-items: center;
    color: #0d6efd;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo svg{
    transform: translateY(4px);
}

.nav-links{
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4A6CF7;
}

.btn {
    background-color: #4A6CF7;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #3a5bd9;
}

/* Sección Hero */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-category {
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #212529;
}

.hero-title span {
    color: #0d6efd;
    display: block;
}

.hero-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background-color: #0d6efd;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #212529;
    border: none;
}

.btn-secondary:hover {
    background-color: #0d6efd;
    color: white;
}

.hero-platforms {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.platform-item {
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    margin: 0 0.75rem;
    color: #495057;
    font-size: 0.9rem;
}

.platform-item svg{
    margin-right: 5px;
}

.hero-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
}

/* Imagen principal con borde blanco fino */
.main-image-container {
    position: absolute;
    width: 80%;
    height: 350px;
    right: 0;
    top: 0;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3px; /* Borde blanco */
    background-color: white;
    overflow: hidden;
}

/* Imagen secundaria con borde semitransparente más grueso */
.secondary-image-container {
    position: absolute;
    width: 40%;
    height: 150px;
    left: 0;
    bottom: 0;
    z-index: 3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 6px; /* Borde más grueso */
    background-color: rgba(255, 255, 255, 0.6); /* Semitransparente */
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cloud-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d6efd;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cloud-icon {
    color: #0d6efd;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons, .hero-platforms {
        justify-content: center;
    }
    
    .hero-images {
        width: 100%;
        min-height: 380px;
        margin-top: 1rem;
        height: auto;
    }
    
    .main-image-container {
        position: relative;
        width: 90%;
        right: auto;
        left: 50%;
        transform: translateX(-50%) !important;
        height: 280px;
        margin-bottom: 1rem;
    }
    
    .secondary-image-container {
        position: relative;
        /* width: 60%; */
        left: 30%;
        transform: translateX(-50%) !important;
        bottom: auto;
        height: 120px;
        margin-top: -80px;
    }
}

@media (max-width: 480px) {
    .hero-category {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-images {
        min-height: 330px;
    }
    
    .main-image-container {
        height: 220px;
    }
    
    .secondary-image-container {
        width: 70%;
        height: 100px;
    }
    
    .cloud-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Sección "Cómo funciona" */
.how-it-works {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #292929;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}




/* Estilos para el contenedor del video */
.video-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}






.video-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.custom-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Estilos personalizados para controles (opcional) */
.custom-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.custom-video::-webkit-media-controls-play-button {
    background-color: #007bff;
    border-radius: 50%;
}





/* Contenedor responsivo para el video */
/* .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    width: 100%;
    height: 0;
    overflow: visible;
    border-radius: 8px;
    margin-bottom: 20px;
} */

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
        /* Fix para Safari */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    object-fit: cover;
}

/* Estilos para la descripción */
.video-description {
    text-align: center;
    padding: 0 15px;
}

.video-description h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.video-description p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Efectos de hover para mejorar la interacción */
.video-wrapper iframe:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .video-container {
        margin: 20px auto;
        padding: 15px;
    }
    
    .video-wrapper {
        -webkit-overflow-scrolling: touch; /* Mejor scrolling en iOS */
    }
    
    .video-wrapper iframe {
        -webkit-transform: translateZ(0) scale(1.02); /* Pequeño ajuste para iOS */
        transform: translateZ(0) scale(1.02);
    }

    .video-description h3 {
        font-size: 1.3rem;
    }
    
    .video-description p {
        font-size: 0.9rem;
    }
}


      /* Estilos para el carrusel de miniaturas - MEJORADO */
        .thumbnails-carousel {
            position: relative;
            padding: 10px 0 30px;
            width: 100%;
        }
        
        .carousel-container {
            overflow: hidden;
            width: 100%;
            padding: 10px 0;
            margin: 0 auto;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            padding: 5px 0;
            cursor: grab;
        }
        
        .carousel-track:active {
            cursor: grabbing;
        }
        
        .carousel-item {
            flex: 0 0 auto;
            width: 160px;
            margin: 0 10px;
            /* cursor: pointer; */
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
            position: relative;
        }
        
        .carousel-item:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-item.active {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(41, 128, 185, 0.3);
        }
        
        .carousel-item img {
            width: 100%;
            height: 90px;
            object-fit: cover;
            display: block;
        }
        
        .carousel-item p {
            font-size: 0.8rem;
            padding: 8px;
            color: #2c3e50;
            text-align: center;
            background: #f8f9fa;
            margin: 0;
            font-weight: 500;
        }
        
        .carousel-item .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(139, 138, 138, 0.7);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .carousel-item .play-icon i {
            color: white;
            font-size: 14px;
            margin-left: 2px;
        }
        
        .carousel-item:hover .play-icon {
            opacity: 1;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }
        
        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: #3498db;
            width: 24px;
            border-radius: 4px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .video-container {
                flex-direction: column;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .carousel-item {
                width: 140px;
            }
            
            .carousel-nav {
                display: none; /* Ocultamos los dots en móvil */
            }
            
            .carousel-container {
                padding: 10px 0;
            }
        }
        
        @media (min-width: 769px) {
            .carousel-container {
                padding: 10px 0;
                max-width: 90%;
            }
            
            .carousel-nav {
                display: flex; /* Mostramos dots en desktop */
            }
        }
        
        /* Efecto de deslizamiento suave */
        .carousel-track {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }






















.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.steps a {
    text-decoration: none !important;
    display: block;
    text-decoration: none;
    color: inherit;
}

.step-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    min-height: 277px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #f5f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4A6CF7;
    font-size: 28px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #292929;
}

.step-card p {
    color: #666;
}

/* Sección Características */
.features {
    padding: 100px 0;
    background-color: #f9f9ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4A6CF7;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #292929;
}

.feature-card p {
    color: #666;
}

/* Sección Precios */

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background-color: var(--light-bg);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.user-variant-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.user-variant-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.user-variant-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.monthly-price, .yearly-price {
    display: none;
}
        
.monthly-price.active, .yearly-price.active {
    display: block;
}

.user-limit {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 5px;
    color: var(--light-text);
}

.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.price-container {
    margin-bottom: 1.5rem;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    flex: 1;
    min-width: 200px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid #4A6CF7;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: "Popular";
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #4A6CF7;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 14px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #292929;
}
      
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
        
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text);
}
        
.yearly-discount {
    background-color: var(--accent-color);
    color: white !important;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}















.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    
    border-bottom: 1px solid #eee;
    color: #666;

            padding: 12px 0 12px 35px;   
            position: relative;
            /* border-bottom: 1px solid #f1f1f1; */
            font-size: 16px;
            color: #34495e;
            transition: all 0.3s ease;
}



        .features-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            /* background-color: #4CAF50; */
            /* border-radius: 50%; */
            display: flex;
            justify-content: center;
            align-items: center;
            color: green;
            font-size: 14px;
        }


        /* Aplicar el símbolo de check a todos los li excepto el primero */
        .features-list li:not(:first-child):before {
            content: "\2713";
        }

        .features-list li:first-child {
            padding: 10px 0;
        }

        .features-list li:hover {
            background-color: #f9f9f9;
            padding-left: 40px;
            border-radius: 6px;
        }
        
        .features-list li:first-child:hover {
            padding-left: 5px;
        }






/* Sección Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9ff;
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f5f5ff;
}

.client-image img {
    width: 100%;
    height: auto;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #292929;
}

.client-info p {
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #4A6CF7;
}

/* Sección FAQ */
.faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    color: #292929;
    padding: 20px 40px 20px 0;
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #4A6CF7;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 0 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Sección Contacto */
.contact {
    padding: 100px 0;
    background-color: #f9f9ff;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #292929;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4A6CF7;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #4A6CF7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #3a5bd9;
}

/* Footer */
footer {
    background-color: #292929;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4A6CF7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #4A6CF7;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {

    nav {
        padding: 10px 0;
    }

    .nav-links {
        position: absolute;
        top: -600px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        /* text-align: center; */
        list-style: none;
        background: white;
        box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
        transition: 0.9s;
    }

    .nav-links.active {
        top: 100%;
    }
    
.nav-links li {
    margin-left: 30%;
    padding: 5px;
}

    .mobile-menu-btn {
        display: block !important;
        font-size: 24px;
        background: none;
        border: none;
        color: #333;
        cursor: pointer;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .step-card, .feature-card, .pricing-card {
        min-width: 100%;
    }
    
    .step-card {
        width: 80%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px) scale(1);
    }
}

.copyright {
  padding: 20px;
  text-align: center;

}

.copyright a {
  color: #4f4f4f;
  margin-left: 1rem;
}