/* Hero */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 201, 232, 0.2) 0%, rgba(233, 175, 88, 0.2) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: rgba(147, 201, 232, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(233, 175, 88, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(270deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bold {
    background: linear-gradient(90deg, var(--primary), var(--dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(233, 175, 88, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 175, 88, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(147, 201, 232, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-logo {
    height: 40px;
    object-fit: contain;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stat-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-link:hover {
    text-decoration: underline;
}

/* Story Box */
.story-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(147, 201, 232, 0.3) 0%, rgba(233, 175, 88, 0.3) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 8rem;
    max-width: var(--max-width);
    gap: 2rem;
}

.story-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.story-box p {
    color: var(--gray);
    font-size: 1.1rem;
}