/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--white);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.text-gradient {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Bild responsiv begrenzen */
.hero-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Portrait im Hero: Desktop bewusst beschneiden */
.hero-image.hero-image--portrait {
    object-position: center 20%;
}

/* Hero Logo */
.hero-logo {
    max-width: 300px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-features {
    color: var(--text-secondary);
}

.hero-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ===== FEATURE ICONS ===== */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-icon-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Step Numbers */
.step-number {
    position: relative;
    margin-bottom: 1rem;
}

.step-number .feature-icon-large {
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

/* Counter reset für step numbers */
.container {
    counter-reset: step-counter;
}