/* ═══════════════════════════════════════════════════════
   Technologiecluster.css
   ═══════════════════════════════════════════════════════ */

:root {
    --accent: #128c46;
    --accent-dark: #0a5c2e;
    --dark: #1a1a1a;
    --muted: #555;
    --light: #f2f3f4;
    --gray-mid: #e0e0e0;
    --white: #ffffff;
    --pad: 70px;
}

/* ══ HERO ══ */
.tc-hero {
    background: var(--light);
    padding: 60px var(--pad) 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.tc-hero-inner { position: relative; z-index: 1; }

.tc-hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 20px;
}
.tc-hero-label::before {
    content: ''; width: 28px; height: 1.5px; background: var(--accent);
}

.tc-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; color: var(--dark);
    line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 20px; margin-top: 0;
}

.tc-hero-text {
    font-size: 0.92rem; color: #444;
    line-height: 1.7; max-width: 100%;
    padding-left: 1.25rem;
    border-left: 2px solid var(--accent);
}

/* ══ SECTION LABELS ══ */
.tc-section-label {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 0.75rem;
}
.tc-section-label::before {
    content: ''; width: 20px; height: 1.5px; background: var(--accent);
}

.tc-section-heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.2; color: var(--dark);
    margin-bottom: 1.5rem;
}

/* ══ LEISTUNGEN ══ */
.tc-leistungen {
    background: var(--white);
    padding: 56px var(--pad);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tc-leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tc-leistung-card {
    background: var(--light);
    border-radius: 14px;
    border-top: 3px solid var(--accent);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tc-leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.tc-leistung-card h3 {
    font-size: 0.92rem; font-weight: 800;
    color: var(--dark); margin-bottom: 8px;
    line-height: 1.3;
}

.tc-leistung-card p {
    font-size: 0.8rem; color: var(--muted);
    line-height: 1.65;
}

/* ══ AIRTABLE SEKTION ══ */
.tc-airtable {
    background: #e6e7e8;
    padding: 56px var(--pad);
}

.tc-airtable-intro {
    font-size: 0.92rem; color: var(--muted);
    line-height: 1.7; max-width: 100%;
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--accent);
}

.tc-iframe-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
    background: var(--white);
}

.tc-iframe-wrap iframe {
    display: block;
    width: 100%;
    border: none !important;
}

/* ══ CTA ══ */
.tc-cta {
    background: var(--accent);
    padding: 70px var(--pad);
    position: relative; overflow: hidden;
}
.tc-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 40% 60% at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 55%);
}
.tc-cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.tc-cta h2 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 800; color: var(--white); line-height: 1.2;
}
.tc-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

.btn-white {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--white); color: var(--accent);
    font-size: 0.82rem; font-weight: 700;
    text-decoration: none; padding: 13px 28px;
    border-radius: 8px; white-space: nowrap;
    transition: background 0.2s, transform 0.15s; flex-shrink: 0;
}
.btn-white:hover { background: #f0faf4; transform: translateY(-2px); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1400px) {
    :root { --pad: 40px; }
}
@media (max-width: 1024px) {
    .tc-leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --pad: 20px; }
    .tc-hero h1 { font-size: 1.6rem; }
    .tc-leistungen-grid { grid-template-columns: 1fr; }
    .tc-cta-inner { flex-direction: column; align-items: flex-start; }
}