/* ========================================
   BENEFITS SECTION REDESIGNED - STORYTELLING
   Problem → Solution approach
======================================== */

#benefits-redesigned {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Common Section Tags */
.section-tag-red,
.section-tag-green,
.section-tag-cyan {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-tag-red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.section-tag-green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.section-tag-cyan {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    color: var(--accent-cyan);
}

/* ========================================
   PART 1: THE PROBLEM SECTION
======================================== */
.problem-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(135deg, #1a0a0f 0%, #2a1a2e 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.problem-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 900px;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-item {
    display: flex;
    /*align-items: flex-start;*/
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: grayscale(0.3);
}

/* Problem SVG Icons Styles */
.problem-icon-svg {
    width: 70px;
    height: 70px;
    color: #ef4444;
    transition: all 0.3s ease;
}

.problem-item:hover .problem-icon-svg {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.4));
}

.problem-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.problem-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.problem-text span {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Problem Quote */
.problem-quote {
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #ef4444;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.problem-quote i {
    color: rgba(239, 68, 68, 0.3);
    font-size: 3rem;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.problem-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 3rem;
}

.problem-quote span {
    font-size: 0.95rem;
    color: #64748b;
    padding-left: 3rem;
}

/* ========================================
   PART 2: THE SOLUTION SECTION
======================================== */
.solution-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a1a0f 0%, #1a2a1e 100%);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.solution-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.solution-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 900px;
}

/* Large Feature Card (Google Drive) */
.solution-feature-large {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.feature-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.feature-icon-large i {
    font-size: 4rem;
    color: white;
}

.feature-content-large h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-content-large p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-content-large strong {
    color: #22c55e;
    font-weight: 700;
}

.speed-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
}

.speed-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.speed-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
}

/* Solution Cards Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-card {
    padding: 2rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.1);
}

.solution-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

/* Custom SVG Icons Styles */
.custom-icon {
    width: 80px;
    height: 80px;
    color: #22c55e;
    transition: all 0.3s ease;
}

.solution-card:hover .custom-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
}

.solution-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.solution-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========================================
   PART 3: DIFFERENTIATORS SECTION
======================================== */
.differentiators-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 100%);
    position: relative;
}

.differentiators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Brand Logo Container */
.brand-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-logo {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 255, 204, 0.3));
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: drop-shadow(0 8px 30px rgba(0, 255, 204, 0.5));
    transform: translateY(-3px);
}

.differentiators-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.differentiators-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 4rem;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.diff-card {
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 255, 204, 0.2);
}

.diff-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diff-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.diff-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.diff-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.diff-card strong {
    color: var(--accent-cyan);
    font-weight: 700;
}

.diff-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 204, 0.1);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 8px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* ========================================
   PART 4: COMMUNITY TRUST SECTION
======================================== */
.community-trust-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0f0a1a 0%, #1a1a2e 100%);
}

.community-trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.trust-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 255, 204, 0.05);
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 20px;
}

.community-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.community-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3);
}

.community-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 204, 0.5);
}

.community-cta-btn i {
    transition: transform 0.3s ease;
}

.community-cta-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .solution-feature-large {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-icon-large {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .problem-section,
    .solution-section,
    .differentiators-section {
        padding: 5rem 5%;
    }
    
    .brand-logo {
        height: 60px; /* Más pequeño en mobile */
    }
    
    .problem-grid,
    .solution-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-title,
    .solution-title,
    .differentiators-title {
        font-size: 2rem;
    }
    
    .problem-description,
    .solution-description {
        font-size: 1.1rem;
    }
    
    .solution-feature-large {
        padding: 2rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-large i {
        font-size: 2.5rem;
    }
    
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .community-cta {
        padding: 2rem 1.5rem;
    }
    
    .custom-icon {
        width: 60px; /* Más pequeños en mobile */
        height: 60px;
    }
    
    .problem-icon-svg {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
    }
    
    .speed-indicator {
        flex-direction: column;
        text-align: center;
    }
}