/* ===== ABOUT HERO ===== */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, #0d0d2e 0%, #0a0a0f 70%);
    border-bottom: 1px solid #1a1a2e;
    padding: 80px 40px;
}

.about-hero-content {
    max-width: 700px;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 245, 255, 0.1);
    color: #00f5ff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero h1 span {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 18px;
    color: #aaaaaa;
    line-height: 1.8;
}

/* ===== ABOUT SECTIONS ===== */
.about-section {
    padding: 80px 40px;
    border-bottom: 1px solid #1a1a2e;
    background: #0a0a0f;
}

.dark-section {
    background: #0d0d1a;
}

/* TWO COL */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: #00f5ff;
}

/* STATS BOX */
.about-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.asb-item {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.3s;
}

.asb-item:hover {
    border-color: #00f5ff;
    transform: translateY(-3px);
}

.asb-value {
    font-size: 28px;
    font-weight: 900;
    color: #00f5ff;
}

.asb-label {
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #00f5ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

/* TIMELINE */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00f5ff, #0080ff);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 74px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: #00f5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.tl-date {
    width: 80px;
    font-size: 12px;
    font-weight: 700;
    color: #00f5ff;
    text-align: right;
    padding-top: 4px;
    flex-shrink: 0;
}

.tl-content {
    padding-left: 24px;
    flex: 1;
}

.tl-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.tl-content p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

.future .tl-date {
    color: #ffd700;
}

.future::before {
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero { padding: 50px 20px; }
    .about-hero h1 { font-size: 36px; }
    .about-section { padding: 50px 20px; }
    .about-two-col { grid-template-columns: 1fr; gap: 30px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-box { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 60px; }
    .timeline-item::before { left: 54px; }
    .tl-date { width: 60px; font-size: 11px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-two-col { gap: 30px; }
}