/* ============================================
   About Us Page — Premium Styles v2
   ============================================ */

/* ── Base ────────────────────────────────── */
.about-section {
    padding: 7rem 0;
}
.about-section-alt {
    background-color: #FAFAFA;
}

/* ── Hero ────────────────────────────────── */
.about-hero {
    background: linear-gradient(160deg, #FFF7ED 0%, #FFEDD5 25%, #FED7AA 55%, #FFF7ED 85%, #FFFFFF 100%);
    min-height: 90vh;
    position: relative;
    padding: 6rem 1.5rem 5rem;
}
.about-hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0d121b;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.about-hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: #F97316;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.about-hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #475569;
    line-height: 2;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* ── Hero Shapes ─────────────────────────── */
.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(80px);
}
.about-shape-1 {
    width: 600px; height: 600px;
    background: #F97316;
    top: -150px; right: -150px;
    animation: floatShape 14s ease-in-out infinite;
}
.about-shape-2 {
    width: 400px; height: 400px;
    background: #FB923C;
    bottom: -100px; left: -80px;
    animation: floatShape 18s ease-in-out infinite reverse;
}
.about-shape-3 {
    width: 250px; height: 250px;
    background: #FDBA74;
    top: 25%; left: 15%;
    animation: floatShape 11s ease-in-out infinite 2s;
}
.about-shape-4 {
    width: 300px; height: 300px;
    background: #F97316;
    bottom: 15%; right: 10%;
    animation: floatShape 16s ease-in-out infinite 1s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -35px) scale(1.06); }
    66% { transform: translate(-20px, 20px) scale(0.94); }
}

/* ── Buttons ─────────────────────────────── */
.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 1.1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
    text-decoration: none;
}
.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 115, 22, 0.4);
    color: #fff;
    text-decoration: none;
}
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #0d121b;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 1.1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.about-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-color: #F97316;
    color: #F97316;
    text-decoration: none;
}

/* ── Section Titles ──────────────────────── */
.about-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0d121b;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.about-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 2;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}
.about-section-heading {
    margin-bottom: 4rem;
}

/* ── Stat Cards ──────────────────────────── */
.about-stat-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}
.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.about-stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F97316, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}
.about-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* ── Timeline (Story) ────────────────────── */
.about-timeline {
    position: relative;
    padding-right: 2.5rem;
}
.about-timeline::before {
    content: '';
    position: absolute;
    right: 0.6rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #F97316, #FDBA74, transparent);
    border-radius: 2px;
}
.about-timeline-item {
    position: relative;
    padding-right: 3rem;
    padding-bottom: 3rem;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-dot {
    position: absolute;
    right: -2.05rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: #F97316;
    border-radius: 50%;
    border: 4px solid #FFF7ED;
    box-shadow: 0 0 0 3px #F97316;
}
.about-timeline-content {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 6px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.about-timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateX(-4px);
}
.about-timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #F97316;
    background: #FFF7ED;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.about-timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d121b;
}
.about-timeline-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.9;
    margin-top: 0.5rem;
}

/* ── Mission Card ────────────────────────── */
.about-mission-card {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.about-mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

/* ── Vision Card ─────────────────────────── */
.about-vision-card {
    background: linear-gradient(135deg, #0d121b 0%, #1e293b 100%);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 8px 40px rgba(13,18,27,0.2);
    position: relative;
    overflow: hidden;
}
.about-vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.about-vision-card .about-section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}
.about-vision-card .about-section-desc {
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

/* ── Icon Wrap ───────────────────────────── */
.about-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    background: #FFF7ED;
    flex-shrink: 0;
}
.about-icon-wrap-vision {
    background: linear-gradient(135deg, #F97316, #EA580C);
}
.about-icon-wrap-gradient {
    background: linear-gradient(135deg, #F97316, #EA580C);
}

/* ── Value Cards ─────────────────────────── */
.about-value-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 6px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-value-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.about-value-card .about-icon-wrap {
    margin-bottom: 1.25rem;
}
.about-value-card .about-card-title {
    margin-bottom: 0.5rem;
}

/* ── Feature Cards (Why Harajino) ────────── */
.about-feature-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 6px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FDBA74);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.about-feature-card:hover::before {
    opacity: 1;
}
.about-feature-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.about-feature-card .about-icon-wrap {
    margin-bottom: 1.25rem;
}
.about-feature-card .about-card-title {
    margin-bottom: 0.5rem;
}

/* ── Card Text ───────────────────────────── */
.about-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d121b;
}
.about-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.9;
}

/* ── Roadmap (Timeline Style) ────────────── */
.about-roadmap {
    position: relative;
    padding: 0;
}
.about-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 3px;
    background: linear-gradient(to bottom, #F97316, #FDBA74, #F97316, transparent);
    border-radius: 2px;
    transform: translateX(50%);
}
.about-roadmap-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}
.about-roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
}
.about-roadmap-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
}
.about-roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}
.about-roadmap-item:nth-child(odd) .about-roadmap-content {
    margin-left: auto;
    margin-right: 0;
}
.about-roadmap-item:nth-child(even) .about-roadmap-content {
    margin-right: auto;
    margin-left: 0;
}
.about-roadmap-marker {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #EA580C);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(249,115,22,0.25);
    border: 4px solid #fff;
    z-index: 2;
    transition: all 0.3s ease;
}
.about-roadmap-item:hover .about-roadmap-marker {
    transform: translateX(50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(249,115,22,0.4);
}
.about-roadmap-num {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}
.about-roadmap-content {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 6px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    width: calc(50% - 3.5rem);
}
.about-roadmap-item:hover .about-roadmap-content {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .about-roadmap::before {
        right: 1.75rem;
        transform: none;
    }
    .about-roadmap-item,
    .about-roadmap-item:nth-child(odd),
    .about-roadmap-item:nth-child(even) {
        flex-direction: column;
        text-align: right;
        padding-right: 4rem;
    }
    .about-roadmap-marker {
        right: 0;
        transform: none;
    }
    .about-roadmap-item:hover .about-roadmap-marker {
        transform: scale(1.15);
    }
    .about-roadmap-content {
        width: 100%;
    }
    .about-roadmap-item:nth-child(odd) .about-roadmap-content,
    .about-roadmap-item:nth-child(even) .about-roadmap-content {
        margin: 0;
    }
}

/* ── Team Cards ──────────────────────────── */
.about-team-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    text-align: center;
}
.about-team-card:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.about-team-avatar-wrap {
    position: relative;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
}
.about-team-avatar {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #F97316, #EA580C);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #FFF7ED;
    box-shadow: 0 4px 20px rgba(249,115,22,0.2);
    margin: 0 auto 1.5rem;
}
.about-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-team-avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}
.about-team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d121b;
    margin-bottom: 0.25rem;
}
.about-team-role {
    font-size: 0.85rem;
    color: #F97316;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.about-team-items {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.about-team-items li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.about-team-items li:last-child {
    border-bottom: none;
}

/* ── Commitment ──────────────────────────── */
.about-commitment-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%);
    position: relative;
    overflow: hidden;
}
.about-commitment-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.about-commitment-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.about-commitment-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0d121b;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.about-commitment-desc {
    font-size: 1.15rem;
    color: #334155;
    line-height: 2.1;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

/* ── CTA Section ─────────────────────────── */
.about-cta-section {
    background: linear-gradient(135deg, #0d121b 0%, #1e293b 60%, #0d121b 100%);
    position: relative;
    overflow: hidden;
}
.about-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 60%);
    border-radius: 50%;
    transform: translateX(50%);
}
.about-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.about-cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}
.about-cta-section .about-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.about-cta-section .about-btn-secondary:hover {
    border-color: #F97316;
    color: #F97316;
}

/* ── Hover Lift ──────────────────────────── */
.hover-lift {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
}

/* ── Scroll Reveal ───────────────────────── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .about-roadmap-grid {
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .about-section { padding: 5rem 0; }
    .about-mission-card,
    .about-vision-card { padding: 2.5rem 1.5rem; }
    .about-team-card { padding: 2rem 1.5rem; }
    .about-timeline { padding-right: 1.5rem; }
    .about-timeline-item { padding-right: 2rem; }
    .about-hero { min-height: auto; padding: 5rem 1rem 4rem; }
}

