/* ==========================================================================
   GUINRANK 7 — ABOUT US PAGE STYLES
   ========================================================================== */

.about-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 40px 24px 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: ltr !important;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.legal-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 106, 37, 0.15), transparent 70%);
}

.glow-bottom {
    bottom: 40px;
    right: 15%;
    width: 500px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 70%);
}

.legal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.about-hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
}

.legal-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 16px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.legal-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.about-main-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.18;
    color: var(--text-main);
    letter-spacing: -0.8px;
    margin: 0;
}

.brand-grad {
    background: linear-gradient(135deg, var(--primary-color) 0%, color-mix(in srgb, var(--primary-color) 75%, white 25%) 60%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 760px;
}

/* 4 Key Metrics Glass Matrix */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

.about-stat-card {
    background: color-mix(in srgb, var(--card-bg) 80%, transparent);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 106, 37, 0.35);
    box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.08);
}

.stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.stat-icon-wrap.icon-orange,
.bento-icon-bubble.icon-orange {
    color: var(--primary-color);
    background: rgba(244, 106, 37, 0.12);
}

.stat-icon-wrap.icon-purple,
.bento-icon-bubble.icon-purple {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.12);
}

.stat-icon-wrap.icon-green,
.bento-icon-bubble.icon-green {
    color: #22c33c;
    background: rgba(34, 195, 60, 0.12);
}

.stat-icon-wrap.icon-blue,
.bento-icon-bubble.icon-blue {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.12);
}

.stat-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-number.num-purple {
    color: #8b5cf6;
}

.stat-number.num-green {
    color: #22c33c;
}

.stat-number.num-blue {
    color: #0ea5e9;
}

.stat-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Sections Common */
.about-section-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.section-header-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin: 0;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    max-width: 600px;
}

/* Bento Grid */
.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
}

.about-bento-card {
    background: color-mix(in srgb, var(--card-bg) 80%, transparent);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.25s ease;
}

.about-bento-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 106, 37, 0.3);
}

.about-bento-card.bento-wide {
    grid-column: span 2;
}

.bento-icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon-bubble svg {
    width: 22px;
    height: 22px;
}

.bento-title {
    font-size: 18px;
    font-weight: 850;
    color: var(--text-main);
    margin: 0 0 8px;
}

.bento-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Timeline */
.about-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 28px;
    border-left: 2px solid var(--border-color);
    margin-left: 12px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--card-bg);
}

.timeline-dot.active-dot {
    background: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
}

.timeline-card {
    background: color-mix(in srgb, var(--card-bg) 80%, transparent);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 20px 24px;
    transition: all 0.25s ease;
}

.timeline-card.active-card {
    border-color: rgba(244, 106, 37, 0.4);
    box-shadow: 0 8px 30px -4px rgba(244, 106, 37, 0.12);
}

.timeline-year {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
}

.timeline-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 6px;
}

.timeline-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.value-card {
    background: color-mix(in srgb, var(--card-bg) 80%, transparent);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 18px;
    height: 18px;
}

.value-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.value-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

/* Bottom CTA Card */
.legal-cta-card {
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-bg) 90%, transparent), color-mix(in srgb, var(--card-bg) 75%, transparent));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(244, 106, 37, 0.35);
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 40px -8px rgba(244, 106, 37, 0.15);
}

.cta-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
    margin: 0 0 6px;
}

.cta-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

.cta-actions-side {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.modern-btn {
    background: linear-gradient(135deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 75%, white 25%));
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px var(--primary-shadow);
    transition: all 0.2s ease;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-shadow);
}

.modern-btn svg {
    width: 14px;
    height: 14px;
}

.modern-btn-outline {
    background: var(--bg-body);
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modern-btn-outline:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .about-main-title { font-size: 30px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-bento-grid { grid-template-columns: 1fr; }
    .about-bento-card.bento-wide { grid-column: span 1; }
    .about-values-grid { grid-template-columns: 1fr; }
    .legal-cta-card { flex-direction: column; text-align: center; }
    .cta-actions-side { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
    .about-stats-grid { grid-template-columns: 1fr; }
}