/* =============================================
   TANVORA — Inner Pages Stylesheet
   Extends style.css for all internal pages
   ============================================= */

/* ── Page Hero (replaces carousel) ── */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #132366 50%, #0d3d6e 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,232,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle grid */
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero .breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #7fc4ff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Content Sections ── */
.content-section { padding: 90px 0; }
.content-section.alt { background: var(--off-white); }
.content-section.navy-bg {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.content-section.navy-bg::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,86,232,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.fitem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.content-section.alt .fitem { background: var(--white); }
.fitem:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.fitem-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff3fe, #e4f7fb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.fitem:hover .fitem-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.fitem-icon svg { width: 20px; height: 20px; color: var(--blue); transition: var(--trans); }
.fitem:hover .fitem-icon svg { color: #fff; }
.fitem h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.fitem p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ── Visual placeholder ── */
.page-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e80 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.page-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 32px 32px;
}
.page-visual-glow {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,232,0.25) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.page-visual svg {
  width: 80px; height: 80px;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.page-visual p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.cards-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--trans);
}
.content-section.alt .page-card { background: var(--white); }
.page-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.page-card::before {
  display: block;
  content: '';
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  margin: -32px -12px 24px;
  opacity: 0;
  transition: var(--trans);
}
.page-card:hover::before { opacity: 1; }
.pc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff3fe, #e4f7fb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--trans);
}
.page-card:hover .pc-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.pc-icon svg { width: 22px; height: 22px; color: var(--blue); transition: var(--trans); }
.page-card:hover .pc-icon svg { color: #fff; }
.page-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.page-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* Glass cards on navy bg */
.glass-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--trans);
}
.glass-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.glass-card .gc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.glass-card .gc-icon svg { width: 22px; height: 22px; color: #fff; }
.glass-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.glass-card p  { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── Numbered steps ── */
.steps-list { display: flex; flex-direction: column; gap: 0; counter-reset: steps; margin-top: 40px; }
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  width: 32px;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Stat pills row ── */
.stat-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stat-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow-sm);
}
.stat-pill .sp-n {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-pill .sp-l { font-size: 12px; font-weight: 600; color: var(--text-muted); }

/* ── Tech tags cloud ── */
.tech-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tech-tag {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--trans);
}
.tech-tag:hover { border-color: var(--blue); color: var(--blue); background: #eff3fe; }
.tech-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── Inner CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #1a2e80);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h3 {
  font-family: var(--font-head);
  font-size: clamp(22px,3vw,34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  flex: 1;
}
.cta-band h3 span {
  background: linear-gradient(135deg, #7fc4ff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cl-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text-mid); line-height: 1.6;
}
.cl-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── Process numbered ── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 52px;
}
.proc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--trans);
  position: relative;
}
.proc-item:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.proc-n {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 14px;
}
.proc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff3fe, #e4f7fb);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: var(--trans);
}
.proc-item:hover .proc-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.proc-icon svg { width: 24px; height: 24px; color: var(--blue); transition: var(--trans); }
.proc-item:hover .proc-icon svg { color: #fff; }
.proc-item h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.proc-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ inline ── */
.faq-mini { max-width: 100%; margin-top: 0; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.cib {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}
.cib-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cib-icon svg { width: 18px; height: 18px; color: #fff; }
.cib h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cib p  { font-size: 14px; color: var(--text-mid); }
.cib a  { font-size: 14px; color: var(--blue); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 900;
  color: var(--navy); margin-bottom: 8px;
}
.contact-form-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--trans);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  background: #f0f5ff;
  box-shadow: 0 0 0 3px rgba(26,86,232,0.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field select option { background: #fff; }

/* ── About page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 52px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: var(--trans);
}
.team-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 28px; font-weight: 900;
  color: #fff;
}
.team-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-card p  { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Value cards ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }

/* ── Legal pages ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.legal-content a  { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }
.last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid     { grid-template-columns: 1fr 1fr; }
  .glass-cards-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .cta-band       { flex-direction: column; padding: 44px 40px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .page-hero { padding: 140px 0 80px; }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .glass-cards-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .stat-pills { gap: 10px; }
  .cta-band-btns { flex-direction: column; width: 100%; }
  .cta-band-btns .btn { justify-content: center; }
  .page-hero { padding: 120px 0 64px; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 48px); }
  .page-hero p { font-size: 16px; margin-bottom: 28px; }
  .page-hero-actions { gap: 10px; }
  .content-section { padding: 64px 0; }
  .cards-grid { margin-top: 36px; }
  .glass-cards-grid { margin-top: 36px; }
  .page-card { padding: 26px 22px; }
  .glass-card { padding: 24px 22px; }
  .proc-grid { margin-top: 36px; gap: 16px; }
  .team-grid { margin-top: 36px; gap: 16px; }
  .steps-list { margin-top: 28px; }
  .step-item { gap: 18px; padding: 22px 0; }
  .stat-pill { padding: 14px 18px; min-width: 100px; }
  .stat-pill .sp-n { font-size: 26px; }
  .contact-info-block { gap: 16px; }
  .cib { padding: 16px; }
  .cta-band h3 { font-size: clamp(20px, 3vw, 28px); }
  .feature-list { gap: 14px; margin-top: 24px; }
  .fitem { padding: 16px 18px; gap: 12px; }
  .legal-content h2 { font-size: 19px; margin: 32px 0 10px; }
  .legal-content p { font-size: 14px; }
  .legal-content ul li { font-size: 14px; }
}
@media (max-width: 520px) {
  .proc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 100px 0 52px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 38px); margin-bottom: 14px; }
  .page-hero p { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .content-section { padding: 48px 0; }
  .two-col { gap: 36px; }
  .page-visual { aspect-ratio: 3/2; }
  .contact-form-card { padding: 24px 18px; }
  .contact-form-card h3 { font-size: 19px; }
  .stat-pills { gap: 8px; }
  .stat-pill { padding: 12px 14px; min-width: 80px; }
  .stat-pill .sp-n { font-size: 22px; }
  .stat-pill .sp-l { font-size: 11px; }
  .tech-cloud { gap: 8px; }
  .tech-tag { padding: 6px 12px; font-size: 12px; }
  .cta-band { padding: 28px 20px; border-radius: 16px; }
  .cta-band h3 { font-size: clamp(18px, 4.5vw, 24px); }
  .team-card { padding: 24px 16px; }
  .team-avatar { width: 64px; height: 64px; font-size: 22px; }
  .proc-item { padding: 22px 18px; }
  .glass-card { padding: 22px 18px; }
  .page-card { padding: 24px 20px; }
  .checklist { gap: 10px; }
  .cl-item { font-size: 13.5px; }
  .breadcrumb { font-size: 11px; flex-wrap: wrap; }
}

/* ── Portfolio Filter Buttons ─────────── */
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  transition: var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* ── Our Team Page ────────────────────────────────────────── */
.team-full-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.team-card-full {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--trans);
}
.team-card-full:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.tcf-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.tcf-body { flex: 1; }
.tcf-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.tcf-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.tcf-bio {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tcf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Dept cards */
.dept-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--trans);
}
.dept-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.dc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dc-count {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dept-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.dept-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team-card-full { flex-direction: column; gap: 20px; }
  .tcf-avatar { width: 64px; height: 64px; font-size: 18px; }
}
@media (max-width: 520px) {
  .team-card-full { padding: 22px 18px; gap: 16px; }
  .tcf-avatar { width: 56px; height: 56px; font-size: 16px; }
  .tcf-body h3 { font-size: 16px; }
  .tcf-body .role { font-size: 12px; }
  .tcf-body p { font-size: 13px; }
}