/* ==========================================================================
   WESAL | وِصال — ABOUT PAGE DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
    --wesal-primary: #17A34A;
    --wesal-primary-hover: #15803D;
    --wesal-primary-dark: #063A2A;
    --wesal-primary-deep: #004A33;
    --wesal-mint: #55E69D;
    --wesal-mint-light: #ECFDF5;
    --wesal-mint-border: #BBF7D0;
    --wesal-surface: #FFFFFF;
    --wesal-bg-subtle: #F8FAF9;
    --wesal-bg-tint: #F0FDF4;
    --wesal-text-main: #111827;
    --wesal-text-muted: #64748B;
    --wesal-text-light: #94A3B8;
    --wesal-border: #E5E7EB;
    --wesal-border-subtle: #F1F5F9;
    --wesal-radius-sm: 10px;
    --wesal-radius-md: 16px;
    --wesal-radius-lg: 24px;
    --wesal-radius-xl: 32px;
    --wesal-radius-pill: 9999px;
    --wesal-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --wesal-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --wesal-shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.08);
    --wesal-shadow-glow: 0 0 40px rgba(23, 163, 74, 0.15);
    --wesal-container-width: min(100% - 32px, 1280px);
}

/* Base resets & layout container */
.about-wrapper {
    color: var(--wesal-text-main);
    background-color: var(--wesal-surface);
    overflow-x: hidden;
    line-height: 1.6;
}

.about-container {
    width: var(--wesal-container-width);
    margin-inline: auto;
}

.about-section {
    padding-block: clamp(64px, 8vw, 120px);
    position: relative;
}

.about-section--subtle {
    background-color: var(--wesal-bg-subtle);
}

.about-section--deep {
    background: linear-gradient(135deg, #042c21 0%, #004a33 60%, #087c51 100%);
    color: #FFFFFF;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--wesal-primary);
    background-color: var(--wesal-mint-light);
    border: 1px solid var(--wesal-mint-border);
    border-radius: var(--wesal-radius-pill);
    margin-bottom: 1.25rem;
}

html[lang="ar"] .about-eyebrow {
    letter-spacing: 0;
}

.about-section-head {
    max-width: 780px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.about-section-head.center {
    margin-inline: auto;
    text-align: center;
}

.about-section-title {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--wesal-text-main);
    margin: 0 0 1rem;
}

.about-section--deep .about-section-title {
    color: #FFFFFF;
}

html[lang="ar"] .about-section-title {
    letter-spacing: 0;
    line-height: 1.3;
}

.about-section-desc {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--wesal-text-muted);
    line-height: 1.7;
    margin: 0;
}

.about-section--deep .about-section-desc {
    color: #C9ECDB;
}

.text-gradient {
    color: var(--wesal-primary);
    background: linear-gradient(135deg, #17A34A 0%, #15803D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   SECTION 01: HERO
   ========================================================================== */
.about-hero {
    padding-block: clamp(60px, 8vw, 110px) clamp(50px, 6vw, 90px);
    background: radial-gradient(circle at 80% 20%, rgba(220, 252, 231, 0.4) 0%, rgba(255, 255, 255, 0) 65%),
                linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 100%);
    position: relative;
    overflow: hidden;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
}

.about-hero__title {
    font-size: clamp(3rem, 5.2vw, 4.8rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--wesal-primary-dark);
    margin: 0 0 1.25rem;
}

html[lang="ar"] .about-hero__title {
    letter-spacing: 0;
    line-height: 1.25;
}

.about-hero__desc {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: #4B5563;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 0 2rem;
}

.about-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--wesal-radius-md);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
}

.about-btn--primary {
    background-color: var(--wesal-primary);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(23, 163, 74, 0.25);
}

.about-btn--primary:hover {
    background-color: var(--wesal-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 163, 74, 0.32);
}

.about-btn--secondary {
    background-color: #FFFFFF;
    color: var(--wesal-text-main);
    border-color: var(--wesal-border);
}

.about-btn--secondary:hover {
    border-color: var(--wesal-primary);
    color: var(--wesal-primary);
    background-color: var(--wesal-mint-light);
    transform: translateY(-2px);
}

.about-btn--white {
    background-color: #FFFFFF;
    color: var(--wesal-primary-deep);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-btn--white:hover {
    background-color: #F0FDF4;
    transform: translateY(-2px);
}

.about-btn--ghost-white {
    background-color: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.about-btn--ghost-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hero Visual: Wesal Central Core & Orbiting Ecosystem */
.about-hero__visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-canvas {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1.5px dashed rgba(23, 163, 74, 0.3);
    border-radius: 50%;
    animation: ring-rotate 60s linear infinite;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ecosystem-core {
    position: relative;
    z-index: 5;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17A34A 0%, #063A2A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 900;
    box-shadow: 0 12px 36px rgba(23, 163, 74, 0.45);
    border: 4px solid #FFFFFF;
    transition: transform 0.3s ease;
}

.ecosystem-core:hover {
    transform: scale(1.05);
}

.ecosystem-core svg {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
}

.ecosystem-core span {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.ecosystem-node {
    position: absolute;
    z-index: 4;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-md);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: node-float 6s ease-in-out infinite;
}

.ecosystem-node:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 32px rgba(23, 163, 74, 0.15);
    border-color: var(--wesal-mint-border);
}

.ecosystem-node__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.ecosystem-node__content strong {
    display: block;
    font-size: 0.84rem;
    color: var(--wesal-text-main);
    line-height: 1.2;
}

.ecosystem-node__content small {
    display: block;
    font-size: 0.7rem;
    color: var(--wesal-text-muted);
}

/* Positional classes for nodes */
.node--events {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node--clubs {
    top: 90px;
    inset-inline-start: 0;
    animation-delay: 1.2s;
}

.node--teams {
    top: 90px;
    inset-inline-end: 0;
    animation-delay: 2.4s;
}

.node--students {
    bottom: 85px;
    inset-inline-start: 10px;
    animation-delay: 3.6s;
}

.node--opportunities {
    bottom: 85px;
    inset-inline-end: 10px;
    animation-delay: 4.8s;
}

.node--university {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes node-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ==========================================================================
   SECTION 02: WHY WESAL (THE PROBLEM)
   ========================================================================== */
.about-problem {
    border-top: 1px solid var(--wesal-border-subtle);
    border-bottom: 1px solid var(--wesal-border-subtle);
}

.problem-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.problem-callout {
    padding: clamp(28px, 4vw, 44px);
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    border: 1.5px solid var(--wesal-mint-border);
    border-radius: var(--wesal-radius-lg);
    box-shadow: 0 12px 32px rgba(23, 163, 74, 0.06);
}

.problem-callout__title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--wesal-primary-dark);
    margin: 0 0 1rem;
}

.problem-callout__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wesal-primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.problem-text p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.problem-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION 03: BEFORE & WITH WESAL (COMPARISON)
   ========================================================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3.5vw, 40px);
    align-items: stretch;
}

.compare-card {
    padding: clamp(28px, 4vw, 40px);
    border-radius: var(--wesal-radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare-card--before {
    background-color: #F8FAFC;
    border: 1.5px solid #E2E8F0;
}

.compare-card--after {
    background-color: #FFFFFF;
    border: 1.5px solid var(--wesal-mint-border);
    box-shadow: 0 14px 40px rgba(23, 163, 74, 0.08);
}

.compare-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.compare-card--before .compare-card__icon {
    background-color: #E2E8F0;
    color: #64748B;
}

.compare-card--after .compare-card__icon {
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
}

.compare-card__header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.compare-card--before .compare-card__header h3 {
    color: #475569;
}

.compare-card--after .compare-card__header h3 {
    color: var(--wesal-primary-dark);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.compare-card--before .compare-list li {
    color: #64748B;
}

.compare-card--after .compare-list li {
    color: #1F2937;
    font-weight: 500;
}

.compare-list__mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-card--before .compare-list__mark {
    background-color: #FEE2E2;
    color: #DC2626;
}

.compare-card--after .compare-list__mark {
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
}

/* ==========================================================================
   SECTION 04: THE WESAL ECOSYSTEM (AUDIENCE CARDS)
   ========================================================================== */
.ecosystem-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-lg);
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--wesal-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wesal-shadow-md);
    border-color: var(--wesal-mint-border);
}

.audience-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.audience-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
    display: grid;
    place-items: center;
}

.audience-card__badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wesal-primary);
    background-color: #F0FDF4;
    padding: 4px 10px;
    border-radius: var(--wesal-radius-pill);
    border: 1px solid var(--wesal-mint-border);
}

.audience-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--wesal-text-main);
    margin: 0 0 0.65rem;
}

.audience-card p {
    font-size: 0.92rem;
    color: var(--wesal-text-muted);
    line-height: 1.65;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.audience-card__preview {
    background-color: var(--wesal-bg-subtle);
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-md);
    padding: 16px;
    margin-top: auto;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}

.preview-stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--wesal-primary-dark);
}

.preview-stat small {
    display: block;
    font-size: 0.68rem;
    color: var(--wesal-text-muted);
    line-height: 1.2;
    margin-top: 2px;
}

/* ==========================================================================
   SECTION 05: PLATFORM CAPABILITIES BENTO GRID
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-lg);
    padding: 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: var(--wesal-shadow-sm);
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--wesal-shadow-md);
    border-color: var(--wesal-mint-border);
}

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

.bento-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.bento-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
    display: grid;
    place-items: center;
}

.bento-card__tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    background-color: #F1F5F9;
    padding: 3px 10px;
    border-radius: var(--wesal-radius-pill);
}

.bento-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wesal-text-main);
    margin: 0 0 0.5rem;
}

.bento-card p {
    font-size: 0.88rem;
    color: var(--wesal-text-muted);
    line-height: 1.6;
    margin: 0;
}

.bento-card__mini-ui {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wesal-border-subtle);
}

.mini-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #F0FDF4;
    border: 1px dashed var(--wesal-mint-border);
    border-radius: 10px;
    font-size: 0.8rem;
}

.mini-ticket strong {
    color: var(--wesal-primary-dark);
}

.mini-qr {
    width: 32px;
    height: 32px;
    background: repeating-linear-gradient(45deg, #17A34A 0 2px, #FFFFFF 2px 4px);
    border: 1px solid var(--wesal-primary);
    border-radius: 4px;
}

.mini-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-chip {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #F8FAFC;
    border: 1px solid var(--wesal-border);
    color: #334155;
    font-weight: 600;
}

/* ==========================================================================
   SECTION 06: CONNECTED JOURNEY (TIMELINE)
   ========================================================================== */
.journey-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 32px;
}

.journey-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #BBF7D0 0%, #17A34A 50%, #BBF7D0 100%);
    z-index: 1;
}

.journey-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid var(--wesal-primary);
    color: var(--wesal-primary);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(23, 163, 74, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.journey-step:hover .journey-step__num {
    transform: scale(1.1);
    background-color: var(--wesal-primary);
    color: #FFFFFF;
}

.journey-step h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--wesal-text-main);
    margin: 0 0 0.4rem;
}

.journey-step p {
    font-size: 0.78rem;
    color: var(--wesal-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   SECTION 07: PRODUCT UI SHOWCASE (BROWSER FRAME)
   ========================================================================== */
.browser-frame {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-xl);
    box-shadow: var(--wesal-shadow-lg);
    overflow: hidden;
}

.browser-frame__topbar {
    background-color: #F8FAFC;
    border-bottom: 1px solid var(--wesal-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot--red { background-color: #EF4444; }
.browser-dot--yellow { background-color: #F59E0B; }
.browser-dot--green { background-color: #10B981; }

.browser-address {
    flex-grow: 1;
    max-width: 440px;
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-pill);
    padding: 4px 16px;
    font-size: 0.8rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline-start: auto;
}

.browser-tab-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    transition: all 0.15s ease;
}

.browser-tab-btn.active {
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
}

.browser-body {
    padding: clamp(20px, 3vw, 36px);
    background-color: #F8FAF9;
}

.app-mockup {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 300px;
    gap: 20px;
}

.app-sidebar {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-sidebar__user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wesal-border-subtle);
}

.app-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17A34A, #55E69D);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
}

.app-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
}

.app-nav-item.active {
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
}

.app-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-welcome {
    background: linear-gradient(135deg, #004a33 0%, #087c51 100%);
    color: #FFFFFF;
    border-radius: var(--wesal-radius-md);
    padding: 22px;
}

.app-welcome h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

.app-welcome p {
    margin: 0;
    font-size: 0.85rem;
    color: #C9ECDB;
}

.app-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.app-card {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-md);
    padding: 16px;
}

.app-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--wesal-text-main);
}

.app-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   SECTION 08: BUILT FOR CLUB LEADERS
   ========================================================================== */
.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.workspace-preview {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-lg);
    box-shadow: var(--wesal-shadow-lg);
    padding: 28px;
}

.workspace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--wesal-border-subtle);
    margin-bottom: 20px;
}

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

.workspace-stat {
    background-color: var(--wesal-bg-subtle);
    border: 1px solid var(--wesal-border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.workspace-stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--wesal-primary-dark);
}

.workspace-stat small {
    display: block;
    font-size: 0.72rem;
    color: var(--wesal-text-muted);
}

.workspace-tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workspace-task {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--wesal-border-subtle);
    border-radius: 10px;
    background-color: #FFFFFF;
    font-size: 0.85rem;
}

.workspace-task input[type="checkbox"] {
    accent-color: var(--wesal-primary);
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   SECTION 09: BUILT FOR UNIVERSITIES
   ========================================================================== */
.uni-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.uni-metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: var(--wesal-radius-lg);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.uni-metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.uni-metric-card strong {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--wesal-mint);
    line-height: 1;
    margin-bottom: 8px;
}

.uni-metric-card span {
    display: block;
    font-size: 0.88rem;
    color: #E2E8F0;
}

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

.uni-point-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--wesal-radius-md);
    padding: 24px;
}

.uni-point-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.uni-point-card p {
    font-size: 0.88rem;
    color: #C9ECDB;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   SECTION 10: WESAL PRINCIPLES
   ========================================================================== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.principle-card {
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--wesal-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    border-color: var(--wesal-mint-border);
    box-shadow: var(--wesal-shadow-md);
}

.principle-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: var(--wesal-mint-light);
    color: var(--wesal-primary);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--wesal-text-main);
    margin: 0 0 10px;
}

.principle-card p {
    font-size: 0.9rem;
    color: var(--wesal-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   SECTION 11: BRAND STATEMENT
   ========================================================================== */
.brand-statement {
    text-align: center;
    padding-block: clamp(80px, 10vw, 140px);
    background: radial-gradient(circle at 50% 50%, rgba(220, 252, 231, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}

.statement-box {
    max-width: 960px;
    margin-inline: auto;
}

.statement-lead {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: #4B5563;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.statement-sub {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    color: var(--wesal-text-main);
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.statement-highlight {
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 900;
    color: var(--wesal-primary);
    letter-spacing: -0.04em;
    margin: 0;
}

html[lang="ar"] .statement-highlight {
    letter-spacing: 0;
}

/* ==========================================================================
   SECTION 12: VISION
   ========================================================================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.vision-pillar {
    background-color: var(--wesal-bg-subtle);
    border: 1px solid var(--wesal-border);
    border-radius: var(--wesal-radius-md);
    padding: 24px 20px;
    text-align: center;
}

.vision-pillar strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--wesal-primary-dark);
}

/* ==========================================================================
   SECTION 13: BUILT IN SAUDI ARABIA
   ========================================================================== */
.saudi-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
    border: 1.5px solid var(--wesal-mint-border);
    border-radius: var(--wesal-radius-xl);
    padding: clamp(36px, 5vw, 60px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 40px;
    align-items: center;
    box-shadow: var(--wesal-shadow-md);
}

.saudi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--wesal-radius-pill);
    background-color: #FFFFFF;
    border: 1px solid var(--wesal-mint-border);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--wesal-primary-dark);
    margin-bottom: 1.25rem;
}

.saudi-card h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--wesal-primary-dark);
    margin: 0 0 1rem;
}

.saudi-card p {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

.saudi-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.saudi-embellishment {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17A34A 0%, #004A33 100%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(23, 163, 74, 0.35);
    border: 4px solid #FFFFFF;
    text-align: center;
}

.saudi-embellishment span {
    font-size: 2rem;
    margin-bottom: 4px;
}

.saudi-embellishment strong {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

/* ==========================================================================
   SECTION 14: CLOSING CALL TO ACTION
   ========================================================================== */
.about-cta-card {
    background: linear-gradient(135deg, #004a33 0%, #087c51 50%, #17A34A 100%);
    border-radius: var(--wesal-radius-xl);
    padding: clamp(48px, 6vw, 84px) clamp(24px, 4vw, 56px);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--wesal-shadow-lg);
}

.about-cta-card::after {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    inset-inline-end: -120px;
    inset-block-end: -200px;
    border: 60px solid rgba(85, 230, 157, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}

html[lang="ar"] .about-cta-card h2 {
    letter-spacing: 0;
}

.about-cta-card p {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: #D1FAE5;
    max-width: 580px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
}

.about-cta-card__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2rem;
}

.about-cta-card__footer {
    font-size: 0.88rem;
    color: #A7F3D0;
    margin: 0;
}

.about-cta-card__footer a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
}

/* ==========================================================================
   SCROLL REVEAL & ACCESSIBILITY
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .ecosystem-ring,
    .ecosystem-node,
    .about-btn,
    .bento-card,
    .audience-card {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero__desc {
        margin-inline: auto;
    }
    
    .about-hero__actions {
        justify-content: center;
    }
    
    .problem-split {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card--span-2 {
        grid-column: span 2;
    }
    
    .journey-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .journey-track::before {
        display: none;
    }
    
    .app-mockup {
        grid-template-columns: 1fr;
    }
    
    .app-sidebar, .app-right {
        display: none;
    }
    
    .split-feature {
        grid-template-columns: 1fr;
    }
    
    .uni-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .uni-points-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .saudi-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ecosystem-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-track {
        grid-template-columns: 1fr;
        text-align: start;
        align-items: flex-start;
        gap: 20px;
    }
    
    .journey-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        text-align: start;
    }
    
    .journey-step__num {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .workspace-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .about-hero__visual {
        min-height: 380px;
    }
    
    .ecosystem-canvas {
        max-width: 100%;
        height: 380px;
    }
    
    .ecosystem-ring {
        width: 240px;
        height: 240px;
    }
    
    .ecosystem-core {
        width: 76px;
        height: 76px;
    }
    
    .ecosystem-node {
        min-width: 120px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .ecosystem-node__icon {
        width: 26px;
        height: 26px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card--span-2 {
        grid-column: span 1;
    }
    
    .principles-grid,
    .vision-grid,
    .uni-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero__actions,
    .about-cta-card__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .about-btn {
        width: 100%;
    }
}
