/* =========================================
   Über mich – Matmoe Modern
   Premium
   ========================================= */

.about-page {
    background: linear-gradient(180deg, #f7f9f7 0%, #ffffff 100%);
}

.about-page,
.about-page * {
    box-sizing: border-box;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page strong,
.about-page li {
    color: #111827;
}

.about-page p {
    color: #374151;
}

/* =========================================
   Section Header
   ========================================= */

.about-page .section-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-page .section-header h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-page .section-header p {
    margin: 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================
   Buttons
   ========================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.about-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--matmoe-primary, #90C027), var(--matmoe-primary-dark, #6F961D));
    border: 1px solid var(--matmoe-primary, #90C027);
    box-shadow: 0 16px 34px rgba(144,192,39,0.32);
}

.about-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #9ccd35, #6F961D);
    border-color: #7fad20;
    box-shadow: 0 22px 46px rgba(144,192,39,0.42);
}

.about-btn-secondary {
    color: #111827;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,0.10);
    box-shadow: 0 14px 30px rgba(17,24,39,0.08);
}

.about-btn-secondary:hover {
    color: #111827;
    border-color: rgba(144,192,39,0.45);
    box-shadow: 0 20px 42px rgba(17,24,39,0.12);
}

/* =========================================
   Hero
   ========================================= */

.about-hero {
    position: relative;
    padding: 142px 0 112px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.16), transparent 38%),
        radial-gradient(circle at bottom left, rgba(17,24,39,0.06), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #eef3ed 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: rgba(144,192,39,0.10);
    filter: blur(20px);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: 64px;
    align-items: center;
}

.about-hero-content {
    max-width: 860px;
}

.about-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--matmoe-primary, #90C027);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0 0 24px;
    color: #0b0d0a;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.about-hero h1 span {
    color: var(--matmoe-primary, #90C027);
}

.about-hero p {
    max-width: 760px;
    margin: 0 0 34px;
    color: #374151;
    font-size: 20px;
    line-height: 1.7;
}

.about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-media {
    width: 100%;
    max-width: 560px;
    justify-self: end;
}

.about-hero-image {
    width: 100%;
}

.about-hero-image .mm-image-card-img {
    width: 100%;
    height: auto;
    min-height: 560px;
    object-fit: cover;
}

/* =========================================
   Story
   ========================================= */

.about-story {
    padding: 110px 0;
    background: #ffffff;
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.about-story-content h2 {
    margin: 0 0 24px;
    color: #111827;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-story-content h2 span {
    color: var(--matmoe-primary, #90C027);
}

.about-story-content p {
    margin: 0 0 18px;
    color: #374151;
    font-size: 18px;
    line-height: 1.75;
}

.about-highlight-box {
    padding: 36px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.10), transparent 34%),
        #ffffff;
    border: 1px solid rgba(17,24,39,0.07);
    box-shadow: 0 24px 60px rgba(17,24,39,0.10);
}

.about-highlight-box strong {
    display: block;
    margin-bottom: 18px;
    color: #111827;
    font-size: 22px;
    line-height: 1.25;
}

.about-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-highlight-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
}

.about-highlight-box li:last-child {
    margin-bottom: 0;
}

.about-highlight-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--matmoe-primary, #90C027);
}

/* =========================================
   Experience
   ========================================= */

.about-experience {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.07), transparent 32%),
        linear-gradient(180deg, #f7f9f7 0%, #ffffff 100%);
}

.about-experience-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-experience-card {
    min-height: 230px;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,0.07);
    box-shadow: 0 16px 40px rgba(17,24,39,0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(144,192,39,0.40);
    box-shadow: 0 24px 58px rgba(17,24,39,0.11);
}

.about-experience-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--matmoe-primary, #90C027);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-experience-card h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
}

.about-experience-card p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

/* =========================================
   Services
   ========================================= */

.about-services {
    padding: 100px 0;
    background:
        radial-gradient(circle at bottom left, rgba(144,192,39,0.06), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
}

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

.about-service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 26px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,0.07);
    box-shadow: 0 16px 40px rgba(17,24,39,0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(144,192,39,0.40);
    box-shadow: 0 24px 58px rgba(17,24,39,0.11);
}

.about-service-card h3 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 24px;
    line-height: 1.2;
}

.about-service-card p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

.about-service-card span {
    margin-top: auto;
    padding-top: 24px;
    color: var(--matmoe-primary, #90C027);
    font-size: 15px;
    font-weight: 850;
}

/* =========================================
   Statement
   ========================================= */

.about-statement {
    padding: 110px 0;
    background:
        radial-gradient(circle at center, rgba(144,192,39,0.10), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f7f9f7 100%);
}

.about-statement-box {
    max-width: 940px;
    margin: 0 auto;
    padding: 62px 58px;
    border-radius: 34px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.10), transparent 34%),
        #ffffff;
    border: 1px solid rgba(17,24,39,0.07);
    box-shadow: 0 26px 70px rgba(17,24,39,0.10);
}

.about-statement-box h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-statement-box h2 span {
    color: var(--matmoe-primary, #90C027);
}

.about-statement-box p {
    max-width: 720px;
    margin: 0 auto;
    color: #374151;
    font-size: 18px;
    line-height: 1.75;
}

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

.about-final-cta {
    margin-top: 0;
}

.about-page .final-cta {
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.18), transparent 34%),
        linear-gradient(180deg, #0b0d0a 0%, #111827 100%);
}

.about-page .final-cta-box {
    background:
        radial-gradient(circle at top right, rgba(144,192,39,0.18), transparent 34%),
        linear-gradient(135deg, #111827 0%, #0b0d0a 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.about-page .final-cta-kicker {
    color: #90C027;
}

.about-page .final-cta h2,
.about-page .final-cta h2 span {
    color: #ffffff;
}

.about-page .final-cta p {
    color: rgba(255,255,255,0.82);
}

.about-page .final-cta .btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #90C027, #6F961D);
    box-shadow: 0 16px 34px rgba(144,192,39,0.34);
}

.about-page .final-cta .btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #9ccd35, #6F961D);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1080px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-hero-media {
        max-width: 560px;
        justify-self: start;
    }

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

@media (max-width: 980px) {
    .about-story-inner,
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

@media (max-width: 900px) {
    .about-hero-media {
        max-width: 100%;
        justify-self: stretch;
    }

    .about-hero-image .mm-image-card-img {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 96px 0 74px;
    }

    .about-hero h1 {
        letter-spacing: -0.035em;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn {
        width: 100%;
    }

    .about-story,
    .about-experience,
    .about-services,
    .about-statement {
        padding: 74px 0;
    }

    .about-experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-highlight-box,
    .about-statement-box,
    .about-service-card {
        padding: 36px 24px;
        border-radius: 26px;
    }

    .about-experience-card {
        min-height: auto;
        padding: 24px;
    }

    .about-hero-image .mm-image-card-img {
        min-height: 320px;
    }
}