/* ================================================================
   Talentis MVC — Design System
   Base colors: #0F1941 navy, #2175D9 blue, #fff white
   Font: Inter (inherited from main.css)
   ================================================================ */

/* ---------------------------------------------------------------
   1. LAYOUT PRIMITIVES
   --------------------------------------------------------------- */

.tj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .tj-container { padding: 0 20px; } }

/* Constrained widths */
.tj-container--narrow  { max-width: 760px;  margin: 0 auto; padding: 0 40px; }
.tj-container--wide    { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ---------------------------------------------------------------
   2. SECTION VARIANTS
   --------------------------------------------------------------- */

.tj-section           { padding: 80px 0; }
.tj-section--sm       { padding: 48px 0; }
.tj-section--lg       { padding: 120px 0; }
.tj-section--navy     { background: #0F1941; color: #fff; }
.tj-section--blue     { background: #2175D9; color: #fff; }
.tj-section--grey     { background: #f9fafb; }
.tj-section--white    { background: #fff; }

/* Page hero */
.tj-page-hero {
  background: linear-gradient(135deg, #0F1941 60%, #1a2d6d);
  color: #fff;
  padding: 100px 0 80px;
}
@media (max-width: 768px) { .tj-page-hero { padding: 60px 0 48px; } }

/* ---------------------------------------------------------------
   3. GRID SYSTEM
   --------------------------------------------------------------- */

/* Standard two columns — equal */
.tj-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .tj-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* Two columns — content heavy left */
.tj-grid-2--6040 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .tj-grid-2--6040 { grid-template-columns: 1fr; gap: 40px; } }

/* Two columns — hero (image right, smaller) */
/* Hero with full-bleed right image */
.tj-page-hero { position: relative; overflow: hidden; }

.tj-grid-hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}
.tj-grid-hero__text {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tj-grid-hero__img {
  position: relative;
  margin-right: -40px; /* bleed past container */
  overflow: hidden;
}
.tj-grid-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 1000px) {
  .tj-grid-hero { grid-template-columns: 1fr; min-height: auto; }
  .tj-grid-hero__text { padding: 60px 0 48px; }
  .tj-grid-hero__img { display: none; }
}

/* Sidebar layout */
.tj-grid-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .tj-grid-sidebar { grid-template-columns: 1fr; } }

/* Steps / Features grid (auto-fill) */
.tj-grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

/* Team / Cards grid */
.tj-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Stats grid */
.tj-grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

/* ---------------------------------------------------------------
   4. TYPOGRAPHY
   --------------------------------------------------------------- */

.tj-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #2175D9;
  display: block;
  margin-bottom: 12px;
}
.tj-label--white { color: rgba(255,255,255,.6); }

.tj-h1 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 300; line-height: 1.05; letter-spacing: -.02em; }
.tj-h2 { font-size: clamp(24px, 3vw, 42px); font-weight: 300; line-height: 1.1; color: #0F1941; letter-spacing: -.02em; }
.tj-h2--white { color: #fff; }
.tj-h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.2; color: #0F1941; }
.tj-h3--white { color: #fff; }

.tj-lead { font-size: 17px; line-height: 1.75; color: #4b5563; }
.tj-lead--white { color: rgba(255,255,255,.75); }
.tj-body { font-size: 15px; line-height: 1.7; color: #374151; }

.tj-overline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  display: block;
  margin-bottom: 12px;
}

/* ---------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------- */

.tj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .15s;
  gap: 8px;
  white-space: nowrap;
}

.tj-btn--solid {
  background: #2175D9;
  color: #fff;
  border-color: #2175D9;
}
.tj-btn--solid:hover { background: #1860b8; border-color: #1860b8; }

.tj-btn--outline {
  background: transparent;
  color: #0F1941;
  border-color: #0F1941;
}
.tj-btn--outline:hover { background: #0F1941; color: #fff; }

.tj-btn--outline-blue {
  background: transparent;
  color: #2175D9;
  border-color: #2175D9;
}
.tj-btn--outline-blue:hover { background: #2175D9; color: #fff; }

.tj-btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.tj-btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.tj-btn--white {
  background: #fff;
  color: #0F1941;
  border-color: #fff;
}
.tj-btn--white:hover { background: #f0f4ff; }

.tj-btn--sm { height: 36px; padding: 0 16px; font-size: 13px; }
.tj-btn--lg { height: 52px; padding: 0 32px; font-size: 16px; }
.tj-btn--full { width: 100%; }

/* ---------------------------------------------------------------
   6. FORM COMPONENTS
   --------------------------------------------------------------- */

.tj-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.tj-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.tj-form-group input,
.tj-form-group select,
.tj-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}

.tj-form-group input:focus,
.tj-form-group select:focus,
.tj-form-group textarea:focus {
  outline: none;
  border-color: #2175D9;
  box-shadow: 0 0 0 3px rgba(33,117,217,.12);
}

.tj-form-group textarea { resize: vertical; min-height: 90px; }

/* Dark form (on navy background) */
.tj-form-group--dark label { color: rgba(255,255,255,.8); }
.tj-form-group--dark input,
.tj-form-group--dark select,
.tj-form-group--dark textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.tj-form-group--dark input::placeholder,
.tj-form-group--dark textarea::placeholder { color: rgba(255,255,255,.3); }
.tj-form-group--dark input:focus,
.tj-form-group--dark select:focus,
.tj-form-group--dark textarea:focus {
  border-color: #2175D9;
  box-shadow: 0 0 0 3px rgba(33,117,217,.25);
}

/* Form row (two fields side by side) */
.tj-form-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
}
@media (max-width: 600px) { .tj-form-row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   7. CARD COMPONENTS
   --------------------------------------------------------------- */

/* Base card */
.tj-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.tj-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.tj-card__body { padding: 24px; }

/* Contact / form card (dark) */
.tj-card--dark {
  background: #0F1941;
  border-color: transparent;
  border-radius: 12px;
  padding: 36px;
  color: #fff;
}
.tj-card--dark h3 { color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.tj-card--dark p  { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }

/* Stat card */
.tj-stat-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.tj-stat-card__val   { font-size: 32px; font-weight: 700; color: #2175D9; line-height: 1; margin-bottom: 6px; }
.tj-stat-card__label { font-size: 13px; color: #6b7280; }

/* Consultant card */
.tj-consultant-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-top: 32px;
}
.tj-consultant-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #2175D9;
  flex-shrink: 0;
}
.tj-consultant-card__name  { font-size: 14px; font-weight: 600; color: #0F1941; margin-bottom: 2px; }
.tj-consultant-card__role  { font-size: 12px; color: #6b7280; margin-bottom: 8px; }
.tj-consultant-card__links { display: flex; gap: 12px; }
.tj-consultant-card__links a { font-size: 12px; color: #2175D9; text-decoration: none; font-weight: 500; }
.tj-consultant-card__links a:hover { text-decoration: underline; }

/* Step item (numbered) */
.tj-step {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 20px;
}
.tj-step:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.tj-step__num  { font-size: 22px; font-weight: 700; color: #2175D9; min-width: 36px; line-height: 1.2; }
.tj-step__title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.tj-step__desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Diff item (numbered, on white) */
.tj-diff-item { display: flex; gap: 16px; margin-bottom: 24px; }
.tj-diff-item__num   { font-size: 12px; font-weight: 700; color: #2175D9; min-width: 24px; padding-top: 2px; }
.tj-diff-item__title { font-size: 15px; font-weight: 600; color: #0F1941; margin-bottom: 4px; }
.tj-diff-item__desc  { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* When item (bordered box) */
.tj-when-item {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid #2175D9;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin-bottom: 8px;
  border-radius: 0 4px 4px 0;
}

/* Case study card */
.tj-case-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.tj-case-card__header { background: #0F1941; padding: 28px 32px; }
.tj-case-card__sector { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #2175D9; margin-bottom: 8px; }
.tj-case-card__title  { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.3; }
.tj-case-card__body   { padding: 28px 32px; }
.tj-case-card__stats  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; border-bottom: 1px solid #f3f4f6; padding-bottom: 24px; }
.tj-case-card__stat-val   { font-size: 24px; font-weight: 700; color: #2175D9; line-height: 1; }
.tj-case-card__stat-label { font-size: 11px; color: #9ca3af; margin-top: 4px; }
.tj-case-card__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.tj-case-card__col-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; margin-bottom: 6px; }
.tj-case-card__col-text  { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* Salary card */
.tj-salary-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow .15s;
}
.tj-salary-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.tj-salary-card__fn    { font-size: 16px; font-weight: 600; color: #0F1941; margin-bottom: 20px; }
.tj-salary-card__level { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tj-salary-card__lname { font-size: 11px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; min-width: 60px; }
.tj-salary-card__bar   { flex: 1; height: 5px; background: #f3f4f6; border-radius: 3px; }
.tj-salary-card__fill  { height: 5px; background: #2175D9; border-radius: 3px; }
.tj-salary-card__range { font-size: 13px; font-weight: 600; color: #0F1941; min-width: 120px; text-align: right; }

/* ---------------------------------------------------------------
   8. ROLE LIST
   --------------------------------------------------------------- */

.tj-role-list { list-style: none; padding: 0; margin: 0 0 20px; }
.tj-role-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 15px;
  color: #374151;
}
.tj-role-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #2175D9;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   9. DIFF GRID (2x2)
   --------------------------------------------------------------- */

.tj-diff-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1px;
  background: #e5e7eb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.tj-diff-cell { background: #fff; padding: 24px; }
.tj-diff-cell__num   { font-size: 36px; font-weight: 700; color: #e5e7eb; line-height: 1; margin-bottom: 12px; }
.tj-diff-cell__title { font-size: 15px; font-weight: 600; color: #0F1941; margin-bottom: 6px; }
.tj-diff-cell__desc  { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* ---------------------------------------------------------------
   10. AUDIENCE SPLIT (homepage)
   --------------------------------------------------------------- */

.tj-audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}
.tj-audience-pane { padding: 52px 48px; }
.tj-audience-pane--empresa   { background: #0F1941; }
.tj-audience-pane--candidato { background: #1a2d6d; }
.tj-audience-pane__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #2175D9; margin-bottom: 14px; }
.tj-audience-pane__title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.tj-audience-pane__desc  { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 28px; }
.tj-audience-pane__links { display: flex; flex-direction: column; gap: 0; }
.tj-audience-pane__link {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .15s;
}
.tj-audience-pane__link:hover { color: #fff; }
.tj-audience-pane__link::after { content: '→'; margin-left: auto; font-size: 13px; opacity: .5; }
@media (max-width: 768px) {
  .tj-audience-split { grid-template-columns: 1fr; }
  .tj-audience-pane  { padding: 36px 28px; }
}

/* ---------------------------------------------------------------
   11. NEWSLETTER BAND
   --------------------------------------------------------------- */

.tj-newsletter-band {
  background: #f0f4ff;
  border-top: 1px solid #dbeafe;
  padding: 48px 0;
}
.tj-newsletter-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.tj-newsletter-band__title { font-size: 20px; font-weight: 600; color: #0F1941; margin-bottom: 4px; }
.tj-newsletter-band__sub   { font-size: 14px; color: #6b7280; }
.tj-newsletter-band__form  { display: flex; gap: 8px; flex-shrink: 0; }
.tj-newsletter-band__input {
  padding: 11px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 260px;
  box-sizing: border-box;
}
.tj-newsletter-band__input:focus { outline: none; border-color: #2175D9; }
@media (max-width: 600px) {
  .tj-newsletter-band__form { flex-direction: column; }
  .tj-newsletter-band__input { width: 100%; }
}

/* ---------------------------------------------------------------
   12. JOB ALERT BAR
   --------------------------------------------------------------- */

.tj-alert-bar {
  background: #fff8ed;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tj-alert-bar__text  { font-size: 14px; color: #78350f; flex: 1; }
.tj-alert-bar__form  { display: flex; gap: 8px; }
.tj-alert-bar__input {
  padding: 9px 14px;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  width: 220px;
}

/* ---------------------------------------------------------------
   13. TEAM GRID
   --------------------------------------------------------------- */

.tj-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.tj-team-card {
  text-align: center; text-decoration: none;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 24px 16px; transition: box-shadow .15s, transform .15s;
  display: flex; flex-direction: column; align-items: center;
}
.tj-team-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.tj-team-card__photo {
  width: 80px; height: 80px; border-radius: 50%;
  background: #eff6ff; border: 2px solid #dbeafe;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.tj-team-card__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #2175D9;
  margin: 0 auto 12px;
}
.tj-team-card__name   { font-size: 14px; font-weight: 600; color: #0F1941; margin-bottom: 3px; }
.tj-team-card__sector { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #2175D9; margin-bottom: 6px; }
.tj-team-card__link   { font-size: 12px; color: #6b7280; }

/* ---------------------------------------------------------------
   14. JOB BODY (rendered HTML)
   --------------------------------------------------------------- */

.tj-job-body h2 {
  font-size: 15px;
  font-weight: 700;
  color: #0F1941;
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid #2175D9;
  padding-bottom: 6px;
  display: inline-block;
}
.tj-job-body p  { font-size: 15px; line-height: 1.75; color: #374151; margin-bottom: 14px; }
.tj-job-body ul, .tj-job-body ol { padding-left: 0; margin-bottom: 16px; list-style: none; }
.tj-job-body li {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: .5px solid #f3f4f6;
}
.tj-job-body li::before { content: '→'; position: absolute; left: 0; color: #2175D9; font-size: 12px; }

/* ---------------------------------------------------------------
   15. CONTENT PAGE (Transparência, etc.)
   --------------------------------------------------------------- */

.tj-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0F1941;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2175D9;
}
.tj-content h3 { font-size: 18px; font-weight: 600; color: #0F1941; margin: 28px 0 10px; }
.tj-content p  { font-size: 16px; line-height: 1.8; color: #374151; margin-bottom: 16px; }
.tj-content ul { list-style: none; padding: 0; margin-bottom: 20px; }
.tj-content ul li {
  font-size: 15px; line-height: 1.7; color: #374151;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: .5px solid #f3f4f6;
}
.tj-content ul li::before { content: '→'; position: absolute; left: 0; color: #2175D9; font-size: 12px; }
.tj-content .callout {
  background: #f0f4ff;
  border-left: 3px solid #2175D9;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.tj-content .callout p { margin: 0; }

/* ---------------------------------------------------------------
   16. UTILITY
   --------------------------------------------------------------- */

.tj-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tj-tag--blue  { background: #2175D9; color: #fff; }
.tj-tag--navy  { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.tj-tag--grey  { background: #f3f4f6; color: #6b7280; }

.tj-divider { border: none; border-top: 1px solid #e5e7eb; margin: 0; }

.tj-callout {
  background: #f0f4ff;
  border-left: 3px solid #2175D9;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.tj-link {
  font-size: 14px;
  color: #2175D9;
  font-weight: 500;
  text-decoration: none;
}
.tj-link:hover { text-decoration: underline; }
.tj-link::after { content: ' →'; }

/* Breadcrumb */
.tj-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tj-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.tj-breadcrumb a:hover { color: #fff; }
.tj-breadcrumb__sep { opacity: .4; }

/* Sticky sidebar */
.tj-sticky { position: sticky; top: 88px; }


/* ---------------------------------------------------------------
   ALIASES — backward compat + missing components
   --------------------------------------------------------------- */

/* Old names → new names */
.tj-hero-grid   { display: grid; grid-template-columns: 3fr 2fr; gap: 0; align-items: stretch; min-height: 520px; }
.tj-hero-text   { padding: 80px 64px 80px 0; display:flex;flex-direction:column;justify-content:center; }
.tj-hero-img    { position:relative; overflow:hidden; margin-right:-40px; }
.tj-hero-img img { width:100%;height:100%;object-fit:cover;object-position:center top;display:block; }
@media (max-width: 1000px) { .tj-hero-grid { grid-template-columns: 1fr; min-height:auto; } .tj-hero-text { padding: 60px 0 48px; } .tj-hero-img { display: none; } }

.tj-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.tj-two-col h2 { font-size: clamp(22px,2.5vw,36px); font-weight: 300; color: #0F1941; line-height: 1.1; margin-bottom: 16px; }
.tj-two-col p  { font-size: 16px; line-height: 1.75; color: #4b5563; margin-bottom: 16px; }
@media (max-width: 768px) { .tj-two-col { grid-template-columns: 1fr; gap: 32px; } }

.tj-section-title { font-size: clamp(22px,2.5vw,34px); color: #0F1941; margin-bottom: 8px; letter-spacing: -.02em; font-weight: 300; }

/* CTA band */
.tj-cta-band { padding: 80px 0; text-align: center; }
.tj-cta-band h2 { font-size: clamp(24px,3vw,40px); line-height: 1.15; margin-bottom: 8px; }
.tj-cta-band p  { font-size: 17px; margin: 16px auto 32px; max-width: 520px; opacity: .85; }

/* Service cards */
.tj-service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  gap: 8px;
}
.tj-service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-2px);
  border-color: #2175D9;
}
.tj-service-card__icon  { font-size: 28px; margin-bottom: 4px; }
.tj-service-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #2175D9; }
.tj-service-card__name  { font-size: 17px; font-weight: 600; color: #0F1941; line-height: 1.25; }
.tj-service-card__desc  { font-size: 14px; color: #6b7280; line-height: 1.65; flex: 1; }
.tj-service-card__cta   { font-size: 13px; color: #2175D9; font-weight: 600; margin-top: 8px; }

/* Sector cards */
.tj-sector-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0F1941;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
  transition: transform .2s, box-shadow .2s;
}
.tj-sector-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.tj-sector-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .3s;
  filter: brightness(.45);
}
.tj-sector-card:hover .tj-sector-card__bg { transform: scale(1.04); }
.tj-sector-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.tj-sector-card__name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tj-sector-card__cta  { font-size: 12px; color: #2175D9; font-weight: 600; }

