/* Hero Section */
.mola-hero-section {
    min-height: 100vh;
    margin: 0 auto;
    max-width:1300px;
    display: flex;
    align-items: center;
    padding: 60px 0px;
    background-color: var(--mola-white);
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--mola-primary);
}

.mola-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.mola-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */
.mola-hero-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mola-law-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--mola-white);
    border: 1px solid var(--mola-accent);
    border-radius: 20px;
    width: fit-content;
    font-size: 14px;
    color: var(--mola-primary);
    font-weight: 500;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px #0000001A;
}

.mola-badge-icon {
    width: 18px;
    height: 18px;
}

.mola-hero-title {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--mola-primary);
    margin: 0;
}

.mola-hero-title .mola-highlight {
    font-weight: 700;
}

.mola-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--mola-neutral);
    margin: 0;
}

/* Buttons */
.mola-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.mola-btn-primary,
.mola-btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.mola-btn-primary {
    background-color: var(--mola-accent);
    color: var(--mola-white);
    box-shadow: 0px 4px 6px -4px #00A8A833, 0px 10px 15px -3px #00A8A833;
}

.mola-btn-primary:hover {
    background-color: var(--mola-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px -4px #00A8A866, 0px 12px 18px -3px #00A8A866;
    text-decoration: none;
    color: var(--mola-white);
}

.mola-btn-secondary {
    background-color: transparent;
    color: var(--mola-neutral);
    border: 1px solid var(--mola-primary-border);
    padding: 14px 20px;
}

.mola-btn-secondary:hover {
    color: var(--mola-primary);
    background-color: var(--mola-bg);
    border-color: var(--mola-accent);
    transform: translateY(-1px);
    text-decoration: none;
}

.mola-btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mola-btn-icon-play {
    width: 20px;
    height: 20px;
    filter: invert(40%) sepia(10%) saturate(500%) hue-rotate(180deg);
}

/* Features List */
.mola-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.mola-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--mola-neutral);
}

.mola-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Right Side */
.mola-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mola-hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mola-hero-content {
        gap: 60px;
    }
    
    .mola-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .mola-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mola-hero-title {
        font-size: 42px;
    }
    
    .mola-hero-description br {
        display: none;
    }
    
    .mola-hero-right {
        order: -1;
    }
}

@media (max-width: 640px) {
    .mola-hero-section {
        padding: 40px 20px;
    }
    
    .mola-hero-title {
        font-size: 36px;
    }
    
    .mola-hero-title br {
        display: none;
    }
    
    .mola-hero-description {
        font-size: 16px;
    }
    
    .mola-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .mola-btn-primary,
    .mola-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
