/* ========================================
   HERO MODERNO - FULL SCREEN & RESPONSIVE
   ======================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #F8FAFC; /* Off-white background según guía MD */
    background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-bg-page) 100%);
    padding: 40px 0 80px 0; /* Reducido ya que main tiene padding-top */
    overflow: hidden;
}

/* Hero container */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Grid layout 6/6 según guía MD */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

/* Columna principal (izquierda) */
.hero-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #082135; /* Primary 700 según guía MD */
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: #0B1320; /* --fg según guía MD */
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.hero-benefits {
    list-style: none;
    margin: 24px 0 0 0;
    padding: 0;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #0B1320;
}

.hero-benefit i {
    color: #1B828A; /* Accent 500 según guía MD */
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: #1B828A; /* Accent 500 según guía MD */
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-cta-primary:hover {
    background: #43A7AF; /* Accent 300 según guía MD */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 130, 138, 0.25);
}

.hero-cta-secondary {
    background: transparent;
    color: #1B828A; /* Accent 500 */
    border: 2px solid #1B828A;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-cta-secondary:hover {
    background: #1B828A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 130, 138, 0.25);
}

/* Hero proof stats */
.hero-proof {
    margin-top: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1B828A; /* Accent 500 */
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6B7280; /* --muted según guía MD */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 4px;
}

/* Columna secundaria (derecha) */
.hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tools {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border-default); /* --border según guía MD */
}

/* Tool accordion/tab style */
.tool-section {
    margin-bottom: 16px;
}

.tool-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #082135; /* Primary 700 */
    transition: all 0.3s ease;
    border-bottom: 1px solid #E5E7EB;
}

.tool-toggle:hover {
    color: #1B828A; /* Accent 500 */
}

.tool-toggle i:first-child {
    color: #1B828A; /* Accent 500 */
    font-size: 18px;
}

.tool-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #6B7280;
}

.tool-toggle.active .tool-arrow {
    transform: rotate(180deg);
}

.tool-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tool-content.active {
    max-height: 500px;
}

/* Domain search card */
.domain-search-card {
    padding: 24px 0;
}

.tool-description {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.domain-search-form {
    margin-bottom: 20px;
}

.domain-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.domain-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: #1B828A; /* Accent 500 */
    box-shadow: 0 0 0 3px rgba(27, 130, 138, 0.1);
}

.domain-search-btn {
    background: #1B828A; /* Accent 500 */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.domain-search-btn:hover {
    background: #43A7AF; /* Accent 300 */
    transform: translateY(-1px);
}

.domain-status {
    margin: 16px 0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.domain-status.available {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: block;
}

.domain-status.taken {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

.domain-popular {
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.domain-popular-title {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.domain-popular-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.domain-popular-item {
    background: var(--color-bg-section);
    color: var(--accent-500);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--color-border-default);
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-modern {
        padding: 100px 0 60px 0;
        min-height: 90vh;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main {
        order: 1;
    }
    
    .hero-secondary {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 80px 0 40px 0;
        min-height: 85vh;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-grid {
        gap: 32px;
    }
    
    .hero-main {
        gap: 24px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 40px);
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        text-align: center;
    }
    
    .hero-stat {
        align-items: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        min-height: 80vh;
        padding: 70px 0 30px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .domain-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}
