/* ===== ABOUT PLATFORM — OCC/WAY Landing ===== */
.ap-wrap { max-width: 100%; overflow-x: hidden; }

/* ===== HERO ===== */
.ap-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 24px 80px;
    min-height: 600px;
    overflow: hidden;
}
.ap-hero-glow {
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.ap-hero-content { position: relative; z-index: 1; flex: 1; max-width: 640px; }
.ap-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(102,126,234,0.15);
    border: 1px solid rgba(102,126,234,0.3);
    border-radius: 24px;
    color: #a5b4fc; font-size: 0.85rem; font-weight: 700;
    margin-bottom: 24px;
}
.ap-hero-title {
    font-size: 3.5rem; font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px; line-height: 1.1;
}
.ap-hero-subtitle {
    font-size: 1.3rem; color: #d1d5db; font-weight: 600;
    margin: 0 0 16px;
}
.ap-hero-desc {
    font-size: 1rem; color: #9ca3af; line-height: 1.7;
    margin: 0 0 32px;
}
.ap-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero phone mockup */
.ap-hero-visual { position: relative; z-index: 1; flex-shrink: 0; }
.ap-hero-phone {
    width: 280px; height: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 2px solid rgba(102,126,234,0.35);
    border-radius: 32px;
    padding: 14px;
    box-shadow: 0 25px 70px rgba(102,126,234,0.2), 0 0 50px rgba(102,126,234,0.08);
}
.ap-phone-screen {
    background: #0d0d1a;
    border-radius: 22px;
    height: 100%;
    padding: 20px 16px;
    display: flex; flex-direction: column;
}
.ap-phone-header {
    display: flex; gap: 6px; margin-bottom: 24px; justify-content: center;
}
.ap-phone-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(102,126,234,0.5);
}
.ap-phone-content { display: flex; flex-direction: column; gap: 16px; }
.ap-phone-stat {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    font-size: 0.8rem; color: #d1d5db;
    animation: ap-fade-in 0.6s ease both;
}
.ap-phone-stat:nth-child(1) { animation-delay: 0.2s; }
.ap-phone-stat:nth-child(2) { animation-delay: 0.4s; }
.ap-phone-stat:nth-child(3) { animation-delay: 0.6s; }
.ap-phone-stat:nth-child(4) { animation-delay: 0.8s; }
.ap-phone-stat:nth-child(5) { animation-delay: 1.0s; }

@keyframes ap-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.ap-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer; border: none;
}
.ap-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 6px 24px rgba(102,126,234,0.35);
}
.ap-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(102,126,234,0.45);
    color: #fff;
}
.ap-btn-secondary {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.35);
    color: #6ee7b7;
}
.ap-btn-secondary:hover {
    background: rgba(16,185,129,0.25);
    transform: translateY(-3px);
    color: #6ee7b7;
}
.ap-btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #d1d5db;
}
.ap-btn-ghost:hover { 
    background: rgba(255,255,255,0.12); 
    color: #fff;
    transform: translateY(-2px);
}
.ap-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== STATS BAR ===== */
.ap-stats-bar {
    padding: 32px 24px;
    background: rgba(102,126,234,0.04);
    border-top: 1px solid rgba(102,126,234,0.1);
    border-bottom: 1px solid rgba(102,126,234,0.1);
}
.ap-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.ap-stat-num {
    font-size: 2rem; font-weight: 900;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ap-stat-label { font-size: 0.78rem; color: #888; margin-top: 4px; }

/* ===== SECTION TITLES ===== */
.ap-section-title {
    text-align: center;
    font-size: 1.8rem; font-weight: 800;
    color: #e8e8e8;
    margin: 0 0 8px;
}
.ap-section-desc {
    text-align: center;
    font-size: 0.92rem; color: #888;
    margin: 0 0 40px;
}

/* ===== TWO SIDES ===== */
.ap-two-sides { padding: 60px 24px; }
.ap-sides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.ap-side-card {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ap-side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ap-side-way { border-color: rgba(16,185,129,0.2); }
.ap-side-way:hover { box-shadow: 0 12px 40px rgba(16,185,129,0.1); }
.ap-side-occ { border-color: rgba(102,126,234,0.2); }
.ap-side-occ:hover { box-shadow: 0 12px 40px rgba(102,126,234,0.1); }
.ap-side-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.ap-side-way .ap-side-icon { background: rgba(16,185,129,0.12); color: #6ee7b7; }
.ap-side-occ .ap-side-icon { background: rgba(102,126,234,0.12); color: #a5b4fc; }
.ap-side-title { font-size: 1.2rem; font-weight: 800; color: #e8e8e8; margin: 0 0 8px; }
.ap-side-desc { font-size: 0.85rem; color: #888; margin: 0 0 20px; }
.ap-side-list { list-style: none; padding: 0; margin: 0 0 24px; }
.ap-side-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem; color: #b0b0b0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ap-side-list li:last-child { border-bottom: none; }
.ap-side-way .ap-side-list i { color: #10b981; }
.ap-side-occ .ap-side-list i { color: #667eea; }
.ap-side-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.85rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ap-side-btn.way {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.ap-side-btn.way:hover { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.ap-side-btn.occ {
    background: rgba(102,126,234,0.12);
    border: 1px solid rgba(102,126,234,0.3);
    color: #a5b4fc;
}
.ap-side-btn.occ:hover { background: rgba(102,126,234,0.2); color: #a5b4fc; }

/* ===== CAPABILITIES GRID ===== */
.ap-capabilities { padding: 60px 24px; }
.ap-caps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.ap-cap-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.ap-cap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102,126,234,0.25);
}
.ap-cap-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.ap-cap-icon.green { background: rgba(16,185,129,0.12); color: #6ee7b7; }
.ap-cap-icon.blue { background: rgba(59,130,246,0.12); color: #93c5fd; }
.ap-cap-icon.purple { background: rgba(139,92,246,0.12); color: #c4b5fd; }
.ap-cap-icon.cyan { background: rgba(6,182,212,0.12); color: #67e8f9; }
.ap-cap-icon.orange { background: rgba(245,158,11,0.12); color: #fcd34d; }
.ap-cap-icon.pink { background: rgba(236,72,153,0.12); color: #f9a8d4; }
.ap-cap-card h4 { font-size: 0.92rem; font-weight: 700; color: #e0e0e0; margin: 0 0 8px; }
.ap-cap-card p { font-size: 0.78rem; color: #888; line-height: 1.5; margin: 0; }

/* ===== HOW IT WORKS ===== */
.ap-how-it-works {
    padding: 60px 24px;
    background: rgba(102,126,234,0.03);
    border-top: 1px solid rgba(102,126,234,0.08);
    border-bottom: 1px solid rgba(102,126,234,0.08);
}
.ap-steps {
    max-width: 640px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center;
}
.ap-step {
    display: flex; align-items: flex-start; gap: 20px;
    width: 100%;
}
.ap-step-num {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; color: #fff;
    box-shadow: 0 4px 20px rgba(102,126,234,0.3);
}
.ap-step-content { flex: 1; padding-top: 4px; }
.ap-step-content h4 { font-size: 1rem; font-weight: 700; color: #e0e0e0; margin: 0 0 6px; }
.ap-step-content p { font-size: 0.85rem; color: #888; line-height: 1.5; margin: 0; }
.ap-step-line {
    width: 2px; height: 32px;
    background: linear-gradient(to bottom, rgba(102,126,234,0.4), rgba(102,126,234,0.1));
    margin: 8px 0 8px 23px;
}

/* ===== ADVANTAGES ===== */
.ap-advantages { padding: 60px 24px; }
.ap-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.ap-adv-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s ease;
}
.ap-adv-card:hover { transform: translateY(-4px); }
.ap-adv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(139,92,246,0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #a5b4fc;
    margin: 0 auto 16px;
}
.ap-adv-card h4 { font-size: 0.95rem; font-weight: 700; color: #e0e0e0; margin: 0 0 8px; }
.ap-adv-card p { font-size: 0.82rem; color: #888; line-height: 1.5; margin: 0; }

/* ===== CTA ===== */
.ap-cta {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}
.ap-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(102,126,234,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ap-cta-content { position: relative; z-index: 1; }
.ap-cta h2 {
    font-size: 2rem; font-weight: 900; color: #e8e8e8;
    margin: 0 0 12px;
}
.ap-cta p { font-size: 0.95rem; color: #888; margin: 0 0 32px; }
.ap-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .ap-hero {
        flex-direction: column;
        padding: 40px 16px 30px;
        min-height: auto;
        text-align: center;
    }
    .ap-hero-content { max-width: 100%; }
    .ap-hero-title { font-size: 2rem; }
    .ap-hero-actions { justify-content: center; }
    .ap-hero-visual { display: none; }
    .ap-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ap-sides-grid { grid-template-columns: 1fr; }
    .ap-caps-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-adv-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-section-title { font-size: 1.4rem; }
    .ap-cta h2 { font-size: 1.5rem; }
    .ap-cta-buttons { flex-direction: column; align-items: center; }
    .ap-btn-lg { padding: 14px 24px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
    .ap-caps-grid { grid-template-columns: 1fr; }
    .ap-adv-grid { grid-template-columns: 1fr; }
    .ap-stat-num { font-size: 1.5rem; }
}

/* ===== PUBLIC LIGHT THEME ===== */
.ap-wrap {
    background:
        radial-gradient(circle at 15% 0%, rgba(102,126,234,0.12), transparent 32%),
        radial-gradient(circle at 90% 12%, rgba(16,185,129,0.08), transparent 30%),
        #ffffff;
    color: #0f172a;
}

.ap-hero,
.ap-two-sides,
.ap-capabilities,
.ap-advantages,
.ap-cta {
    background: transparent;
}

.ap-how-it-works,
.ap-stats-bar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-color: #e2e8f0;
}

.ap-hero-title,
.ap-stat-num {
    background: linear-gradient(135deg, #0f172a 0%, #4338ca 55%, #667eea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ap-section-title,
.ap-side-title,
.ap-cap-card h4,
.ap-step-content h4,
.ap-adv-card h4,
.ap-cta h2 {
    color: #0f172a;
}

.ap-hero-subtitle,
.ap-hero-desc,
.ap-section-desc,
.ap-side-desc,
.ap-side-list li,
.ap-cap-card p,
.ap-step-content p,
.ap-adv-card p,
.ap-cta p,
.ap-stat-label {
    color: #64748b;
}

.ap-hero-badge,
.ap-side-card,
.ap-cap-card,
.ap-adv-card,
.ap-phone-stat {
    background: rgba(255,255,255,0.94);
    border-color: #e2e8f0;
    box-shadow: 0 18px 50px rgba(15,23,42,0.07);
}

.ap-side-card:hover,
.ap-cap-card:hover,
.ap-adv-card:hover {
    box-shadow: 0 24px 70px rgba(102,126,234,0.13);
}

.ap-btn-ghost {
    background: #ffffff;
    border: 1px solid #dbe4f0;
    color: #334155;
    box-shadow: 0 12px 34px rgba(15,23,42,0.06);
}

.ap-btn-ghost:hover {
    background: #f8fafc;
    color: #4338ca;
    border-color: rgba(102,126,234,0.35);
}

.ap-hero-phone {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-color: rgba(102,126,234,0.25);
    box-shadow: 0 25px 70px rgba(15,23,42,0.12), 0 0 50px rgba(102,126,234,0.08);
}

.ap-phone-screen {
    background: #f8fafc;
}
