/* ============================================
   ASS YAZILIM — Premium Black & White Design
   ============================================ */

:root {
    --black:      #000000;
    --white:      #ffffff;
    --gray-50:    #fafafa;
    --gray-100:   #f4f4f5;
    --gray-200:   #e4e4e7;
    --gray-300:   #d4d4d8;
    --gray-400:   #a1a1aa;
    --gray-500:   #71717a;
    --gray-600:   #52525b;
    --gray-700:   #3f3f46;
    --gray-800:   #27272a;
    --gray-900:   #18181b;
    --gray-950:   #09090b;

    --bg:         #000000;
    --bg-card:    #0a0a0a;
    --bg-hover:   #111111;
    --border:     rgba(255,255,255,.08);
    --border-md:  rgba(255,255,255,.12);
    --border-lg:  rgba(255,255,255,.2);

    --text:       #ffffff;
    --text-sec:   #a1a1aa;
    --text-ter:   #52525b;

    --accent:     #ffffff;
    --accent-dim: rgba(255,255,255,.06);

    --shadow-sm:  0 1px 3px rgba(0,0,0,.5);
    --shadow-md:  0 4px 20px rgba(0,0,0,.6);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.8);
    --shadow-xl:  0 20px 80px rgba(0,0,0,.9);
    --glow:       0 0 40px rgba(255,255,255,.05);
    --glow-md:    0 0 80px rgba(255,255,255,.08);

    --radius-sm:  6px;
    --radius:     10px;
    --radius-lg:  16px;
    --radius-xl:  20px;
    --radius-2xl: 28px;

    --transition: all .2s cubic-bezier(.4,0,.2,1);
    --transition-slow: all .4s cubic-bezier(.4,0,.2,1);
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-sec); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ---- Container ---- */
.container    { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px;  margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NOISE TEXTURE (subtle premium touch)
   ============================================ */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    opacity: .018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 56px; display: flex; align-items: center;
    background: rgba(0,0,0,.7);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(0,0,0,.9);
    border-bottom-color: var(--border-md);
}
.navbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1080px; margin: 0 auto; padding: 0 24px; width: 100%;
}
.navbar__logo {
    font-size: 15px; font-weight: 700; letter-spacing: .5px;
    color: var(--white); display: flex; align-items: center; gap: 8px;
    text-transform: uppercase;
}
.navbar__logo-dot {
    width: 6px; height: 6px; background: white; border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,.6);
}
.navbar__logo:hover { color: var(--text-sec); }
.navbar__nav { display: flex; gap: 2px; align-items: center; }
.navbar__nav a {
    color: var(--text-sec); font-size: 13px; font-weight: 500;
    padding: 6px 14px; border-radius: var(--radius-sm);
    transition: var(--transition); letter-spacing: .1px;
}
.navbar__nav a:hover { color: var(--white); background: var(--accent-dim); }
.navbar__nav a.active { color: var(--white); }
.navbar__cta {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 7px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .3px !important;
}
.navbar__cta:hover {
    background: var(--gray-200) !important;
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,.12) !important;
}
.navbar__toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; cursor: pointer;
}
.navbar__toggle span {
    width: 20px; height: 1.5px; background: var(--white);
    border-radius: 2px; transition: var(--transition);
    display: block;
}
.navbar__mobile {
    display: none; position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.97);
    backdrop-filter: blur(24px);
    z-index: 999; padding: 24px;
    flex-direction: column; gap: 2px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
    color: var(--text-sec); font-size: 20px; font-weight: 500;
    padding: 16px 0; border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar__mobile a:hover { color: var(--white); }
.navbar__mobile a:last-child { border-bottom: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 120px;
    text-align: center;
    position: relative; overflow: hidden;
}
/* Radial glow */
.hero::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
    pointer-events: none;
}
/* Top border glow line */
.hero::after {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-sec);
    border: 1px solid var(--border-md);
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 28px;
    background: var(--accent-dim);
}
.hero__eyebrow-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: white; box-shadow: 0 0 6px rgba(255,255,255,.8);
}
.hero__title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800; line-height: 1.04;
    letter-spacing: -2px; color: var(--white);
    margin-bottom: 24px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero__title-dim { color: var(--gray-600); }
.hero__subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-sec);
    max-width: 520px; margin: 0 auto 48px;
    line-height: 1.6; font-weight: 400;
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
    display: flex; gap: 0; justify-content: center;
    margin-top: 80px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden; flex-wrap: wrap;
    background: var(--bg-card);
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero__stat {
    flex: 1; min-width: 130px; padding: 24px 20px; text-align: center;
    border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
    font-size: 32px; font-weight: 800; color: var(--white);
    letter-spacing: -1px; line-height: 1;
}
.hero__stat-label {
    font-size: 11px; color: var(--text-ter);
    margin-top: 6px; letter-spacing: .5px; text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 8px;
    font-size: 14px; font-weight: 600; transition: var(--transition);
    cursor: pointer; line-height: 1; border: none; letter-spacing: .1px;
}
.btn-primary {
    background: var(--white); color: var(--black);
    box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}
.btn-primary:hover {
    background: var(--gray-100); color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,255,255,.1);
}
.btn-secondary {
    background: var(--accent-dim); color: var(--text-sec);
    border: 1px solid var(--border-md);
}
.btn-secondary:hover {
    background: rgba(255,255,255,.1); color: var(--white);
    border-color: var(--border-lg); transform: translateY(-1px);
}
.btn-outline {
    background: transparent; color: var(--text-sec);
    border: 1px solid var(--border-md);
}
.btn-outline:hover {
    background: var(--accent-dim); color: var(--white);
    border-color: var(--border-lg);
}
.btn-sm  { padding: 7px 14px; font-size: 12px; border-radius: 6px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION
   ============================================ */
.section { padding: 96px 0; position: relative; }
.section-alt {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--text-ter); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800;
    letter-spacing: -1.5px; color: var(--white); line-height: 1.08;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 15px; color: var(--text-sec);
    max-width: 480px; margin: 0 auto; line-height: 1.6;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
}
.card:hover {
    border-color: var(--border-md);
    box-shadow: var(--glow-md);
    transform: translateY(-4px);
}
.card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease; filter: grayscale(20%);
}
.card:hover .card__img img { transform: scale(1.04); filter: grayscale(0%); }
.card__img-placeholder {
    width: 100%; height: 100%; background: var(--bg-hover);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; border-bottom: 1px solid var(--border);
}
.card__body { padding: 20px 24px; }
.card__category {
    font-size: 10px; font-weight: 700; color: var(--text-ter);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.card__title {
    font-size: 17px; font-weight: 700; color: var(--white);
    margin-bottom: 10px; line-height: 1.3; letter-spacing: -.3px;
}
.card__desc { font-size: 13px; color: var(--text-sec); line-height: 1.6; margin-bottom: 16px; }
.card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
    font-size: 11px; font-weight: 500; color: var(--text-ter);
    background: var(--accent-dim); border: 1px solid var(--border);
    padding: 3px 9px; border-radius: 4px; letter-spacing: .2px;
}
.card__footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; border-top: 1px solid var(--border);
}

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ============================================
   FILTER
   ============================================ */
.filter-bar {
    display: flex; gap: 6px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
    padding: 6px 16px; border-radius: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: .3px;
    border: 1px solid var(--border);
    color: var(--text-ter); background: var(--bg-card);
    transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--white); color: var(--black); border-color: var(--white);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    transition: var(--transition-slow);
}
.service-card:hover {
    border-color: var(--border-md);
    box-shadow: var(--glow);
    transform: translateY(-2px);
}
.service-card__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--accent-dim); border: 1px solid var(--border-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 20px;
}
.service-card__title {
    font-size: 16px; font-weight: 700; color: var(--white);
    margin-bottom: 8px; letter-spacing: -.2px;
}
.service-card__desc { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

/* ============================================
   SCRIPT CARDS
   ============================================ */
.script-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition-slow); display: flex; flex-direction: column;
}
.script-card:hover {
    border-color: var(--border-md); box-shadow: var(--glow-md);
    transform: translateY(-4px);
}
.script-card__img { aspect-ratio: 16/9; overflow: hidden; }
.script-card__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: filter .3s; }
.script-card:hover .script-card__img img { filter: grayscale(0%); }
.script-card__img-placeholder {
    width: 100%; aspect-ratio: 16/9;
    background: var(--bg-hover); display: flex;
    align-items: center; justify-content: center;
    font-size: 40px; border-bottom: 1px solid var(--border);
}
.script-card__body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.script-card__type {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; padding: 3px 9px; border-radius: 4px;
    margin-bottom: 10px; border: 1px solid;
}
.script-card__type--free     { color: #a3e635; border-color: rgba(163,230,53,.2); background: rgba(163,230,53,.06); }
.script-card__type--contact  { color: #fb923c; border-color: rgba(251,146,60,.2); background: rgba(251,146,60,.06); }
.script-card__type--showcase { color: var(--text-sec); border-color: var(--border); background: var(--accent-dim); }
.script-card__title {
    font-size: 15px; font-weight: 700; color: var(--white);
    margin-bottom: 6px; letter-spacing: -.2px;
}
.script-card__desc { font-size: 12px; color: var(--text-sec); line-height: 1.5; flex: 1; margin-bottom: 14px; }
.script-card__version { font-size: 11px; color: var(--text-ter); margin-bottom: 10px; }

/* ============================================
   FORM
   ============================================ */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--text-sec); margin-bottom: 8px; letter-spacing: .3px;
    text-transform: uppercase;
}
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--border-md);
    border-radius: var(--radius);
    font-size: 14px; color: var(--white);
    background: var(--bg-card);
    transition: var(--transition); outline: none;
}
.form-control:focus {
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}
.form-control::placeholder { color: var(--text-ter); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-message {
    padding: 12px 16px; border-radius: var(--radius);
    font-size: 13px; font-weight: 500; margin-top: 8px;
}
.form-message--success { background: rgba(163,230,53,.06); color: #a3e635; border: 1px solid rgba(163,230,53,.2); }
.form-message--error   { background: rgba(239,68,68,.06);  color: #f87171; border: 1px solid rgba(239,68,68,.2); }

/* ============================================
   CONTACT
   ============================================ */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-dim); border: 1px solid var(--border-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
}
.contact-item__label { font-size: 10px; font-weight: 700; color: var(--text-ter); text-transform: uppercase; letter-spacing: 1px; }
.contact-item__value { font-size: 14px; color: var(--text-sec); margin-top: 3px; }
.contact-item__value a { color: var(--text-sec); }
.contact-item__value a:hover { color: var(--white); }

/* ============================================
   ABOUT / SKILLS
   ============================================ */
.skill-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: 10px; }
.skill-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 10px; text-align: center;
    font-size: 11px; font-weight: 600; color: var(--text-ter);
    transition: var(--transition); letter-spacing: .3px;
}
.skill-item:hover { border-color: var(--border-lg); color: var(--white); background: var(--bg-hover); }
.skill-item__icon { font-size: 22px; margin-bottom: 6px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img {
    border-radius: var(--radius-xl); overflow: hidden;
    border: 1px solid var(--border); aspect-ratio: 4/5;
    background: var(--bg-card); display: flex;
    align-items: center; justify-content: center;
    font-size: 80px;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px; border-radius: 4px;
    font-size: 11px; font-weight: 600; border: 1px solid;
}
.badge-white  { color: var(--white);   border-color: var(--border-md); background: var(--accent-dim); }
.badge-green  { color: #a3e635; border-color: rgba(163,230,53,.2); background: rgba(163,230,53,.06); }
.badge-orange { color: #fb923c; border-color: rgba(251,146,60,.2); background: rgba(251,146,60,.06); }
.badge-gray   { color: var(--text-ter); border-color: var(--border); background: var(--accent-dim); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}
.footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
}
.footer__logo {
    font-size: 15px; font-weight: 800; color: var(--white);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.footer__logo-dot {
    width: 5px; height: 5px; background: white; border-radius: 50%;
    box-shadow: 0 0 6px rgba(255,255,255,.6);
}
.footer__desc { font-size: 13px; color: var(--text-ter); line-height: 1.6; max-width: 240px; }
.footer__heading {
    font-size: 10px; font-weight: 700; color: var(--text-ter);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
    font-size: 13px; color: var(--text-ter); transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 8px; margin-top: 20px; }
.footer__social a {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--accent-dim); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--text-ter);
    transition: var(--transition);
}
.footer__social a:hover { border-color: var(--border-lg); color: var(--white); background: rgba(255,255,255,.08); }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--text-ter);
}

/* ============================================
   ALERTS / BREADCRUMB
   ============================================ */
.alert {
    padding: 12px 16px; border-radius: var(--radius);
    font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid;
}
.alert-success { background: rgba(163,230,53,.06); color: #a3e635; border-color: rgba(163,230,53,.2); }
.alert-error   { background: rgba(239,68,68,.06);  color: #f87171; border-color: rgba(239,68,68,.2); }
.alert-info    { background: var(--accent-dim); color: var(--text-sec); border-color: var(--border-md); }

.breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--text-ter); margin-bottom: 28px; align-items: center; }
.breadcrumb a { color: var(--text-ter); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--text-ter); opacity: .4; }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 130px 0 64px; text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.page-hero__title {
    font-size: clamp(32px, 5vw, 58px); font-weight: 800;
    letter-spacing: -2px; color: var(--white);
    margin-bottom: 14px; line-height: 1.06;
}
.page-hero__subtitle { font-size: 15px; color: var(--text-sec); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ============================================
   DETAIL PAGE
   ============================================ */
.detail-header {
    padding: 130px 0 48px;
    border-bottom: 1px solid var(--border);
}
.detail-img {
    border-radius: var(--radius-xl); overflow: hidden;
    border: 1px solid var(--border); margin: 40px 0; aspect-ratio: 16/9;
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-content { font-size: 16px; line-height: 1.75; color: var(--text-sec); }
.detail-content h2 { font-size: 24px; font-weight: 700; color: var(--white); margin: 32px 0 10px; letter-spacing: -.5px; }
.detail-content h3 { font-size: 20px; font-weight: 700; color: var(--white); margin: 24px 0 8px; }
.detail-content p  { margin-bottom: 16px; }
.detail-sidebar { position: sticky; top: 80px; }
.detail-meta {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; overflow: hidden;
}
.detail-meta__item {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.detail-meta__item:last-child { border-bottom: none; padding-bottom: 0; }
.detail-meta__label { font-size: 10px; font-weight: 700; color: var(--text-ter); text-transform: uppercase; letter-spacing: 1px; }
.detail-meta__value { font-size: 13px; color: var(--text-sec); }

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state__icon { font-size: 48px; margin-bottom: 16px; opacity: .3; }
.empty-state__title { font-size: 18px; font-weight: 700; color: var(--text-sec); margin-bottom: 8px; }
.empty-state__text  { font-size: 13px; color: var(--text-ter); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
    border: 1px solid var(--border); color: var(--text-ter); transition: var(--transition);
    background: var(--bg-card);
}
.pagination a:hover { border-color: var(--border-md); color: var(--white); background: var(--bg-hover); }
.pagination .current { background: var(--white); color: var(--black); border-color: var(--white); }

/* ============================================
   DIVIDER LINE (decorative)
   ============================================ */
.divider {
    height: 1px; margin: 48px 0;
    background: linear-gradient(90deg, transparent, var(--border-md), transparent);
}

/* ============================================
   ADMIN PANEL
   ============================================ */
:root {
    --sidebar-w: 220px;
}
.sidebar {
    width: var(--sidebar-w); background: #0d0d0d;
    border-right: 1px solid rgba(255,255,255,.08);
    position: fixed; top: 0; left: 0; bottom: 0;
    overflow-y: auto; display: flex; flex-direction: column; z-index: 100;
}
.sidebar__logo {
    padding: 18px 16px 14px;
    font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.08); color: var(--white);
    display: flex; align-items: center; gap: 8px;
}
.sidebar__logo-dot {
    width: 5px; height: 5px; background: white; border-radius: 50%;
    box-shadow: 0 0 6px rgba(255,255,255,.6);
}
.sidebar__badge {
    font-size: 10px; background: #ef4444; color: white;
    border-radius: 8px; padding: 1px 6px; margin-left: auto; font-weight: 700;
}
.sidebar__nav { padding: 10px 8px; flex: 1; }
.sidebar__section {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255,255,255,.3);
    padding: 14px 10px 5px;
}
.sidebar__link {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 10px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55);
    transition: var(--transition); text-decoration: none;
}
.sidebar__link:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); }
.sidebar__link.active { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.sidebar__link .icon { font-size: 14px; width: 18px; text-align: center; }
.sidebar__footer { padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; color: rgba(255,255,255,.35); }
.admin-main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; }
.admin-topbar {
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 0 24px; height: 52px; display: flex; align-items: center;
    justify-content: space-between; position: sticky; top: 0; z-index: 50;
}
.admin-topbar__title { font-size: 14px; font-weight: 700; color: var(--white); }
.admin-topbar__right { display: flex; align-items: center; gap: 10px; }
.admin-content { padding: 24px; }

/* Admin stat cards */
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-md); }
.stat-card__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--accent-dim); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.stat-card__num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -1px; }
.stat-card__label { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .3px; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    text-align: left; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4);
    text-transform: uppercase; letter-spacing: 1px;
    padding: 10px 14px; background: var(--bg-hover);
    border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: 12px 14px; border-bottom: 1px solid var(--border);
    font-size: 13px; color: var(--text-sec); background: var(--bg-card);
}
.admin-table tr:hover td { background: var(--bg-hover); color: var(--white); }
.admin-table tr:last-child td { border-bottom: none; }
.table-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

/* Admin form */
.admin-form-wrap {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2352525b'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 32px;
}
.action-btn {
    padding: 4px 10px; border-radius: 5px;
    font-size: 11px; font-weight: 600; cursor: pointer;
    transition: var(--transition); border: 1px solid;
}
.action-btn--edit { color: var(--text-sec); border-color: var(--border); background: var(--accent-dim); }
.action-btn--edit:hover { color: var(--white); border-color: var(--border-md); background: var(--bg-hover); }
.action-btn--delete { color: #f87171; border-color: rgba(239,68,68,.2); background: rgba(239,68,68,.04); }
.action-btn--delete:hover { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.4); }
.img-preview {
    width: 72px; height: 50px; object-fit: cover;
    border-radius: 5px; border: 1px solid var(--border);
    filter: grayscale(20%);
}
.toggle { position: relative; display: inline-block; width: 34px; height: 18px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; inset: 0; background: rgba(255,255,255,.12);
    border: 1px solid var(--border-md); border-radius: 20px;
    cursor: pointer; transition: .2s;
}
.toggle-slider::before {
    content: ''; position: absolute; width: 12px; height: 12px;
    left: 2px; top: 2px; background: rgba(255,255,255,.45);
    border-radius: 50%; transition: .2s;
}
.toggle input:checked + .toggle-slider { background: var(--white); border-color: var(--white); }
.toggle input:checked + .toggle-slider::before { transform: translateX(16px); background: var(--black); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2,1fr); }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .navbar__nav { display: none; }
    .navbar__toggle { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .hero { padding: 120px 0 80px; }
    .hero__title { letter-spacing: -1px; }
    .hero__stats { flex-direction: row; }
    .hero__stat { min-width: 120px; }
    .section { padding: 64px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
    .section-header { margin-bottom: 40px; }
    .section-title { letter-spacing: -1px; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .container { padding: 0 16px; }
    .hero__stats { border-radius: var(--radius-lg); }
    .hero__stat { padding: 18px 14px; }
    .hero__stat-num { font-size: 24px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate-fade-up          { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both; }
.animate-fade-up-delay    { animation: fadeUp .7s .12s cubic-bezier(.16,1,.3,1) both; }
.animate-fade-up-delay-2  { animation: fadeUp .7s .24s cubic-bezier(.16,1,.3,1) both; }

.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-700); }

/* ============================================
   SELECTION
   ============================================ */
::selection { background: rgba(255,255,255,.15); color: var(--white); }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-sec); }
.mb-0  { margin-bottom: 0 !important; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.hidden { display: none !important; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: var(--transition-slow);
}
.testimonial-card:hover {
    border-color: var(--border-md); box-shadow: var(--glow);
    transform: translateY(-3px);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-star { font-size: 13px; color: #facc15; }
.testimonial-star--empty { color: var(--gray-700); }
.testimonial-comment {
    font-size: 14px; color: var(--text-sec); line-height: 1.7;
    flex: 1; font-style: italic;
}
.testimonial-comment::before { content: '\201C'; font-size: 32px; color: var(--border-lg); line-height: 0; vertical-align: -14px; margin-right: 4px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-dim); border: 1px solid var(--border-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: var(--text-sec);
    flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 11px; color: var(--text-ter); margin-top: 2px; }

/* Client logo wall */
.logo-wall {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-card);
}
.logo-wall__item {
    flex: 1; min-width: 140px; padding: 24px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--text-ter);
    letter-spacing: .3px; transition: var(--transition);
}
.logo-wall__item:hover { color: var(--white); background: var(--bg-hover); }
.logo-wall__item img { max-height: 28px; filter: grayscale(100%) brightness(.6); transition: var(--transition); }
.logo-wall__item:hover img { filter: grayscale(0%) brightness(1); }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .logo-wall__item { min-width: 120px; }
}
