* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #333; background: #fff; }

:root {
	--blue: #123876;
	--red: #C8102E;
	--grey-bg: #F4F3F3;
	--dark: #0d1b3e;
	--text: #333;
	--text-light: #666;
}

.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #e0e0e0; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-weight: 700; font-size: 20px; color: var(--blue); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; }
.nav-links a.active { color: var(--blue); border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-user { font-size: 14px; color: var(--blue); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.nav-avatar { width: 32px; height: 32px; background: #d0d0d0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #999; }

.member-nav { background: white; border-bottom: 1px solid #e8e8e8; padding: 0 40px; display: flex; gap: 32px; height: 48px; align-items: center; }
.member-nav a { text-decoration: none; font-size: 13px; color: var(--text-light); font-weight: 500; }
.member-nav a.active { color: var(--blue); border-bottom: 2px solid var(--red); padding-bottom: 12px; }

.btn-primary { background: var(--red); color: white; border: none; padding: 10px 24px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; display: inline-block; cursor: pointer; }

.page-header { background: var(--dark); color: white; padding: 80px 40px 60px; position: relative; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13, 27, 62, .88), rgba(18, 56, 118, .75)); }
.page-header-content { position: relative; z-index: 1; max-width: 800px; }
.breadcrumb { font-size: 13px; opacity: .6; margin-bottom: 16px; }
.page-header h1 { font-size: 40px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.page-header p { font-size: 17px; line-height: 1.7; opacity: .85; }

.filter-section { background: white; padding: 32px 40px; border-bottom: 1px solid #e8e8e8; }
.filter-grid { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 16px; max-width: 1100px; margin: 0 auto; align-items: end; }
.filter-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .3px; }
.filter-group input,
.filter-group select { width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; color: var(--text); font-family: inherit; background: white; height: 42px; }
.filter-group .btn-primary { height: 42px; padding: 0 28px; display: inline-flex; align-items: center; }

.section { padding: 64px 40px; background: var(--grey-bg); }
.section-header { max-width: 1100px; margin: 0 auto 32px; display: flex; justify-content: space-between; align-items: baseline; }
.section-header h2 { font-size: 24px; color: var(--blue); font-weight: 700; }
.section-header .results-count { font-size: 14px; color: var(--text-light); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, .08); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 0, 0, .12); }
.card-img { height: 180px; background: #d0d0d0; display: flex; align-items: center; justify-content: center; color: #999; font-size: 13px; position: relative; }
.card-label { position: absolute; top: 12px; left: 12px; background: var(--blue); color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; }
.card-linkedin { position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; text-decoration: none; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 16px; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.card-function { font-size: 13px; color: var(--text-light); font-style: italic; margin-bottom: 2px; }
.card-org { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.card-expertise { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.card-expertise span { font-size: 13px; color: var(--red); font-weight: 500; }
.card-contact { font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 12px; padding-top: 12px; border-top: 1px solid #eee; }
.card-contact .city { font-weight: 600; display: block; margin-bottom: 2px; }
.card-contact a { color: var(--text); text-decoration: none; }
.card-quote { font-size: 13px; color: var(--red); font-style: italic; line-height: 1.5; padding-top: 12px; border-top: 1px solid #eee; margin-top: auto; }

.cta-banner { background: white; padding: 64px 40px; text-align: center; }
.cta-banner h2 { font-size: 28px; color: var(--blue); margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: var(--text-light); max-width: 550px; margin: 0 auto 24px; line-height: 1.6; }

.footer { background: var(--dark); color: rgba(255, 255, 255, .8); padding: 60px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 40px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: white; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; text-align: center; font-size: 12px; opacity: .5; max-width: 1100px; margin: 0 auto; }

.wf-label { position: fixed; bottom: 16px; right: 16px; background: var(--blue); color: white; font-size: 11px; padding: 6px 14px; border-radius: 20px; z-index: 999; font-weight: 600; }
.wf-note { position: fixed; bottom: 16px; left: 16px; background: #e0e0e0; color: #666; font-size: 11px; padding: 6px 14px; border-radius: 20px; z-index: 999; }
