/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: 4rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(39, 150, 60, 0.1), rgba(39, 150, 60, 0.2));
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    color: var(--vegaenergy-dark);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(39, 150, 60, 0.3);
}

.hero-subtitle {
    color: var(--text-color);
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 500;
}

.hero-description {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 150, 60, 0.2);
    border-radius: 5px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.hero-description h3 {
    color: var(--vegaenergy-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.hero-description li {
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.hero-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vegaenergy-dark);
    font-weight: bold;
}

.finder-intro {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(39, 150, 60, 0.15);
    border-radius: 5px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-color);
    opacity: 0.9;
}

/* Title Section (deprecated - keeping for compatibility) */
.title-section {
    background: linear-gradient(135deg, var(--light-background) 0%, #252525 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid var(--vegaenergy-dark);
    position: relative;
    overflow: hidden;
}

.title-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 150, 60, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.title-section h1 {
    color: var(--vegaenergy-dark);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(39, 150, 60, 0.3);
    position: relative;
    z-index: 1;
}

.title-section p {
    color: var(--text-color);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
