/* ─── Teraprint Static Pages (Unternehmen, Über uns) ─── */

.tp-page {
    font-family: 'Roboto', sans-serif;
    color: var(--tp-dark, #5C5B5B);
    line-height: 1.6;
}

.tp-page h1,
.tp-page h2,
.tp-page h3,
.tp-page h4 {
    font-weight: 700;
    margin-top: 0;
}

.tp-page h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.tp-page h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tp-page h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--tp-blue, #337ab7);
    margin-top: 10px;
}

.tp-page .lead {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    font-weight: 300;
}

/* ─── Container ─── */
.tp-page .tp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tp-page .section-spacer {
    padding: 80px 0;
}

/* ─── Hero ─── */
.tp-page .tp-hero {
    background: linear-gradient(to right, #f8f9fa 50%, #fff 50%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tp-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tp-page .hero-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid var(--tp-orange, #f36f21);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tp-page .hero-tag {
    font-weight: 700;
    color: var(--tp-orange, #f36f21);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Timeline / History ─── */
.tp-page .timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.tp-page .history-card {
    padding-right: 20px;
}

.tp-page .year-badge {
    font-size: 3rem;
    font-weight: 900;
    color: #eee;
    line-height: 1;
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
}

.tp-page .history-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    color: var(--tp-blue, #337ab7);
}

/* ─── USP Section ─── */
.tp-page .usp-section {
    background-color: #f4f4f4;
}

.tp-page .usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tp-page .usp-item {
    padding: 20px 0;
}

.tp-page .usp-icon {
    font-size: 2.5rem;
    color: var(--tp-orange, #f36f21);
    margin-bottom: 20px;
}

.tp-page .usp-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ─── Quote Banner ─── */
.tp-page .quote-banner {
    background: var(--tp-blue, #337ab7);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.tp-page .quote-text {
    font-size: 2rem;
    font-weight: 700;
}

.tp-page .quote-sub {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* ─── Future / Vision ─── */
.tp-page .future-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.tp-page .future-img {
    width: 100%;
}

.tp-page .future-tag {
    font-weight: 700;
    color: var(--tp-orange, #f36f21);
    letter-spacing: 1px;
}

.tp-page .check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tp-page .check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-weight: 500;
}

.tp-page .check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--tp-orange, #f36f21);
}

/* ─── Page Footer ─── */
.tp-page .tp-page-footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.tp-page .tp-page-footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .tp-page .hero-grid,
    .tp-page .timeline-grid,
    .tp-page .usp-grid,
    .tp-page .future-grid {
        grid-template-columns: 1fr;
    }

    .tp-page .tp-hero {
        background: #f8f9fa;
    }

    .tp-page h1 {
        font-size: 2.5rem;
    }
}
