/* ============================================
   SemihAkbas.com.tr — V2 Complete Redesign
   Deep Space + Terminal Aesthetic
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-0: #050508;
    --bg-1: #0a0a10;
    --bg-2: #0f0f18;
    --bg-3: #14141f;
    --bg-card: rgba(255, 255, 255, 0.022);
    --bg-card-h: rgba(255, 255, 255, 0.045);
    --border: rgba(255, 255, 255, 0.055);
    --border-h: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(124, 58, 237, 0.35);
    --text-1: #f0f0f5;
    --text-2: #9d9db5;
    --text-3: #5c5c72;
    --accent: #7c3aed;
    --accent-l: #a78bfa;
    --accent-d: #6d28d9;
    --grad: linear-gradient(135deg, #7c3aed, #a855f7);
    --grad-2: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
    --green: #22c55e;
    --green-soft: rgba(34, 197, 94, 0.1);
    --red: #ef4444;
    --yellow: #eab308;
    --cyan: #06b6d4;
    --r: 16px;
    --r-sm: 10px;
    --r-xs: 6px;
    --font: 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-0);
    color: var(--text-1);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: rgba(124, 58, 237, 0.3);
    color: #fff;
}

a {
    text-decoration: none;
    color: var(--accent-l);
    transition: all .3s var(--ease);
}

a:hover {
    color: #c4b5fd;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   NAVBAR — Logo left, Menu center, CTA right
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.92);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: var(--text-1);
    font-weight: 300;
    letter-spacing: -0.5px;
    z-index: 2;
}

.nav-logo i {
    font-size: 1.3rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo strong {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--text-3);
    font-size: .84rem;
    font-weight: 500;
    transition: all .25s var(--ease);
}

.nav-menu a:hover {
    color: var(--text-1);
}

.nav-menu a.active {
    color: #fff;
    background: var(--grad);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: .84rem;
    font-weight: 600;
    transition: all .3s var(--ease);
    z-index: 2;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-h);
    color: var(--text-1);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
}

/* ==========================================
   HERO V2 — Split Layout + Terminal
   ========================================== */
.hero-v2 {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: rgba(124, 58, 237, 0.08);
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 5%;
    background: rgba(168, 85, 247, 0.06);
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 40%;
    background: rgba(6, 182, 212, 0.04);
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--accent-l);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .7s var(--ease);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: .6;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.hero-left h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeUp .7s var(--ease) .1s backwards;
}

.hero-typed {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeUp .7s var(--ease) .2s backwards;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    animation: fadeUp .7s var(--ease) .3s backwards;
}

/* Glow button */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    background: var(--grad);
    color: #fff;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), 0 4px 16px rgba(124, 58, 237, 0.2);
    transition: all .3s var(--ease);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4), 0 8px 30px rgba(124, 58, 237, 0.3);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    background: transparent;
    color: var(--text-2);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.btn-ghost:hover {
    color: var(--text-1);
    border-color: var(--border-h);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
}

/* Hero inline stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeUp .7s var(--ease) .4s backwards;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-lbl {
    font-size: .75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Terminal card */
.hero-terminal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.05);
    animation: fadeUp .7s var(--ease) .4s backwards;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ef4444;
}

.terminal-dot.yellow {
    background: #eab308;
}

.terminal-dot.green {
    background: #22c55e;
}

.terminal-title {
    margin-left: auto;
    font-size: .72rem;
    color: var(--text-3);
    font-family: var(--mono);
}

.terminal-body {
    padding: 20px;
    font-family: var(--mono);
    font-size: .82rem;
    line-height: 2;
}

.terminal-line {
    color: var(--text-3);
}

.t-prompt {
    color: var(--green);
    font-weight: 700;
}

.t-cmd {
    color: var(--accent-l);
}

.t-arg {
    color: var(--text-2);
}

.t-response {
    padding-left: 16px;
    color: var(--text-2);
}

.t-success {
    color: var(--green);
}

.t-cat {
    padding-left: 24px;
}

.t-cat i {
    color: var(--accent);
    margin-right: 6px;
    font-size: .75rem;
}

.t-cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 0;
}

.section-title-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
}

.section-title-bar h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title-bar p {
    color: var(--text-3);
    font-size: .9rem;
    margin-top: 4px;
}

/* Category Cards — Horizontal */
.category-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 calc((100% - 48px) / 5);
    min-width: 0;
    padding: 18px 20px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: .88rem;
    font-weight: 500;
    transition: all .3s var(--ease);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-card:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: var(--border-accent);
    color: var(--text-1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
}

.cat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-l);
    font-size: .8rem;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.category-card:hover .cat-icon {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

.cat-name {
    flex: 1;
}

.cat-arrow {
    font-size: .7rem;
    color: var(--text-3);
    transition: all .3s var(--ease);
}

.category-card:hover .cat-arrow {
    color: var(--accent-l);
    transform: translateX(3px);
}

/* ==========================================
   SOFTWARE CARDS — New Design
   ========================================== */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.software-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: all .35s var(--ease);
    color: inherit;
    text-decoration: none;
    position: relative;
}

.software-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0;
    transition: all .35s var(--ease);
}

.software-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
    color: inherit;
}

.software-card:hover::after {
    opacity: 1;
}

.software-card .card-image {
    height: 200px;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.software-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.software-card:hover .card-image img {
    transform: scale(1.06);
}

.card-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 2.5rem;
    opacity: .3;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--accent-l);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.software-card .card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.software-card .card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.3px;
    color: var(--text-1);
}

.software-card .card-body p {
    font-size: .85rem;
    color: var(--text-2);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    line-height: 1.7;
}

.card-footer {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--text-3);
}

.card-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-footer i {
    font-size: .7rem;
}

/* Backwards compat — old card classes */
.card-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-l);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
    width: fit-content;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-1);
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: var(--accent-l);
}

.card-desc {
    color: var(--text-2);
    font-size: .88rem;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text-3);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================
   SOFTWARE DETAIL
   ========================================== */
.software-detail {
    padding: 120px 0 80px;
}

.detail-header {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.detail-screenshot {
    width: 420px;
    min-width: 420px;
    height: 300px;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-screenshot .no-image {
    font-size: 4rem;
    color: var(--text-3);
    opacity: .3;
}

.detail-info {
    flex: 1;
}

.detail-info .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    color: var(--accent-l);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.detail-info h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.detail-info .short-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 24px;
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.meta-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
}

.meta-item .label {
    font-size: .7rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
    font-weight: 600;
}

.meta-item .value {
    font-weight: 700;
    font-size: .92rem;
}

.detail-description {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    margin-bottom: 36px;
}

.detail-description h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-description .content {
    color: var(--text-2);
    line-height: 1.9;
}

/* ==========================================
   COMMENTS
   ========================================== */
.comments-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    margin-bottom: 36px;
}

.comments-section h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
}

.comment-meta .comment-name {
    font-weight: 600;
    font-size: .92rem;
}

.comment-meta .comment-date {
    font-size: .78rem;
    color: var(--text-3);
}

.comment-body {
    color: var(--text-2);
    font-size: .92rem;
    padding-left: 54px;
}

.comment-stars {
    color: var(--yellow);
    font-size: .82rem;
    margin-bottom: 4px;
}

.comment-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.comment-form h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

/* ==========================================
   BUTTONS — General
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-1);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--border-accent);
    color: var(--accent-l);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: .82rem;
}

.btn-danger {
    background: var(--red);
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--green);
    color: #fff;
}

.btn-success:hover {
    background: #16a34a;
}

/* ==========================================
   FORMS
   ========================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-1);
    font-family: var(--font);
    font-size: .92rem;
    transition: all .3s var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239d9db5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.star-rating {
    display: flex;
    gap: 4px;
    direction: rtl;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-3);
    transition: all .2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--yellow);
}

/* ==========================================
   FILTER BAR (softwares page)
   ========================================== */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar .search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.filter-bar .search-box input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-1);
    font-family: var(--font);
    font-size: .92rem;
}

.filter-bar .search-box input:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-bar .search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: .83rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chip:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--accent-l);
}

.chip.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--accent-l);
    font-weight: 600;
}

.chip i {
    font-size: .75rem;
}

.chip-sm {
    padding: 5px 14px;
    font-size: .78rem;
}

.chip-sm:hover,
.chip-sm.active {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--accent-l);
    box-shadow: none;
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 44px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-xs);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-weight: 600;
    font-size: .85rem;
    transition: all .25s var(--ease);
    text-decoration: none;
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent-l);
}

.pagination span.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--accent-l);
}

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-3);
}

.empty-state i {
    font-size: 3.5rem;
    margin-bottom: 18px;
    opacity: .15;
    display: block;
}

.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-2);
}

/* ==========================================
   ABOUT PAGE — Premium Redesign
   ========================================== */
.about-section {
    padding: 120px 0 80px;
}

/* Hero: photo + intro */
.about-hero {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto 48px;
}

.about-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    position: relative;
    z-index: 1;
}

.about-photo-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--grad);
    z-index: 0;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: .7;
        transform: scale(1.03);
    }
}

.about-intro {
    flex: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--accent-l);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-intro h1 {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--text-1);
    margin-bottom: 12px;
}

.about-intro h1 span {
    font-weight: 800;
}

.about-tagline {
    font-size: 1rem;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-social {
    display: flex;
    gap: 10px;
}

.about-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 1rem;
    transition: all .3s var(--ease);
}

.about-social a:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* Stat highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto 48px;
}

.highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 24px 16px;
    text-align: center;
    transition: all .3s var(--ease);
}

.highlight-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.06);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin: 0 auto 12px;
}

.highlight-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 3px;
}

.highlight-item span {
    font-size: .75rem;
    color: var(--text-3);
    font-weight: 500;
}

/* Bio card */
.about-bio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 44px;
    max-width: 860px;
    margin: 0 auto 48px;
    position: relative;
}

.about-bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.about-bio-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bio-card h2 i {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-bio-card p {
    color: var(--text-2);
    font-size: .95rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-bio-card p:last-child {
    margin-bottom: 0;
}

.about-bio-card p strong {
    color: var(--accent-l);
}

/* Section titles */
.about-section-title {
    max-width: 860px;
    margin: 0 auto 20px;
}

.about-section-title h2 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section-title h2 i {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand cards */
.about-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 860px;
    margin: 0 auto 48px;
}

.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 28px 16px;
    text-align: center;
    transition: all .3s var(--ease);
}

.brand-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.06);
}

.brand-card i {
    font-size: 1.6rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.brand-card span {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-2);
}

/* Skills grid */
.about-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.skill-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 24px;
}

.skill-group h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-3);
    margin-bottom: 14px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .about-social {
        justify-content: center;
    }

    .about-highlights,
    .about-brands {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 120px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: var(--r-sm);
    margin-bottom: 10px;
    transition: all .25s var(--ease);
    border: 1px solid transparent;
}

.contact-item:hover {
    background: rgba(124, 58, 237, 0.04);
    border-color: rgba(124, 58, 237, 0.08);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--accent-l);
    width: 18px;
    text-align: center;
}

.contact-item .info .label {
    font-size: .72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.contact-item .info .value {
    font-weight: 600;
    font-size: .9rem;
}

/* ==========================================
   FOOTER — Premium Redesign
   ========================================== */
.footer {
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
    padding: 0;
    margin-top: 80px;
    position: relative;
}

.footer-glow {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, #a855f7 50%, var(--accent) 75%, transparent 100%);
    opacity: 0.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 56px 0 48px;
}

/* Brand column */
.footer-brand {
    padding-right: 24px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--text-1);
    font-weight: 300;
    margin-bottom: 18px;
    text-decoration: none;
    transition: opacity .3s ease;
}

.footer-logo:hover {
    opacity: .85;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.footer-logo strong {
    font-weight: 800;
}

.footer-tagline {
    color: var(--text-3);
    font-size: .88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.social-link:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

/* Column headings */
.footer-col h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad);
    display: inline-block;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul a {
    color: var(--text-3);
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.footer-col ul a:hover {
    color: var(--accent-l);
    transform: translateX(4px);
}

.footer-col ul a i {
    font-size: .55rem;
    color: var(--accent);
    width: 12px;
    opacity: .5;
    transition: opacity .25s ease;
}

.footer-col ul a:hover i {
    opacity: 1;
}

/* Contact items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

.footer-contact-item:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.12);
    transform: translateX(3px);
}

.footer-location {
    cursor: default;
}

.footer-location:hover {
    transform: none;
}

.fci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-l);
    font-size: .85rem;
    flex-shrink: 0;
}

.fci-info {
    display: flex;
    flex-direction: column;
}

.fci-label {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-3);
    margin-bottom: 1px;
}

.fci-value {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: .82rem;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copy-icon {
    color: var(--accent);
    font-size: .75rem;
    opacity: .5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom-links a {
    color: var(--text-3);
    font-size: .8rem;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all .25s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-l);
    background: rgba(124, 58, 237, 0.06);
}

.footer-sep {
    color: var(--border);
    font-size: .7rem;
}

.footer-scroll-top {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.footer-scroll-top:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

/* ==========================================
   ALERTS & BADGES
   ========================================== */
.alert {
    padding: 14px 20px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: .88rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.badge-primary {
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-l);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.badge-success {
    background: rgba(34, 197, 94, 0.08);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.12);
}

.badge-info {
    background: rgba(6, 182, 212, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.12);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.08);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

/* ==========================================
   ADMIN PANEL
   ========================================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-1);
    border-right: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar .sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-1);
}

.admin-sidebar .sidebar-logo i {
    font-size: 1.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-sidebar nav {
    padding: 16px 12px;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--r-xs);
    color: var(--text-3);
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: 3px;
    transition: all .2s var(--ease);
}

.admin-sidebar nav a:hover {
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.02);
}

.admin-sidebar nav a.active {
    color: var(--accent-l);
    background: rgba(124, 58, 237, 0.08);
}

.admin-sidebar nav a i {
    width: 18px;
    text-align: center;
    font-size: .85rem;
}

.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.sidebar-label {
    padding: 16px 20px 6px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-3);
    opacity: .6;
}

.sidebar-menu {
    list-style: none;
    padding: 0 12px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--r-xs);
    color: var(--text-3);
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: all .2s var(--ease);
}

.sidebar-menu li a:hover {
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-menu li a.active {
    color: var(--accent-l);
    background: rgba(124, 58, 237, 0.08);
}

.sidebar-menu li a i {
    width: 18px;
    text-align: center;
    font-size: .85rem;
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 32px 36px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

.admin-header .breadcrumb {
    color: var(--text-3);
    font-size: .82rem;
    margin-top: 3px;
    display: block;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .25s var(--ease);
}

.admin-stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.admin-stat-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.admin-stat-card .info .number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.admin-stat-card .info .label {
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 500;
}

.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 20px;
}

.table-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header h3 {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 12px 18px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}

.admin-table td {
    padding: 14px 18px;
    font-size: .88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: background .2s;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.admin-table .actions {
    display: flex;
    gap: 6px;
}

.admin-table .actions a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-xs);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-3);
    font-size: .82rem;
    transition: all .2s var(--ease);
}

.admin-table .actions a:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--accent);
    color: var(--accent-l);
}

.admin-table .actions a.delete-btn:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: var(--red);
    color: var(--red);
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    margin-bottom: 20px;
}

.form-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-0);
}

.login-card {
    width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 44px;
    position: relative;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.login-card .login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-card .login-logo i {
    font-size: 2.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 14px;
}

.login-card .login-logo h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.login-card .login-logo p {
    color: var(--text-3);
    font-size: .88rem;
    margin-top: 4px;
}

/* Old hero compat */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero h1 .gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    text-align: center;
}

.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: #fff;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: .8rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 60px 0;
}

/* Section header compat */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-2);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-v2 {
        min-height: auto;
        padding: 120px 0 60px;
    }
}

@media (max-width:768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        gap: 2px;
    }

    .nav-menu.active {
        display: flex;
        z-index: 100;
    }

    .nav-menu a {
        color: var(--text-1);
        font-size: .95rem;
        padding: 12px 16px;
        border-radius: 8px;
        width: 100%;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(124, 58, 237, 0.12);
        color: #fff;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
        padding: 10px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-cta {
        display: none;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .detail-header {
        flex-direction: column;
    }

    .detail-screenshot {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .footer-bottom-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-cards {
        grid-template-columns: 1fr 1fr;
    }

    .admin-sidebar {
        width: 200px;
    }

    .admin-content {
        margin-left: 200px;
        padding: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .section-title-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

/* ==========================================
   PROJECTS PAGE
   ========================================== */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 8px;
}

.page-header h1 i {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.page-header p {
    font-size: .95rem;
    color: var(--text-3);
}

.chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    margin-left: 6px;
}

.chip.active .chip-count {
    background: rgba(255, 255, 255, 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all .35s var(--ease);
}

.project-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.project-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: rgba(124, 58, 237, 0.04);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(124, 58, 237, 0.2);
}

.project-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-devam {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.status-tamamlandi {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.project-body {
    padding: 20px;
}

.project-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
}

.project-desc {
    font-size: .84rem;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: 14px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.tech-tag {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    color: var(--accent-l);
}

.project-meta {
    margin-bottom: 14px;
}

.project-date {
    font-size: .78rem;
    color: var(--text-3);
}

.project-date i {
    margin-right: 4px;
    color: var(--accent);
}

.project-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-3);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: rgba(124, 58, 237, 0.2);
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    filter: blur(100px);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.04);
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite -5s;
}

/* Hero — Photo + Intro */
.about-hero {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease);
}

.about-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all .4s var(--ease);
}

.about-photo:hover {
    transform: scale(1.05);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.25), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-photo-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, 0.15);
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg);
    }
}

.about-intro {
    flex: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--accent-l);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-badge i {
    color: #eab308;
}

.about-intro h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.about-intro h1 span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-tagline {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-social {
    display: flex;
    gap: 10px;
}

.about-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-3);
    font-size: 1rem;
    transition: all .3s var(--ease);
}

.about-social a:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

/* Stats / Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease) .15s backwards;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.highlight-item:hover {
    background: var(--bg-card-h);
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-l);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.highlight-item:hover .highlight-icon {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

.highlight-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.highlight-item span {
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 500;
}

/* Bio Card */
.about-bio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease) .25s backwards;
}

.about-bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    border-radius: var(--r) var(--r) 0 0;
}

.about-bio-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bio-card h2 i {
    color: var(--accent-l);
    font-size: 1.1rem;
}

.about-bio-card p {
    color: var(--text-2);
    font-size: .92rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-bio-card p:last-child {
    margin-bottom: 0;
}

.about-bio-card strong {
    color: var(--accent-l);
    font-weight: 600;
}

/* Section Title */
.about-section-title {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.about-section-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section-title h2 i {
    color: var(--accent-l);
    font-size: 1.1rem;
}

/* Brands */
.about-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease) .35s backwards;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 20px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .3s var(--ease);
}

.brand-card:hover {
    background: var(--bg-card-h);
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.1);
}

.brand-card i {
    font-size: 2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all .3s var(--ease);
}

.brand-card span {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-2);
    transition: color .3s var(--ease);
}

.brand-card:hover span {
    color: var(--text-1);
}

/* Skills Grid */
.about-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease) .4s backwards;
}

.skill-group {
    padding: 24px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.skill-group:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-h);
}

.skill-group h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--accent-l);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--text-2);
    transition: all .3s var(--ease);
}

.skill-tag:hover {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
    color: var(--text-1);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .about-social {
        justify-content: center;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-brands {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 100px 0 60px;
    }

    .about-photo {
        width: 140px;
        height: 140px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-brands {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-skills-grid {
        grid-template-columns: 1fr;
    }

    .about-bio-card {
        padding: 24px;
    }

    .about-intro h1 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    filter: blur(100px);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.04);
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite -7s;
}

/* Page Header */
.contact-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--accent-l);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.contact-header h1 span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease) .15s backwards;
}

/* Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.contact-card:hover {
    background: var(--bg-card-h);
    border-color: var(--border-accent);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-l);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.contact-card:hover .contact-card-icon {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

.contact-card-content h4 {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.contact-card-content a,
.contact-card-content span {
    font-size: .92rem;
    color: var(--text-1);
    font-weight: 500;
}

.contact-card-content a:hover {
    color: var(--accent-l);
}

/* Availability */
.contact-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: var(--r-sm);
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.12);
    margin-top: 4px;
}

.avail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

.contact-availability span {
    font-size: .85rem;
    font-weight: 600;
    color: var(--green);
}

/* Form Wrap */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
    position: relative;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    border-radius: var(--r) var(--r) 0 0;
}

/* Alerts */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--r-sm);
    margin-bottom: 24px;
    font-size: .88rem;
    line-height: 1.5;
}

.contact-alert i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-alert strong {
    display: block;
    margin-bottom: 2px;
}

.contact-alert p {
    margin: 0;
    font-size: .84rem;
    opacity: .85;
}

.contact-alert-success {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: var(--green);
}

.contact-alert-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--red);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
}

.form-field label i {
    font-size: .72rem;
    color: var(--accent-l);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--r-xs);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-1);
    font-family: var(--font);
    font-size: .9rem;
    transition: all .3s var(--ease);
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-3);
    font-size: .85rem;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.03);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

/* Submit Button */
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    border-radius: var(--r-sm);
    background: var(--grad);
    color: #fff;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25), 0 4px 16px rgba(124, 58, 237, 0.15);
    transition: all .3s var(--ease);
    letter-spacing: .3px;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.35), 0 8px 30px rgba(124, 58, 237, 0.25);
}

.contact-submit:active {
    transform: translateY(-1px);
}

.contact-submit i {
    font-size: .85rem;
    transition: transform .3s var(--ease);
}

.contact-submit:hover i {
    transform: translateX(3px) translateY(-2px);
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contact-availability {
        grid-column: 1 / -1;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

/* ==========================================
   BLOG — LISTING PAGE
   ========================================== */
.blog-section {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-l);
    margin-bottom: 20px;
}

.blog-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--text-1);
}

.blog-header h1 span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    color: var(--text-2);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Category Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    transition: all .3s var(--ease);
}

.blog-filter-btn:hover {
    background: var(--bg-card-h);
    border-color: var(--border-h);
    color: var(--text-1);
}

.blog-filter-btn.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}

.blog-filter-btn i {
    font-size: .72rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

/* Card Image */
.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.04));
    font-size: 2.5rem;
    color: var(--accent);
    opacity: .4;
}

.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--accent-l);
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Card Body */
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body p {
    font-size: .84rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .74rem;
    color: var(--text-3);
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta i {
    font-size: .65rem;
    color: var(--accent);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-xs);
    font-size: .85rem;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    transition: all .3s var(--ease);
}

.pagination-btn:hover {
    border-color: var(--border-accent);
    color: var(--text-1);
}

.pagination-btn.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}

/* Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-3);
}

.blog-empty i {
    font-size: 3rem;
    color: var(--accent);
    opacity: .3;
    margin-bottom: 20px;
}

.blog-empty h3 {
    font-size: 1.2rem;
    color: var(--text-2);
    margin-bottom: 8px;
}

/* ==========================================
   BLOG POST — PREMIUM ARTICLE (bp- prefix)
   ========================================== */
.bp {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative Orbs */
.bp-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    z-index: 0;
}

.bp-orb-1 {
    width: 500px;
    height: 500px;
    top: -5%;
    left: -10%;
    background: rgba(124, 58, 237, 0.06);
    animation: orbFloat 18s ease-in-out infinite;
}

.bp-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    right: -10%;
    background: rgba(168, 85, 247, 0.04);
    animation: orbFloat 18s ease-in-out infinite reverse;
}

/* ---- HERO ---- */
.bp-hero {
    position: relative;
    z-index: 1;
    padding: 48px 0 40px;
    text-align: center;
}

.bp-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumb */
.bp-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: .82rem;
}

.bp-breadcrumb a {
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .3s var(--ease);
}

.bp-breadcrumb a:hover {
    color: var(--accent-l);
}

.bp-breadcrumb span {
    color: var(--text-3);
    opacity: .4;
}

/* Category Badge */
.bp-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-l);
    margin-bottom: 20px;
}

/* Title */
.bp-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    color: var(--text-1);
    margin-bottom: 16px;
}

/* Excerpt */
.bp-excerpt {
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* Meta Row */
.bp-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bp-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bp-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.bp-author div:last-child {
    text-align: left;
}

.bp-author strong {
    display: block;
    font-size: .88rem;
    color: var(--text-1);
    font-weight: 600;
}

.bp-author span {
    font-size: .76rem;
    color: var(--text-3);
}

.bp-stats {
    display: flex;
    gap: 16px;
    font-size: .8rem;
    color: var(--text-3);
}

.bp-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bp-stats i {
    font-size: .7rem;
    color: var(--accent);
}

/* ---- COVER IMAGE ---- */
.bp-cover {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 0;
    border-radius: var(--r) var(--r) 0 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: none;
}

.bp-cover img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 460px;
    object-fit: cover;
}

/* ---- ARTICLE BODY ---- */
.bp-body {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 80px;
}

/* Content Card */
.bp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--r) var(--r);
    padding: 48px 56px;
    position: relative;
}

.bp-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 0 0 var(--r) var(--r);
}

/* Prose Content */
.bp-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-2);
}

.bp-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 48px 0 18px;
    letter-spacing: -0.3px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.bp-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 36px 0 14px;
}

.bp-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 28px 0 10px;
}

.bp-content p {
    margin-bottom: 20px;
}

.bp-content a {
    color: var(--accent-l);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(167, 139, 250, 0.3);
    transition: text-decoration-color .3s var(--ease);
}

.bp-content a:hover {
    text-decoration-color: var(--accent-l);
}

.bp-content strong {
    color: var(--text-1);
    font-weight: 600;
}

.bp-content img {
    max-width: 100%;
    border-radius: var(--r-xs);
    margin: 28px 0;
    border: 1px solid var(--border);
}

.bp-content code {
    padding: 3px 8px;
    border-radius: 5px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-l);
    font-family: 'JetBrains Mono', monospace;
    font-size: .86em;
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.bp-content pre {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    padding: 24px;
    overflow-x: auto;
    margin: 28px 0;
    position: relative;
}

.bp-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-1);
    font-size: .85rem;
    line-height: 1.7;
}

.bp-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 18px 24px;
    background: rgba(124, 58, 237, 0.04);
    border-radius: 0 var(--r-xs) var(--r-xs) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-2);
}

.bp-content blockquote p:last-child {
    margin-bottom: 0;
}

.bp-content ul,
.bp-content ol {
    padding-left: 28px;
    margin-bottom: 20px;
}

.bp-content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.bp-content li::marker {
    color: var(--accent);
}

.bp-content hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 36px 0;
}

.bp-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: .9rem;
}

.bp-content th,
.bp-content td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.bp-content th {
    background: rgba(124, 58, 237, 0.06);
    color: var(--text-1);
    font-weight: 600;
}

/* ---- TAGS ---- */
.bp-tags {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.bp-tags-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-3);
    margin-bottom: 12px;
}

.bp-tags-label i {
    color: var(--accent);
}

.bp-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bp-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
    color: var(--accent-l);
    transition: all .3s var(--ease);
}

.bp-tag:hover {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
}

/* ---- SHARE BAR ---- */
.bp-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
}

.bp-share-label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text-3);
}

.bp-share-btns {
    display: flex;
    gap: 8px;
}

.bp-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: inherit;
}

.bp-share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.bp-share-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}

.bp-share-email:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}

.bp-share-copy:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent);
    color: var(--accent-l);
}

.bp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

/* ---- AUTHOR CARD ---- */
.bp-author-card {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    transition: border-color .3s var(--ease);
}

.bp-author-card:hover {
    border-color: var(--border-accent);
}

.bp-author-card-avatar {
    flex-shrink: 0;
}

.bp-author-card-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.bp-author-card-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

.bp-author-card-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
}

.bp-author-card-info p {
    font-size: .84rem;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 10px;
}

.bp-author-card-links {
    display: flex;
    gap: 10px;
}

.bp-author-card-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-3);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}

.bp-author-card-links a:hover {
    border-color: var(--accent);
    color: var(--accent-l);
}

/* ---- RELATED POSTS ---- */
.bp-related {
    margin-top: 48px;
}

.bp-related h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bp-related h3 i {
    color: var(--accent);
}

.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    overflow: hidden;
    transition: all .35s var(--ease);
}

.bp-related-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.08);
}

.bp-related-img {
    height: 130px;
    overflow: hidden;
}

.bp-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.bp-related-card:hover .bp-related-img img {
    transform: scale(1.05);
}

.bp-related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.04));
    font-size: 1.8rem;
    color: var(--accent);
    opacity: .3;
}

.bp-related-body {
    padding: 16px;
}

.bp-related-cat {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-l);
    letter-spacing: .4px;
}

.bp-related-body h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 6px 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-related-date {
    font-size: .72rem;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bp-related-date i {
    font-size: .6rem;
    color: var(--accent);
}

/* ---- BLOG POST RESPONSIVE ---- */
@media (max-width: 900px) {
    .bp-card {
        padding: 36px 32px;
    }

    .bp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-cover {
        margin: 0 16px;
        border-radius: var(--r-xs) var(--r-xs) 0 0;
    }

    .bp-body {
        padding: 0 16px 60px;
    }
}

@media (max-width: 600px) {
    .bp {
        padding-top: 70px;
    }

    .bp-hero {
        padding: 32px 0 28px;
    }

    .bp-title {
        font-size: 1.5rem;
    }

    .bp-excerpt {
        font-size: .95rem;
    }

    .bp-meta-row {
        flex-direction: column;
        gap: 14px;
    }

    .bp-card {
        padding: 28px 20px;
        border-radius: 0 0 var(--r-xs) var(--r-xs);
    }

    .bp-content {
        font-size: .95rem;
    }

    .bp-content h2 {
        font-size: 1.3rem;
    }

    .bp-content h3 {
        font-size: 1.1rem;
    }

    .bp-content pre {
        padding: 16px;
    }

    .bp-share-bar {
        flex-direction: column;
        text-align: center;
    }

    .bp-author-card {
        flex-direction: column;
        text-align: center;
    }

    .bp-author-card-links {
        justify-content: center;
    }

    .bp-related-grid {
        grid-template-columns: 1fr;
    }

    .bp-cover {
        margin: 0 12px;
    }

    .bp-body {
        padding: 0 12px 50px;
    }
}






.blogpost-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-l);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 16px;
}

.blogpost-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
    color: var(--text-1);
    margin-bottom: 16px;
}

.blogpost-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .82rem;
    color: var(--text-3);
}

.blogpost-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blogpost-meta i {
    font-size: .72rem;
    color: var(--accent);
}

/* Cover Image */
.blogpost-cover {
    margin-bottom: 36px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
}

.blogpost-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content / Prose */
.blogpost-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-2);
    margin-bottom: 40px;
}

.blogpost-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 40px 0 16px;
    letter-spacing: -0.3px;
}

.blogpost-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 32px 0 12px;
}

.blogpost-content p {
    margin-bottom: 18px;
}

.blogpost-content a {
    color: var(--accent-l);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blogpost-content img {
    max-width: 100%;
    border-radius: var(--r-xs);
    margin: 24px 0;
    border: 1px solid var(--border);
}

.blogpost-content code {
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-l);
    font-family: 'JetBrains Mono', monospace;
    font-size: .88em;
}

.blogpost-content pre {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}

.blogpost-content pre code {
    background: none;
    padding: 0;
    color: var(--text-1);
    font-size: .85rem;
    line-height: 1.6;
}

.blogpost-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    background: rgba(124, 58, 237, 0.04);
    border-radius: 0 var(--r-xs) var(--r-xs) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-2);
}

.blogpost-content ul,
.blogpost-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.blogpost-content li {
    margin-bottom: 8px;
}

/* Tags */
.blogpost-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blogpost-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
}

.blogpost-tag i {
    font-size: .6rem;
    color: var(--accent);
}

/* Share */
.blogpost-share {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.blogpost-share span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-3);
}

.blogpost-share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: .9rem;
    transition: all .3s var(--ease);
}

.blogpost-share a:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* Related Posts */
.blogpost-related {
    margin-top: 48px;
}

.blogpost-related h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogpost-related h3 i {
    color: var(--accent);
    font-size: 1rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    overflow: hidden;
    transition: all .3s var(--ease);
}

.related-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.related-card-img {
    height: 120px;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-body {
    padding: 14px;
}

.related-card-cat {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-l);
    letter-spacing: .3px;
}

.related-card-body h4 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.related-card-date {
    font-size: .72rem;
    color: var(--text-3);
}

/* Blog Responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-section {
        padding: 100px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blogpost-section {
        padding: 100px 16px 60px;
    }

    .blogpost-meta {
        gap: 10px;
        font-size: .76rem;
    }

    .blogpost-share a {
        width: 34px;
        height: 34px;
    }
}

/* ==========================================
   ADMIN LOGIN PAGE
   ========================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    animation: orbFloat 15s ease-in-out infinite;
}

.login-orb-1 {
    width: 450px;
    height: 450px;
    top: -10%;
    left: -5%;
    background: rgba(124, 58, 237, 0.08);
}

.login-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -5%;
    right: -5%;
    background: rgba(168, 85, 247, 0.06);
    animation-delay: -7s;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 40px 36px;
    position: relative;
    z-index: 1;
    animation: fadeUp .7s var(--ease);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    border-radius: var(--r) var(--r) 0 0;
}

/* Logo */
.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.login-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.login-logo span {
    font-size: 1.2rem;
    color: var(--text-1);
    font-weight: 300;
    letter-spacing: -0.3px;
}

.login-logo strong {
    font-weight: 700;
}

/* Title */
.login-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-1);
}

.login-subtitle {
    text-align: center;
    font-size: .85rem;
    color: var(--text-3);
    margin-bottom: 28px;
}

/* Error */
.login-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--r-xs);
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--red);
    font-size: .84rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.login-error i {
    flex-shrink: 0;
}

/* Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.login-field label i {
    font-size: .7rem;
    color: var(--accent-l);
}

.login-field input {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--r-xs);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-1);
    font-family: var(--font);
    font-size: .9rem;
    transition: all .3s var(--ease);
    outline: none;
}

.login-field input::placeholder {
    color: var(--text-3);
    font-size: .85rem;
}

.login-field input:focus {
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.03);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

/* Submit */
.login-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--r-sm);
    background: var(--grad);
    color: #fff;
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25), 0 4px 16px rgba(124, 58, 237, 0.15);
    transition: all .3s var(--ease);
    margin-top: 4px;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.35), 0 8px 30px rgba(124, 58, 237, 0.25);
}

.login-submit:active {
    transform: translateY(0);
}

/* Back link */
.login-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    font-size: .84rem;
    color: var(--text-3);
    transition: all .3s var(--ease);
}

.login-back:hover {
    color: var(--accent-l);
}

.login-back i {
    font-size: .72rem;
    transition: transform .3s var(--ease);
}

.login-back:hover i {
    transform: translateX(-3px);
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.4);
}