/* ==================== ABOUT PAGE STYLE ==================== */

.about-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: var(--gradient-hero);
    overflow: hidden;
    text-align: center;
}

.about-hero .hero-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(17, 115, 212, 0.08);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--fg);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.about-hero .subtitle {
    font-size: 1.125rem;
    color: var(--muted-fg);
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 54rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: var(--bg);
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card .stat-num {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-lbl {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ==================== INTRO SECTION ==================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.intro-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--fg);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.intro-text p {
    font-size: 0.975rem;
    color: var(--muted-fg);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.intro-text .lead-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
    line-height: 1.6;
}

.intro-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1173d4 100%);
    color: #fff;
    padding: 3rem 2.25rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(17, 115, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    width: 15rem;
    height: 15rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -5rem;
    right: -5rem;
}

.visual-icon {
    font-size: 2.5rem;
    color: #93c5fd;
    margin-bottom: 1.5rem;
    display: block;
}

.visual-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.visual-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 500;
}

/* ==================== PRODUCTS SHOWCASE ==================== */
.about-products {
    background: var(--muted);
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .products-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.showcase-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(17, 115, 212, 0.2);
}

.showcase-img-wrap {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #f8fafc;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img-wrap img {
    transform: scale(1.04);
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-fg);
    font-size: 3rem;
}

.showcase-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.showcase-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.showcase-body p {
    font-size: 0.875rem;
    color: var(--muted-fg);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-weight: 500;
}

.showcase-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.25s ease;
}

.showcase-card:hover .showcase-btn {
    color: var(--primary-hover);
}

.showcase-card:hover .showcase-btn i {
    transform: translateX(3px);
}

/* ==================== VALUES SECTION ==================== */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 115, 212, 0.25);
    box-shadow: 0 16px 36px rgba(17, 115, 212, 0.05);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(17, 115, 212, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--primary-fg);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--muted-fg);
    line-height: 1.6;
    font-weight: 500;
}

/* ==================== TIMELINE SECTION ==================== */
.journey-section {
    background: var(--bg);
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 48rem;
    margin: 3rem auto 0;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border);
    top: 1rem;
    bottom: 1rem;
    left: 1.25rem;
}

@media (min-width: 640px) {
    .journey-timeline::before {
        left: 50%;
        margin-left: -1px;
    }
}

.journey-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 3rem;
    position: relative;
}

@media (min-width: 640px) {
    .journey-item {
        flex-direction: row;
        padding-left: 0;
        width: 50%;
    }

    .journey-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 3rem;
        text-align: right;
        justify-content: flex-end;
    }

    .journey-item:nth-child(even) {
        align-self: flex-end;
        padding-left: 3rem;
    }
}

.journey-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(17, 115, 212, 0.08);
    border-radius: 50px;
    width: fit-content;
    height: fit-content;
}

@media (min-width: 640px) {
    .journey-year {
        position: absolute;
        top: 1.5rem;
    }

    .journey-item:nth-child(odd) .journey-year {
        right: -5.5rem;
        transform: translateX(50%);
    }

    .journey-item:nth-child(even) .journey-year {
        left: -5.5rem;
        transform: translateX(-50%);
    }
}

.journey-content {
    background: var(--muted);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    flex-grow: 1;
}

.journey-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.journey-content p {
    font-size: 0.9rem;
    color: var(--muted-fg);
    line-height: 1.6;
    font-weight: 500;
}

/* ==================== EXECUTIVE QUOTE ==================== */
.director-section {
    background: var(--muted);
}

.director-quote-box {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    background: var(--bg);
    padding: 3.5rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
}

.director-quote-box .quote-icon {
    font-size: 2rem;
    color: rgba(17, 115, 212, 0.2);
    margin-bottom: 1.5rem;
}

.director-quote-box .quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--fg);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 600;
}

.quote-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.quote-author span {
    font-size: 0.85rem;
    color: var(--muted-fg);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.cta-card {
    max-width: 58rem;
    margin: 0 auto;
    text-align: center;
    background: var(--bg);
    padding: 4rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(17, 115, 212, 0.1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.cta-card h2 {
    font-size: 2.25rem;
    color: var(--fg);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.05rem;
    color: var(--muted-fg);
    line-height: 1.7;
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn {
    min-width: 13rem;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-blob-1 {
    width: 20rem;
    height: 20rem;
    background: rgba(17, 115, 212, 0.12);
    top: -5rem;
    left: -5rem;
}

.hero-blob-2 {
    width: 18rem;
    height: 18rem;
    background: rgba(147, 197, 253, 0.1);
    bottom: -3rem;
    right: -3rem;
}