/* ═══════════════════════════════════════════════
   ABOUT PAGE — Maretex (Redesign)
   ═══════════════════════════════════════════════ */

.about-page {
    background: #060d1a;
    min-height: 100vh;
    /* Palette - More sophisticated, less neon */
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
}

/* Navigation Active State (Override/Add to global) */
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ────────────────── HERO ────────────────── */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 5vw 60px;
    overflow: hidden;
    z-index: 2;
    /* Content above silk canvas */
}

/* Remove old blobs */
.about-hero::before,
.about-hero::after {
    display: none;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.02);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.about-hero-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    /* Thinner weight for elegance */
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.about-hero-title em {
    font-style: normal;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
    /* Subtle dimming instead of gradient */
    font-family: 'Switzer', serif;
    /* Optional: mix serif if available, otherwise just weight contrast */
}

.about-hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Scroll Indicator - Minimal Line */
.about-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.about-hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

/* ────────────────── STORY ────────────────── */
.about-story {
    padding: 140px 5vw;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.about-story-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Compass Visual - Technical / Minimal */
.about-story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-compass-wrapper {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: rotateSlow 60s linear infinite;
}

.compass-ring::after {
    /* Ticks */
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
}

.compass-ring-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 1px dotted rgba(255, 255, 255, 0.15);
    animation: rotateSlow 40s linear infinite reverse;
}

.compass-logo {
    width: 80px;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

/* ────────────────── VALUES ────────────────── */
.about-values {
    padding: 100px 5vw;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-values-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.value-card {
    /* Minimal Glass */
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    /* Slightly squarer for more pro look */
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-primary);
    opacity: 0.8;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.2px;
    /* Thinner strokes */
}

/* Remove colored glows per card */
.value-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ────────────────── SECTORS ────────────────── */
.about-sectors {
    padding: 60px 5vw;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.about-sectors-title {
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.sectors-marquee {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.sector-chip {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sector-chip-dot {
    display: none;
    /* Removed colored dots for cleaner look */
}

.sector-chip:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

/* ────────────────── STATS ────────────────── */
.about-stats {
    padding: 100px 5vw;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 200;
    /* Thin and elegant */
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "tnum";
}

.about-stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* ────────────────── CTA ────────────────── */
.about-cta {
    padding: 100px 5vw 140px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 100px;
    background: #25D366;
    /* WhatsApp Green */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.about-cta-btn:hover {
    transform: scale(1.02);
    background: #20bd5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ────────────────── ANIMATIONS ────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* Reduced movement */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ────────────────── RESPONSIVE ────────────────── */
@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-story-visual {
        order: -1;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 40px;
        border: none;
    }

    .about-stat {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 20px;
    }

    .about-stat:last-child {
        border-bottom: none;
    }
}