/*
|--------------------------------------------------------------------------
| Über-uns-Seite
|--------------------------------------------------------------------------
|
| Datei:
| /assets/css/about-us.css
|
| Enthält ausschließlich Styles für die Über-uns-Seite.
|
*/


/*
|--------------------------------------------------------------------------
| Allgemeine Seitenbereiche
|--------------------------------------------------------------------------
*/

.about-intro,
.about-section,
.about-values,
.about-services,
.about-custom,
.about-process,
.about-contact {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}


/*
|--------------------------------------------------------------------------
| Abschnittsüberschriften
|--------------------------------------------------------------------------
*/

.about-section-head {
    max-width: 820px;
    margin-bottom: 28px;
}

.about-section-head h2,
.about-intro h2,
.about-custom h2,
.about-contact h2 {
    margin: 0;
    color: var(--text, #0f1726);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--blue, #0077ff);
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--blue, #0077ff),
        var(--violet, #6b5cff)
    );
}


/*
|--------------------------------------------------------------------------
| Einleitung
|--------------------------------------------------------------------------
*/

.about-intro {
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(20, 70, 120, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(107, 92, 255, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(0, 119, 255, 0.1),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 251, 255, 0.94)
        );
    box-shadow:
        0 24px 70px rgba(20, 80, 140, 0.08);
}

.about-intro::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(0, 119, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.about-intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-intro h2 {
    max-width: 760px;
    margin-bottom: 22px;
}

.about-lead {
    max-width: 860px;
    margin: 0 0 18px;
    color: var(--text, #0f1726);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.75;
    font-weight: 600;
}

.about-intro p:not(.about-lead) {
    max-width: 820px;
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 1rem;
    line-height: 1.8;
}


/*
|--------------------------------------------------------------------------
| Standard-Inhaltsbereich
|--------------------------------------------------------------------------
*/

.about-section {
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(20, 70, 120, 0.09);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 18px 50px rgba(20, 80, 140, 0.06);
}

.about-text {
    max-width: 920px;
}

.about-text p {
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 1rem;
    line-height: 1.82;
}

.about-text p + p {
    margin-top: 16px;
}


/*
|--------------------------------------------------------------------------
| Werte
|--------------------------------------------------------------------------
*/

.about-values {
    padding: clamp(30px, 4vw, 46px);
    border-radius: 30px;
    background:
        linear-gradient(
            180deg,
            rgba(247, 251, 255, 0.92),
            rgba(239, 246, 253, 0.84)
        );
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-value-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(20, 70, 120, 0.09);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 251, 255, 0.95)
        );
    box-shadow:
        0 18px 42px rgba(20, 80, 140, 0.07);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 119, 255, 0.18);
    box-shadow:
        0 24px 54px rgba(20, 80, 140, 0.11);
}

.about-value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    margin-bottom: 18px;
    padding: 0 12px;
    border: 1px solid rgba(0, 119, 255, 0.12);
    border-radius: 999px;
    background: rgba(0, 119, 255, 0.07);
    color: var(--blue, #0077ff);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.05em;
}

.about-value-card h3 {
    margin: 0 0 12px;
    color: var(--text, #0f1726);
    font-size: 1.14rem;
    line-height: 1.3;
    font-weight: 800;
}

.about-value-card p {
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 0.96rem;
    line-height: 1.72;
}


/*
|--------------------------------------------------------------------------
| Leistungsübersicht
|--------------------------------------------------------------------------
*/

.about-services {
    overflow: hidden;
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(20, 70, 120, 0.09);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 119, 255, 0.09),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.9);
    box-shadow:
        0 18px 50px rgba(20, 80, 140, 0.06);
}

.about-services-content {
    max-width: 980px;
}

.about-services p {
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 1rem;
    line-height: 1.8;
}

.about-services p + p {
    margin-top: 18px;
}

.about-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.about-service-list li {
    position: relative;
    min-width: 0;
    padding: 15px 18px 15px 46px;
    border: 1px solid rgba(20, 70, 120, 0.08);
    border-radius: 16px;
    background: rgba(247, 251, 255, 0.82);
    color: var(--text, #0f1726);
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 650;
}

.about-service-list li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.1);
    color: var(--blue, #0077ff);
    font-size: 0.75rem;
    font-weight: 900;
    transform: translateY(-50%);
}


/*
|--------------------------------------------------------------------------
| Individuelle Entwicklung
|--------------------------------------------------------------------------
*/

.about-custom {
    padding: 1px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 119, 255, 0.24),
            rgba(107, 92, 255, 0.16),
            rgba(20, 70, 120, 0.08)
        );
}

.about-custom-box {
    padding: clamp(30px, 5vw, 52px);
    border-radius: 29px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(246, 250, 255, 0.97)
        );
}

.about-custom h2 {
    max-width: 760px;
    margin-bottom: 22px;
}

.about-custom p {
    max-width: 900px;
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 1rem;
    line-height: 1.8;
}

.about-custom p + p {
    margin-top: 16px;
}

.about-highlight {
    position: relative;
    margin-top: 28px !important;
    padding: 20px 22px 20px 24px;
    border: 1px solid rgba(0, 119, 255, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 119, 255, 0.07),
            rgba(107, 92, 255, 0.05)
        );
    color: var(--text, #0f1726) !important;
    font-weight: 750;
}

.about-highlight::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background:
        linear-gradient(
            180deg,
            var(--blue, #0077ff),
            var(--violet, #6b5cff)
        );
}


/*
|--------------------------------------------------------------------------
| Arbeitsablauf
|--------------------------------------------------------------------------
*/

.about-process {
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(20, 70, 120, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-process-item {
    position: relative;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(20, 70, 120, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 251, 255, 0.92)
        );
}

.about-process-item > span {
    display: block;
    margin-bottom: 28px;
    color: rgba(0, 119, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.about-process-item h3 {
    margin: 0 0 10px;
    color: var(--text, #0f1726);
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
}

.about-process-item p {
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 0.92rem;
    line-height: 1.68;
}


/*
|--------------------------------------------------------------------------
| Verbindungsline zwischen Prozessschritten
|--------------------------------------------------------------------------
*/

.about-process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -12px;
    z-index: 2;
    width: 22px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 119, 255, 0.28),
            rgba(107, 92, 255, 0.12)
        );
}


/*
|--------------------------------------------------------------------------
| Kontakt / Call-to-Action
|--------------------------------------------------------------------------
*/

.about-contact {
    overflow: hidden;
    padding: 1px;
    border-radius: 30px;
    background:
        linear-gradient(
            130deg,
            rgba(0, 119, 255, 0.65),
            rgba(107, 92, 255, 0.45)
        );
    box-shadow:
        0 24px 60px rgba(20, 80, 140, 0.12);
}

.about-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: clamp(30px, 5vw, 52px);
    border-radius: 29px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 119, 255, 0.11),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(246, 250, 255, 0.97)
        );
}

.about-contact-content {
    max-width: 760px;
}

.about-contact h2 {
    margin-bottom: 18px;
}

.about-contact p {
    margin: 0;
    color: var(--muted, #66788f);
    font-size: 1rem;
    line-height: 1.75;
}

.about-contact p + p {
    margin-top: 10px;
}

.about-contact-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
    min-width: 190px;
}


/*
|--------------------------------------------------------------------------
| Buttons der Über-uns-Seite
|--------------------------------------------------------------------------
*/

.about-contact-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 750;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.about-contact-actions .btn:hover {
    transform: translateY(-2px);
}

.about-contact-actions .btn-primary {
    border-color: var(--blue, #0077ff);
    background:
        linear-gradient(
            135deg,
            var(--blue, #0077ff),
            #258bff
        );
    color: #ffffff;
    box-shadow:
        0 12px 28px rgba(0, 119, 255, 0.22);
}

.about-contact-actions .btn-primary:hover {
    box-shadow:
        0 16px 34px rgba(0, 119, 255, 0.28);
}

.about-contact-actions .btn-secondary {
    border-color: rgba(20, 70, 120, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text, #0f1726);
}

.about-contact-actions .btn-secondary:hover {
    border-color: rgba(0, 119, 255, 0.22);
    background: #ffffff;
}


/*
|--------------------------------------------------------------------------
| Powered-by-Bereich
|--------------------------------------------------------------------------
*/

.powered-by {
    margin-top: 18px;
    text-align: center;
}

.powered-by a {
    color: var(--muted, #66788f);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.18s ease;
}

.powered-by a:hover {
    color: var(--blue, #0077ff);
}


/*
|--------------------------------------------------------------------------
| Responsive – bis 1100px
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {

    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-process-item::after {
        display: none;
    }

    .about-contact-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-contact-actions {
        flex-direction: row;
        width: 100%;
        min-width: 0;
    }

    .about-contact-actions .btn {
        flex: 1 1 0;
    }
}


/*
|--------------------------------------------------------------------------
| Responsive – bis 820px
|--------------------------------------------------------------------------
*/

@media (max-width: 820px) {

    .about-intro,
    .about-section,
    .about-values,
    .about-services,
    .about-custom,
    .about-process,
    .about-contact {
        margin-bottom: 22px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-service-list {
        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| Responsive – bis 680px
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {

    .about-intro {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .about-section,
    .about-values,
    .about-services,
    .about-process {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .about-custom,
    .about-contact {
        border-radius: 24px;
    }

    .about-custom-box,
    .about-contact-box {
        padding: 26px 22px;
        border-radius: 23px;
    }

    .about-section-head {
        margin-bottom: 22px;
    }

    .about-section-head h2,
    .about-intro h2,
    .about-custom h2,
    .about-contact h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .about-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-value-card {
        padding: 22px;
        border-radius: 20px;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-process-item {
        padding: 22px;
        border-radius: 19px;
    }

    .about-process-item > span {
        margin-bottom: 18px;
    }

    .about-contact-actions {
        flex-direction: column;
    }

    .about-contact-actions .btn {
        width: 100%;
    }
}


/*
|--------------------------------------------------------------------------
| Responsive – sehr kleine Displays
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {

    .about-intro,
    .about-section,
    .about-values,
    .about-services,
    .about-process {
        padding: 22px 18px;
    }

    .about-custom-box,
    .about-contact-box {
        padding: 22px 18px;
    }

    .about-value-card,
    .about-process-item {
        padding: 20px 18px;
    }

    .about-service-list li {
        padding-top: 14px;
        padding-right: 14px;
        padding-bottom: 14px;
        padding-left: 43px;
    }
}


/*
|--------------------------------------------------------------------------
| Reduzierte Animationen
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {

    .about-value-card,
    .about-contact-actions .btn,
    .powered-by a {
        transition: none;
    }

    .about-value-card:hover,
    .about-contact-actions .btn:hover {
        transform: none;
    }
}