/* ========================================
   مؤسسة عصر البرمجة - Main Stylesheet
   Dark Tech Aesthetic | RTL Arabic
   ======================================== */

:root {
    --primary: #6C63FF;
    --primary-light: #8B85FF;
    --secondary: #4ECDC4;
    --accent: #FFD166;
    --bg-deep: #080C1A;
    --bg-dark: #0D1229;
    --bg-card: #111827;
    --bg-card2: #161f35;
    --border: rgba(108,99,255,0.2);
    --border-light: rgba(255,255,255,0.06);
    --text-primary: #F0F4FF;
    --text-secondary: #8892B0;
    --text-muted: #4A5568;
    --gradient-main: linear-gradient(135deg, #6C63FF, #4ECDC4);
    --gradient-warm: linear-gradient(135deg, #6C63FF, #FF6B9D);
    --shadow-glow: 0 0 60px rgba(108,99,255,0.15);
    --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Cursor Glow */
.cursor-glow {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
    position: fixed; pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    transition: 0.1s ease;
    border-radius: 50%;
}

/* ======= NAVBAR ======= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(8,12,26,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    padding: 20px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    font-family: var(--font-display);
    font-weight: 900; font-size: 1.1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-sub { font-size: 0.65rem; color: var(--text-secondary); }

.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-links li a {
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--text-primary);
    background: rgba(108,99,255,0.1);
}
.nav-links li a.nav-cta {
    background: var(--gradient-main);
    color: white !important;
    padding: 8px 24px;
    font-weight: 600;
}
.nav-links li a.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: var(--transition);
}

/* ======= LAYOUT ======= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3);
    color: var(--primary-light); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.2;
    margin-bottom: 16px;
}
.section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto;
}

/* ======= HERO ======= */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(108,99,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,99,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb-1 {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,205,196,0.12) 0%, transparent 70%);
    bottom: 0; right: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.hero-text {}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(78,205,196,0.1); border: 1px solid rgba(78,205,196,0.3);
    color: var(--secondary); padding: 8px 20px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .grad {
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    margin-bottom: 40px; line-height: 1.8; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    cursor: pointer; border: none; transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-main); color: white;
    box-shadow: 0 8px 32px rgba(108,99,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,99,255,0.5); }
.btn-outline {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(108,99,255,0.1); border-color: var(--primary); }

.hero-stats {
    display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Visual */
.hero-visual {
    position: relative; display: flex; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.hero-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    position: relative; overflow: hidden;
}
.hero-main-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(108,99,255,0.05) 0%, transparent 60%);
}
.hmc-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.hmc-title { font-weight: 700; font-size: 0.9rem; }
.hmc-badge {
    background: rgba(78,205,196,0.15); color: var(--secondary);
    padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.hmc-amount {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.hmc-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; }
.hmc-progress-bar {
    background: rgba(255,255,255,0.06);
    border-radius: 50px; height: 8px; margin-bottom: 8px; overflow: hidden;
}
.hmc-progress-fill {
    height: 100%; border-radius: 50px;
    background: var(--gradient-main);
    width: 73%;
    animation: progressFill 2s ease-out;
}
@keyframes progressFill { from { width: 0; } }
.hmc-progress-label {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--text-muted);
}
.hmc-platforms {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; margin-top: 20px;
}
.hmc-platform {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 8px; text-align: center;
    font-size: 1.4rem;
}
.hmc-platform span { display: block; font-size: 0.6rem; color: var(--text-muted); margin-top: 4px; }

.hero-float-1, .hero-float-2 {
    position: absolute;
    background: var(--bg-card2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-card);
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-1 { top: -20px; left: -60px; animation-delay: 0s; }
.hero-float-2 { bottom: 20px; right: -40px; animation-delay: 2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hf-icon { font-size: 1.5rem; margin-bottom: 4px; }
.hf-num { font-weight: 800; font-size: 1.1rem; color: var(--secondary); }
.hf-label { font-size: 0.7rem; color: var(--text-muted); }

/* ======= STATS SECTION ======= */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-card {
    padding: 40px 32px; text-align: center;
    position: relative;
    transition: var(--transition);
}
.stat-card:not(:last-child)::after {
    content: ''; position: absolute;
    top: 20%; right: 0; height: 60%; width: 1px;
    background: var(--border-light);
}
.stat-card:hover { background: rgba(108,99,255,0.03); }
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-unit { font-size: 1.2rem; font-weight: 700; color: var(--primary-light); }
.stat-label { font-size: 0.95rem; color: var(--text-secondary); margin-top: 8px; font-weight: 500; }
.stat-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ======= PLATFORMS SECTION ======= */
.platforms-section { background: var(--bg-deep); }
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative; overflow: hidden;
    cursor: default;
}
.platform-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient-main);
    opacity: 0; transition: var(--transition);
}
.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.platform-card:hover::before { opacity: 0.03; }
.pc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
    background: rgba(108,99,255,0.1);
    border: 1px solid rgba(108,99,255,0.2);
}
.pc-num {
    font-size: 0.7rem; color: var(--primary-light); font-weight: 600;
    letter-spacing: 0.1em; margin-bottom: 8px;
}
.pc-title {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 800; margin-bottom: 12px;
}
.pc-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.pc-features { margin-bottom: 24px; }
.pc-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-secondary);
    padding: 4px 0;
}
.pc-feature::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--secondary); flex-shrink: 0;
}
.pc-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600; color: var(--primary-light);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.pc-link:hover { color: var(--secondary); border-bottom-color: var(--secondary); }
.pc-tag {
    display: inline-block; background: rgba(78,205,196,0.1);
    color: var(--secondary); font-size: 0.7rem; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
    border: 1px solid rgba(78,205,196,0.2); margin-bottom: 12px;
}

/* ======= WHY US ======= */
.why-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.why-text {}
.why-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; margin-bottom: 16px;
}
.why-subtitle { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 40px; }
.why-reasons { display: flex; flex-direction: column; gap: 20px; }
.why-reason {
    display: flex; gap: 20px;
    padding: 20px; border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.why-reason:hover {
    border-color: var(--primary);
    background: rgba(108,99,255,0.04);
}
.wr-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.wr-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.wr-desc { font-size: 0.85rem; color: var(--text-secondary); }

.why-visual { position: relative; }
.why-card-main {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-glow);
}
.wcm-header { 
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.wcm-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.wcm-name { font-weight: 700; font-size: 0.95rem; }
.wcm-role { font-size: 0.75rem; color: var(--text-secondary); }
.wcm-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.wcm-stat { text-align: center; }
.wcm-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.wcm-stat-label { font-size: 0.7rem; color: var(--text-muted); }
.wcm-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.wcm-activity { display: flex; flex-direction: column; gap: 12px; }
.wcm-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px; background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
}
.wcm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wcm-dot.green { background: #4ADE80; }
.wcm-dot.blue { background: var(--primary); }
.wcm-dot.teal { background: var(--secondary); }
.wcm-item-text { font-size: 0.85rem; }
.wcm-item-time { font-size: 0.7rem; color: var(--text-muted); margin-right: auto; }

/* ======= VALUES SECTION ======= */
.values-section { background: var(--bg-deep); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px; text-align: center;
    transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.value-icon { font-size: 3rem; margin-bottom: 20px; }
.value-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.value-desc { color: var(--text-secondary); font-size: 0.9rem; }

/* ======= CONTACT PAGE ======= */
.contact-section { padding: 120px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info-title {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 900; margin-bottom: 16px;
}
.contact-info-desc { color: var(--text-secondary); margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-item:hover { border-color: var(--primary); }
.ci-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(108,99,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--text-muted); }
.ci-value { font-weight: 600; font-size: 0.95rem; }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-subtitle { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition);
    direction: rtl;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none; border-color: var(--primary);
    background: rgba(108,99,255,0.05);
    box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg-card); }
.form-submit {
    width: 100%; padding: 16px;
    background: var(--gradient-main); color: white;
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(108,99,255,0.4); }
.form-message {
    padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px;
    font-size: 0.9rem; font-weight: 500; display: none;
}
.form-message.success { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.form-message.error { background: rgba(248,113,113,0.1); color: #F87171; border: 1px solid rgba(248,113,113,0.2); }

/* ======= ABOUT PAGE ======= */
.about-hero { padding: 140px 0 80px; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 20px; }
.about-hero-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; margin-bottom: 32px; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.av-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 24px;
    transition: var(--transition);
}
.av-card:hover { border-color: var(--primary); }
.av-icon { font-size: 1.8rem; margin-bottom: 12px; }
.av-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.av-desc { font-size: 0.8rem; color: var(--text-secondary); }
.av-card.span-2 { grid-column: span 2; }

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
    padding: 140px 0 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(108,99,255,0.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; margin-bottom: 16px;
}
.page-hero-desc { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ======= CTA SECTION ======= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(108,99,255,0.1) 0%, rgba(78,205,196,0.05) 100%);
    border-top: 1px solid var(--border-light);
}
.cta-box {
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; margin-bottom: 16px;
}
.cta-desc { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
    position: relative; overflow: hidden;
}
.footer-glow {
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(108,99,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px; margin-bottom: 60px;
}
.footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-main { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-logo-sub { display: block; font-size: 0.65rem; color: var(--text-secondary); }
.footer-tagline { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 20px; line-height: 1.7; }
.footer-social {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-secondary); font-size: 0.85rem;
    transition: var(--transition); padding: 8px 0;
}
.footer-social:hover { color: var(--primary-light); }
.footer-links h4, .footer-platforms h4, .footer-contact h4 {
    font-weight: 700; font-size: 0.9rem; margin-bottom: 20px;
    color: var(--text-primary);
}
.footer-links ul, .footer-platforms ul {
    display: flex; flex-direction: column; gap: 10px;
}
.footer-links ul li a, .footer-platforms ul li a {
    color: var(--text-secondary); font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links ul li a:hover, .footer-platforms ul li a:hover { color: var(--text-primary); }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-secondary); font-size: 0.85rem;
    transition: var(--transition);
}
.footer-contact-item:hover { color: var(--text-primary); }
.fc-icon { font-size: 1rem; }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-made { color: var(--text-muted); }

/* ======= ANIMATIONS ======= */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ======= ALERT / FLASH ======= */
.alert {
    padding: 16px 20px; border-radius: var(--radius-sm);
    margin-bottom: 24px; font-size: 0.9rem; font-weight: 500;
}
.alert-success { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.alert-error { background: rgba(248,113,113,0.1); color: #F87171; border: 1px solid rgba(248,113,113,0.2); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2)::after { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-hero-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 70px; background: var(--bg-deep); padding: 32px; gap: 8px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 14px 20px; font-size: 1.1rem; border-radius: var(--radius-sm); }
    .nav-toggle { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card::after { display: none; }
    .platforms-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .nav-container { padding: 16px 20px; }
}
