/* Hero Section */
.hero { padding: 100px 0 60px; background-color: var(--light-bg); border-bottom: 1px solid #eaeaea; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 20px; }
.hero-subtext { font-size: 1.1rem; color: #555; margin-bottom: 35px; line-height: 1.6; max-width: 95%; }
.hero-subtext1 { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.hero-visual img { width: 100%; border-radius: 12px; }
.hero-tags { 
    display: flex; 
    gap: 10px; /* Ggf. Abstand vergrößern */
    margin: 20px 0; 
    flex-wrap: wrap; 
}

.tag { 
    font-weight: 700; /* Etwas fetter für den Look */
    font-size: 1.2rem; /* Passend zur Headline-Größe */
}

/* Nur noch die Textfarben definieren */
.tag-green { color: var(--green); }
.tag-orange { color: var(--orange); }
.tag-pink { color: var(--pink); }


/* Features Bar (unter dem Hero) */
.features-bar { background: #F5F7F4; padding: 50px 0; border-bottom: 1px solid #eaeaea; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-box { display: flex; align-items: flex-start; gap: 15px; }
.feature-box .circle { min-width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feature-box .text h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; }
.feature-box .text p { font-size: 0.9rem; color: #555; line-height: 1.5; }

/* Über mich */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-container img { width: 100%; border-radius: 8px; box-shadow: -15px 15px 0px var(--light-bg); }
.eyebrow { color: var(--orange); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 15px; }
.about-content h2 { font-size: 2.8rem; margin-bottom: 25px; }
.about-content p { margin-bottom: 20px; color: #444; }

/* Leistungen */
.services { background-color: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { justify-content: center; margin-bottom: 10px; }
.section-header h2 { font-size: 2.8rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.service-card { background: var(--light-bg); padding: 40px 30px; border-radius: 8px; text-align: left; border-top: 4px solid transparent; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card h3 { font-size: 1.3rem; margin: 20px 0 15px; font-family: 'Inter', sans-serif; font-weight: 600; }
.service-card p { font-size: 0.95rem; color: #555; }
.sc-green:hover { border-color: var(--green); }
.sc-orange:hover { border-color: var(--orange); }
.sc-pink:hover { border-color: var(--pink); }
.service-icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }


/* Zusatzkompetenz */
.special-box { background: var(--light-bg); padding: 30px; border-radius: 8px; margin-top: 50px; border-top: 4px solid transparent; transition: 0.3s; display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start; }
.special-box:hover { border-top-color: var(--orange); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.box-header { display: flex; flex-direction: column; align-items: center; text-align: center; }
.box-header h4 { font-size: 1.3rem; margin: 0 0 10px 0; }
.special-box .icon { width: 60px; height: 60px; margin-bottom: 10px; }
.special-box .label { font-weight: bold; color: var(--green); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.box-content h4 { font-size: 1.3rem; margin: 0 0 10px 0; color: var(--green); }
.box-content p { margin: 0; font-size: 0.95rem; color: #555; }

@media (max-width: 900px) {
    .hero-grid, .about-grid, .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
