/* ============================================================
   HR KINGSMAN — Arseel Nasher HRBP
   Shared Stylesheet — All Pages
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c06d;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.22);
  --bg: #07080d;
  --bg2: #0d0e1a;
  --bg3: #121320;
  --card: #10111e;
  --card2: #161828;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(201,168,76,0.2);
  --text: #e4e0d4;
  --text-muted: #8c8880;
  --text-dim: #55524c;
  --white: #f4f0e8;
  --green: #3fba7a;
  --blue: #4a8eff;
  --red: #e05252;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --nav-height: 68px;
  --max-w: 1280px;
  --max-w-md: 960px;
  --max-w-sm: 720px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--white);
}
p { color: var(--text-muted); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-md { max-width: var(--max-w-md); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 24px; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.section-darker { background: var(--bg3); }

/* ── Typography ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.8; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 4px; border: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #07080d; }
.btn-primary:hover { background: var(--gold-light); color: #07080d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold-border); }
.btn-outline:hover { background: var(--gold-dim); color: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* ── Tags / Pills ── */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; border: 1px solid;
}
.badge-gold { color: var(--gold); background: var(--gold-dim); border-color: var(--gold-border); }
.badge-green { color: var(--green); background: rgba(63,186,122,0.1); border-color: rgba(63,186,122,0.25); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Cards ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-flat { transform: none !important; }

/* ── Stat Boxes ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }
.stat-sub { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

/* ── Availability Dot ── */
.avail-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

/* ── Divider ── */
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-height);
  background: rgba(7,8,13,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); white-space: nowrap;
}
.nav-logo .crown {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 0% 38%, 15% 100%, 85% 100%, 100% 38%);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 6px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-muted); white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-hire {
  background: var(--gold); color: var(--bg) !important; font-weight: 700;
  padding: 7px 16px; border-radius: 4px; margin-left: 4px;
}
.nav-links .nav-hire:hover { background: var(--gold-light); background-color: var(--gold-light); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  z-index: 998; padding: 12px 0; max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px;
  font-size: 14px; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); background: var(--gold-dim); }

/* ── Page Push ── */
.page-wrap { padding-top: var(--nav-height); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 60px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.8; }

/* ============================================================
   HOME PAGE HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute; pointer-events: none;
  top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 12px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-creds { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.hero-desc { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }

.hero-photo { position: relative; }
.hero-photo-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border2);
  position: relative;
}
.hero-photo-frame img { width: 100%; height: 480px; object-fit: cover; object-position: top; display: block; }
.hero-photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--bg) 100%);
}
.hero-contact-overlay {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 1;
  background: rgba(13,14,26,0.95); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.hero-contact-overlay h4 { font-size: 13px; color: var(--gold); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.hero-contact-overlay .links { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-contact-overlay .links a { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.hero-contact-overlay .links a:hover { color: var(--gold); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-size: 12px; color: var(--text-dim); }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.blog-author .avatar-frame-sm { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--card); }
.blog-author .avatar-frame-sm img { width: 170%; height: auto; object-fit: cover; object-position: center 43%; border: none; border-radius: 0; }
.author-box .avatar-frame-md { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--border2); overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--card); }
.author-box .avatar-frame-md img { width: 170%; height: auto; object-fit: cover; object-position: center 43%; border: none; border-radius: 0; }
.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.blog-filter-btn {
  padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 500;
  background: var(--card); border: 1px solid var(--border); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }

/* Blog Article */
.article-header { padding: 60px 0 40px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.article-body { padding: 60px 0; }
.article-body h2 { font-size: 24px; color: var(--white); margin: 36px 0 16px; }
.article-body h3 { font-size: 20px; color: var(--white); margin: 28px 0 12px; }
.article-body p { font-size: 16px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 20px; }
.article-body li { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; max-height: 480px; }
.article-cover img { width: 100%; object-fit: cover; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.article-tags a { font-size: 12px; color: var(--text-muted); background: var(--card); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; }
.article-tags a:hover { color: var(--gold); border-color: var(--gold-border); }
.author-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 20px; align-items: flex-start; margin-top: 40px; }
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border2); flex-shrink: 0; }
.author-box h4 { font-size: 16px; color: var(--white); margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.author-box .title { font-size: 12px; color: var(--gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.author-box p { font-size: 13px; margin: 0; }

/* ============================================================
   EXPERIENCE / TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-dot {
  position: absolute; left: -34px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
}
.tl-date { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-role { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.tl-company { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.tl-points li { font-size: 13px; color: var(--text-muted); padding: 4px 0 4px 18px; position: relative; line-height: 1.6; }
.tl-points li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }

/* ============================================================
   SKILLS
   ============================================================ */
.skill-bar { margin-bottom: 16px; }
.skill-bar-top { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.skill-track { height: 4px; background: var(--bg3); border-radius: 100px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 100px; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cert-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; gap: 12px; align-items: flex-start;
  transition: border-color var(--transition);
}
.cert-card:hover { border-color: var(--border2); }
.cert-icon { font-size: 22px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.cert-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.cert-body { font-size: 11px; color: var(--text-dim); line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon { font-size: 2rem; margin-bottom: 16px; line-height: 1; }
.service-card h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.service-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-includes { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.service-list li { font-size: 13px; color: var(--text-muted); padding: 4px 0 4px 18px; position: relative; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }
.service-price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--gold); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
}
.testi-quote { font-size: 5rem; color: var(--gold-dim); font-family: 'Playfair Display', serif; position: absolute; top: -8px; left: 20px; line-height: 1; pointer-events: none; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.85; font-style: italic; margin-bottom: 20px; padding-top: 16px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-title { font-size: 12px; color: var(--text-dim); }
.testi-result { font-size: 11px; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 2px 10px; border-radius: 100px; margin-top: 6px; display: inline-block; }

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.achieve-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; }
.achieve-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.achieve-card h3 { font-size: 17px; color: var(--gold); margin-bottom: 6px; }
.achieve-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.achieve-tag { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 8px; }
.award-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 20px; transition: border-color var(--transition); }
.award-card:hover { border-color: var(--border2); }
.award-year-box { flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 10px 14px; text-align: center; min-width: 60px; }
.award-year-box .year { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.award-company { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 6px; }
.award-card h3 { font-size: 16px; color: var(--white); margin-bottom: 6px; }
.award-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resource-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; transition: border-color var(--transition); }
.resource-card:hover { border-color: var(--border2); }
.resource-icon { font-size: 28px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.resource-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 6px; }
.resource-card h3 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.resource-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.resource-download { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--gold); margin-top: 12px; padding: 6px 14px; border: 1px solid var(--gold-border); border-radius: 4px; transition: all var(--transition); }
.resource-download:hover { background: var(--gold-dim); color: var(--gold-light); }
.resource-group-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

/* ============================================================
   MEDIA
   ============================================================ */
.media-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.media-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.media-thumb { height: 200px; background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.media-play { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 8px 24px rgba(201,168,76,0.4); position: relative; z-index: 1; }
.media-card-body { padding: 20px; }
.media-card-body h3 { font-size: 15px; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.media-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.media-meta { font-size: 11px; color: var(--text-dim); margin-top: 12px; }
.podcast-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; align-items: center; transition: border-color var(--transition); }
.podcast-card:hover { border-color: var(--border2); }
.podcast-num { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--gold); font-weight: 700; }
.podcast-card h3 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.podcast-card p { font-size: 12px; color: var(--text-muted); }
.podcast-platforms { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.speaking-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; transition: border-color var(--transition); }
.speaking-card:hover { border-color: var(--border2); }
.speaking-card h3 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.speaking-card .venue { font-size: 12px; color: var(--gold); margin-bottom: 4px; }
.speaking-card .topic { font-size: 12px; color: var(--text-muted); }
.speaking-date { font-size: 11px; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   FOR RECRUITERS
   ============================================================ */
.recruiter-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.contact-method-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: border-color var(--transition); }
.contact-method-card:hover { border-color: var(--border2); }
.contact-method-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.contact-method-card h3 { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
.contact-method-card a, .contact-method-card span { font-size: 15px; font-weight: 600; color: var(--white); }
.contact-method-card a:hover { color: var(--gold); }
.impact-row { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.impact-row-label { font-size: 14px; color: var(--text-muted); }
.impact-row-value { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-group { margin-bottom: 40px; }
.faq-group-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-btn-text { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); font-weight: 600; }
.faq-arrow { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding-bottom: 20px; }
.faq-answer-inner p { font-size: 14px; color: var(--text-muted); line-height: 1.85; margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.contributor-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 24px; align-items: flex-start; transition: border-color var(--transition); }
.contributor-card:hover { border-color: var(--border2); }
.contributor-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border2); flex-shrink: 0; }
.avatar-frame { width: 88px; height: 88px; border-radius: 50%; border: 2px solid var(--border2); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--card); }
.avatar-frame img { width: 170%; height: auto; object-fit: cover; object-position: center 43%; border: none; border-radius: 0; }
.contributor-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 8px; }
.contributor-card h3 { font-size: 20px; margin-bottom: 4px; }
.contributor-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; border-radius: var(--radius); font-size: 14px;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { resize: vertical; min-height: 140px; }
select.form-input { cursor: pointer; -webkit-appearance: none; }

/* ============================================================
   SUBSCRIBE BAR
   ============================================================ */
.subscribe-bar {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.subscribe-bar h3 { font-size: 24px; color: var(--white); margin-bottom: 6px; }
.subscribe-bar p { font-size: 14px; color: var(--text-muted); margin: 0; }
.subscribe-form { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe-input {
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 12px 20px; border-radius: 4px; font-family: 'Inter', sans-serif;
  font-size: 14px; width: 280px; outline: none;
  transition: border-color var(--transition);
}
.subscribe-input:focus { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-top: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 13px; color: var(--text-muted); }
.footer-col li a:hover { color: var(--gold); }
.footer-contact-line { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer-contact-line a { color: var(--text-muted); }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-dim); flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 890;
  width: 44px; height: 44px; background: var(--gold); color: var(--bg);
  border: none; border-radius: 50%; font-size: 18px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: all var(--transition);
}
#scrollTop:hover { background: var(--gold-light); transform: translateY(-2px); }
#scrollTop.show { display: flex; }

/* ============================================================
   HIRE ME / AVAILABILITY
   ============================================================ */
.avail-banner {
  background: linear-gradient(90deg, rgba(63,186,122,0.07), rgba(201,168,76,0.05));
  border: 1px solid rgba(63,186,122,0.2); border-radius: var(--radius-lg);
  padding: 20px 28px; display: flex; gap: 14px; align-items: center; margin-bottom: 32px;
}
.avail-banner strong { color: var(--green); }
.avail-banner p { font-size: 14px; margin: 0; }
.hire-engagement { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.hire-engagement:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); }
.hire-engagement.featured { border-color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .recruiter-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 28px; }
  .subscribe-bar { flex-direction: column; align-items: flex-start; }
  .subscribe-input { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .recruiter-contact-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .recruiter-contact-grid { grid-template-columns: 1fr; }
}

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ─── ENHANCED MOBILE RESPONSIVENESS ─── */
@media (max-width: 768px) {
  .cert-grid { grid-template-columns: 1fr 1fr !important; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .recruiter-contact-grid { grid-template-columns: 1fr 1fr !important; }
  .timeline { padding-left: 20px; }
  .tl-dot { left: -26px; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 26px; }
  .subscribe-bar { gap: 20px; }
  .subscribe-input { width: 100%; min-width: unset; }
  .hero-inner { gap: 32px; }
  .hero h1 { font-size: 26px; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 20px; }
  .blog-card-img { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .card { padding: 20px; }
  .service-card { padding: 24px; }
  .contributor-card { flex-direction: column; }
  .contributor-avatar { width: 72px; height: 72px; }
  .avatar-frame { width: 72px; height: 72px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .cert-grid { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 13px 28px; }
  nav.nav-links { display: none; }
  .nav-hire { display: none; }
  .article-header { padding: 36px 0 24px; }
  .article-body { padding: 36px 0; }
  .award-card { flex-direction: column; }
  .testi-quote { font-size: 3.5rem; }
  .recruiter-contact-grid { grid-template-columns: 1fr !important; }
}
/* ─── LANGUAGES & NATIONALITY BAR ─── */
.lang-nationality-bar {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.lang-nationality-item { flex: 1; }
.lang-nationality-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border2);
  flex-shrink: 0;
}
.lang-nationality-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}
.lang-flag { font-size: 1.5rem; }
.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lang-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-width: 160px;
  transition: border-color var(--transition);
}
.lang-tag:hover { border-color: var(--border2); }
.lang-tag strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.lang-level {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .lang-nationality-bar { flex-direction: column; gap: 24px; padding: 24px; }
  .lang-nationality-divider { width: 100%; height: 1px; }
  .lang-tags { gap: 10px; }
  .lang-tag { min-width: 140px; }
}
@media (max-width: 480px) {
  .lang-tags { flex-direction: column; }
  .lang-tag { min-width: 0; width: 100%; }
}

/* ─── PRINT-FRIENDLY RESOURCE LINKS ─── */
@media print { .site-header, .site-footer, #scrollTop, .mobile-menu { display: none !important; } }
