/* Nexorion Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --nx-bg: #090e1a;
    --nx-bg-2: #0d1426;
    --nx-bg-3: #111827;
    --nx-border: #1e2d4a;
    --nx-accent: #3b82f6;
    --nx-accent-2: #8b5cf6;
    --nx-text: #e2e8f0;
    --nx-text-2: #94a3b8;
    --nx-font: 'Space Grotesk', system-ui, sans-serif;
    --nx-mono: 'JetBrains Mono', monospace;
    --nx-success: #10b981;
    --nx-error: #ef4444;
}

body {
    background-color: var(--nx-bg);
    color: var(--nx-text);
    font-family: var(--nx-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.nx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── HEADER ─── */
.nx-header {
    background-color: rgba(9, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--nx-border);
}

.nx-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nx-logo-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nx-logo-icon { color: var(--nx-accent); }

.nx-nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nx-nav-list a {
    color: var(--nx-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nx-nav-list a:hover { color: var(--nx-accent); }

/* ─── BUTTONS ─── */
.nx-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.nx-btn--primary {
    background: linear-gradient(135deg, var(--nx-accent), var(--nx-accent-2));
    color: #fff;
    border: none;
}

.nx-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.nx-btn--ghost {
    background: transparent;
    color: var(--nx-text);
    border: 1px solid var(--nx-border);
}

.nx-btn--ghost:hover {
    border-color: var(--nx-accent);
    color: var(--nx-accent);
}

.nx-btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.nx-btn--lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.nx-btn--outline {
    background: transparent;
    color: var(--nx-accent);
    border: 2px solid var(--nx-accent);
}

.nx-btn--outline:hover {
    background: var(--nx-accent);
    color: #fff;
}

/* ─── HERO SECTION ─── */
.nx-hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 60%);
}

.nx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--nx-success);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.nx-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--nx-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--nx-success);
}

.nx-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.nx-hero-title-accent {
    background: linear-gradient(to right, var(--nx-accent), var(--nx-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nx-hero-subtitle {
    font-size: 1.25rem;
    color: var(--nx-text-2);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.nx-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* ─── TERMINAL ─── */
.nx-hero-terminal {
    background: #050810;
    border: 1px solid var(--nx-border);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

.nx-terminal-header {
    background: #0d1426;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--nx-border);
}

.nx-terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.nx-terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot--red { background: #ef4444; }
.dot--yellow { background: #eab308; }
.dot--green { background: #22c55e; }

.nx-terminal-title {
    margin: 0 auto;
    color: var(--nx-text-2);
    font-family: var(--nx-mono);
    font-size: 0.85rem;
}

.nx-terminal-body {
    padding: 1.5rem;
    font-family: var(--nx-mono);
    font-size: 0.95rem;
    line-height: 1.8;
}

.t-prompt { color: var(--nx-success); }
.t-symbol { color: var(--nx-text-2); }
.t-host { color: var(--nx-accent); }
.t-cmd { color: #fff; }
.t-output { color: var(--nx-text-2); }
.t-success { color: var(--nx-success); }
.t-error { color: var(--nx-error); }
.t-blink { animation: blink 1s step-end infinite; }

@keyframes blink {
    50% { opacity: 0; }
}

/* ─── STATS SECTION ─── */
.nx-stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
    background: var(--nx-bg-2);
}

.nx-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.nx-stat-card {
    padding: 1rem;
}

.nx-stat-icon {
    font-size: 2rem;
    color: var(--nx-accent);
    margin-bottom: 1rem;
}

.nx-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.nx-stat-label {
    color: var(--nx-text-2);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── COMMON SECTIONS ─── */
.nx-section { padding: 5rem 0; }
.nx-section--dark { background: var(--nx-bg-2); }
.nx-section-header { text-align: center; margin-bottom: 4rem; }
.nx-section-label { color: var(--nx-accent); font-family: var(--nx-mono); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nx-section-title { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; font-weight: 700; }
.nx-section-subtitle { color: var(--nx-text-2); font-size: 1.1rem; }

/* ─── CARDS GRID ─── */
.nx-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.nx-card {
    background: var(--nx-bg);
    border: 1px solid var(--nx-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.nx-section--dark .nx-card {
    background: var(--nx-bg-3);
}

.nx-card:hover {
    transform: translateY(-5px);
    border-color: var(--nx-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nx-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.nx-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.nx-card:hover .nx-card-image img {
    transform: scale(1.05);
}

.nx-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nx-card-top { margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; }

.nx-card-title { font-size: 1.25rem; margin: 0 0 1rem 0; }
.nx-card-title a { color: #fff; text-decoration: none; }
.nx-card-title a:hover { color: var(--nx-accent); }

.nx-card-excerpt { color: var(--nx-text-2); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }

.nx-card-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nx-border);
}

.nx-card-link {
    font-size: 0.9rem;
    font-weight: 600;
}

.nx-card-link--secondary {
    color: var(--nx-text-2);
}

/* ─── BADGES ─── */
.nx-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status--active { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.status--done { background: rgba(16, 185, 129, 0.1); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }
.status--paused { background: rgba(234, 179, 8, 0.1); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }
.status--archived { background: rgba(100, 116, 139, 0.1); color: #94a3b8; border: 1px solid rgba(100, 116, 139, 0.2); }

.nx-tech-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.nx-tech-badge { background: rgba(255,255,255,0.05); padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-family: var(--nx-mono); color: var(--nx-text); border: 1px solid var(--nx-border); }

/* ─── EVENTS LIST ─── */
.nx-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.nx-event-row {
    display: flex;
    background: var(--nx-bg);
    border: 1px solid var(--nx-border);
    border-radius: 12px;
    padding: 1.5rem;
    gap: 2rem;
    align-items: center;
    transition: transform 0.2s, border-color 0.2s;
}

.nx-event-row:hover {
    transform: translateX(5px);
    border-color: var(--nx-accent);
}

.nx-event-date-block {
    text-align: center;
    min-width: 80px;
    border-right: 1px solid var(--nx-border);
    padding-right: 2rem;
}

.nx-event-day { font-size: 2.5rem; font-weight: 700; color: var(--nx-accent); line-height: 1; }
.nx-event-month { font-size: 1rem; text-transform: uppercase; color: var(--nx-text-2); font-weight: 600; margin-top: 0.5rem; }

.nx-event-info { flex: 1; }
.nx-event-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--nx-text-2); }
.nx-event-title { font-size: 1.3rem; margin: 0; }
.nx-event-title a { color: #fff; }

.nx-mode-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.mode--online { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.mode--offline { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.mode--hybrid { background: rgba(139, 92, 246, 0.1); color: #a78bfa; }

/* ─── TEAM GRID ─── */
.nx-team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    align-items: center;
}

.nx-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--nx-border);
    padding: 4px;
    transition: border-color 0.3s;
}

.nx-team-card:hover .nx-team-avatar {
    border-color: var(--nx-accent);
}

.nx-team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.nx-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--nx-bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nx-text-2);
    text-decoration: none;
}

.nx-team-name { font-size: 1.25rem; margin: 0 0 0.5rem; }
.nx-team-name a { color: #fff; }
.nx-team-position { color: var(--nx-accent); font-size: 0.9rem; font-weight: 500; margin-bottom: 1rem; }

.nx-skill-badges { justify-content: center; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.nx-skill-badge { font-size: 0.7rem; background: var(--nx-bg-3); padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--nx-text-2); }

.nx-social-links { display: flex; justify-content: center; gap: 1rem; }
.nx-social-link { color: var(--nx-text-2); transition: color 0.2s, transform 0.2s; }
.nx-social-link:hover { color: var(--nx-accent); transform: translateY(-2px); }

/* ─── SECTION CTA ─── */
.nx-section-cta { text-align: center; margin-top: 3rem; }

/* ─── FOOTER ─── */
.nx-footer {
    border-top: 1px solid var(--nx-border);
    padding: 5rem 0 2rem;
    background: var(--nx-bg-2);
}

.nx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.nx-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.nx-footer-tagline { color: var(--nx-text-2); margin-bottom: 1.5rem; }

.nx-footer-col-title { color: #fff; margin-bottom: 1.5rem; font-size: 1.1rem; }
.nx-footer-links { list-style: none; padding: 0; margin: 0; }
.nx-footer-links li { margin-bottom: 0.75rem; }
.nx-footer-links a { color: var(--nx-text-2); transition: color 0.2s; }
.nx-footer-links a:hover { color: var(--nx-accent); }

.nx-footer-motto-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
}

.nx-footer-motto-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.nx-footer-motto-text { font-style: italic; color: var(--nx-text); margin-bottom: 1rem; }
.nx-footer-motto-text strong { color: var(--nx-accent); }
.nx-footer-motto-tag { font-size: 0.85rem; color: var(--nx-text-2); font-weight: 600; }

.nx-footer-bottom {
    border-top: 1px solid var(--nx-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--nx-text-2);
}

.nx-footer-made-heart { color: var(--nx-accent); }

/* ─── RESPONSIVE ─── */
.nx-mobile-nav { display: none; }
.nx-menu-toggle { display: none; }

@media (max-width: 992px) {
    .nx-hero-title { font-size: 3.5rem; }
    .nx-footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .nx-event-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .nx-event-date-block { border-right: none; border-bottom: 1px solid var(--nx-border); padding-right: 0; padding-bottom: 1rem; width: 100%; text-align: left; display: flex; align-items: baseline; gap: 1rem; }
    .nx-event-action { width: 100%; }
    .nx-event-action .nx-btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .nx-nav-list { display: none; }
    .nx-menu-toggle { display: block; background: transparent; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
    .nx-hamburger { display: block; width: 24px; height: 18px; position: relative; }
    .nx-hamburger span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; transition: 0.3s; }
    .nx-hamburger span:nth-child(1) { top: 0; }
    .nx-hamburger span:nth-child(2) { top: 8px; }
    .nx-hamburger span:nth-child(3) { top: 16px; }
    
    .nx-header-actions .nx-btn { display: none; }
    
    .nx-hero { padding: 4rem 0; }
    .nx-hero-title { font-size: 2.5rem; }
    .nx-hero-actions { flex-direction: column; }
    
    .nx-section { padding: 3rem 0; }
    .nx-section-title { font-size: 2rem; }
    
    .nx-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nx-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* EMPTY STATE */
.nx-empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--nx-bg-2);
    border: 1px dashed var(--nx-border);
    border-radius: 12px;
    color: var(--nx-text-2);
    grid-column: 1 / -1;
}

/* ─── PURPOSE PAGE ─── */
.nx-page-hero { padding: 6rem 0 3rem; text-align: center; position: relative; overflow: hidden; }
.nx-page-hero--sm { padding: 4rem 0 2rem; }
.nx-page-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.nx-page-subtitle { font-size: 1.25rem; color: var(--nx-text-2); max-width: 600px; margin: 0 auto; }

.nx-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nx-purpose-card {
    background: var(--nx-bg-2);
    border: 1px solid var(--nx-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.nx-purpose-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--nx-accent), var(--nx-accent-2));
    opacity: 0;
    transition: opacity 0.3s;
}

.nx-purpose-card:hover {
    transform: translateY(-5px);
    border-color: var(--nx-border-2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nx-purpose-card:hover::before { opacity: 1; }

.nx-purpose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.03);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--nx-border);
}

.nx-purpose-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.nx-purpose-text {
    color: var(--nx-text-2);
    font-size: 1rem;
    line-height: 1.7;
}

.nx-purpose-content {
    background: var(--nx-bg-2);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--nx-border);
}

@media (max-width: 768px) {
    .nx-purpose-grid { grid-template-columns: 1fr; }
    .nx-page-title { font-size: 2.5rem; }
}

/* ─── DETAILED TEAM SINGLE PAGE (PERSONAL PROFILE) ─── */
.nx-profile-header {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--nx-border);
    margin-bottom: 3rem;
}

.nx-profile-name {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.nx-profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Sol Taraf: İçerik Kutuları */
.nx-content-box {
    margin-bottom: 2.5rem;
}

.nx-content-box-title {
    font-size: 1.25rem;
    color: #fff;
    border-bottom: 1px solid var(--nx-border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nx-box-icon {
    font-size: 1.2rem;
    color: var(--nx-accent);
}

.nx-content-box.nx-content-box--transparent {
    background: transparent;
    border: none;
    padding: 0;
}

/* Sağ Taraf: Sidebar Kutuları */
.nx-sidebar-box {
    background: var(--nx-bg-2);
    border: 1px solid var(--nx-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.nx-sidebar-box-title {
    font-size: 0.85rem;
    color: var(--nx-text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.nx-specs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nx-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
}

.nx-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nx-spec-label {
    color: var(--nx-text-2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nx-spec-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

/* İletişim Butonları */
.nx-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nx-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}

.nx-contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.nx-contact-btn--ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nx-contact-btn--in {
    background: #0077b5;
}

.nx-contact-btn--gh {
    background: #333;
}

.nx-contact-btn--web {
    background: var(--nx-bg-3);
    border: 1px solid var(--nx-border);
}

.nx-btn-icon {
    font-size: 1.2rem;
}

/* Fotoğraf Kartı */
.nx-sidebar-photo-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nx-border);
    aspect-ratio: 1 / 1;
}

.nx-profile-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nx-profile-large-placeholder {
    width: 100%;
    height: 100%;
    background: var(--nx-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--nx-text-2);
}

@media (max-width: 992px) {
    .nx-profile-layout { grid-template-columns: 1fr; }
    .nx-profile-sidebar { order: -1; }
}

/* ─── PREMIUM NEXTGENDEVS LAYOUT STYLES ─── */

/* Geniş Grid ve Boşluklar */
.nx-premium-section {
    padding: 6rem 0;
}

.nx-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .nx-split-layout {
        grid-template-columns: 1fr;
    }
}

/* Stat Cards (Hakkında Sağ Sütun) */
.nx-stat-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nx-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.nx-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.nx-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--nx-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.nx-stat-value .icon {
    font-size: 2.5rem;
}

.nx-stat-label {
    font-size: 1rem;
    color: var(--nx-text-2);
    font-weight: 500;
}

/* Glow Cards (Misyon / Vizyon) */
.nx-glow-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .nx-glow-cards-grid {
        grid-template-columns: 1fr;
    }
}

.nx-glow-card {
    position: relative;
    background: var(--nx-bg-2);
    border-radius: 16px;
    padding: 3rem;
    z-index: 1;
}

.nx-glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--nx-accent) 0%, var(--nx-accent-2) 100%);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.nx-glow-card:hover::before {
    opacity: 1;
}

.nx-glow-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: var(--nx-bg-2);
    z-index: -1;
}

.nx-glow-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.nx-glow-card-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.nx-glow-card-text {
    color: var(--nx-text-2);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Border Top Cards (Platform Temelleri) */
.nx-border-top-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nx-border-top-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.nx-border-top-card:hover {
    transform: translateY(-5px);
}

.nx-border-top-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nx-accent), var(--nx-accent-2));
}

.nx-border-top-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.nx-border-top-card-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.nx-border-top-card-text {
    color: var(--nx-text-2);
    font-size: 0.95rem;
    line-height: 1.6;
}
