:root {
    --primary: #0a1628;
    --primary-dark: #060e1a;
    --primary-light: #13203a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93bbfc;
    --gold: #d4a13e;
    --gold-light: #f0dba8;
    --cream: #f8f6f1;
    --white: #ffffff;
    --text-dark: #0b121f;
    --text-body: #334155;
    --text-muted: #94a3b8;
    --border: #e8e5dd;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.06);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.08);
    --shadow-xl: 0 32px 80px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.bg-custom {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 247, 248, 0.74);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* ===== GRAIN TEXTURE ===== */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    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");
}

/* ===== GLOW ORB ===== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar a {
    transition: color 0.2s;
}
.topbar a:hover {
    color: #fff;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ===== NAV LINK ===== */
.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 0.5rem 1rem;
    transition: color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link:hover {
    color: var(--text-dark);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after {
    width: 60%;
}

/* ===== DROPDOWN ===== */
.dropdown-group {
    position: relative;
}
.dropdown-group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-body);
    border-radius: 8px;
    transition: all 0.2s;
}
.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.06);
    color: var(--accent);
}

/* ===== SIDE DRAWER ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 88vw;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -24px 0 80px rgba(0,0,0,0.12);
    overflow-y: auto;
    padding: 2rem 1.5rem;
}
.drawer.open {
    right: 0;
}
.drawer::-webkit-scrollbar {
    width: 4px;
}
.drawer::-webkit-scrollbar-track {
    background: transparent;
}
.drawer::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* ===== DRAWER NAV ===== */
.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 10px;
    transition: all 0.2s;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}
.drawer-link:hover {
    background: rgba(0,0,0,0.04);
}
.drawer-link .icon {
    transition: transform 0.3s ease;
}
.drawer-link .icon.rotated {
    transform: rotate(180deg);
}
.drawer-sub {
    padding-left: 1.5rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-sub.open {
    max-height: 400px;
}
.drawer-sub a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s;
}
.drawer-sub a:hover {
    background: rgba(0,0,0,0.04);
    color: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1564981797816-1043664bf78d?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.5) 60%, rgba(10,22,40,0.2) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zm0-40V6h-4v4h-4v4h4v4h4v-4h4v-4h-4zM10 50v-4H6v4H2v4h4v4h4v-4h4v-4H10zm0-40V6H6v4H2v4h4v4h4v-4h4v-4H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .sub {
    color: rgba(255,255,255,0.35);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-stat p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

.page-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: var(--primary);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.5) 100%);
}
.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zm0-40V6h-4v4h-4v4h4v4h4v-4h4v-4h-4zM10 50v-4H6v4H2v4h4v4h4v-4h4v-4H10zm0-40V6H6v4H2v4h4v4h4v-4h4v-4H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.5rem; }

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.03em;
}
.page-hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ===== SECTION ===== */
.section {
    padding: 6rem 0;
}
.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-dark);
}
.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
}

/* ===== FEATURE CARD ===== */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* ===== TEAM CARD ===== */
.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover {
    border-color: var(--border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: inline-block;
}

/* ===== BLOG CARD ===== */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.blog-image {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card:hover .blog-image {
    transform: scale(1.04);
}
.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent);
    backdrop-filter: blur(4px);
}

/* ===== CTA ===== */
.cta-section {
    background: #060e1ae0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #060e1a;
}
.footer-link {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: inline-block;
}
.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.social-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-stats { gap: 1.5rem; }
    .hero-stat h4 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .hero { min-height: 80vh; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .hero-stat { flex: 1; min-width: 80px; }
    .drawer { width: 320px; padding: 1.5rem 1rem; }
    .page-hero { padding: 3rem 0 2.5rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 0.75rem; }
    .hero-stat h4 { font-size: 1.2rem; }
}

/* ===== ORGANIZATION CHART ===== */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.org-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
}

.org-level-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.org-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.org-items-center {
    justify-content: center;
}

/* ===== ORG CARD ===== */
.org-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.org-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.org-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border: 3px solid var(--border);
}
.org-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.org-avatar-lg {
    width: 80px;
    height: 80px;
    border-width: 3px;
    border-color: var(--accent);
}

.org-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.org-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.org-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent);
    margin-top: 0.4rem;
}

/* ===== CARD VARIANTS ===== */
.org-card-primary {
    border-top: 3px solid #1a2a44;
    background: #f8fafc;
}
.org-card-primary:hover {
    border-top-color: #1a2a44;
}

.org-card-ceo {
    border-top: 3px solid var(--accent);
    background: #f0f7ff;
    padding: 1.5rem 2rem;
    min-width: 180px;
}
.org-card-ceo:hover {
    border-top-color: var(--accent);
}

.org-card-secondary {
    border-top: 3px solid #2563eb;
    background: #f8fafc;
}
.org-card-secondary:hover {
    border-top-color: #2563eb;
}

.org-card-director {
    border-top: 3px solid #8b5cf6;
    background: #faf5ff;
    min-width: 160px;
    padding: 1.5rem 1.5rem;
}
.org-card-director:hover {
    border-top-color: #8b5cf6;
}

.org-card-support {
    border-top: 3px solid #10b981;
    background: #f0fdf4;
    min-width: 130px;
}
.org-card-support:hover {
    border-top-color: #10b981;
}

.org-card-expert {
    border-top: 3px solid #f59e0b;
    background: #fffbeb;
    padding: 1.5rem 2rem;
    min-width: 200px;
}
.org-card-expert:hover {
    border-top-color: #f59e0b;
}

/* ===== ICON BOX ===== */
.org-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}
.org-icon-box-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}
.org-icon-box-lg {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.org-expert-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.6rem;
}
.org-expert-tags span {
    font-size: 0.55rem;
    font-weight: 500;
    padding: 0.1rem 0.6rem;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

/* ===== CONNECTORS ===== */
.org-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.25rem 0;
    width: 100%;
}

.org-line-vertical {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--border), var(--border));
    position: relative;
}
.org-line-vertical::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.org-line-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    max-width: 400px;
    height: 2px;
    background: var(--border);
    position: relative;
    margin-top: -1px;
}
.org-line-horizontal-2 {
    max-width: 300px;
}
.org-line-horizontal-3 {
    max-width: 450px;
}

.org-line-left,
.org-line-right,
.org-line-center {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    top: 50%;
    transform: translateY(-50%);
}
.org-line-left { left: -4px; }
.org-line-right { right: -4px; }
.org-line-center {
    left: 50%;
    transform: translate(-50%, -50%);
}

.org-row-top .org-card { min-width: 140px; }
.org-row-bottom .org-card { min-width: 180px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .org-items {
        gap: 1rem;
    }
    .org-card {
        padding: 1rem;
        min-width: 100px;
    }
    .org-card-ceo {
        min-width: 150px;
        padding: 1.25rem 1.5rem;
    }
    .org-card-director {
        min-width: 130px;
        padding: 1.25rem 1rem;
    }
    .org-card-expert {
        min-width: 160px;
        padding: 1.25rem 1.5rem;
    }
    .org-avatar {
        width: 48px;
        height: 48px;
    }
    .org-avatar-lg {
        width: 64px;
        height: 64px;
    }
    .org-name {
        font-size: 0.75rem;
    }
    .org-role {
        font-size: 0.6rem;
    }
    .org-line-horizontal {
        width: 80%;
    }
    .org-line-horizontal-2 {
        max-width: 250px;
    }
    .org-line-horizontal-3 {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .org-items {
        gap: 0.75rem;
    }
    .org-card {
        padding: 0.75rem;
        min-width: 80px;
        border-radius: 8px;
    }
    .org-card-ceo {
        min-width: 120px;
        padding: 1rem 1.25rem;
    }
    .org-card-director {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }
    .org-card-expert {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    .org-avatar {
        width: 40px;
        height: 40px;
    }
    .org-avatar-lg {
        width: 56px;
        height: 56px;
    }
    .org-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .org-icon-box-lg {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    .org-name {
        font-size: 0.65rem;
    }
    .org-role {
        font-size: 0.55rem;
    }
    .org-badge {
        font-size: 0.45rem;
    }
    .org-line-horizontal {
        width: 90%;
    }
    .org-line-horizontal-2 {
        max-width: 200px;
    }
    .org-line-horizontal-3 {
        max-width: 280px;
    }
}

/* ===== FILTER BUTTON ===== */
.filter-btn {
    padding: 0.35rem 1.25rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}
.filter-btn:hover {
    color: var(--text-dark);
    border-color: #cbd5e1;
}
.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ===== BADGE CATEGORY ===== */
.badge-category {
    font-size: 0.55rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ===== TEACHER CARD ===== */
.teacher-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.teacher-card.hidden-card {
    display: none;
}

/* ===== LOAD MORE ===== */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.load-more-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.load-more-btn i {
    transition: transform 0.6s ease;
}
.load-more-btn:hover i {
    transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .filter-btn {
        padding: 0.25rem 0.75rem;
        font-size: 0.6rem;
    }
}