.about-page {
    min-height: 100vh;
    background: #111;
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
}

.about-hero {
    position: relative;
    margin-top: 100px;
    padding: 80px 70px 70px;
    background:
        linear-gradient(rgba(16, 18, 20, 0.88), rgba(16, 18, 20, 0.95)),
        url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16, 18, 20, 0.95) 0%,
        rgba(16, 18, 20, 0.75) 50%,
        rgba(16, 18, 20, 0.55) 100%
    );
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.about-eyebrow {
    display: block;
    color: #d4af37;
    letter-spacing: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.about-line {
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 32px 0;
}

.about-hero-lead {
    font-size: 20px;
    color: #bdbdbd;
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
}

.about-content {
    padding: 70px 70px 90px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-intro p,
.about-block p,
.about-values-header > p {
    font-size: 17px;
    line-height: 1.85;
    color: #bdbdbd;
    margin: 0 0 24px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-block {
    margin-top: 64px;
    padding: 48px;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-block h2,
.about-values-header h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: 0.5px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-quote {
    position: relative;
    margin: 64px 0 0;
    padding: 48px 48px 48px 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(20, 20, 20, 0.95));
    border-left: 4px solid #d4af37;
    border-radius: 0 24px 24px 0;
}

.about-quote-icon {
    position: absolute;
    top: 28px;
    left: 20px;
    color: rgba(212, 175, 55, 0.35) !important;
    font-size: 48px !important;
}

.about-quote p {
    margin: 0;
    font-size: 20px;
    line-height: 1.75;
    color: #fff;
    font-weight: 500;
    font-style: italic;
}

.about-values {
    margin-top: 80px;
}

.about-values-header {
    max-width: 820px;
    margin-bottom: 40px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-value-card {
    padding: 36px 28px;
    text-align: center;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
}

.about-value-card .mud-icon-root {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #242424;
    color: #d4af37;
    margin: 0 auto 22px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.about-value-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.35;
}

.about-value-card p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.about-block--future {
    margin-top: 80px;
}

.about-footer {
    padding: 48px 70px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.95);
    text-align: center;
}

.about-footer-company {
    margin: 0 0 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-footer-tagline {
    margin: 0;
    color: #d4af37;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-hero {
        padding: 60px 30px 50px;
    }

    .about-content {
        padding: 50px 30px 70px;
    }

    .about-block {
        padding: 36px 28px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-quote {
        padding: 36px 28px 36px 40px;
    }

    .about-quote p {
        font-size: 18px;
    }

    .about-footer {
        padding: 40px 30px 50px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 75px;
        padding: 48px 20px 40px;
    }

    .about-eyebrow {
        letter-spacing: 3px;
        font-size: 12px;
    }

    .about-hero-lead {
        font-size: 17px;
    }

    .about-content {
        padding: 40px 20px 60px;
    }

    .about-block,
    .about-values {
        margin-top: 48px;
    }

    .about-block--future {
        margin-top: 56px;
    }

    .about-quote {
        margin-top: 48px;
        border-left: none;
        border-top: 4px solid #d4af37;
        border-radius: 20px;
        padding: 32px 24px;
    }

    .about-quote-icon {
        position: static;
        margin-bottom: 12px;
        font-size: 36px !important;
    }

    .about-footer {
        padding: 36px 20px 44px;
    }

    .about-footer-company {
        font-size: 15px;
        line-height: 1.5;
    }

    .about-footer-tagline {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-block h2,
    .about-values-header h2 {
        font-size: 22px;
    }

    .about-value-card h3 {
        font-size: 18px;
    }

    .about-quote p {
        font-size: 16px;
    }
}
