* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    color: var(--color-primary-blue);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 101;
}

/* Botón hamburguesa */
.boton-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.boton-menu span {
    font-size: 2rem;
    color: var(--color-primary-blue);
    transition: all 0.3s;
}

/* Navegación desktop */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav a:hover {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav .btn-outline {
    margin-left: 16px;
}

/* Navegación móvil bottom (oculta por defecto) */
.nav-mobile-bottom {
    display: none;
}

/* BUTTONS */
.btn-primary {
    background: var(--color-primary-orange);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-secondary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--color-primary-blue);
    color: var(--color-primary-blue);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-primary-large {
    background: var(--color-primary-orange);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    background: var(--color-secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-large {
    border: 2px solid var(--color-primary-blue);
    color: var(--color-primary-blue);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    background: var(--color-white);
}

.btn-outline-large:hover {
    background: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* HERO PRINCIPAL */
.hero-main {
    background: linear-gradient(135deg, #1B5DAF 0%, #134A8E 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(36, 119, 220, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(93, 161, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-main {
    color: var(--color-white);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text-main h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
}

.hero-text-main .highlight {
    color: #A8D142;
    text-shadow: 0 2px 20px rgba(168, 209, 66, 0.4);
}

.final-cta-content h2 {
    color: var(--color-primary-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #A8D142;
    text-shadow: 0 2px 15px rgba(168, 209, 66, 0.3);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    gap: 20px;
}

.visual-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

.visual-card:nth-child(2) {
    animation-delay: 1s;
}

.visual-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.visual-card .icon {
    font-size: 2.5rem;
}

.visual-card .text {
    font-weight: 600;
    color: var(--color-dark);
}

/* SECCIONES GENERALES */
section {
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    background: var(--color-light);
    color: var(--color-primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-badge.blue {
    background: rgba(36, 119, 220, 0.1);
}

.section-badge.green {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-primary-orange);
}

.section-header-center h2 {
    font-family: var(--font-subheading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ABOUT SECTION */
.about-section {
    background: var(--color-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.7;
}

/* TWO COLUMN SECTIONS */
.two-col-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-section.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.col-content h2 {
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.intro-text {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    background: var(--color-primary-orange);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.benefit-content p {
    color: #6B7280;
    line-height: 1.6;
}

.cta-inline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-note {
    color: #6B7280;
    font-size: 0.9rem;
}

/* DASHBOARD PREVIEW */
.dashboard-preview {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--color-light);
}

.preview-header {
    background: var(--color-primary-blue);
    color: var(--color-white);
    padding: 16px 20px;
    font-weight: 700;
}

.preview-content {
    padding: 24px;
}

.preview-stat-card {
    background: var(--color-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

.preview-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-blue);
}

.preview-offer {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.preview-offer-title {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.preview-offer-meta {
    font-size: 0.85rem;
    color: #6B7280;
}

.worker-preview .preview-header {
    background: var(--color-primary-orange);
}

.profile-info {
    background: var(--color-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.profile-role {
    color: #6B7280;
    margin-bottom: 8px;
}

.profile-rating {
    color: var(--color-primary-orange);
    font-weight: 600;
}

.preview-job-alert {
    background: rgba(249, 115, 22, 0.1);
    padding: 16px;
    border-radius: 8px;
}

.alert-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.alert-item {
    background: var(--color-white);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* FOR BUSINESSES/WORKERS */
.for-businesses {
    background: var(--color-light);
}

/* TABS */
.tabs-container {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 32px;
    border: 2px solid var(--color-light);
    background: var(--color-white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-btn.active {
    background: var(--color-primary-blue);
    color: var(--color-white);
    border-color: var(--color-primary-blue);
}

.tab-btn:hover:not(.active) {
    border-color: var(--color-primary-blue);
    color: var(--color-primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.step-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-orange);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.step-card p {
    color: #6B7280;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-primary-blue);
    font-weight: 700;
}

/* COMPARISON */
.why-choose {
    background: var(--color-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.comparison-card.highlighted {
    border: 3px solid var(--color-primary-orange);
    transform: scale(1.05);
}

.comparison-header {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-light);
}

.comparison-header.bad {
    color: var(--color-danger);
}

.comparison-header.good {
    color: var(--color-success);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    font-size: 1.5rem;
}

.bad .comparison-list li::before {
    color: var(--color-danger);
}

.good .comparison-list li::before {
    color: var(--color-success);
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: var(--color-white);
    text-align: center;
    padding: 100px 0;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.final-cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.final-cta-actions {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    align-items: center;
}

.cta-option {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    color: var(--color-dark);
}

.cta-option h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-option p {
    color: #6B7280;
    margin-bottom: 24px;
}

.cta-option .btn-primary-large.full {
    width: 100%;
    text-align: center;
}

.cta-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* FAQ */
.quick-faq {
    background: var(--color-light);
}

.quick-faq h3 {
    text-align: center;
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--color-primary-blue);
    margin-bottom: 12px;
}

.faq-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-content-main {
        grid-template-columns: 1fr;
    }
    
    .hero-text-main h1 {
        font-size: 2.5rem;
    }
    
    .two-col-section,
    .two-col-section.reverse {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .step-card {
        margin-bottom: 0;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto 16px auto;
        display: block;
        text-align: center;
        position: static;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .comparison-card.highlighted {
        transform: scale(1);
    }
    .final-cta-actions {
        grid-template-columns: 1fr;
    }
    .cta-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .hero-text-main h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .col-content h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
}

/* FOOTER */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0 calc(40px + env(safe-area-inset-bottom));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--color-primary-green);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-content-main {
        grid-template-columns: 1fr;
    }
    
    .hero-text-main h1 {
        font-size: 2.5rem;
    }
    
    .two-col-section,
    .two-col-section.reverse {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.highlighted {
        transform: scale(1);
    }
    
    .final-cta-actions {
        grid-template-columns: 1fr;
    }
    
    .cta-divider {
        transform: rotate(90deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-text-main h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .col-content h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Tablets - ajustes intermedios entre desktop y móvil */
@media (max-width: 820px) and (min-width: 769px) {
    .header-content {
        padding: 18px 0;
    }

    .nav a {
        padding: 8px 14px;
        font-size: 0.95rem;
    }

    .nav .btn-outline {
        margin-left: 8px;
        padding: 8px 16px;
    }

    .container {
        width: 92%;
    }
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
    /* Solo aplicar al landing page - cuando existe .hero-main */
    .hero-main ~ * .header-content,
    body:has(.hero-main) .header-content {
        padding: 16px 0;
    }

    body:has(.hero-main) .logo {
        font-size: 1.3rem;
    }

    /* Mostrar botón hamburguesa solo en landing */
    body:has(.hero-main) .boton-menu {
        display: block;
    }

    /* Ocultar navegación desktop y convertir a móvil solo en landing */
    body:has(.hero-main) .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 80px 20px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 100;
    }

    body:has(.hero-main) .nav.nav-open {
        right: 0;
    }

    body:has(.hero-main) .nav a {
        padding: 16px 20px;
        margin: 0 0 8px 0;
        border-radius: 8px;
        font-size: 1.05rem;
        text-align: left;
        display: block;
        border: 2px solid transparent;
    }

    body:has(.hero-main) .nav a:hover {
        background-color: rgba(36, 119, 220, 0.1);
        color: var(--color-primary-blue);
        transform: translateY(0);
        border-color: var(--color-primary-blue);
    }

    body:has(.hero-main) .nav .btn-outline {
        margin-left: 0;
        text-align: center;
        margin-top: 16px;
        background-color: var(--color-primary-blue);
        color: var(--color-white);
        border: 2px solid var(--color-primary-blue);
    }

    body:has(.hero-main) .nav .btn-outline:hover {
        background-color: var(--color-secondary-blue);
        border-color: var(--color-secondary-blue);
    }

    /* Overlay cuando el menú está abierto */
    body:has(.hero-main) .nav.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Mostrar navegación bottom en móvil solo en landing */
    .nav-mobile-bottom {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        z-index: 99;
        justify-content: space-around;
    }

    .nav-mobile-bottom a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--color-dark);
        font-size: 0.7rem;
        padding: 4px 8px;
        transition: all 0.3s;
        flex: 1;
        max-width: 90px;
    }

    .nav-mobile-bottom a .icon {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }

    .nav-mobile-bottom a .label {
        font-weight: 500;
        font-size: 0.65rem;
    }

    .nav-mobile-bottom a:hover,
    .nav-mobile-bottom a:active {
        color: var(--color-primary-blue);
        background-color: rgba(36, 119, 220, 0.05);
        border-radius: 8px;
    }

    /* Añadir padding bottom solo cuando existe nav-mobile-bottom */
    body:has(.nav-mobile-bottom) {
        padding-bottom: 70px;
    }

    /* Ajustar hero para móvil */
    .hero-main {
        padding: 60px 0 40px;
    }

    section {
        padding: 50px 0;
    }
}

/* Pantallas muy pequeñas - ajustes finos */
@media (max-width: 480px) {
    body:has(.hero-main) .nav {
        width: 260px;
    }

    .container {
        width: 95%;
    }

    .hero-text-main h1 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn-primary-large,
    .btn-outline-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .feature-card,
    .benefit-item,
    .faq-item {
        padding: 20px;
    }

    .section-header-center h2,
    .col-content h2 {
        font-size: 1.75rem;
    }

    .nav-mobile-bottom a .label {
        font-size: 0.6rem;
    }

    .nav-mobile-bottom a .icon {
        font-size: 1.3rem;
    }
}

/* Landscape en móviles */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-main {
        padding: 40px 0 30px;
    }

    section {
        padding: 40px 0;
    }

    body:has(.hero-main) .nav {
        padding: 60px 20px 20px 20px;
    }
}