/* VehiLink About Page — Clean White Theme */

body.about-page {
    background: #ffffff;
    color: #475569;
}

body.about-page .site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

body.about-page .site-footer {
    border-top: 1px solid #e2e8f0;
}

/* ── Shared ───────────────────────────────────────────────── */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff0055;
    background: #fff5f8;
    border: 1px solid #ffd6e7;
    margin-bottom: 16px;
}

.about-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.about-section-head-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.about-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-section-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: #ff0055;
    border: 2px solid #ff0055;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 0, 85, 0.25);
    background: #e6004d;
    color: #fff;
}

.about-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    border: 2px solid #e2e8f0;
    transition: all 0.25s ease;
}

.about-btn-outline:hover {
    border-color: #ff0055;
    color: #ff0055;
}

.about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-reveal.about-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-delay-1 { transition-delay: 0.1s; }
.about-reveal-delay-2 { transition-delay: 0.2s; }
.about-reveal-delay-3 { transition-delay: 0.3s; }

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
    padding: 64px 0 48px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: #0f172a;
}

.about-hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #64748b;
    max-width: 520px;
    margin-bottom: 28px;
}

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

.about-hero-media {
    position: relative;
    min-height: 380px;
}

.about-hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.12);
    animation: aboutFloatSoft 6s ease-in-out infinite;
}

.about-hero-img-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -24px;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #ffffff;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    animation: aboutFloatSoft 5s ease-in-out infinite reverse;
}

.about-hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-float-card {
    position: absolute;
    top: 24px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    animation: aboutFloatSoft 4s ease-in-out infinite;
}

.about-hero-float-card i {
    font-size: 22px;
    color: #ff0055;
}

.about-hero-float-card strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
}

.about-hero-float-card span {
    font-size: 11px;
    color: #64748b;
}

@keyframes aboutFloatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Stats ────────────────────────────────────────────────── */
.about-stats {
    padding: 48px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

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

.about-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff0055;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-num::after {
    content: '+';
    font-size: 1.1rem;
    opacity: 0.7;
}

.about-stat-num.no-plus::after {
    content: none;
}

.about-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* ── Vision & Mission ─────────────────────────────────────── */
.about-vm {
    padding: 80px 0;
    background: #ffffff;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-vm-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.1);
}

.about-vm-img {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.about-vm-img img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.about-vm-icon-wrap {
    background: linear-gradient(135deg, #fff5f8 0%, #fdf2f8 100%);
}

.about-vm-big-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: #ffffff;
    border: 2px solid #ffd6e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #ff0055;
    box-shadow: 0 16px 32px rgba(255, 0, 85, 0.12);
    animation: aboutVmIconPulse 3s ease-in-out infinite;
}

@keyframes aboutVmIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 16px 32px rgba(255, 0, 85, 0.12); }
    50% { transform: scale(1.06); box-shadow: 0 20px 40px rgba(255, 0, 85, 0.2); }
}

.about-vm-body {
    padding: 28px 32px 32px;
}

.about-vm-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-vm-body h3 i {
    color: #ff0055;
    font-size: 18px;
}

.about-vm-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* ── Story split ──────────────────────────────────────────── */
.about-story {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.about-story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-story-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.1);
}

.about-story-icon-panel {
    background: linear-gradient(145deg, #ffffff 0%, #fff5f8 50%, #fdf2f8 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-icon-scene {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 0, 85, 0.15);
    animation: aboutStoryRingSpin 20s linear infinite;
}

.about-story-main-icon {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background: #ffffff;
    border: 2px solid #ffd6e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ff0055;
    box-shadow: 0 16px 40px rgba(255, 0, 85, 0.15);
    z-index: 2;
    animation: aboutStoryMainPulse 3s ease-in-out infinite;
}

.about-story-orbit {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ffd6e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff0055;
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.1);
    top: 50%;
    left: 50%;
    margin: -26px 0 0 -26px;
}

.about-story-orbit-1 {
    animation: aboutStoryOrbit 8s linear infinite;
}

.about-story-orbit-2 {
    animation: aboutStoryOrbit 8s linear infinite;
    animation-delay: -2.67s;
    color: #9333ea;
    border-color: #e9d5ff;
}

.about-story-orbit-3 {
    animation: aboutStoryOrbit 8s linear infinite;
    animation-delay: -5.33s;
    color: #10b981;
    border-color: #a7f3d0;
}

@keyframes aboutStoryMainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes aboutStoryOrbit {
    0% { transform: rotate(0deg) translateX(110px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}

@keyframes aboutStoryRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-story-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-story-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #ff0055;
    border: 1px solid #ffd6e7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.about-story-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    margin-bottom: 20px;
    color: #0f172a;
}

.about-story-text {
    font-size: 16px;
    line-height: 1.85;
    color: #475569;
}

.about-story-text p + p {
    margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
    .about-story-orbit,
    .about-story-orbit-ring,
    .about-story-main-icon {
        animation: none !important;
    }
}

/* ── Use Cases ────────────────────────────────────────────── */
.about-usecases {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-usecase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-usecase-card:hover {
    transform: translateY(-6px);
    border-color: #ffd6e7;
    box-shadow: 0 16px 36px -12px rgba(255, 0, 85, 0.12);
}

.about-usecase-img {
    background: #f8fafc;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-usecase-img img {
    max-width: 100%;
    max-height: 140px;
}

.about-usecase-card h4 {
    font-size: 17px;
    padding: 20px 24px 8px;
    color: #0f172a;
}

.about-usecase-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    padding: 0 24px 24px;
}

/* ── Why Choose ───────────────────────────────────────────── */
.about-why {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-why-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.about-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff5f8;
    color: #ff0055;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.about-why-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #0f172a;
}

.about-why-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

/* ── Pillars ──────────────────────────────────────────────── */
.about-pillars {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-pillar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.08);
    border-color: #ffd6e7;
}

.about-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff5f8;
    color: #ff0055;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.about-pillar-card:nth-child(2) .about-pillar-icon {
    background: #f5f3ff;
    color: #9333ea;
}

.about-pillar-card:nth-child(3) .about-pillar-icon {
    background: #ecfdf5;
    color: #10b981;
}

.about-pillar-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #0f172a;
}

.about-pillar-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
}

/* ── How it works ─────────────────────────────────────────── */
.about-flow {
    padding: 80px 0;
    background: #ffffff;
}

.about-flow-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-flow-visual {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-phone-anim-wrap {
    width: 100%;
    max-width: 400px;
}

.about-flow-visual.about-visible .about-phone-anim-wrap {
    animation: aboutPhoneEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-flow-phone-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    animation: aboutPhoneFloat 4s ease-in-out infinite;
}

.about-flow-visual.about-visible .about-flow-phone-img {
    animation: aboutPhoneFloat 4s ease-in-out 0.5s infinite;
}

@keyframes aboutPhoneEnter {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .about-flow-phone-img,
    .about-phone-anim-wrap {
        animation: none !important;
    }
}

.about-flow-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.about-flow-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-flow-item.about-step-active {
    border-color: #ffd6e7;
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.08);
}

.about-flow-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff5f8;
    border: 2px solid #ffd6e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ff0055;
    transition: all 0.4s ease;
}

.about-flow-item.about-step-active .about-flow-num {
    background: #ff0055;
    border-color: #ff0055;
    color: #fff;
}

.about-flow-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #0f172a;
}

.about-flow-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
}

/* ── Values ───────────────────────────────────────────────── */
.about-values {
    padding: 80px 0;
    background: #ffffff;
}

.about-values-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
}

.about-values-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 14px;
    color: #0f172a;
}

.about-values-text > p {
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 24px;
}

.about-values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.about-values-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff0055;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-values-img {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.about-values-img img {
    width: 100%;
    display: block;
}

/* ── CTA ──────────────────────────────────────────────────── */
.about-cta {
    padding: 0 0 88px;
    background: #ffffff;
}

.about-cta-box {
    background: #ffffff;
    border: 2px solid #ff0055;
    border-radius: 24px;
    padding: 52px 48px;
    text-align: center;
    position: relative;
}

.about-cta-box h2 {
    color: #0f172a;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 12px;
}

.about-cta-box p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: #ff0055;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 0, 85, 0.3);
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
    .about-hero-grid,
    .about-story-split,
    .about-vm-grid,
    .about-flow-layout,
    .about-values-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-media {
        order: -1;
        min-height: auto;
        margin-bottom: 20px;
    }

    .about-hero-img-float {
        left: 0;
        width: 140px;
    }

    .about-hero-float-card {
        right: 0;
    }

    .about-hero-lead {
        max-width: none;
    }

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

    .about-usecases-grid,
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

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

    .about-section-head-left {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0 32px;
    }

    .about-hero-img-main img {
        height: 280px;
    }

    .about-stats-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-values-inner {
        padding: 28px 20px;
    }

    .about-cta-box {
        padding: 36px 24px;
    }

    .about-story-icon-panel {
        min-height: 320px;
    }

    .about-story-icon-scene {
        width: 240px;
        height: 240px;
    }

    .about-story-orbit-1 { animation: aboutStoryOrbitSm 8s linear infinite; }
    .about-story-orbit-2 { animation: aboutStoryOrbitSm 8s linear infinite -2.67s; }
    .about-story-orbit-3 { animation: aboutStoryOrbitSm 8s linear infinite -5.33s; }
}

@keyframes aboutStoryOrbitSm {
    0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}
