/* ================= HERO ================= */

.about-hero {
    padding: 0px 60px 30px 60px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.55), transparent 35%), 
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.45), transparent 30%), 
        linear-gradient(135deg, #d7e4fb 0%, #e6efff 45%, #eef4ff 100%);
    box-shadow: var(--shadow-soft);
    margin: 0 20px;
}

.about-hero .container {
    max-width: 1645px;
}

.about-hero .row {
    min-height: 420px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 99, 216, 0.1);
    color: var(--brand, #2f63d8) !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.about-hero-subtitle {
    max-width: 700px;
    margin-top: 16px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

.left-side {
    padding-top: 90px;
}

.about-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.about-info-card {
    width: 100%;
    max-width: 460px;
    padding: 42px 46px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
}

.about-info-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 99, 216, 0.1);
    color: var(--brand, #2f63d8);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #173b7a;
    margin-bottom: 12px;
}

.about-info-card p {
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

/* ================= INTRO ================= */

.about-intro {
    padding: 80px 20px 40px;
}

.about-intro .container {
    max-width: 1500px;
}

.about-intro-card {
    padding: 70px 80px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.8), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 244, 255, 0.72));
    box-shadow: 0 28px 80px rgba(18, 63, 122, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.about-section-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 99, 216, 0.1);
    color: var(--brand, #2f63d8) !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-intro-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bs-heading-color);
    margin-bottom: 18px;
    max-width: 720px;
}

.about-intro-subtitle {
    max-width: 1500px;
    color: var(--color-text-soft);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-intro-text p {
    max-width: 1500px;
    color: var(--color-text-soft);
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 10px;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

/* ================= ARBEITSWEISE ================= */

.about-work {
    padding: 30px 0 40px;
}

.about-work .container {
    max-width: 1500px;
}

.about-work-head {
    max-width: 820px;
    margin-bottom: 38px;
}

.about-work-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bs-heading-color);
    margin-bottom: 14px;
}

.about-work-head > p:last-child {
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

.about-work-card {
    height: 100%;
    padding: 42px 44px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2f63d8, #6ea8ff);
    opacity: 0;
    transition: 0.25s ease;
}

.about-work-card:hover::before {
    opacity: 1;
}

.about-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-work-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(47, 99, 216, 0.1);
    color: var(--brand, #2f63d8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 22px;
}

.about-work-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #173b7a;
    margin-bottom: 12px;
}

.about-work-card p {
    color: var(--color-text-soft);
    line-height: 1.7;
    margin: 0;
}

/* ================= VALUES ================= */

.about-values {
    padding: 50px 0 60px;
}

.about-values .container {
    max-width: 1500px;
}

.about-values-card {
    padding: 70px 80px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.75), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.55), transparent 32%),
        linear-gradient(135deg, #d7e4fb 0%, #e6efff 45%, #eef4ff 100%);
    box-shadow: 0 28px 80px rgba(18, 63, 122, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.about-values-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.about-values-head h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-main-text, #123f82);
    margin-bottom: 18px;
}

.about-values-head p {
    color: #5f6f89;
    line-height: 1.75;
    margin: 0;
}

.about-value-box {
    height: 100%;
    padding: 34px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.about-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(47, 99, 216, 0.1);
    color: #2f63d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.about-value-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #173b7a;
    margin-bottom: 12px;
}

.about-value-box p {
    color: #5f6f89;
    line-height: 1.7;
    margin: 0;
}

/* ================= CTA ================= */

.about-cta {
    padding: 10px 0 40px;
}

.about-cta .container {
    max-width: 1500px;
}

.about-cta-card {
    text-align: center;
    padding: 80px 40px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.75), transparent 34%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.55), transparent 32%),
        linear-gradient(135deg, #d7e4fb 0%, #e6efff 45%, #eef4ff 100%);
    box-shadow: 0 28px 80px rgba(18, 63, 122, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.about-cta-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 99, 216, 0.1);
    color: #2f63d8;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-main-text, #123f82);
    margin-bottom: 18px;
}

.about-cta p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #5f6f89;
    line-height: 1.75;
}

@media (max-width: 700px) {

    .about-hero {
        margin: 0 10px;
        padding: 22px 18px 34px;
        border-radius: 24px;
    }

    .about-hero .container {
        width: 100%;
        padding: 0;
    }

    .about-hero .row {
        min-height: auto;
    }

    .left-side {
        padding-top: 18px;
        text-align: left;
    }

    .about-hero-right {
        padding-top: 28px;
    }

    .about-eyebrow,
    .about-section-eyebrow,
    .about-cta-eyebrow {
        font-size: 0.78rem !important;
        padding: 7px 12px;
        margin-bottom: 14px !important;
    }

    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.12;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .about-hero h1 br,
    .about-hero-subtitle br {
        display: none;
    }

    .about-hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 0;
        max-width: 100%;
    }

    .about-info-card {
        max-width: 100%;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .about-info-card h3 {
        font-size: 1.3rem;
    }

    .about-intro {
        padding: 34px 10px 24px;
    }

    .about-intro-card,
    .about-values-card,
    .about-cta-card {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .about-intro-card h2,
    .about-work-head h2,
    .about-values-head h2,
    .about-cta h2 {
        font-size: 1.8rem;
        line-height: 1.18;
    }

    .about-intro-subtitle,
    .about-intro-text p,
    .about-work-head > p:last-child,
    .about-values-head p,
    .about-cta p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .about-work {
        padding: 24px 10px 28px;
    }

    .about-work-head {
        margin-bottom: 24px;
    }

    .about-work-card,
    .about-value-box {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .about-values {
        padding: 24px 10px 32px;
    }

    .about-values-head {
        margin-bottom: 26px;
    }

    .about-cta {
        padding: 10px 10px 34px;
    }

    .about-cta .btn {
        width: 100%;
    }
}