/* ============================================
   AWQ - Agentur für Weiterbildung & Qualifizierung
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #57b037;
    --green-bright: #6FD040;
    --green-dark: #3D7C26;
    --green-darker: #0F2419;
    --cream: #F5EFE6;
    --black: #0A0A0A;
    --gray-light: #F8F9FA;
    --gray-medium: #6B7280;
    --gray-border: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

em, i {
    font-style: normal;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.icon-sm {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left .divider {
    margin: 0 4px;
    opacity: 0.5;
}

.top-bar-right {
    display: flex;
    gap: 24px;
}

.top-bar a {
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    color: var(--green-bright);
}

/* ============ HEADER ============ */
header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.logo {
    display: block;
    transition: transform 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--green-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
}

.phone-icon {
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 20px;
    height: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text small {
    font-size: 11px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-text strong {
    font-size: 15px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter Tight', sans-serif;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--green-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(87, 176, 55, 0.3);
}

.btn-dark {
    background: var(--black);
    color: white;
}

.btn-dark:hover {
    background: var(--green-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ============ HERO SLIDER ============ */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--green-bright);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--green-darker);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(100px);
    z-index: 1;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    padding: 90px 0 80px;
    display: none;
    position: relative;
    z-index: 2;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(44px, 5.8vw, 78px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
}

.hero h1 .accent {
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-hero-primary {
    background: white;
    color: var(--green-dark);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--green-dark);
    border-color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--green-dark);
}

.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circle {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 150px;
    height: 150px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
    color: var(--green-darker);
    z-index: 2;
    box-shadow: var(--shadow-lg);
    text-align: center;
    padding: 12px;
}

.hero-circle .big {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.5px;
}

.hero-circle .small {
    font-size: 11px;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.3;
}

.hero-badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    color: var(--black);
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.floating-icon {
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-icon svg {
    width: 22px;
    height: 22px;
}

.hero-badge-floating strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.hero-badge-floating small {
    font-size: 12px;
    color: var(--gray-medium);
}

/* ============ SLIDER CONTROLS ============ */
.hero-controls {
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}

.hero-controls-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: white;
    color: var(--green-dark);
    border-color: white;
    transform: scale(1.05);
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 100px;
}

.dot:hover:not(.active) {
    background: rgba(255,255,255,0.6);
}

/* ============ FEATURE STRIP ============ */
.feature-strip {
    background: white;
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-border);
}

.feature-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-dark);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* ============ SECTION DEFAULTS ============ */
section {
    padding: 110px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    color: var(--green-dark);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-primary);
    border-radius: 50%;
}

.section-tag.light {
    background: rgba(255,255,255,0.1);
    color: var(--green-bright);
}

.section-title {
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
}

.section-title.light {
    color: white;
}

.section-title .accent {
    color: var(--green-primary);
    font-weight: 300;
}

.section-title .accent-light {
    color: var(--green-bright);
    font-weight: 300;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 640px;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.75);
}

/* ============ ABOUT ============ */
.about {
    background: white;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.check {
    width: 32px;
    height: 32px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check svg {
    width: 16px;
    height: 16px;
}

.about-feature strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 700;
}

.about-feature span {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about-image-grid > div {
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-grid > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-2 {
    margin-top: 48px;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 24px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    white-space: nowrap;
}

.badge-circle {
    width: 36px;
    height: 36px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-circle svg {
    width: 18px;
    height: 18px;
}

.about-image-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.about-image-badge small {
    font-size: 12px;
    color: var(--gray-medium);
}

/* ============ SERVICES ============ */
.services {
    background: var(--green-darker);
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: 'AWQ';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 280px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: -15px;
    line-height: 1;
    pointer-events: none;
}

.services-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--green-primary);
    transform: translateY(-8px);
}

.service-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-bright);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-bright);
    font-weight: 700;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-bright);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
    margin-top: auto;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.service-card-link:hover {
    gap: 14px;
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* ============ PROZESS ============ */
.prozess {
    background: var(--gray-light);
}

.prozess-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.prozess-header .section-subtitle {
    margin: 0 auto;
}

.prozess-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.prozess-step {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
}

.prozess-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-primary);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-border);
    letter-spacing: -2px;
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--green-primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.prozess-step h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.prozess-step p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.prozess-note {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon svg {
    width: 20px;
    height: 20px;
}

.prozess-note strong {
    color: var(--black);
}

/* ============ DOZENTEN ============ */
.dozenten {
    background: white;
}

.dozenten-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dozenten-benefits {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    color: var(--green-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.benefit span {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.5;
}

.dozenten-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-note {
    font-size: 14px;
    color: var(--gray-medium);
}

.cta-note a {
    color: var(--green-primary);
    font-weight: 600;
}

.dozenten-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.dozenten-image > div {
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
}

.dozent-img-2 {
    margin-top: 48px;
}

.dozenten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dozenten-stat {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: white;
    padding: 20px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.95;
    line-height: 1.3;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    position: relative;
}

.cta-banner-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-banner h3 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 600px;
}

.cta-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============ FAQ ============ */
.faq {
    background: var(--gray-light);
}

.faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.faq-header .section-subtitle {
    margin: 0 auto;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 32px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Inter Tight', sans-serif;
    transition: all 0.3s;
    line-height: 1.3;
}

.accordion-header:hover {
    color: var(--green-primary);
}

.accordion-icon {
    width: 36px;
    height: 36px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content-inner {
    padding: 0 32px 28px;
    color: var(--gray-medium);
    font-size: 15px;
    line-height: 1.7;
}

.accordion-content-inner strong {
    color: var(--black);
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

/* ============ KONTAKT ============ */
.kontakt {
    background: white;
    position: relative;
    overflow: hidden;
}

.kontakt-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(87, 176, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(87, 176, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.kontakt .container {
    position: relative;
    z-index: 1;
}

.kontakt-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.kontakt-header .section-subtitle {
    margin: 0 auto;
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Großer Hero-Card */
.kontakt-hero-card {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    border-radius: 32px;
    padding: 48px 44px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.kontakt-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(87, 176, 55, 0.35);
}

.kontakt-hero-bg {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.kontakt-hero-decoration {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.kontakt-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kontakt-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.3);
}

.kontakt-hero-icon svg {
    width: 36px;
    height: 36px;
}

.kontakt-hero-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.kontakt-hero-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 16px;
}

.kontakt-hero-text {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 32px;
}

.kontakt-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--green-dark);
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
    transition: all 0.3s;
}

.kontakt-hero-card:hover .kontakt-hero-cta {
    background: var(--black);
    color: white;
    gap: 16px;
}

.kontakt-hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.kontakt-hero-card:hover .kontakt-hero-cta svg {
    transform: translateX(4px);
}

/* Mini Cards Grid */
.kontakt-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kontakt-mini-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

a.kontakt-mini-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

a.kontakt-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

a.kontakt-mini-card:hover::before {
    transform: scaleX(1);
}

.kontakt-mini-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    color: var(--green-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

a.kontakt-mini-card:hover .kontakt-mini-icon {
    background: var(--green-primary);
    color: white;
    transform: scale(1.1);
}

.kontakt-mini-icon svg {
    width: 24px;
    height: 24px;
}

.kontakt-mini-content {
    flex-grow: 1;
}

.kontakt-mini-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.kontakt-mini-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.kontakt-mini-arrow {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: var(--gray-light);
    color: var(--gray-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

a.kontakt-mini-card:hover .kontakt-mini-arrow {
    background: var(--green-primary);
    color: white;
    transform: rotate(-45deg);
}

.kontakt-mini-arrow svg {
    width: 14px;
    height: 14px;
}

.kontakt-mini-info {
    background: var(--gray-light);
    cursor: default;
}

/* ============ TYPEWRITER ANIMATION ============ */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typewriter-cursor {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background: currentColor;
    margin-left: 8px;
    vertical-align: text-bottom;
    animation: blinkCursor 0.8s step-end infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.typewriter-cursor.active {
    opacity: 1;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============ FOOTER ============ */
footer {
    background: var(--black);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-box {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo {
    height: 56px;
    width: auto;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

footer ul a {
    color: rgba(255,255,255,0.65);
    transition: color 0.3s;
}

footer ul a:hover {
    color: var(--green-bright);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--green-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--green-bright);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .dozenten-inner,
    .cta-banner-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .prozess-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
    }

    .kontakt-hero-card {
        min-height: auto;
    }

    .feature-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    nav,
    .header-phone {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow);
    }

    nav.active ul {
        flex-direction: column;
        gap: 16px;
    }

    .prozess-grid,
    .feature-strip-inner,
    .footer-grid,
    .about-features,
    .kontakt-cards-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-hero-card {
        padding: 36px 28px;
    }

    section {
        padding: 70px 0;
    }

    .hero-slide {
        padding: 60px 0 60px;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
        font-size: 12px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-buttons {
        flex-direction: column;
    }

    .logo img {
        height: 48px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }
}
