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

/* --- Hero --- */
.about-hero {
    background:
        radial-gradient(circle at top right, rgba(107, 140, 255, 0.22), transparent 30%),
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.about-hero::before {
    width: 360px;
    height: 360px;
    top: -150px;
    right: -90px;
}
.about-hero::after {
    width: 240px;
    height: 240px;
    left: -80px;
    bottom: -100px;
}
.about-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.about-hero-content {
    flex: 1;
    max-width: 620px;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.about-hero-title span {
    background: linear-gradient(90deg, #6b8cff, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    background-clip: text;
}
.about-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 28px;
}
.about-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 152px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.about-hero-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}
.about-hero-btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(8, 21, 74, 0.28);
}
.about-hero-btn-primary:hover {
    color: var(--primary-dark);
}
.about-hero-btn-outline {
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.about-hero-btn-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.about-hero-stat {
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.about-hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.about-hero-stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
}
.about-hero-image {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

/* --- Section common --- */
.about-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.about-section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

/* --- Story --- */
.about-story {
    padding: 80px 0;
    background: #fff;
}
.about-story-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-story-left {
    flex: 1;
    max-width: 540px;
}
.about-story-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.about-story-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}
.about-story-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}
.about-story-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-story-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
}
.about-story-frame::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: var(--primary);
    z-index: 0;
}
.about-story-frame::after {
    display: none;
}
.about-story-frame img {
    position: relative;
    z-index: 1;
    width: calc(100% - 28px);
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 14px;
}

/* --- Vision & Mission --- */
.about-vision-mission {
    padding: 60px 0;
    background: #fff;
}
.about-vm-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}
.about-vm-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.about-vm-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.about-vm-content {
    position: absolute;
    z-index: 2;
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31,38,135,0.37);
    padding: 30px 40px;
    width: 50%;
}
.about-vm-content h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.about-vm-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}
.about-vm-content p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: rgba(255,255,255,0.9);
}
.about-vm-left {
    left: 4%;
    top: 15%;
}
.about-vm-right {
    right: 4%;
    bottom: 10%;
}

/* --- Values --- */
.about-values {
    padding: 80px 0 40px;
    background: #fcfcfc;
}
.about-values-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}
.about-values-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-values-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about-values-accent {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.about-values-desc {
    font-size: 16px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.about-values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px -4px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    width: calc(33.333% - 22px);
}
.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13,49,172,0.1);
    border-color: #e0e7ff;
}
.about-value-num {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 0 auto 16px;
    width: fit-content;
}
.about-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.4;
}
.about-value-card p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

/* --- Marquee --- */
.about-marquee {
    padding: 60px 0;
    background: var(--primary-dark);
    overflow: hidden;
    text-align: center;
}
.about-marquee-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    padding: 0 15px;
}
.about-marquee-track {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
}
.about-marquee-wrap {
    display: inline-flex;
    gap: 0;
    animation: marqueeLeft 20s linear infinite;
}
.about-marquee-right .about-marquee-wrap {
    animation: marqueeRight 20s linear infinite;
}
.about-marquee-wrap span {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s;
}
.about-marquee-wrap span:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.about-marquee-action {
    margin-top: 36px;
}
.about-marquee-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-marquee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --- Clients --- */
.about-clients {
    padding: 80px 0;
    background: #fff;
}
.about-clients-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.about-clients-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.about-clients-highlight {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.about-clients-desc {
    font-size: 16px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.about-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.about-client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}
.about-client-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.about-client-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Slider (hidden on desktop) */
.about-clients-slider { display: none; }
.about-clients-slider-track {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 12px;
}
.about-clients-slider-wrap {
    display: inline-flex;
    gap: 12px;
    animation: clientsSlideLeft 25s linear infinite;
}
.about-clients-slider-right .about-clients-slider-wrap {
    animation: clientsSlideRight 25s linear infinite;
}
.about-client-slide {
    flex-shrink: 0;
    width: 130px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.about-client-slide img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@keyframes clientsSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes clientsSlideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --- Process --- */
.about-process {
    padding: 80px 0;
    background: var(--bg-subtle);
}
.about-process-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}
.about-process-header {
    text-align: center;
    margin-bottom: 48px;
}
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-process-step {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13,49,172,0.1);
}
.about-process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}
.about-process-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.about-process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- CTA --- */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: #fff;
}
.about-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 15px;
}
.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
}
.about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}
.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-cta-btn:hover {
    transform: translateY(-2px);
}
.about-cta-btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-cta-btn-primary:hover {
    color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.about-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.about-cta-btn-outline:hover {
    border-color: #fff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    /* Hero */
    .about-hero-inner {
        flex-direction: column;
        gap: 30px;
    }
    .about-hero-content {
        width: 100%;
        max-width: 100%;
    }
    .about-hero-image {
        flex: none;
        width: 100%;
        min-height: 200px;
    }
    .about-hero-title { font-size: 36px; }
    .about-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    /* Story */
    .about-story-inner {
        flex-direction: column;
        gap: 30px;
    }
    .about-story-left { max-width: 100%; }
    .about-story-title { font-size: 30px; }
    .about-story-frame::before { height: 60%; }

    /* Vision Mission */
    .about-vm-card { aspect-ratio: auto; }
    .about-vm-bg { position: relative; width: 100%; height: auto; }
    .about-vm-content {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--primary-dark);
        padding: 28px 24px;
        text-align: center;
    }
    .about-vm-content h2 { font-size: 24px; }
    .about-vm-divider { width: 60px; margin: 0 auto 15px; }

    /* Values */
    .about-value-card { width: calc(50% - 16px); }
    .about-values-title { font-size: 26px; }

    /* Marquee */
    .about-marquee-title { font-size: 22px; }
    .about-marquee-wrap span { padding: 10px 20px; font-size: 14px; margin: 0 6px; }

    /* Clients */
    .about-clients-grid { grid-template-columns: repeat(3, 1fr); }
    .about-client-item { height: 90px; padding: 1rem; }
    .about-client-item img { max-height: 50px; }
    .about-clients-title { font-size: 26px; }

    /* General */
    .about-section-title { font-size: 28px; }
    .about-cta h2 { font-size: 26px; }
}

@media (max-width: 480px) {
    /* Hero */
    .about-hero { padding: 40px 0 30px; }
    .about-hero-inner { gap: 20px; }
    .about-hero-image { min-height: 150px; display: none; }
    .about-hero-title { font-size: 24px; }
    .about-hero-desc { font-size: 14px; margin-bottom: 24px; }
    .about-hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 14px; }
    .about-hero-actions { flex-direction: column; margin-bottom: 24px; }
    .about-hero-btn { width: 100%; }
    .about-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .about-hero-stat-num { font-size: 24px; }
    .about-hero-stat-label { font-size: 12px; }

    /* Story */
    .about-story { padding: 40px 0; }
    .about-story-tag { font-size: 12px; }
    .about-story-title { font-size: 24px; margin-bottom: 16px; }
    .about-story-desc { font-size: 14px; line-height: 1.7; }
    .about-story-frame { max-width: 100%; }
    .about-story-frame::before { height: 50%; }
    .about-story-frame img { width: calc(100% - 20px); padding-bottom: 10px; }

    /* Vision Mission */
    .about-vision-mission { padding: 0; }
    .about-vm-inner { padding: 0; }
    .about-vm-content { padding: 24px 20px; }
    .about-vm-content h2 { font-size: 20px; margin-bottom: 10px; }
    .about-vm-content p { font-size: 13px; }

    /* Values */
    .about-values { padding: 40px 0; }
    .about-values-title { font-size: 24px; }
    .about-values-desc { font-size: 14px; margin-bottom: 32px; }
    .about-values-grid { gap: 20px; }
    .about-value-card {
        width: 100%;
        padding: 28px 20px;
    }
    .about-value-num { font-size: 24px; }
    .about-value-card h3 { font-size: 16px; }
    .about-value-card p { font-size: 13px; }

    /* Marquee */
    .about-marquee { padding: 40px 0; }
    .about-marquee-title { font-size: 20px; margin-bottom: 24px; padding: 0 10px; }
    .about-marquee-wrap span { padding: 8px 16px; font-size: 13px; margin: 0 5px; }
    .about-marquee-track { margin-bottom: 12px; }
    .about-marquee-action { margin-top: 24px; }
    .about-marquee-btn { padding: 12px 28px; font-size: 14px; }

    /* Clients - switch to slider on mobile */
    .about-clients { padding: 40px 0; }
    .about-clients-title { font-size: 22px; }
    .about-clients-desc { font-size: 14px; margin-bottom: 24px; }
    .about-clients-grid { display: none; }
    .about-clients-slider { display: block; }

    /* CTA */
    .about-cta { padding: 40px 0; }
    .about-cta h2 { font-size: 22px; }
    .about-cta p { font-size: 14px; margin-bottom: 24px; }
    .about-cta-btn { padding: 12px 24px; font-size: 14px; }
    .about-cta-actions { flex-direction: column; align-items: center; }

    /* General */
    .about-section-title { font-size: 22px; }
    .about-section-tag { font-size: 11px; }
}
