/* Hero Section Styles - Distinctive Design */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 140px 2rem 4rem;
    z-index: 1;
    min-height: 80vh;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(var(--color-primary), 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(var(--color-secondary), 0.1) 0%, transparent 50%),
        conic-gradient(from 180deg at 50% 50%, rgba(var(--color-primary), 0.05) 0deg, transparent 60deg, rgba(var(--color-secondary), 0.03) 120deg, transparent 180deg);
    animation: heroMeshRotate 30s linear infinite;
    opacity: 1;
}

/* Floating glow orb */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--color-primary), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroMeshRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.1); }
    66% { transform: translate(20px, -30px) scale(0.9); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: rgb(var(--color-text));
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: heroContentReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgb(var(--color-surface));
    border: 1px solid rgba(var(--color-border), var(--border-opacity));
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: rgb(var(--color-text-secondary));
    transition: all 0.3s ease;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: rgb(var(--color-text));
    text-shadow: 0 0 80px rgba(var(--color-primary), 0.3);
}

/* Gradient text effect for hero title */
.hero h1 span {
    background: linear-gradient(135deg, rgb(var(--color-text)) 0%, rgb(var(--color-secondary)) 50%, rgb(var(--color-primary)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-outcome {
    font-size: 1.25rem;
    color: rgb(var(--color-text));
    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(--color-primary);
    font-weight: bold;
}

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

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

.hero-description {
    font-size: 1.75rem;
    color: rgb(var(--color-text));
    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(--color-primary);
    font-weight: bold;
}

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

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

.hero-subheadline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgb(var(--color-text-secondary));
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    animation: heroContentReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-p {
    font-size: 1.125rem;
    color: rgb(var(--color-text-secondary));
    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(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroContentReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Enhanced CTA button */
.hero-cta .btn-primary,
.hero-cta .btn-large {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta .btn-primary::before,
.hero-cta .btn-large::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-secondary)), rgb(var(--color-primary)));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: gradientShift 3s ease infinite;
}

.hero-cta .btn-primary:hover::before,
.hero-cta .btn-large:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Links List */
.hero-links {
    margin-top: 1.5rem;
}

.hero-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-links li {
    position: relative;
    padding-left: 1.25rem;
}

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

.hero-links a {
    color: rgb(var(--color-text-secondary));
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.hero-links a:hover {
    color: rgb(var(--color-primary));
}

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

.trust-label {
    font-size: 0.875rem;
    color: rgb(var(--color-text-secondary));
    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: rgb(var(--color-text));
    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: rgb(var(--color-surface));
    border: 1px solid rgba(var(--color-border), var(--border-opacity));
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: rgb(var(--color-text-secondary));
    text-align: left;
}

.benefit-item strong {
    color: var(--color-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;
    }
}
