/* Hero Section Styles */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 1rem;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--dark-card);
    border: 1px solid var(--border);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: var(--gray);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: var(--primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--light);
}

.hero-outcome {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.hero-outcome ul {
    list-style: none;
    padding: 0;
}

.hero-outcome ul li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hero-outcome ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.hero-outcome a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.hero-outcome a:hover {
    border-bottom-color: var(--primary);
    color: var(--secondary);
}

.hero-description {
    font-size: 1.75rem;
    color: var(--light);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.hero-description ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.hero-description ul li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hero-description ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.hero-highlight {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-cta-heading {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-subheadline {
    font-size: 1.625rem;
    color: var(--light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.hero-p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-p a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.hero-p a:hover {
    border-bottom-color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Trust Badges */
.hero-trust {
    margin-top: 2.5rem;
    text-align: center;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-badge {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
}

/* Hero Benefits Row */
.hero-benefits {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: left;
}

.benefit-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }
}
