/* ═══════════════════════════════════════════════════════════════════
   ABOUT US PAGE — Dark Professional Theme (matching Image Generation)
   ═══════════════════════════════════════════════════════════════════ */

* {
    box-sizing: border-box;
}

/* ──── HERO SECTION ──── */
.about-hero-section {
    background: #08060f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255, 48, 96, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(96, 48, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    text-align: left;
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.about-title {
    margin: 0 0 16px;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 30%, #ff8fb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    margin: 0 0 20px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.about-tagline {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 650px;
}

/* ──── MAIN PAGE ──── */
.about-page {
    background: #0f0c1a;
    padding: 80px 0;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ──── INTRO SECTION ──── */
.about-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 80, 120, 0.22);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.about-intro h2 {
    margin: 0 0 24px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.about-intro p {
    margin: 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
}

/* ──── MISSION/VISION CTA CARDS ──── */
.about-cta-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.about-cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 80, 120, 0.2);
    border-radius: 18px;
    padding: 44px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.about-cta-card:hover {
    border-color: rgba(255, 80, 120, 0.5);
    box-shadow: 0 16px 40px rgba(255, 48, 96, 0.15);
    transform: translateY(-8px);
    background: rgba(255, 80, 120, 0.08);
}

.about-cta-card h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.about-cta-card p {
    margin: 0;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.75;
}

/* ──── METRICS SECTION ──── */
.about-metrics-section {
    margin-bottom: 80px;
}

.about-metrics-section h2 {
    margin: 0 0 48px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 80, 120, 0.2);
    border-radius: 16px;
    padding: 38px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.metric-card:hover {
    border-color: rgba(255, 80, 120, 0.5);
    box-shadow: 0 12px 32px rgba(255, 48, 96, 0.15);
    transform: translateY(-6px);
}

.metric-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ff8fb3;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* ──── VALUES & EXPERTISE SECTIONS ──── */
.about-values-section,
.about-expertise-section,
.about-team-section,
.about-offerings-section {
    margin-bottom: 80px;
}

.about-values-section h2,
.about-expertise-section h2,
.about-team-section h2,
.about-offerings-section h2 {
    margin: 0 0 48px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.value-card,
.expertise-card,
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 80, 120, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.value-card:hover,
.expertise-card:hover,
.about-card:hover {
    border-color: rgba(255, 80, 120, 0.5);
    box-shadow: 0 16px 40px rgba(255, 48, 96, 0.15);
    transform: translateY(-8px);
    background: rgba(255, 80, 120, 0.06);
}

.value-icon,
.expertise-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: inline-block;
}

.value-card h3,
.expertise-card h3,
.about-card h4 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    font-weight: 750;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.value-card p,
.expertise-card p,
.about-card p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

/* ──── GRID LAYOUTS ──── */
.about-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* ──── OFFERING LIST ──── */
.offering-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-list li {
    padding: 8px 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.52);
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.offering-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff8fb3;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ──── FOOTER CTA ──── */
.about-cta-footer {
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255, 48, 96, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(96, 48, 255, 0.1) 0%, transparent 60%);
    border: 1px solid rgba(255, 80, 120, 0.25);
    border-radius: 22px;
    padding: 60px 50px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(255, 48, 96, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.about-cta-footer h2 {
    margin: 0 0 14px;
    font-size: 1.9rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.about-cta-footer p {
    margin: 0 0 32px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.about-btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff3060, #ff609a);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 48, 96, 0.4);
    letter-spacing: 0.5px;
    border: none;
}

.about-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 48, 96, 0.5);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 980px) {
    .about-cta-block,
    .about-grid-2 {
        grid-template-columns: 1fr;
    }

    .about-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-metrics-section h2,
    .about-values-section h2,
    .about-expertise-section h2,
    .about-team-section h2,
    .about-offerings-section h2 {
        font-size: 1.8rem;
    }

    .about-cta-card {
        padding: 36px;
    }

    .metric-card {
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0;
        min-height: 60vh;
    }

    .about-page {
        padding: 60px 0;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-intro {
        margin-bottom: 60px;
        padding: 35px;
    }

    .about-intro h2 {
        font-size: 1.8rem;
    }

    .about-cta-block,
    .about-metrics-section,
    .about-values-section,
    .about-expertise-section,
    .about-team-section,
    .about-offerings-section {
        margin-bottom: 60px;
    }

    .about-cta-footer {
        padding: 45px 30px;
        margin-top: 70px;
    }

    .about-cta-footer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .about-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-hero-content {
        padding: 0 16px;
        text-align: left;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-tagline {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 12px;
    }

    .about-metrics-grid,
    .about-grid-3,
    .about-grid-2 {
        grid-template-columns: 1fr;
    }

    .about-cta-card {
        padding: 28px;
    }

    .about-values-section h2,
    .about-expertise-section h2,
    .about-team-section h2,
    .about-offerings-section h2,
    .about-metrics-section h2 {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .value-icon,
    .expertise-icon {
        font-size: 2.2rem;
    }

    .value-card h3,
    .expertise-card h3,
    .about-card h4 {
        font-size: 1rem;
    }

    .about-cta-footer {
        padding: 35px 20px;
        margin-top: 60px;
        border-radius: 16px;
    }

    .about-cta-footer h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .about-cta-footer p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .about-btn-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}
