/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero p {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-bullets {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #f7d34f;
}

.bullet span {
    color: white;
}

.bullet svg {
    width: 24px;
    height: 24px;
}

.btn-yellow.big {
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 8px;
}

/* KERNLEISTUNG SECTION */
.kernleistung {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.kernleistung-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.kernleistung-subtitle {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.kernleistung-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.kernleistung-image-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.kernleistung-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LEISTUNGEN SECTION */
.leistungen {
    padding: 80px 0;
}

.leistungen-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.leistungen-subtitle {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 24px;
    line-height: 1.7;
    color: #555;
}

/* GRID */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* CARD */
.leistung-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.leistung-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f7d34f;
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.leistung-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.leistung-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* VORTEILE SECTION */
.vorteile {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vorteile-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.vorteil-card {
    background-color: #f7d34f;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vorteil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vorteil-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.vorteil-icon svg {
    width: 100%;
    height: 100%;
}

.vorteil-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.vorteil-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
}

/* SECTION TARGET */
.target-section {
    padding: 80px 0;
    background-color: #161616;
}

.target-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
    color: #ffffff;
}

.target-subtitle {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 24px;
    line-height: 1.7;
    color: #d1d5d0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

.target-card {
    background-color: #383838;
    color: #d8b125;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
    gap: 16px;
    border: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.target-card:hover {
    transform: translateY(-5px);
}

.target-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.target-icon svg {
    width: 100%;
    height: 100%;
}

.target-card h3 {
    font-size: 20px;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    color: #fff;
    text-align: center;
}

/* SECTION PROCESS */
.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    padding: 40px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #f7d34f;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px auto;
    background-color: #f7d34f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* SECTION KONTAKT CTA */
.kontakt-cta {
    padding: 80px 0;
    background-color: #161616;
    color: #ffffff;
}

.kontakt-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-cta-inner h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kontakt-cta-inner p {
    margin: 0 auto 40px auto;
    font-size: 20px;
    line-height: 1.6;
    color: #d2cdcd;
}

.kontakt-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kontakt-btn:hover {
    transform: translateY(-1px);
}

/* DIVIDER LINE */
.kontakt-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 40px auto;
}

.kontakt-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #f7d34f;
}

.kontakt-item svg {
    width: 20px;
    height: 20px;
}

.kontakt-item span {
    color: #f5f5f5;
}


/* RESPONSIVE */

@media (max-width: 1024px) {

    /* LEISTUNGEN SECTION */
    .leistungen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* VORTEILE SECTION */
    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    /* TARGET SECTION */
    .target-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* PROCESS SECTION */
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .hero {
        height: auto;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-bullets {
        flex-direction: column;
        gap: 16px;
    }

    /* KERNLEISTUNG */
    .kernleistung {
        padding: 60px 0;
    }

    .kernleistung-images {
        grid-template-columns: 1fr;
    }

    .kernleistung-title {
        font-size: 28px;
    }

    /* SECTION TARGET */
    .target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* SECTION KONTAKT CTA */
    .kontakt-cta {
        padding: 40px 0;
    }

    .kontakt-cta-inner h2 {
        font-size: 32px;
    }

    .kontakt-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {

    /* LEISTUNGEN SECTION */
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    /* Hero */
    .hero {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .bullet span {
        font-size: 12px;
        font-weight: 400;
    }

    .bullet svg {
        width: 20px;
        height: 20px;
    }

    .btn-yellow.big {
        font-size: 16px;
        padding: 12px 16px;
    }

    /* SECTION TARGET */
    .target-grid {
        grid-template-columns: 1fr;
    }

    /* Kontakt Cta */
    .kontakt-cta-inner h2 {
        font-size: 28px;
    }

    .kontakt-cta-inner p {
        font-size: 20px;
    }
}