/* ========================================
   HIYUS - Main Stylesheet
   Clean Dark Theme
   ======================================== */

/* ---------- Variables ---------- */
:root {
    --bg-base: #09090b;
    --bg-raised: #0c0c0e;
    --bg-surface: #18181b;
    --bg-surface-hover: #1f1f23;
    --bg-overlay: #27272a;
    --border: #27272a;
    --border-light: #3f3f46;
    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dim: #52525b;
    --accent: #5B8DEF;
    --accent-hover: #4A7ADB;
    --accent-soft: rgba(91, 141, 239, 0.1);
    --accent-border: rgba(91, 141, 239, 0.25);
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.15s ease;
    --navbar-h: 72px;
}

/* ---------- Light Theme ---------- */
[data-theme="light"] {
    --bg-base: #eef1f6;
    --bg-raised: #f6f8fb;
    --bg-surface: #f6f8fb;
    --bg-surface-hover: #ebeef3;
    --bg-overlay: #dfe3ea;
    --border: #d0d5dd;
    --border-light: #b8bfc9;
    --text: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    --accent: #4A7ADB;
    --accent-hover: #3A68C8;
    --accent-soft: rgba(74,122,219,0.1);
    --accent-border: rgba(74,122,219,0.25);
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 32px rgba(15,23,42,0.1);
}

/* Light theme component overrides */
[data-theme="light"] .navbar {
    background: rgba(246,248,251,0.75);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 12px rgba(15,23,42,0.05);
    backdrop-filter: blur(20px) saturate(180%);
}
[data-theme="light"] .navbar.scrolled {
    background: rgba(246,248,251,0.92);
    box-shadow: 0 2px 20px rgba(15,23,42,0.07);
}
[data-theme="light"] .navbar-menu {
    background: none;
    border-color: transparent;
}
[data-theme="light"] .navbar-menu > a,
[data-theme="light"] .nav-dropdown > a {
    color: #475569;
}
[data-theme="light"] .navbar-menu > a:hover,
[data-theme="light"] .nav-dropdown:hover > a {
    color: #0f172a;
    background: rgba(15,23,42,0.06);
}
[data-theme="light"] .navbar-menu > a.active {
    color: #0f172a;
    background: rgba(15,23,42,0.08);
}
[data-theme="light"] #particles-canvas {
    opacity: 0.15;
}
[data-theme="light"] .product-card,
[data-theme="light"] .category-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .cta-box {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.07);
    box-shadow: 0 1px 6px rgba(15,23,42,0.05), 0 0 0 1px rgba(255,255,255,0.9) inset;
}
[data-theme="light"] .product-card:hover,
[data-theme="light"] .category-card:hover,
[data-theme="light"] .org-card:hover .org-card-inner {
    box-shadow: 0 8px 28px rgba(15,23,42,0.1), 0 0 0 1px rgba(255,255,255,0.9) inset;
    border-color: rgba(74,122,219,0.2);
}
[data-theme="light"] .btn-outline,
[data-theme="light"] .btn-outline-light {
    border-color: #c1c8d1;
    color: #334155;
    background: rgba(255,255,255,0.5);
}
[data-theme="light"] .btn-outline:hover,
[data-theme="light"] .btn-outline-light:hover {
    border-color: #94a3b8;
    background: rgba(255,255,255,0.8);
    color: #0f172a;
}
[data-theme="light"] .footer {
    background: #e2e6ed;
    border-top-color: #d0d5dd;
}
[data-theme="light"] .section-title { color: #0f172a; }
[data-theme="light"] .section-subtitle { color: #475569; }
[data-theme="light"] .reference-item {
    border-color: rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.6);
    box-shadow: 0 1px 4px rgba(15,23,42,0.04);
}
[data-theme="light"] .alert-danger { color: #dc2626; }
[data-theme="light"] .alert-success { color: #16a34a; }
[data-theme="light"] .alert-warning { color: #ca8a04; }
[data-theme="light"] ::selection { background: rgba(74,122,219,0.2); color: #000; }
[data-theme="light"] .dropdown-menu a:hover { background: rgba(15,23,42,0.05); }
[data-theme="light"] .nav-dropdown .dropdown-menu {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(15,23,42,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .hero-badge,
[data-theme="light"] .hiyus-hero-badge {
    background: rgba(74,122,219,0.08);
    border-color: rgba(74,122,219,0.2);
    color: #4A7ADB;
}

/* --- Light Theme: KapsamlÄ± Fix --- */
[data-theme="light"] body {
    background: #e8edf5;
}
[data-theme="light"] .hero-bg,
[data-theme="light"] .hiyus-bg {
    background: linear-gradient(180deg, #dce3f0 0%, #e4eaf4 60%, #e8edf5 100%);
}
[data-theme="light"] .hero-bg::before,
[data-theme="light"] .hiyus-bg::before {
    opacity: 0.15;
}
[data-theme="light"] .hero-title,
[data-theme="light"] .hiyus-hero-title {
    color: #0f172a;
}
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .hiyus-hero-subtitle {
    color: #334155;
}
[data-theme="light"] .hero-status-card strong {
    color: #0f172a;
}
[data-theme="light"] .hero-status-card span {
    color: #475569;
}
[data-theme="light"] .product-info {
    background: rgba(255,255,255,0.5);
}
[data-theme="light"] .product-title a {
    color: #0f172a;
}
[data-theme="light"] .product-category {
    color: #4A7ADB;
}
[data-theme="light"] .product-excerpt {
    color: #475569;
}
[data-theme="light"] .price-current {
    color: #0f172a;
}
[data-theme="light"] .price-old {
    color: #94a3b8;
}
[data-theme="light"] .ref-card {
    background: rgba(255,255,255,0.5);
    border-color: rgba(74,122,219,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(15,23,42,0.04);
}
[data-theme="light"] .ref-card:hover {
    border-color: rgba(74,122,219,0.4);
    box-shadow: 0 12px 40px rgba(74,122,219,0.12);
}
[data-theme="light"] .ref-card-name {
    color: #0f172a;
}
[data-theme="light"] .ref-btn {
    color: #334155;
    border-color: rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.6);
}
[data-theme="light"] .ref-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #0f172a;
}
[data-theme="light"] .category-icon {
    color: #4A7ADB;
}
[data-theme="light"] .category-card h3 {
    color: #0f172a;
}
[data-theme="light"] .category-card p {
    color: #475569;
}
[data-theme="light"] .why-feature-card {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .why-feature-card h4 {
    color: #0f172a;
}
[data-theme="light"] .why-feature-card p {
    color: #475569;
}
[data-theme="light"] .why-stat-card {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .why-stat-value {
    color: #0f172a;
}
[data-theme="light"] .why-stat-label {
    color: #475569;
}
[data-theme="light"] .section-tag {
    color: #4A7ADB;
}
[data-theme="light"] .org-card-inner {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(74, 122, 219, 0.15);
    box-shadow: 0 4px 20px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
[data-theme="light"] .org-card-founder .org-card-inner {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(74, 122, 219, 0.25);
}
[data-theme="light"] .org-card-manager .org-card-inner {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(74, 122, 219, 0.2);
}
[data-theme="light"] .org-card-member .org-card-inner {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(74, 122, 219, 0.12);
}
[data-theme="light"] .org-card-inner h4 {
    color: #0f172a;
}
[data-theme="light"] .org-role {
    color: #475569;
}
[data-theme="light"] .footer {
    background: #d8dee8;
    border-top-color: #c5cdd8;
}
[data-theme="light"] .footer-title {
    color: #0f172a;
}
[data-theme="light"] .footer-links a {
    color: #475569;
}
[data-theme="light"] .footer-links a:hover {
    color: #0f172a;
}
[data-theme="light"] .footer-brand p {
    color: #475569;
}
[data-theme="light"] .footer-bottom {
    border-top-color: #c5cdd8;
    color: #64748b;
}
[data-theme="light"] .footer-social a {
    color: #475569;
    background: rgba(0,0,0,0.04);
}
[data-theme="light"] .footer-social a:hover {
    color: #4A7ADB;
    background: rgba(74,122,219,0.08);
}
[data-theme="light"] .btn-primary {
    background: #4A7ADB;
    color: #fff;
}
[data-theme="light"] .btn-primary:hover {
    background: #3A68C8;
}
[data-theme="light"] .cta-title {
    color: #0f172a;
}
[data-theme="light"] .cta-subtitle {
    color: #475569;
}
/* Light theme: arka plan gÃ¶rselleri - karartma overlay'i aÃ§Ä±k temaya uygun */
[data-theme="light"] .hero-bg {
    background: #e0e5ef;
}
[data-theme="light"] .hero-bg::before,
[data-theme="light"] .hiyus-bg::before {
    opacity: 0.15;
}
[data-theme="light"] .hero-bg::after,
[data-theme="light"] .hiyus-bg::after {
    background: linear-gradient(180deg, rgba(228,233,243,0.45) 0%, rgba(232,237,245,0.85) 100%);
}
[data-theme="light"] .categories-section::before {
    opacity: 0.06;
}
[data-theme="light"] .products-section::before {
    opacity: 0.06;
}
[data-theme="light"] .references-section::before {
    opacity: 0.08;
}
[data-theme="light"] .team-section::before {
    opacity: 0.08;
}
[data-theme="light"] .product-image {
    background: #eef1f6;
}
[data-theme="light"] .page-header {
    background: #f0f3f9;
}
[data-theme="light"] .page-header::before {
    opacity: 0.03;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.87rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}
.btn-ghost:hover {
    color: var(--text);
    background: var(--bg-surface);
}

.btn-outline,
.btn-outline-light {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover,
.btn-outline-light:hover {
    background: var(--bg-surface);
    border-color: var(--border-light);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
}
.btn-discord:hover {
    background: #4752c4;
    border-color: #4752c4;
}

.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-lg { padding: 12px 24px; font-size: 0.93rem; }
.btn-block { display: flex; width: 100%; }
.btn i { font-size: 0.9em; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    display: flex;
    align-items: center;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.95);
    border-bottom-color: var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    max-width: 1320px;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.navbar-brand img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.navbar-brand .logo-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
}

/* Nav Links Ã¢â‚¬â€ centered between logo and actions */
.navbar-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding-left: 60px;
}

.navbar-menu > a,
.nav-dropdown > a {
    padding: 9px 18px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
}

.navbar-menu > a:hover,
.nav-dropdown:hover > a {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}

.navbar-menu > a.active {
    color: var(--text);
    background: rgba(255,255,255,0.08);
}

.navbar-menu > a i.fa-chevron-down,
.nav-dropdown > a i.fa-chevron-down {
    font-size: 0.55rem;
    opacity: 0.5;
    margin-left: 2px;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    transition: all 0.12s ease;
}
.dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    transition: color 0.12s ease;
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}
.dropdown-menu a:hover i {
    color: var(--accent);
}

/* Nav Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
    margin: 0 4px;
}

.theme-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s;
}
.theme-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,255,255,0.04);
}

.navbar-actions .btn {
    font-size: 0.8rem !important;
    padding: 7px 16px !important;
    border-radius: 10px !important;
    font-weight: 500;
}

.navbar-actions .btn-discord {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 50px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: color 0.15s ease;
}
.mobile-toggle:hover {
    color: var(--text);
}

/* ---------- Hero ---------- */
.hero,
.hiyus-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-h) + 40px) 24px 60px;
    overflow: hidden;
}

.hero-bg,
.hiyus-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-base);
    z-index: 0;
}
.hero-bg::before,
.hiyus-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hiyus-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
}
.hero-bg::after,
.hiyus-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9,9,11,0.4) 0%, rgba(9,9,11,0.85) 100%);
    pointer-events: none;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.hero-content,
.hiyus-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    width: 100%;
    padding: 0 16px;
}

.hero-badge,
.hiyus-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 141, 239, 0.1);
    border: 1px solid rgba(91, 141, 239, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title,
.hiyus-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-subtitle,
.hiyus-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons,
.hiyus-hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Grid Layout */
.hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.hero-grid .hero-title,
.hero-grid .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.hero-grid .hero-buttons {
    justify-content: flex-start;
}
.hero-text {
    flex: 1;
    min-width: 0;
}
.hero-side-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 280px;
}
.hero-status-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 18px;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}
.hero-status-card:hover {
    background: rgba(91,141,239,0.06);
    border-color: rgba(91,141,239,0.2);
    transform: translateY(-2px);
}
.hero-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.hero-status-card strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.hero-status-card span {
    display: block;
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
}
[data-theme="light"] .hero-status-card {
    background: rgba(255,255,255,0.6);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
[data-theme="light"] .hero-status-card:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(74,122,219,0.2);
}
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .hero-grid .hero-title,
    .hero-grid .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-grid .hero-buttons {
        justify-content: center;
    }
    .hero-side-cards {
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-status-card {
        flex: 1 1 calc(50% - 4px);
        min-width: 140px;
        padding: 12px 14px;
        gap: 10px;
    }
    .hero-status-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* ---------- Hero Stats Bar ---------- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat-suffix {
    font-size: 1.3rem;
    font-weight: 700;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    text-transform: capitalize;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}
@media (max-width: 480px) {
    .hero-stats {
        gap: 0;
    }
    .hero-stat-item {
        padding: 0 20px;
    }
    .hero-stat-value {
        font-size: 1.4rem;
    }
}

/* Light theme hero stats */
[data-theme="light"] .hero-stat-value {
    color: #4A7ADB;
}
[data-theme="light"] .hero-stat-label {
    color: #475569;
}
[data-theme="light"] .hero-stat-divider {
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.12), transparent);
}

/* ---------- Section ---------- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 auto;
}

/* ---------- Categories ---------- */
.categories-section {
    position: relative;
}
.categories-section::before {
    display: none;
}
.categories-section > * {
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.category-card {
    display: block;
    padding: 28px 22px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    color: var(--text);
}
.category-card:hover {
    border-color: var(--border-light);
    background: var(--bg-surface-hover);
}
.category-card .category-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 14px;
}
.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.category-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}
.category-card .category-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---------- Why Hiyus Section ---------- */
.why-section {
    position: relative;
}
.why-section::before {
    display: none;
}
.why-section > * {
    position: relative;
    z-index: 1;
}
.why-section .section-header { text-align: left; }
.why-section .section-subtitle { max-width: 500px; margin-left: 0; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 36px;
    align-items: start;
}
.why-features { display: flex; flex-direction: column; gap: 14px; }
.why-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.why-feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(91, 141, 239, 0.08);
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(91, 141, 239, 0.1);
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.why-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.why-feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.why-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}
.why-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}
.why-stat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(91, 141, 239, 0.12), inset 0 0 24px rgba(91, 141, 239, 0.03);
}
.why-stat-card i {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 12px;
}
.why-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.why-stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}
.why-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; gap: 28px; }
    .why-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .why-stats { grid-template-columns: 1fr; }
}

/* ---------- Products Grid ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.products-grid-sm {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    background: var(--bg-raised);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 12px;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.03);
}
.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-dim);
    font-size: 1.8rem;
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    padding: 18px;
}
.product-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    font-weight: 600;
}
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 6px 0;
    line-height: 1.4;
}
.product-title a { color: var(--text); }
.product-title a:hover { color: var(--accent); }

.product-excerpt {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-current {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}
.price-current small { font-size: 0.8rem; color: var(--text-secondary); }
.price-old {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ---------- Page Header ---------- */
.page-header {
    position: relative;
    padding: calc(var(--navbar-h) + 36px) 0 32px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: var(--bg-raised);
}
.page-header::before {
    display: none;
}
.page-header > * {
    position: relative;
    z-index: 1;
}
.page-header-sm { padding-bottom: 24px; }

.page-title {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 600;
    margin-top: 10px;
}
.page-title i { color: var(--accent); margin-right: 6px; }

.page-subtitle {
    color: var(--text-secondary);
    margin-top: 6px;
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.55rem; color: var(--text-dim); }
.breadcrumb span { color: var(--text-secondary); }

/* ---------- Filter Bar ---------- */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 18px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.filter-btn {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--text-muted);
    color: var(--text);
    background: var(--bg-surface);
}

/* Sub-type Tabs (Map alt tipleri) */
.subtype-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.subtype-tab {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.subtype-tab:hover {
    border-color: var(--accent);
    color: var(--text);
}
.subtype-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.products-section {
    position: relative;
    padding: 36px 0 60px;
}
.products-section::before {
    display: none;
}
.products-section > * {
    position: relative;
    z-index: 1;
}

/* ---------- Product Detail ---------- */
.product-detail-section {
    padding: calc(var(--navbar-h) + 24px) 0 60px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 20px;
}

.product-gallery {
    position: sticky;
    top: calc(var(--navbar-h) + 16px);
    align-self: start;
}
.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-raised);
    aspect-ratio: 4/3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }

/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .25s}
.lightbox.active{opacity:1;pointer-events:auto}
.lightbox img{max-width:90vw;max-height:90vh;object-fit:contain;border-radius:8px}
.lightbox-close{position:absolute;top:20px;right:24px;background:none;border:none;color:#fff;font-size:36px;cursor:pointer;z-index:10000;line-height:1}
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 2.5rem;
    gap: 10px;
    height: 100%;
}
.gallery-placeholder p { font-size: 0.9rem; }

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
}
.gallery-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--bg-raised);
    cursor: pointer;
    transition: border-color var(--transition);
    padding: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail Info */
.detail-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    font-weight: 600;
}
.detail-title {
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    font-weight: 600;
    margin: 6px 0 10px;
    line-height: 1.3;
}
.detail-short-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.65;
}
.detail-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.detail-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}
.detail-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.detail-discount-badge {
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

.detail-features { margin-bottom: 20px; }
.detail-features h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.detail-features h3 i { color: var(--accent); margin-right: 6px; }
.detail-features ul { display: flex; flex-direction: column; gap: 6px; }
.detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.detail-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

.detail-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.detail-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-muted); }
.detail-meta i { margin-right: 4px; }

/* Medya (Video/GIF) */
.product-media-block {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.product-media-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.product-media-block h2 i { color: var(--accent); margin-right: 8px; }
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.media-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.media-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.media-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.media-gif img {
    width: 100%;
    display: block;
}
.media-caption {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}
@media (max-width: 600px) {
    .media-grid { grid-template-columns: 1fr; }
    .product-media-block { padding: 18px; }
}

.product-description-block {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.product-description-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.product-description-block h2 i { color: var(--accent); margin-right: 8px; }
.description-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9rem;
}
.description-content h1, .description-content h2, .description-content h3 { color: var(--text); margin: 16px 0 8px; }
.description-content p { margin-bottom: 10px; }
.description-content ul, .description-content ol { margin: 10px 0; padding-left: 20px; }
.description-content ul { list-style: disc; }
.description-content ol { list-style: decimal; }
.description-content img { border-radius: var(--radius-sm); margin: 10px 0; }

.related-products { margin-top: 48px; }
.related-products h2 { font-size: 1.15rem; font-weight: 600; margin-bottom: 20px; }

/* ---------- References ---------- */
.references-section {
    position: relative;
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.references-section::before {
    display: none;
}
.references-section > * {
    position: relative;
    z-index: 1;
}

/* ---------- Team ---------- */
.team-section {
    position: relative;
    padding: 80px 0;
}
.team-section::before {
    display: none;
}
.team-section > * {
    position: relative;
    z-index: 1;
}

/* ===== Modern Org Tree ===== */
.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    gap: 0;
}

/* Tiers */
.org-tier {
    display: flex;
    justify-content: center;
    gap: 32px;
    position: relative;
}
.org-tier-team {
    gap: 24px;
}

/* Cards */
.org-card {
    position: relative;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.org-card:hover {
    transform: translateY(-4px);
}
.org-card-inner {
    position: relative;
    z-index: 1;
    padding: 28px 36px;
    border-radius: 16px;
    background: rgba(91, 141, 239, 0.08);
    border: 1px solid rgba(91, 141, 239, 0.2);
    text-align: center;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.org-card:hover .org-card-inner {
    border-color: rgba(91, 141, 239, 0.5);
    background: rgba(91, 141, 239, 0.14);
    box-shadow: 0 8px 32px rgba(91,141,239,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Glow behind founder/manager cards */
.org-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--accent), rgba(91,141,239,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
    filter: blur(8px);
}
.org-card:hover .org-card-glow {
    opacity: 0.5;
}

/* Founder cards - slightly larger */
.org-card-founder .org-card-inner {
    padding: 32px 44px;
    background: rgba(91, 141, 239, 0.14);
    border-color: rgba(91, 141, 239, 0.35);
    box-shadow: 0 6px 28px rgba(91,141,239,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Manager card */
.org-card-manager .org-card-inner {
    padding: 28px 48px;
    background: rgba(91, 141, 239, 0.11);
    border-color: rgba(91, 141, 239, 0.28);
    box-shadow: 0 4px 24px rgba(91,141,239,0.10), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Member cards - compact */
.org-card-member .org-card-inner {
    padding: 24px 28px;
    background: rgba(91, 141, 239, 0.07);
    border-color: rgba(91, 141, 239, 0.18);
}

/* Avatar icon circle */
.org-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91,141,239,0.15), rgba(91,141,239,0.05));
    border: 2px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: var(--accent);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.org-avatar-sm {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 12px;
}
.org-card:hover .org-avatar {
    border-color: var(--accent);
    box-shadow: 0 0 28px rgba(91,141,239,0.35);
}

/* Text */
.org-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.org-card-role {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(91,141,239,0.1);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(91,141,239,0.15);
}

/* Connector Ã¢â‚¬â€ vertical line */
.org-connector {
    display: flex;
    justify-content: center;
    height: 40px;
}
.org-connector-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-border), rgba(91,141,239,0.15));
}

/* Branches Ã¢â‚¬â€ horizontal line with vertical drops */
.org-branches {
    position: relative;
    width: 380px;
    height: 24px;
    margin-bottom: 0;
}
.org-branch-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-border);
}
/* Center vertical from branch */
.org-branches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: transparent;
}
/* Left drop */
.org-branches::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--accent-border);
}

/* Right drop (use box-shadow trick for 3rd line) */
.org-branch-line::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 24px;
    background: var(--accent-border);
}
.org-branch-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 24px;
    background: var(--accent-border);
}

/* Founder tier Ã¢â‚¬â€ horizontal connector between 2 cards */
.org-tier-founders {
    position: relative;
}
.org-tier-founders::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 1px;
    background: var(--accent-border);
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .org-tier {
        gap: 16px;
    }
    .org-tier-team {
        flex-wrap: wrap;
        gap: 16px;
    }
    .org-card-founder .org-card-inner,
    .org-card-manager .org-card-inner {
        padding: 20px 24px;
    }
    .org-card-member .org-card-inner {
        padding: 18px 20px;
    }
    .org-branches {
        width: 260px;
    }
    .org-card-name {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .org-tier-founders {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .org-tier-founders::after {
        display: none;
    }
    .org-tier-team {
        flex-direction: column;
        align-items: center;
    }
    .org-branches {
        width: 1px;
        height: 24px;
        background: var(--accent-border);
    }
    .org-branch-line,
    .org-branches::after {
        display: none;
    }
}

/* ===== Modern Team Cards (Horizontal) ===== */
.team-cards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
    direction: rtl;
}
.team-member-card {
    direction: ltr;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 28px 24px;
    border-radius: 20px;
    background: rgba(91, 141, 239, 0.06);
    border: 1px solid rgba(91, 141, 239, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
    width: 200px;
    flex-shrink: 0;
}
.team-member-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 141, 239, 0.4);
    box-shadow: 0 12px 40px rgba(91, 141, 239, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.team-member-founder {
    width: 220px;
    padding: 36px 32px 28px;
    background: rgba(91, 141, 239, 0.10);
    border-color: rgba(91, 141, 239, 0.25);
}
.team-member-founder:hover {
    border-color: rgba(91, 141, 239, 0.5);
    box-shadow: 0 16px 48px rgba(91, 141, 239, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Avatar */
.team-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
    overflow: visible;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.team-member-founder .team-avatar {
    width: 90px;
    height: 90px;
}
.team-member-card:hover .team-avatar {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Star badge for founders */
.team-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: #fff;
    border: 2px solid rgba(9,9,11,0.8);
    box-shadow: 0 2px 6px rgba(245,158,11,0.3);
}

/* Name */
.team-member-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

/* Role */
.team-member-role {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(91,141,239,0.1);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(91,141,239,0.15);
    margin-bottom: 10px;
}

/* Tag (hidden) */
.team-member-tag {
    display: none;
}

/* Role text (plain) */
.team-member-role-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-cards-grid {
        gap: 14px;
    }
    .team-member-card {
        width: 160px;
        padding: 24px 18px 20px;
    }
    .team-member-founder {
        width: 180px;
        padding: 28px 22px 22px;
    }
    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    .team-member-founder .team-avatar {
        width: 68px;
        height: 68px;
        font-size: 1.5rem;
    }
    .team-member-name {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .team-cards-grid {
        gap: 10px;
        direction: ltr;
    }
    .team-member-card {
        width: calc(50% - 5px);
        min-width: 0;
    }
    .team-member-founder {
        width: calc(50% - 5px);
    }
}

/* Light theme team cards */
[data-theme="light"] .team-member-card {
    background: rgba(255,255,255,0.6);
    border-color: rgba(74,122,219,0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
[data-theme="light"] .team-member-card:hover {
    border-color: rgba(74,122,219,0.3);
    box-shadow: 0 12px 40px rgba(15,23,42,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-theme="light"] .team-member-founder {
    background: rgba(255,255,255,0.75);
    border-color: rgba(74,122,219,0.2);
}
[data-theme="light"] .team-member-name {
    color: #0f172a;
}
[data-theme="light"] .team-member-role {
    color: #4A7ADB;
    background: rgba(74,122,219,0.08);
    border-color: rgba(74,122,219,0.12);
}
[data-theme="light"] .team-member-tag {
    color: #64748b;
}
[data-theme="light"] .team-avatar-badge {
    border-color: rgba(255,255,255,0.9);
}

.references-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.reference-item {
    text-align: center;
    opacity: 0.85;
    transition: opacity var(--transition);
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.reference-item:hover { opacity: 1; }
.reference-item img {
    height: 64px;
    object-fit: contain;
    margin: 0 auto;
    transition: filter var(--transition);
}
.reference-item:hover img { filter: brightness(1.1); }
.reference-item span, .ref-name-only {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* ---------- Packages Section ---------- */
.packages-section {
    background: var(--bg-base, #09090b);
}
.packages-category-group {
    margin-bottom: 40px;
}
.packages-group-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text, #fafafa);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #27272a);
}
.packages-group-title i {
    color: var(--accent, #5B8DEF);
    margin-right: 8px;
    font-size: 1rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.package-card {
    background: var(--bg-surface, #18181b);
    border: 1px solid var(--border, #27272a);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: all 0.3s ease;
}
.package-card:hover {
    border-color: var(--border-light, #3f3f46);
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,.3));
}
.package-card:hover .package-image img {
    transform: scale(1.03);
}
.package-image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-raised, #1c1c1f);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.package-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}
.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green, #22c55e);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    z-index: 2;
}
.package-badge i { margin-right: 4px; }
.package-image-placeholder {
    color: var(--text-dim, rgba(255,255,255,.15));
    font-size: 2.5rem;
}
.package-info {
    padding: 18px;
}
.package-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #fff);
    margin-bottom: 8px;
    line-height: 1.4;
}
.package-category {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent, #5B8DEF);
    font-weight: 600;
    margin-bottom: 6px;
}
.package-category i { margin-right: 4px; opacity: 0.7; }
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}
.package-features li {
    padding: 5px 0;
    font-size: 0.82rem;
    color: var(--text-secondary, #a1a1aa);
    line-height: 1.5;
}
.package-features li i {
    color: var(--accent, #5B8DEF);
    margin-right: 8px;
    font-size: 0.72rem;
}
.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border, #27272a);
}
.package-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.package-price-current {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text, #fff);
}
.package-price-old {
    font-size: 0.82rem;
    color: var(--text-muted, #8892a4);
    text-decoration: line-through;
}

/* ---------- Reference Cards ---------- */
.ref-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.ref-card {
    background: rgba(91, 141, 239, 0.10);
    border: 1px solid rgba(91, 141, 239, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ref-card:hover {
    border-color: rgba(91, 141, 239, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(91, 141, 239, 0.14);
}
.ref-card-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ref-card-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}
.ref-card-logo-placeholder {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 141, 239, 0.08);
    border: 1px solid rgba(91, 141, 239, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 1.5rem;
}
.ref-card-info { margin-bottom: 16px; flex: 1; }
.ref-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}
.ref-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}
.ref-card-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.ref-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.ref-btn i { font-size: 0.72rem; }
.ref-btn-index {
    background: rgba(91, 141, 239, 0.12);
    color: #5B8DEF;
    border-color: rgba(91, 141, 239, 0.25);
}
.ref-btn-index:hover { background: rgba(91, 141, 239, 0.22); }
.ref-btn-wiki {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
    border-color: rgba(234, 179, 8, 0.25);
}
.ref-btn-wiki:hover { background: rgba(234, 179, 8, 0.22); }
.ref-btn-tanitim {
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.25);
}
.ref-btn-tanitim:hover { background: rgba(168, 85, 247, 0.22); }
@media (max-width: 640px) {
    .ref-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ref-card { padding: 20px 16px 16px; }
    .ref-card-logo { height: 56px; margin-bottom: 12px; }
    .ref-card-logo img { max-height: 56px; }
}
@media (max-width: 640px) {
    .packages-grid { grid-template-columns: 1fr; gap: 16px; }
    .package-info { padding: 14px; }
}

/* ---------- Stats ---------- */
.stats-section { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.stat-card .stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--accent);
    margin: 0 auto 12px;
}
.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    display: inline;
}
.stat-suffix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* ---------- CTA ---------- */
.cta-section { padding: 64px 0; }
.cta-box {
    padding: 48px 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}
.cta-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 8px;
}
.cta-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}
.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Checkout ---------- */
.checkout-section { padding: 36px 0 60px; }
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}
.checkout-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}
.checkout-title i { color: var(--accent); margin-right: 6px; }
.checkout-payments {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.payment-tab {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-base);
    color: var(--text-secondary);
    font-size: 0.87rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.payment-tab:hover {
    border-color: var(--border-light);
    color: var(--text);
}
.payment-tab.active {
    background: rgba(91, 141, 239, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}
.payment-tab i { font-size: 1rem; }

/* Payment Panels */
.payment-panel {
    display: none;
}
.payment-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.payment-panel-inner {
    text-align: center;
    padding: 10px 0;
}
.payment-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(91, 141, 239, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--accent);
}
.payment-icon.crypto-icon {
    background: rgba(247, 147, 26, 0.1);
    color: #f7931a;
}
.payment-panel-inner h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.payment-panel-inner p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Coupon Input */
.coupon-input-group {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}
.coupon-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.87rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.coupon-input-group input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Crypto Coins */
.crypto-coins {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.crypto-coins span {
    padding: 6px 14px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Crypto Panel Redesign */
.crypto-coins-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.crypto-coin-tag {
    padding: 6px 14px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: .3px;
}
.crypto-coin-more {
    color: var(--text-muted);
    font-weight: 500;
}

.checkout-form {
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.checkout-form h2 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.checkout-form h2 i { color: var(--accent); margin-right: 6px; }

.checkout-summary .glass-card {
    padding: 28px;
    position: sticky;
    top: calc(var(--navbar-h) + 16px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.checkout-summary h2 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.checkout-summary h2 i { color: var(--accent); margin-right: 6px; }

.summary-product { display: flex; gap: 14px; align-items: center; }
.summary-product-image {
    width: 72px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-raised);
}
.summary-product-image img { width: 100%; height: 100%; object-fit: cover; }
.summary-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-dim); }
.summary-product-info h3 { font-size: 0.9rem; font-weight: 600; }
.summary-category { font-size: 0.72rem; color: var(--text-muted); }
.summary-divider { height: 1px; background: var(--border); margin: 16px 0; }
.summary-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.87rem; color: var(--text-secondary); }
.summary-discount span:last-child { color: var(--green); }
.summary-total { padding: 10px 0; font-size: 1rem; font-weight: 600; color: var(--text); }
.summary-total span:last-child { color: var(--accent); }
.checkout-summary .btn { margin-top: 16px; }
.summary-note { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; }
.summary-note i { color: var(--green); margin-right: 3px; }
@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .payment-tabs { flex-direction: column; }
    .coupon-input-group { flex-direction: column; }
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-secondary);
}
.form-group label .required { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.87rem;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

/* ---------- Alerts ---------- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.87rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert i { margin-top: 2px; flex-shrink: 0; }
.alert ul { margin: 0; }
.alert-danger { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.15); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15); color: #86efac; }
.alert-warning { background: rgba(234,179,8,0.08); border: 1px solid rgba(234,179,8,0.15); color: #fde68a; }

/* ---------- Empty State ---------- */
.empty-state {
    text-align: center;
    padding: 64px 20px;
}
.empty-state i { font-size: 2.5rem; margin-bottom: 14px; color: var(--text-dim); }
.empty-state h3 { font-size: 1rem; color: var(--text-secondary); margin-bottom: 6px; }
.empty-state p { margin-bottom: 16px; color: var(--text-muted); font-size: 0.87rem; }

/* ---------- Login ---------- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg-base);
}
.login-card {
    width: 100%;
    max-width: 400px;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.login-header {
    text-align: center;
    margin-bottom: 24px;
}
.login-header h1 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 12px;
}
.login-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}
.login-header .login-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: var(--accent);
    margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-brand .navbar-brand { margin-bottom: 10px; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--border-light);
    color: var(--text);
}
.footer-title {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-links a i { width: 14px; margin-right: 6px; font-size: 0.75rem; }

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---------- Animations ---------- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

::selection { background: rgba(91, 141, 239, 0.25); color: #fff; }

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}
.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}
.pagination a:hover {
    border-color: var(--border-light);
    color: var(--text);
}
.pagination .active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pagination .disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ---------- Currency Switch ---------- */
.currency-switch {
    display: inline-flex;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    gap: 0;
}
.curr-btn {
    padding: 5px 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}
.curr-btn.active {
    background: var(--accent);
    color: #fff;
}
.curr-btn:hover:not(.active) {
    color: var(--text);
    background: var(--bg-surface-hover);
}

/* ---------- Dashboard Radial Cards ---------- */
.dash-radial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.dash-radial-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), transform var(--transition);
}
.dash-radial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.dash-radial-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
}
.dash-radial-ring svg {
    transform: rotate(-90deg);
    width: 80px;
    height: 80px;
}
.dash-radial-ring .ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 6;
}
.dash-radial-ring .ring-fill {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 55;
    transition: stroke-dashoffset 1s ease;
}
.dash-radial-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.dash-radial-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.dash-radial-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}
@media (max-width: 992px) {
    .dash-radial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .dash-radial-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .dash-radial-card { padding: 16px 10px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---------- Corporate Pages (Kurumsal) ---------- */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(91,141,239,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--accent);
    box-shadow: 0 0 32px rgba(91,141,239,0.15);
}
.page-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.page-breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}
.page-breadcrumb a:hover {
    color: var(--accent);
}
.page-breadcrumb i {
    font-size: 0.65rem;
}

/* Page Content */
.page-content-section {
    padding-top: 40px;
}
.page-content-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

/* Intro */
.page-intro {
    padding: 24px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.page-intro p { margin: 0; }

/* Feature Grid (HakkÄ±mÄ±zda) */
.page-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.page-feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition);
}
.page-feature-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
}
.page-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 14px;
}
.page-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
}
.page-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Content Blocks */
.page-block {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}
.page-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-block h2 i {
    color: var(--accent);
    font-size: 1rem;
}
.page-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Page Lists */
.page-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.page-list li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.page-list li i.fa-check-circle {
    color: var(--green);
}
.page-list.numbered {
    counter-reset: step;
}
.page-list.numbered li {
    counter-increment: step;
}
.page-list.numbered li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Notice Box */
.page-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(245,158,11,0.06);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: var(--radius-lg);
    margin-top: 24px;
}
.page-notice > i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.page-notice p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.active {
    border-color: var(--accent-border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    transition: color var(--transition);
}
.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-question span i {
    color: var(--accent);
    font-size: 0.9rem;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}
.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }
    .page-features-grid {
        grid-template-columns: 1fr;
    }
    .page-block {
        padding: 20px;
    }
    .page-content-wrapper {
        padding: 0 4px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }
}

/* ========================================
   Language Switcher
   ======================================== */
.lang-switch {
    display: flex;
    gap: 2px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2px;
}
.lang-btn {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1;
}
.lang-btn:hover { color: var(--text); background: var(--bg-surface-hover); }
.lang-btn.active {
    background: var(--accent);
    color: #fff;
}

/* ========================================
   Enhanced Product Detail & Reviews
   ======================================== */

/* ---------- Rating Summary (in detail info) ---------- */
.detail-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.stars-display { display: flex; gap: 2px; font-size: 14px; }
.rating-text { font-weight: 600; color: var(--text); font-size: 14px; }
.rating-count { color: var(--text-muted); font-size: 13px; }

/* ---------- Scroll CTA ---------- */
.scroll-cta {
    text-align: center;
    padding: 32px 0 16px;
}
.scroll-cta-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cta-inner i { font-size: 12px; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: .6; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ---------- Screenshots Gallery ---------- */
.product-screenshots-block {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.product-screenshots-block h2 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-screenshots-block h2 i { color: var(--accent); }
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot Lightbox */
.screenshot-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.screenshot-lightbox.active { display: flex; }
.screenshot-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.screenshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background var(--transition);
}
.screenshot-nav:hover { background: rgba(255,255,255,.2); }
.screenshot-prev { left: 20px; }
.screenshot-next { right: 20px; }
.screenshot-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    background: rgba(0,0,0,.5);
    padding: 6px 16px;
    border-radius: 20px;
}

/* ---------- Review Section ---------- */
.product-reviews-block {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.product-reviews-block h2 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-reviews-block h2 i { color: var(--accent); }
.reviews-count { font-size: .85rem; color: var(--text-muted); font-weight: 400; }

/* Reviews Summary */
.reviews-summary {
    margin-bottom: 28px;
}
.reviews-avg {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews-avg-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.reviews-avg-stars { display: flex; gap: 3px; font-size: 18px; }
.reviews-avg-text { color: var(--text-muted); font-size: 14px; }

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border-light); }
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent-border);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.review-name { display: block; font-size: 14px; }
.review-title {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-stars { display: flex; gap: 2px; font-size: 13px; }
.review-date { color: var(--text-muted); font-size: 12px; }
.review-comment {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
.review-product {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-product a {
    color: var(--accent);
    text-decoration: none;
}
.review-product a:hover { text-decoration: underline; }

/* Reviews Carousel (Homepage) */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

/* Reviews Empty */
.reviews-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.reviews-empty i { font-size: 32px; margin-bottom: 12px; display: block; }

/* Review Form */
.review-form-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
}
.review-form-wrapper h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--text);
}
.review-form .form-group { margin-bottom: 16px; }
.review-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.star-rating-input {
    display: flex;
    gap: 6px;
    font-size: 24px;
}
.star-input {
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    color: #3a3a3e;
}
.star-input:hover { transform: scale(1.15); }

.review-already, .review-login-prompt {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 14px;
}
.review-already i { color: var(--green); margin-right: 6px; }
.review-login-prompt i { font-size: 20px; display: block; margin-bottom: 8px; }
.review-login-prompt a { color: var(--accent); text-decoration: underline; }

/* ---------- Detail Meta (enhanced) ---------- */
.detail-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 13px;
}
.detail-meta span { display: flex; align-items: center; gap: 5px; }

/* ---------- Responsive: Reviews & Screenshots ---------- */
@media (max-width: 768px) {
    .reviews-avg-number { font-size: 2rem; }
    .review-header { flex-direction: column; }
    .screenshots-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .screenshot-nav { width: 36px; height: 36px; font-size: 14px; }
    .review-form-wrapper { padding: 16px; }
    .product-reviews-block, .product-screenshots-block { margin-top: 32px; padding-top: 24px; }
}


/* ============================================
   HAKKIMIZDA SAYFASI - KARAKTER KONUMU
   sayfa-baslik-krk.png ayarlari
   ============================================ */
.page-banner-character {
    /* Yatay konum: sagdan ne kadar uzakta
       Ornekler: 0%, 4%, 10%, -50px (ekran disina) */
    right: 14%;

    /* Dikey konum: alttan ne kadar yukarida
       Ornekler: 0, -20px (asagi), 40px (yukari) */
    bottom: 0;

    /* Boyut: yuksekligi
       Ornekler: 70%, 90%, 100%, 600px (sabit pixel)
       Not: orijinal goruntu boyutundan buyuk olursa pixel pixel gozukur */
    max-height: 90%;
    height: auto;
    width: auto;

    /* Sabit kalanlar */
    position: absolute;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

