/* =================================
   BATCH ISO CREATOR - MAIN STYLESHEET
   Estructura modular para página de producto
   ================================= */

/* Importar módulos principales */
@import url('css/variables.css');
@import url('css/reset.css');
@import url('css/background.css');
@import url('css/navigation.css');
@import url('css/components.css');

/* =================================
   HERO SECTION - PRODUCTO
   ================================= */

.hero {
    height: 70vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.glow-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(var(--glow-primary));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* License Note Styles */
.license-note {
    margin-top: 1.5rem;
    text-align: left;
}

.license-note p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

.license-note .asterisk {
    color: #6b7280;
    font-weight: normal;
    margin-right: 0.25rem;
}

.license-note .license-link {
    color: #6b7280;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
    font-weight: normal;
}

.license-note .license-link:hover {
    text-decoration-color: #6b7280;
    color: #4b5563;
}

/* Hero visual container */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Hero logo with glow effect */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo-with-glow {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(var(--glow-primary));
    transition: all 0.3s ease;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo-with-glow:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--glow-secondary));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(217, 70, 239, 0.4)) drop-shadow(0 0 30px rgba(217, 70, 239, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(192, 38, 211, 0.5)) drop-shadow(0 0 40px rgba(192, 38, 211, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4)) drop-shadow(0 0 35px rgba(6, 182, 212, 0.2));
    }
}

/* =================================
   FEATURES SECTION
   ================================= */

.features {
    padding: 60px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-secondary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-secondary);
    border: 2px dashed rgba(217, 70, 239, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =================================
   PRICING SECTION
   ================================= */

.pricing {
    padding: 80px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-secondary);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.popular .pricing-header {
    margin-top: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price .currency:only-child {
    font-size: 2rem;
}

.period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Launch promotion pricing styles */
.price-container {
    margin-bottom: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.price-original .currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-original .amount {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.launch-promo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.renewal-guarantee {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 1.5rem 0;
    padding: 0.75rem;
    background: rgba(217, 70, 239, 0.1);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-primary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(217, 70, 239, 0.1);
}

.pricing-action {
    margin-top: auto;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* =================================
   DOWNLOAD SECTION
   ================================= */

.download {
    padding: 80px 0;
    position: relative;
}

.download-main {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.download-simple-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-simple-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-secondary);
}

.version-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.version-tag {
    padding: 0.5rem 1rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.status-tag {
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
}

.download-simple-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-btn-simple {
    margin: 2rem auto 0;
    max-width: 300px;
    width: 100%;
}

/* Información del producto */
.info-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-simple-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-simple-card:hover {
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: var(--glow-primary);
}

.info-simple-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.info-simple-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.info-simple-card p:last-child {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* =================================
   SEO CONTENT
   ================================= */

.seo-content {
    padding: var(--section-padding);
    padding-bottom: 80px;
    position: relative;
}

.seo-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Flow de contenido limpio */
.content-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-block {
    padding: 0;
    background: none;
    border: none;
}

.content-block h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
    margin: 0;
}

.content-block.highlight {
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.content-block.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

.content-block.highlight h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.content-block.highlight p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

.content-block.final {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.content-block.final h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block.final p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* =================================
   GALLERY SECTION
   ================================= */

.gallery {
    padding: 80px 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-secondary);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.gallery-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-overlay svg {
    color: white;
    width: 24px;
    height: 24px;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-caption p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* =================================
   LIGHTBOX
   ================================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: scaleIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.25rem;
    box-shadow: var(--shadow-xl), var(--glow-primary);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(217, 70, 239, 0.8);
    transform: scale(1.1);
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* =================================
   FOOTER
   ================================= */

.footer {
    background: rgba(10, 10, 15, 0.6);
    border-top: 1px solid rgba(217, 70, 239, 0.1);
    padding: 1.5rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 17, 24, 0.4) 0%, rgba(10, 10, 15, 0.7) 100%);
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.75rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
}

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero {
        height: 60vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation - 900px */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(217, 70, 239, 0.2);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(217, 70, 239, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .language-selector {
        margin: 2rem 0 0 0;
        flex-direction: row;
        gap: 1rem;
    }
}

/* Mobile Principal - 768px */
@media (max-width: 768px) {
    /* Container y spacing general */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand a {
        font-size: 1.125rem;
    }
    
    .nav-brand img {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Hero section mobile - ambas páginas */
    .hero {
        min-height: calc(100vh - var(--nav-height));
        margin-top: var(--nav-height);
        padding: 2rem 0;
    }
    
    .download-hero {
        min-height: calc(100vh - var(--nav-height));
        padding: 2rem 0;
    }
    
    .download-hero .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--text-primary);
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: var(--text-secondary);
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 1.25rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    
    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    /* Download simple mobile - página principal */
    .download-simple-card {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .version-simple {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .download-btn-simple {
        max-width: 100%;
        width: 100%;
        padding: 1rem;
    }
    
    .info-simple-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .info-simple-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    /* Download card mobile - página download */
    .download-card {
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 1rem;
    }
    
    .version-badge {
        display: inline-flex !important;
        flex-direction: row !important;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: nowrap !important;
        width: auto;
    }
    
    .download-info h3 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .download-description {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .download-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .download-actions {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-buttons-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .download-btn-main {
        min-width: auto;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Changelog mobile */
    .changelog-section {
        padding: 60px 0;
    }
    
    .changelog-header {
        margin-bottom: 2rem;
    }
    
    .changelog-header h2 {
        font-size: 2rem;
    }
    
    .changelog-header p {
        font-size: 1.125rem;
        line-height: 1.5;
    }
    
    .changelog-version {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 1rem;
    }
    
    .version-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .version-title {
        font-size: 1.5rem;
    }
    
    .changelog-category {
        padding-left: 1rem;
        border-left-width: 2px;
        margin-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 1.125rem;
        flex-wrap: wrap;
        margin-bottom: 0.75rem;
    }
    
    .feature-list li {
        padding-left: 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    /* SEO Content mobile */
    .content-flow {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1rem 0;
    }
    
    .content-block.highlight {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .content-block.highlight h3 {
        font-size: 1.75rem;
    }
    
    .content-block.final h3 {
        font-size: 1.75rem;
    }
    
    .content-block p,
    .content-block.highlight p,
    .content-block.final p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer mobile */
    .footer-content {
        gap: 0.75rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    /* Spacing general para mobile */
    .features,
    .pricing,
    .download,
    .seo-content {
        padding: 60px 0;
    }
}

/* Mobile Pequeño - 480px */
@media (max-width: 480px) {
    /* Container ultra mobile */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navigation ultra mobile */
    .nav-brand a {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .nav-brand img {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Hero ultra mobile */
    .hero {
        min-height: calc(100vh - var(--nav-height));
        margin-top: var(--nav-height);
        padding: 1.5rem 0;
    }
    
    .download-hero {
        min-height: calc(100vh - var(--nav-height));
        padding: 1rem 0;
    }
    
    .download-hero .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        z-index: 2;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--text-primary);
        display: block;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        color: var(--text-secondary);
        display: block;
        text-align: center;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Features ultra mobile */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Pricing ultra mobile */
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .price .amount {
        font-size: 2rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
    }
    
    /* Download simple ultra mobile */
    .download-simple-card {
        padding: 1.5rem 0.75rem;
    }
    
    .info-simple-card {
        padding: 1rem;
    }
    
    /* Download card ultra mobile */
    .download-card {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .download-info h3 {
        font-size: 1.25rem;
    }
    
    .download-description {
        font-size: 0.9rem;
    }
    
    .spec-item {
        padding: 0.75rem;
    }
    
    .download-btn-main {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Changelog ultra mobile */
    .changelog-version {
        padding: 1rem;
    }
    
    .version-title {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Section headers ultra mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Footer ultra mobile */
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
}

/* Agregar cursor pointer a los botones de idioma */
.lang-btn {
    cursor: pointer;
}

/* =================================
   DOWNLOAD PAGE SPECIFIC STYLES
   ================================= */

.download-hero {
    min-height: 80vh;
    padding: 2rem 0;
}

.download-hero .container {
    padding: 0 1rem;
}

.download-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-secondary);
}

.version-badge {
    display: inline-flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: nowrap !important;
    width: auto;
}

.version-number {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.version-status {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.download-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
}

.download-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn-main {
    flex: 1;
    min-width: 200px;
}

/* =================================
   CHANGELOG SECTION
   ================================= */

.changelog-section {
    padding: 80px 0;
    position: relative;
}

.changelog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.changelog-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.changelog-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.changelog-content {
    max-width: 900px;
    margin: 0 auto;
}

.changelog-version {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.version-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.version-date {
    color: var(--text-secondary);
    font-size: 1rem;
}

.version-badge-changelog {
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
}

.badge-latest {
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.changelog-categories {
    display: grid;
    gap: 2rem;
}

.changelog-category {
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.5rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Badges de changelog para versiones dinámicas */
.badge-patch {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-minor {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-major {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-latest {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Launch Banner Styles */
.launch-banner {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.launch-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    color: var(--accent-primary);
    flex-shrink: 0;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.banner-text {
    flex: 1;
    min-width: 0; /* Permite que el texto se contraiga */
}

.banner-text h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.banner-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 1.125rem;
}

.banner-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.banner-date {
    flex-shrink: 0;
    text-align: center;
    padding: 1.5rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.launch-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.date-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.date-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
}

/* Disabled Button Styles */
.pricing-btn:disabled,
.download-btn-main:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    pointer-events: auto; /* Permitir clicks para mostrar mensaje */
}

.pricing-btn:disabled:hover,
.download-btn-main:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
}

.pricing-btn:disabled .btn-glow,
.download-btn-main:disabled .btn-glow {
    opacity: 0 !important;
}

/* Coming Soon Notice Styles */
.coming-soon-notice {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 0.75rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coming-soon-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
}

.coming-soon-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.coming-soon-notice strong {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Responsive styles for coming soon notice */
@media (max-width: 768px) {
    .coming-soon-notice {
        padding: 1rem;
        margin-top: 1.25rem;
    }
    
    .coming-soon-notice p {
        font-size: 0.9rem;
    }
    
    .coming-soon-notice strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-notice {
        padding: 0.875rem;
        margin-top: 1rem;
    }
    
    .coming-soon-notice p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .coming-soon-notice strong {
        font-size: 0.95rem;
    }
}

/* Responsive Design for Launch Banner */
@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .banner-date {
        justify-self: center;
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .launch-banner {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .banner-content {
        gap: 1.25rem;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .banner-date {
        padding: 1.25rem;
        min-width: 140px;
    }
    
    .date-value {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .launch-banner {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .banner-content {
        gap: 1rem;
    }
    
    .banner-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .banner-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .banner-date {
        padding: 1rem;
        min-width: 120px;
    }
    
    .date-label {
        font-size: 0.75rem;
    }
    
    .date-value {
        font-size: 1.25rem;
    }
}

/* Product Hunt Launch Banner Styles - Hidden by default for future use */
.product-hunt-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6154 0%, #ff4081 50%, #d946ef 100%);
    box-shadow: 0 4px 20px rgba(255, 97, 84, 0.3);
    z-index: 10000;
    transform: translateY(-100%); /* Hidden by default */
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    display: none; /* Hidden for future reuse */
}

.product-hunt-banner.visible {
    display: block;
    transform: translateY(0);
}

.product-hunt-banner.hidden {
    transform: translateY(-100%);
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    flex-shrink: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}

.banner-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.2;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-btn svg {
    transition: transform 0.3s ease;
}

.banner-btn:hover svg {
    transform: translate(2px, -2px);
}

.banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

/* Body and navbar positioning when banner is active */
body {
    padding-top: 0; /* No padding by default since banner is hidden */
}

body.banner-active {
    padding-top: 60px; /* Banner height on desktop when visible */
}

body.banner-hidden {
    padding-top: 0;
}

.navbar {
    top: 0; /* No offset by default since banner is hidden */
}

body.banner-active .navbar {
    top: 60px; /* Banner height on desktop when visible */
}

body.banner-hidden .navbar {
    top: 0;
}

/* Hero always stays below navbar - simplified approach */
section.hero,
section.download-hero,
.hero.download-hero,
.hero,
.download-hero {
    margin-top: var(--nav-height) !important; /* Always below navbar */
}

/* Responsive styles for Product Hunt banner */
@media (max-width: 768px) {
    .banner-container {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .banner-content {
        gap: 0.75rem;
    }
    
    .banner-title {
        font-size: 0.9rem;
    }
    
    .banner-subtitle {
        font-size: 0.8rem;
    }
    
    .banner-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    body.banner-active {
        padding-top: 50px; /* Banner height on tablet when visible */
    }
    
    body.banner-active .navbar {
        top: 50px; /* Banner height on tablet when visible */
    }
}

@media (max-width: 480px) {
    .banner-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        text-align: center;
    }
    
    .banner-content {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .banner-text {
        align-items: center;
        text-align: center;
    }
    
    .banner-title {
        font-size: 0.85rem;
    }
    
    .banner-subtitle {
        font-size: 0.75rem;
    }
    
    .banner-actions {
        justify-content: center;
        width: 100%;
    }
    
    .banner-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
        max-width: 120px;
    }
    
    .banner-close {
        position: absolute;
        top: 0.25rem;
        right: 0.25rem;
    }
    
    body.banner-active {
        padding-top: calc(97px + var(--nav-height)); /* Banner + navbar height on mobile when visible */
    }
    
    body.banner-active .navbar {
        top: 97px; /* Real banner height on mobile: 96.86px when visible */
    }
}

/* =================================
   FAQ SECTION
   ================================= */

.faq {
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.faq-question:hover {
    background: rgba(217, 70, 239, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-icon {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer > div {
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer > div {
        padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        margin-left: 0.75rem;
    }
    
    .faq-answer > div {
        padding: 1rem 1.25rem 1rem 1.25rem;
    }
} 

/* =================================
   RECOGNITION & REVIEWS SECTION
   ================================= */

.recognition-section {
    padding: 80px 0;
}

.recognition-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    min-height: 54px;
}

.badge-item:hover {
    filter: brightness(1.1);
}

.badge-item:not(:has(.alternativeto-badge)):hover {
    transform: translateY(-5px);
}

.badge-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.badge-item:hover img {
    transform: scale(1.02);
}

/* AlternativeTo Custom Badge */
.alternativeto-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #0c9ef0;
    border: 1px solid #0c9ef0;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 158, 240, 0.2);
    min-height: 54px; /* Match Product Hunt height */
    transform: translateY(-5px); /* Slight upward adjustment for perfect alignment */
}

.alternativeto-badge:hover {
    transform: translateY(-10px); /* Maintain alignment offset + hover lift */
    box-shadow: 0 4px 16px rgba(12, 158, 240, 0.3);
    background: #0a8dd6;
    border-color: #0a8dd6;
}

.alternativeto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
}

.alternativeto-logo {
    flex-shrink: 0;
}

.alternativeto-logo img {
    display: block;
}

.alternativeto-text-logo {
    flex-shrink: 0;
}

.alternativeto-text-logo img {
    display: block;
}

/* SourceForge Badge Adjustments */
.badge-item .sf-root {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px; /* Match Product Hunt height */
    width: 125px;
}

/* Ensure all SourceForge variants have consistent styling */
.badge-item .sf-root[data-variant-id="sf"],
.badge-item .sf-root[data-variant-id="sd"],
.badge-item .sf-root[data-variant-id="tbs"] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    width: 125px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .badges-row {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .badges-row {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .recognition-section {
        padding: 60px 0;
    }
    
    .recognition-badges {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .badges-row {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badge-item {
        flex: 0 1 auto;
        min-width: 160px;
    }
    
    .alternativeto-badge {
        padding: 0.625rem 1rem;
    }
    
    .alternativeto-content {
        gap: 0.5rem;
    }
    
    .alternativeto-logo img {
        width: 28px;
        height: 28px;
    }
    
    .alternativeto-text-logo img {
        width: 100px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .recognition-section {
        padding: 50px 0;
    }
    
    .recognition-badges {
        gap: 1.5rem;
    }
    
    .badges-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .badge-item {
        width: 100%;
        max-width: 280px;
    }
    

    .badge-item img {
        max-width: 220px;
        height: auto;
    }
    
    .alternativeto-badge {
        padding: 0.5rem 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .alternativeto-logo img {
        width: 24px;
        height: 24px;
    }
    
    .alternativeto-text-logo img {
        width: 90px;
        height: 13px;
    }
} 