/*
 * WalchandPRO — Enterprise Learning Platform
 * About Pages V2 - Premium Minimal Design
 *
 * Copyright © 2025 Euclideum Solutions Private Limited.
 */

/* ============================================
   CSS Variables - Premium Color Palette
   ============================================ */
:root {
    --brand: #154f95;
    --brand-dark: #0d3a6e;
    --brand-light: #1a5fad;
    --brand-subtle: #e8f0f8;
    --brand-muted: #d1e3f3;

    --text-heading: #0a1628;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-subtle: #9ca3af;

    --surface-white: #ffffff;
    --surface-off: #fafbfc;
    --surface-light: #f3f4f6;
    --surface-border: #e5e7eb;

    --accent-warm: #f59e0b;
    --accent-green: #10b981;
}

[data-theme="dark"] {
    --brand: #60a5fa;
    --brand-dark: #3b82f6;
    --brand-light: #93c5fd;
    --brand-subtle: #1e3a5f;
    --brand-muted: #1e293b;

    --text-heading: #f8fafc;
    --text-body: #cbd5e1;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;

    --surface-white: #0f172a;
    --surface-off: #1e293b;
    --surface-light: #334155;
    --surface-border: #334155;
}

/* ============================================
   Base
   ============================================ */
.about-page-v2 {
    background: var(--surface-white);
}

/* ============================================
   Hero - Clean & Refined
   ============================================ */
.about-hero-v2 {
    padding: 100px 24px 60px;
    background: linear-gradient(
        180deg,
        #c9ddf2 0%,
        #dce9f5 25%,
        #eef4fa 50%,
        var(--surface-white) 100%
    );
}

[data-theme="dark"] .about-hero-v2 {
    background: linear-gradient(
        180deg,
        #1a365d 0%,
        #1e3a5f 25%,
        #162942 50%,
        var(--surface-white) 100%
    );
}

@media (min-width: 768px) {
    .about-hero-v2 {
        padding: 120px 32px 100px;
    }
}

@media (min-width: 1024px) {
    .about-hero-v2 {
        padding: 140px 48px 120px;
    }
}

.about-hero-container-v2 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Label */
.about-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 20px;
}

.about-hero-label::before,
.about-hero-label::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--brand);
    opacity: 0.4;
}

/* Hero Title */
.about-hero-title-v2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .about-hero-title-v2 {
        font-size: 44px;
    }
}

@media (min-width: 768px) {
    .about-hero-title-v2 {
        font-size: 52px;
    }
}

/* Hero Description */
.about-hero-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 36px;
}

@media (min-width: 768px) {
    .about-hero-desc {
        font-size: 18px;
    }
}

/* Hero Stats - Inline */
.about-hero-stats-v2 {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 24px 32px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
}

@media (min-width: 640px) {
    .about-hero-stats-v2 {
        gap: 48px;
        padding: 28px 48px;
    }
}

.about-hero-stat-v2 {
    text-align: center;
}

.about-hero-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

@media (min-width: 768px) {
    .about-hero-stat-value {
        font-size: 32px;
    }
}

.about-hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================
   Stats Cards (with icons) - NEW
   ============================================ */
.about-stats-cards-v2 {
    display: grid;
    gap: 16px;
    margin-top: 40px;
    position: relative;
}

/* Subtle gradient continuation below hero */
.about-section-v2:first-of-type {
    background: linear-gradient(
        180deg,
        #f5f9fc 0%,
        var(--surface-white) 100%
    );
}

[data-theme="dark"] .about-section-v2:first-of-type {
    background: linear-gradient(
        180deg,
        #0f1d2e 0%,
        var(--surface-white) 100%
    );
}

@media (min-width: 640px) {
    .about-stats-cards-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-stats-cards-v2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stat-card-v2 {
    padding: 28px 24px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-stat-card-v2:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(21, 79, 149, 0.08);
}

[data-theme="dark"] .about-stat-card-v2:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-subtle);
    border-radius: 12px;
    margin: 0 auto 16px;
    color: var(--brand);
}

[data-theme="dark"] .about-stat-card-icon {
    background: var(--brand-muted);
}

.about-stat-card-icon svg {
    width: 24px;
    height: 24px;
}

.about-stat-card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .about-stat-card-value {
        font-size: 36px;
    }
}

.about-stat-card-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   Content Sections
   ============================================ */
.about-section-v2 {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .about-section-v2 {
        padding: 80px 32px;
    }
}

@media (min-width: 1024px) {
    .about-section-v2 {
        padding: 100px 48px;
    }
}

.about-section-v2--tinted {
    background: var(--surface-off);
}

/* Brand Section - FIXED DARK MODE */
.about-section-v2--brand {
    background: var(--brand);
}

[data-theme="dark"] .about-section-v2--brand {
    background: #0c1a2e;
    border-top: 1px solid #1e3a5f;
    border-bottom: 1px solid #1e3a5f;
}

.about-container-v2 {
    max-width: 1140px;
    margin: 0 auto;
}

/* ============================================
   Section Headers
   ============================================ */
.about-header-v2 {
    max-width: 640px;
    margin-bottom: 48px;
}

.about-header-v2--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-label-v2 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 12px;
}

.about-section-v2--brand .about-label-v2 {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .about-section-v2--brand .about-label-v2 {
    color: #60a5fa;
}

.about-title-v2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about-title-v2 {
        font-size: 34px;
    }
}

.about-section-v2--brand .about-title-v2 {
    color: #ffffff;
}

[data-theme="dark"] .about-section-v2--brand .about-title-v2 {
    color: #f1f5f9;
}

.about-desc-v2 {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
}

.about-section-v2--brand .about-desc-v2 {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .about-section-v2--brand .about-desc-v2 {
    color: #94a3b8;
}

/* ============================================
   Two Column Layout
   ============================================ */
.about-two-col-v2 {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-two-col-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .about-two-col-v2 {
        gap: 80px;
    }
}

.about-two-col-v2--reverse {
    direction: ltr;
}

@media (min-width: 768px) {
    .about-two-col-v2--reverse .about-col-image-v2 {
        order: 1;
    }
}

/* Image Column */
.about-col-image-v2 {
    position: relative;
}

.about-col-image-v2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    background: var(--brand-subtle);
    border-radius: 12px;
    z-index: -1;
}

[data-theme="dark"] .about-image-accent {
    background: var(--brand-muted);
}

/* Content Column */
.about-col-content-v2 .about-label-v2 {
    margin-bottom: 8px;
}

.about-col-content-v2 .about-title-v2 {
    margin-bottom: 20px;
}

.about-text-v2 {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text-v2:last-of-type {
    margin-bottom: 0;
}

/* ============================================
   Feature List
   ============================================ */
.about-features-v2 {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-v2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface-off);
    border-radius: 8px;
    transition: background 0.2s ease;
}

[data-theme="dark"] .about-feature-v2 {
    background: var(--surface-light);
}

.about-feature-v2:hover {
    background: var(--brand-subtle);
}

[data-theme="dark"] .about-feature-v2:hover {
    background: var(--brand-muted);
}

.about-feature-icon-v2 {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--brand);
    margin-top: 2px;
}

.about-feature-icon-v2 svg {
    width: 100%;
    height: 100%;
}

.about-feature-text-v2 {
    font-size: 15px;
    color: var(--text-heading);
    line-height: 1.5;
}

/* ============================================
   Highlight Box
   ============================================ */
.about-highlight-v2 {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--brand);
    border-radius: 10px;
    color: #ffffff;
}

[data-theme="dark"] .about-highlight-v2 {
    background: #1e3a5f;
}

.about-highlight-title-v2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.about-highlight-text-v2 {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ============================================
   Card Grids
   ============================================ */
.about-grid-v2 {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .about-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-grid-v2--three {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Standard Card */
.about-card-v2 {
    padding: 28px 24px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-card-v2:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(21, 79, 149, 0.08);
}

[data-theme="dark"] .about-card-v2:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-card-icon-v2 {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-subtle);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--brand);
}

[data-theme="dark"] .about-card-icon-v2 {
    background: var(--brand-muted);
}

.about-card-icon-v2 svg {
    width: 22px;
    height: 22px;
}

.about-card-title-v2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.about-card-text-v2 {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Featured Card */
.about-card-v2--featured {
    background: var(--brand);
    border-color: var(--brand);
}

.about-card-v2--featured:hover {
    border-color: var(--brand-dark);
    box-shadow: 0 4px 20px rgba(21, 79, 149, 0.2);
}

.about-card-v2--featured .about-card-icon-v2 {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.about-card-v2--featured .about-card-title-v2,
.about-card-v2--featured .about-card-text-v2 {
    color: #ffffff;
}

.about-card-v2--featured .about-card-text-v2 {
    opacity: 0.9;
}

/* ============================================
   Numbered Steps (for dark sections) - FIXED
   ============================================ */
.about-steps-grid-v2 {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .about-steps-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-steps-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-step-v2 {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.2s ease;
}

[data-theme="dark"] .about-step-v2 {
    background: rgba(30, 58, 95, 0.3);
    border-color: rgba(96, 165, 250, 0.15);
}

.about-step-v2:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .about-step-v2:hover {
    background: rgba(30, 58, 95, 0.5);
}

.about-step-number-v2 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

[data-theme="dark"] .about-step-number-v2 {
    color: #60a5fa;
}

.about-step-title-v2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

[data-theme="dark"] .about-step-title-v2 {
    color: #f1f5f9;
}

.about-step-text-v2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

[data-theme="dark"] .about-step-text-v2 {
    color: #94a3b8;
}

/* ============================================
   Audience Cards
   ============================================ */
.about-audience-grid-v2 {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .about-audience-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-audience-grid-v2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-audience-card-v2 {
    padding: 24px 20px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.about-audience-card-v2:hover {
    border-color: var(--brand);
}

.about-audience-icon-v2 {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-subtle);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--brand);
}

[data-theme="dark"] .about-audience-icon-v2 {
    background: var(--brand-muted);
}

.about-audience-icon-v2 svg {
    width: 24px;
    height: 24px;
}

.about-audience-title-v2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.about-audience-text-v2 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   Stats Row
   ============================================ */
.about-stats-row-v2 {
    display: grid;
    gap: 24px;
    padding: 32px 24px;
    background: var(--brand-subtle);
    border-radius: 12px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .about-stats-row-v2 {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        padding: 36px 32px;
    }
}

[data-theme="dark"] .about-stats-row-v2 {
    background: var(--brand-muted);
}

.about-stats-item-v2 {
    text-align: center;
}

.about-stats-value-v2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

@media (min-width: 768px) {
    .about-stats-value-v2 {
        font-size: 40px;
    }
}

.about-stats-label-v2 {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   Accreditation Badges
   ============================================ */
.about-badges-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--surface-off);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-heading);
    transition: background 0.2s ease;
}

[data-theme="dark"] .about-badge-v2 {
    background: var(--surface-light);
}

.about-badge-v2:hover {
    background: var(--brand-subtle);
}

[data-theme="dark"] .about-badge-v2:hover {
    background: var(--brand-muted);
}

.about-badge-icon-v2 {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

.about-badge-icon-v2 svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Programs Grid
   ============================================ */
.about-programs-v2 {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .about-programs-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-programs-v2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-program-v2 {
    padding: 24px 20px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.about-program-v2:hover {
    border-color: var(--brand);
}

.about-program-v2--highlight {
    background: var(--brand);
    border-color: var(--brand);
}

[data-theme="dark"] .about-program-v2--highlight {
    background: #1e3a5f;
    border-color: #1e3a5f;
}

.about-program-v2--highlight:hover {
    border-color: var(--brand-dark);
}

[data-theme="dark"] .about-program-v2--highlight:hover {
    border-color: #60a5fa;
}

.about-program-icon-v2 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--brand);
}

.about-program-v2--highlight .about-program-icon-v2 {
    color: #ffffff;
}

[data-theme="dark"] .about-program-v2--highlight .about-program-icon-v2 {
    color: #60a5fa;
}

.about-program-icon-v2 svg {
    width: 28px;
    height: 28px;
}

.about-program-title-v2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.about-program-v2--highlight .about-program-title-v2 {
    color: #ffffff;
}

[data-theme="dark"] .about-program-v2--highlight .about-program-title-v2 {
    color: #f1f5f9;
}

.about-program-text-v2 {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.about-program-v2--highlight .about-program-text-v2 {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .about-program-v2--highlight .about-program-text-v2 {
    color: #94a3b8;
}

.about-program-tag-v2 {
    display: inline-block;
    padding: 4px 10px;
    background: var(--surface-light);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.about-program-v2--highlight .about-program-tag-v2 {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

[data-theme="dark"] .about-program-v2--highlight .about-program-tag-v2 {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

/* ============================================
   Quote/Tagline Block
   ============================================ */
.about-tagline-v2 {
    padding: 28px 32px;
    background: var(--brand-subtle);
    border-left: 4px solid var(--brand);
    border-radius: 0 10px 10px 0;
    margin-top: 32px;
}

[data-theme="dark"] .about-tagline-v2 {
    background: var(--brand-muted);
}

.about-tagline-text-v2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand);
    font-style: italic;
    margin: 0;
}

@media (min-width: 768px) {
    .about-tagline-text-v2 {
        font-size: 26px;
    }
}

/* ============================================
   Timeline (for WCE page) - NEW
   ============================================ */
.about-timeline-v2 {
    position: relative;
    padding-left: 32px;
}

.about-timeline-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--surface-border);
}

[data-theme="dark"] .about-timeline-v2::before {
    background: var(--surface-light);
}

.about-timeline-item-v2 {
    position: relative;
    padding-bottom: 32px;
}

.about-timeline-item-v2:last-child {
    padding-bottom: 0;
}

.about-timeline-item-v2::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--brand);
    border-radius: 50%;
}

.about-timeline-year-v2 {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.about-timeline-title-v2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.about-timeline-text-v2 {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Value Proposition Cards (for Why page) - NEW
   ============================================ */
.about-value-cards-v2 {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .about-value-cards-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-value-card-v2 {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card-v2:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(21, 79, 149, 0.08);
}

[data-theme="dark"] .about-value-card-v2:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-value-card-icon-v2 {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-subtle);
    border-radius: 12px;
    color: var(--brand);
}

[data-theme="dark"] .about-value-card-icon-v2 {
    background: var(--brand-muted);
}

.about-value-card-icon-v2 svg {
    width: 26px;
    height: 26px;
}

.about-value-card-content-v2 {
    flex: 1;
}

.about-value-card-title-v2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.about-value-card-text-v2 {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Comparison Table (for Why page) - REDESIGNED
   ============================================ */
.about-comparison-v2 {
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .about-comparison-v2 {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.about-comparison-header-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--brand);
    padding: 20px 28px;
}

[data-theme="dark"] .about-comparison-header-v2 {
    background: #1e3a5f;
}

.about-comparison-header-v2 span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.02em;
}

.about-comparison-header-v2 span:first-child {
    text-align: left;
}

.about-comparison-row-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 28px;
    border-bottom: 1px solid var(--surface-border);
    transition: background 0.15s ease;
}

.about-comparison-row-v2:hover {
    background: var(--surface-off);
}

[data-theme="dark"] .about-comparison-row-v2:hover {
    background: var(--surface-light);
}

.about-comparison-row-v2:last-child {
    border-bottom: none;
}

.about-comparison-row-v2 span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-body);
}

.about-comparison-row-v2 span:first-child {
    justify-content: flex-start;
    font-weight: 500;
    color: var(--text-heading);
}

/* Feature with icon styling */
.about-comparison-feature {
    display: flex !important;
    align-items: center;
    gap: 14px;
}

.about-comparison-feature svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--brand);
}

/* Check icon - larger and bolder */
.about-comparison-row-v2 .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-comparison-row-v2 .check-icon svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: var(--accent-green);
}

[data-theme="dark"] .about-comparison-row-v2 .check-icon svg {
    background: rgba(16, 185, 129, 0.15);
}

/* X icon - larger and styled */
.about-comparison-row-v2 .x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-comparison-row-v2 .x-icon svg {
    width: 28px;
    height: 28px;
    padding: 6px;
    background: rgba(156, 163, 175, 0.1);
    border-radius: 50%;
    color: var(--text-subtle);
}

[data-theme="dark"] .about-comparison-row-v2 .x-icon svg {
    background: rgba(156, 163, 175, 0.15);
}

/* Responsive comparison table */
@media (max-width: 640px) {
    .about-comparison-header-v2,
    .about-comparison-row-v2 {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 16px 20px;
    }

    .about-comparison-header-v2 span,
    .about-comparison-row-v2 span {
        font-size: 13px;
    }

    .about-comparison-feature {
        gap: 10px;
    }

    .about-comparison-feature svg {
        width: 18px;
        height: 18px;
    }

    .about-comparison-row-v2 .check-icon svg,
    .about-comparison-row-v2 .x-icon svg {
        width: 24px;
        height: 24px;
        padding: 4px;
    }
}

/* ============================================
   Quote Block (for Platform page) - NEW
   ============================================ */
.about-quote-v2 {
    padding: 40px 32px;
    background: var(--brand-subtle);
    border-radius: 16px;
    text-align: center;
    position: relative;
}

[data-theme="dark"] .about-quote-v2 {
    background: var(--brand-muted);
}

.about-quote-v2::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--brand);
    opacity: 0.15;
    line-height: 1;
}

.about-quote-text-v2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px;
    font-style: italic;
}

@media (min-width: 768px) {
    .about-quote-text-v2 {
        font-size: 24px;
    }
}

.about-quote-author-v2 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   Tech Stack Grid (for Platform page) - NEW
   ============================================ */
.about-tech-grid-v2 {
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) {
    .about-tech-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-tech-grid-v2 {
        grid-template-columns: repeat(6, 1fr);
    }
}

.about-tech-item-v2 {
    padding: 20px 16px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.about-tech-item-v2:hover {
    border-color: var(--brand);
}

.about-tech-item-v2 svg {
    width: 32px;
    height: 32px;
    color: var(--brand);
    margin-bottom: 10px;
}

.about-tech-item-v2 span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-heading);
}

/* ============================================
   Horizontal Feature Row (for Platform page) - NEW
   ============================================ */
.about-feature-row-v2 {
    display: grid;
    gap: 32px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--surface-border);
}

@media (min-width: 768px) {
    .about-feature-row-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-feature-row-v2:last-child {
    border-bottom: none;
}

.about-feature-row-v2--reverse {
    direction: ltr;
}

@media (min-width: 768px) {
    .about-feature-row-v2--reverse .about-feature-row-image-v2 {
        order: 1;
    }
}

.about-feature-row-image-v2 {
    border-radius: 12px;
    overflow: hidden;
}

.about-feature-row-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
}

.about-feature-row-number-v2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-subtle);
    line-height: 1;
    margin-bottom: 16px;
}

[data-theme="dark"] .about-feature-row-number-v2 {
    color: var(--brand-muted);
}

.about-feature-row-label-v2 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 8px;
}

.about-feature-row-title-v2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.about-feature-row-text-v2 {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-feature-row-list-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-feature-row-list-v2 span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface-off);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-heading);
}

[data-theme="dark"] .about-feature-row-list-v2 span {
    background: var(--surface-light);
}

.about-feature-row-list-v2 span svg {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}

/* ============================================
   Feature Cards Override for Platform Page
   ============================================ */
.about-page-v2 .feature-cards-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .about-page-v2 .feature-cards-list {
        gap: 48px;
    }
}

.about-page-v2 .feature-card-horizontal {
    display: grid;
    gap: 32px;
    padding: 32px 24px;
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .about-page-v2 .feature-card-horizontal {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .about-page-v2 .feature-card-horizontal {
        padding: 48px;
    }
}

.about-page-v2 .feature-card-horizontal:hover {
    box-shadow: 0 4px 24px rgba(21, 79, 149, 0.06);
}

[data-theme="dark"] .about-page-v2 .feature-card-horizontal:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.about-page-v2 .feature-card-number {
    font-size: 48px;
    font-weight: 700;
    color: #93b8e0;
    line-height: 1;
    margin-bottom: 12px;
}

[data-theme="dark"] .about-page-v2 .feature-card-number {
    color: #5a8ac4;
}

.about-page-v2 .feature-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 8px;
}

.about-page-v2 .feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .about-page-v2 .feature-card-title {
        font-size: 24px;
    }
}

.about-page-v2 .feature-card-description {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-page-v2 .feature-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-page-v2 .feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.about-page-v2 .feature-bullet-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    margin-top: 2px;
}

.about-page-v2 .feature-bullet-icon svg {
    width: 100%;
    height: 100%;
}

.about-page-v2 .feature-card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-page-v2 .feature-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-v2 .feature-card-image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .about-page-v2 .feature-card-image-badge {
    background: rgba(15, 23, 42, 0.95);
    color: var(--text-heading);
}

.about-page-v2 .feature-card-image-badge svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}
