/* ===================================================
   CODEONE-X CUSTOM PAGE STYLES (HOME, ABOUT, SERVICES, DT, SA)
   =================================================== */

/* --- HOME PAGE (.hm-...) --- */
.hm-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 170px 0 80px;
}
.hm-hero .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hm-hero .banner-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
}
.hm-hero .container { position: relative; z-index: 1; }

.hm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 24px;
}
.hm-hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 760px;
}
.hm-hero h1 span { color: var(--tj-brand-orange); }
.hm-hero .hero-sub {
  font-size: 16px;
  color: var(--tj-text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hm-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hm-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tj-text-1);
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.hm-outline-btn:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

.hm-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  flex-wrap: wrap;
  max-width: 720px;
}
.hm-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 22px 26px;
  border-right: 1px solid var(--tj-color-border-1);
  text-align: center;
}
.hm-stat-item:last-child { border-right: none; }
.hm-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--tj-brand-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.hm-stat-label { font-size: 11px; color: var(--tj-text-2); font-weight: 500; }

.hm-trust-bar {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hm-trust-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tj-text-2); white-space: nowrap; }
.hm-trust-logos { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hm-logo-pill {
  padding: 7px 16px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
}
.hm-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.hm-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 6px;
  background: rgba(245,161,40,.05);
  font-size: 11px;
  font-weight: 600;
  color: var(--tj-brand-orange);
}

.hm-service-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 34px 28px;
  height: 100%;
  transition: border-color .25s, transform .25s;
  position: relative;
}
.hm-service-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.hm-svc-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(245,161,40,.12);
  line-height: 1;
}
.hm-svc-icon { font-size: 32px; color: var(--tj-brand-orange); margin-bottom: 16px; }
.hm-svc-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.hm-svc-desc { font-size: 13px; color: var(--tj-text-2); line-height: 1.65; margin-bottom: 18px; }
.hm-svc-link { font-size: 12px; font-weight: 700; color: var(--tj-brand-orange); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hm-svc-link:hover { text-decoration: underline; }

.hm-value-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 26px 22px;
  height: 100%;
  transition: border-color .25s;
}
.hm-value-card:hover { border-color: var(--tj-brand-orange); }
.hm-value-icon { font-size: 24px; margin-bottom: 12px; }
.hm-value-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.hm-value-text { font-size: 12px; color: var(--tj-text-2); line-height: 1.6; }

.hm-process-line { position: relative; }
.hm-process-line::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--tj-brand-orange), transparent);
}
.hm-step { text-align: center; position: relative; }
.hm-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--tj-brand-orange);
  background: var(--tj-color-theme-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  color: var(--tj-brand-orange);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.hm-step-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.hm-step-desc { font-size: 12px; color: var(--tj-text-2); line-height: 1.6; }

.hm-case-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.hm-case-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.hm-case-img { width: 100%; height: 190px; overflow: hidden; }
.hm-case-img img { width: 100%; height: 100%; object-fit: cover; }
.hm-case-body { padding: 24px; }
.hm-case-tag { font-size: 10px; font-weight: 700; color: var(--tj-brand-orange); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: inline-block; }
.hm-case-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.hm-case-desc { font-size: 12px; color: var(--tj-text-2); line-height: 1.6; margin-bottom: 16px; }
.hm-case-link { font-size: 12px; font-weight: 700; color: var(--tj-text-1); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hm-case-link:hover { color: var(--tj-brand-orange); }

.hm-testi-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
}
.hm-testi-stars { color: #fbbf24; font-size: 13px; margin-bottom: 14px; }
.hm-testi-text { font-size: 13px; color: var(--tj-text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.hm-testi-author { display: flex; align-items: center; gap: 12px; }
.hm-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tj-brand-orange), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.hm-author-name { font-size: 13px; font-weight: 700; }
.hm-author-role { font-size: 11px; color: var(--tj-text-2); }
.hm-author-flag { margin-left: auto; font-size: 20px; }

.hm-tech-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hm-tech-pill {
  padding: 8px 18px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  transition: border-color .2s, color .2s;
}
.hm-tech-pill:hover, .hm-tech-pill.featured {
  border-color: var(--tj-brand-orange);
  color: var(--tj-brand-orange);
}

.hm-cta-box {
  background: linear-gradient(135deg, rgba(245,161,40,.08) 0%, rgba(245,161,40,.02) 100%);
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hm-cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.hm-cta-box h2 span { color: var(--tj-brand-orange); }
.hm-cta-box p { font-size: 15px; color: var(--tj-text-2); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hm-cta-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto 16px; flex-wrap: wrap; }
.hm-cta-input {
  flex: 1;
  min-width: 220px;
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  padding: 13px 18px;
  color: var(--tj-text-1);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.hm-cta-input:focus { border-color: var(--tj-brand-orange); }
.hm-cta-note { font-size: 11px; color: var(--tj-text-2); }


/* --- ABOUT PAGE (.au-...) --- */
.au-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 70px;
}
.au-hero .container { position: relative; z-index: 1; }
.au-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 24px;
}
.au-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.au-hero h1 span { color: var(--tj-brand-orange); }
.au-hero .hero-sub {
  font-size: 16px;
  color: var(--tj-text-2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

.au-page-banner {
  padding: 140px 0 50px;
  position: relative;
  overflow: hidden;
}
.au-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,161,40,.07) 0%, transparent 65%);
}
.au-breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--tj-text-2); margin-bottom: 14px; align-items: center; position: relative; z-index: 1; }
.au-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.au-breadcrumb a:hover { color: var(--tj-brand-orange); }
.au-breadcrumb span { color: var(--tj-brand-orange); }

.au-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  flex-wrap: wrap;
}
.au-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 28px 24px;
  border-right: 1px solid var(--tj-color-border-1);
  text-align: center;
}
.au-stat-item:last-child { border-right: none; }
.au-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--tj-brand-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.au-stat-label { font-size: 12px; color: var(--tj-text-2); font-weight: 500; }

.au-story-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 16px;
  padding: 40px;
}
.au-story-card p { font-size: 14px; color: var(--tj-text-2); line-height: 1.85; margin-bottom: 18px; }
.au-story-card p:last-child { margin-bottom: 0; }
.au-logo-mark {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  opacity: .9;
}
.au-logo-frame {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 16px;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 260px;
}

.au-award-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: border-color .25s;
}
.au-award-card:hover { border-color: var(--tj-brand-orange); }
.au-award-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,161,40,.08);
  border: 1px solid rgba(245,161,40,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--tj-brand-orange);
  flex-shrink: 0;
}
.au-award-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.au-award-sub { font-size: 11px; color: var(--tj-text-2); }

.au-value-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color .25s;
}
.au-value-card:hover { border-color: var(--tj-brand-orange); }
.au-value-icon { font-size: 26px; margin-bottom: 14px; }
.au-value-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.au-value-text { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; }

.au-pillar-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: border-color .25s, transform .25s;
  position: relative;
}
.au-pillar-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.au-pillar-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(245,161,40,.12);
  line-height: 1;
}
.au-pillar-icon { font-size: 30px; color: var(--tj-brand-orange); margin-bottom: 16px; }
.au-pillar-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.au-pillar-desc { font-size: 13px; color: var(--tj-text-2); line-height: 1.65; margin-bottom: 14px; }
.au-pillar-link { font-size: 12px; font-weight: 700; color: var(--tj-brand-orange); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.au-pillar-link:hover { text-decoration: underline; }

.au-timeline { position: relative; padding-left: 30px; }
.au-timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--tj-brand-orange), rgba(245,161,40,.1));
}
.au-timeline-item { position: relative; padding-bottom: 32px; }
.au-timeline-item:last-child { padding-bottom: 0; }
.au-timeline-dot {
  position: absolute;
  left: -30px; top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--tj-color-theme-bg);
  border: 2px solid var(--tj-brand-orange);
}
.au-timeline-year { font-size: 12px; font-weight: 800; color: var(--tj-brand-orange); margin-bottom: 4px; letter-spacing: .5px; }
.au-timeline-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.au-timeline-text { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; }

.au-industry-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.au-industry-pill {
  padding: 9px 20px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  transition: border-color .2s, color .2s;
}
.au-industry-pill:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

.au-cta-box {
  background: linear-gradient(135deg, rgba(245,161,40,.08) 0%, rgba(245,161,40,.02) 100%);
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
}
.au-cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.au-cta-box h2 span { color: var(--tj-brand-orange); }
.au-cta-box p { font-size: 15px; color: var(--tj-text-2); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.au-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* --- STAFF AUGMENTATION PAGE (.sa-...) --- */
.sa-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 80px;
}
.sa-hero .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  z-index: 0;
}
.sa-hero .container { position: relative; z-index: 1; }

.sa-page-banner {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.sa-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--tj-text-2);
  margin-bottom: 14px;
  align-items: center;
}
.sa-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.sa-breadcrumb a:hover { color: var(--tj-brand-orange); }
.sa-breadcrumb span { color: var(--tj-brand-orange); }

.sa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 24px;
}
.sa-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.sa-hero h1 span { color: var(--tj-brand-orange); }
.sa-hero .hero-sub {
  font-size: 16px;
  color: var(--tj-text-2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.sa-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.sa-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  flex-wrap: wrap;
}
.sa-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 24px 28px;
  border-right: 1px solid var(--tj-color-border-1);
  text-align: center;
}
.sa-stat-item:last-child { border-right: none; }
.sa-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--tj-brand-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.sa-stat-label { font-size: 12px; color: var(--tj-text-2); font-weight: 500; }

.sa-trust-bar {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sa-trust-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tj-text-2); white-space: nowrap; }
.sa-trust-logos { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sa-logo-pill {
  padding: 7px 16px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
}
.sa-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.sa-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 6px;
  background: rgba(245,161,40,.05);
  font-size: 11px;
  font-weight: 600;
  color: var(--tj-brand-orange);
}

.sa-pain-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color .25s;
}
.sa-pain-card:hover { border-color: var(--tj-brand-orange); }
.sa-pain-icon { font-size: 28px; margin-bottom: 14px; }
.sa-pain-title { font-size: 15px; font-weight: 700; color: var(--tj-brand-orange); margin-bottom: 8px; }
.sa-pain-text { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; margin-bottom: 12px; }
.sa-pain-fix { font-size: 12px; font-weight: 600; color: var(--tj-text-1); }
.sa-pain-fix i { color: var(--tj-brand-orange); margin-right: 5px; }

.sa-service-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.sa-service-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.sa-svc-icon { font-size: 32px; color: var(--tj-brand-orange); margin-bottom: 16px; }
.sa-svc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.sa-svc-desc { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; margin-bottom: 16px; }
.sa-role-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sa-role-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--tj-color-border-1);
  color: var(--tj-text-2);
}

.sa-process-line { position: relative; }
.sa-process-line::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--tj-brand-orange), transparent);
}
.sa-step { text-align: center; position: relative; }
.sa-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--tj-brand-orange);
  background: var(--tj-color-theme-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  color: var(--tj-brand-orange);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.sa-step-time {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--tj-brand-orange);
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 8px;
}
.sa-step-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.sa-step-desc { font-size: 12px; color: var(--tj-text-2); line-height: 1.5; }


/* --- DEDICATED TEAMS (.dt-...) --- */
.dt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 24px;
}
.dt-page-banner {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.dt-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(245,161,40,.07) 0%, transparent 65%);
}
.dt-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--tj-text-2);
  margin-bottom: 14px;
  align-items: center;
}
.dt-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.dt-breadcrumb a:hover { color: var(--tj-brand-orange); }
.dt-breadcrumb span { color: var(--tj-brand-orange); }

.dt-hero-h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.dt-hero-h1 span { color: var(--tj-brand-orange); }
.dt-hero-sub {
  font-size: 16px;
  color: var(--tj-text-2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.dt-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.dt-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  flex-wrap: wrap;
}
.dt-stat-item {
  flex: 1;
  min-width: 130px;
  padding: 24px 20px;
  border-right: 1px solid var(--tj-color-border-1);
  text-align: center;
}
.dt-stat-item:last-child { border-right: none; }
.dt-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--tj-brand-orange);
  line-height: 1;
  margin-bottom: 4px;
}
.dt-stat-label { font-size: 11px; color: var(--tj-text-2); font-weight: 500; margin-top: 4px; }


/* --- SOFTWARE DEVELOPMENT (.sd-...) --- */
.sd-page-banner {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.sd-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--tj-text-2);
  margin-bottom: 14px;
  align-items: center;
}
.sd-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.sd-breadcrumb a:hover { color: var(--tj-brand-orange); }
.sd-breadcrumb span { color: var(--tj-brand-orange); }

.tj-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tj-text-1);
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.tj-outline-btn:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

.section-gap { padding: 80px 0; }

/* --- BUSINESS CASES / PORTFOLIO (.bc-...) --- */
.bc-page-banner {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.bc-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,161,40,.07) 0%, transparent 65%);
}
.bc-breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--tj-text-2); margin-bottom: 14px; align-items: center; position: relative; z-index: 1; }
.bc-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.bc-breadcrumb a:hover { color: var(--tj-brand-orange); }
.bc-breadcrumb span { color: var(--tj-brand-orange); }
.bc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.bc-page-banner h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.bc-page-banner h1 span { color: var(--tj-brand-orange); }
.bc-page-banner .hero-sub {
  font-size: 15px;
  color: var(--tj-text-2);
  max-width: 560px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* STATS */
.bc-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  flex-wrap: wrap;
  margin-top: 40px;
}
.bc-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 22px 24px;
  border-right: 1px solid var(--tj-color-border-1);
  text-align: center;
}
.bc-stat-item:last-child { border-right: none; }
.bc-stat-num { font-size: 32px; font-weight: 800; color: var(--tj-brand-orange); line-height: 1; margin-bottom: 6px; }
.bc-stat-label { font-size: 11px; color: var(--tj-text-2); font-weight: 500; }

/* FILTER TABS */
.bc-filter-wrap { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.bc-filter-btn {
  padding: 9px 22px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}
.bc-filter-btn:hover,
.bc-filter-btn.active {
  border-color: var(--tj-brand-orange);
  color: var(--tj-brand-orange);
  background: rgba(245,161,40,.06);
}

/* CASE STUDY CARDS */
.bc-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.bc-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.bc-card-img { width: 100%; height: 210px; overflow: hidden; position: relative; }
.bc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bc-card:hover .bc-card-img img { transform: scale(1.04); }
.bc-card-service-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245,161,40,.9);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.bc-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.bc-card-industry {
  font-size: 10px;
  font-weight: 700;
  color: var(--tj-brand-orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.bc-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.bc-card-desc { font-size: 13px; color: var(--tj-text-2); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.bc-card-outcomes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.bc-outcome-pill {
  padding: 4px 12px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--tj-brand-orange);
  background: rgba(245,161,40,.05);
}
.bc-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--tj-color-border-1); }
.bc-client-info { display: flex; align-items: center; gap: 10px; }
.bc-client-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tj-brand-orange), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.bc-client-name { font-size: 12px; font-weight: 700; }
.bc-client-role { font-size: 11px; color: var(--tj-text-2); }
.bc-read-link {
  font-size: 12px; font-weight: 700;
  color: var(--tj-brand-orange);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.bc-read-link:hover { text-decoration: underline; }

/* FEATURED (WIDE) CARD */
.bc-featured-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.bc-featured-card:hover { border-color: var(--tj-brand-orange); }
.bc-featured-img { height: 320px; overflow: hidden; position: relative; }
.bc-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bc-featured-card:hover .bc-featured-img img { transform: scale(1.03); }
.bc-featured-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(245,161,40,.92);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.bc-featured-body { padding: 36px; }
.bc-featured-body .bc-card-industry { font-size: 11px; }
.bc-featured-body .bc-card-title { font-size: 22px; font-weight: 800; }
.bc-featured-body .bc-card-desc { font-size: 14px; }

/* TESTIMONIAL MINI CARDS */
.bc-testi-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 26px;
  height: 100%;
}
.bc-testi-stars { color: #fbbf24; font-size: 13px; margin-bottom: 14px; }
.bc-testi-text { font-size: 13px; color: var(--tj-text-2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.bc-testi-author { display: flex; align-items: center; gap: 12px; }
.bc-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tj-brand-orange), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.bc-testi-name { font-size: 13px; font-weight: 700; }
.bc-testi-role { font-size: 11px; color: var(--tj-text-2); }
.bc-testi-flag { margin-left: auto; font-size: 20px; }

/* INDUSTRIES */
.bc-industry-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.bc-industry-pill {
  padding: 9px 20px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  transition: border-color .2s, color .2s;
}
.bc-industry-pill:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

/* CTA BOX */
.bc-cta-box {
  background: linear-gradient(135deg, rgba(245,161,40,.08) 0%, rgba(245,161,40,.02) 100%);
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
}
.bc-cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.bc-cta-box h2 span { color: var(--tj-brand-orange); }
.bc-cta-box p { font-size: 15px; color: var(--tj-text-2); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.bc-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bc-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tj-text-1);
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.bc-outline-btn:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

@media (max-width: 767px) {
  .bc-stats { flex-direction: column; }
  .bc-stat-item { border-right: none; border-bottom: 1px solid var(--tj-color-border-1); }
  .bc-stat-item:last-child { border-bottom: none; }
  .bc-cta-box { padding: 40px 20px; }
  .bc-featured-img { height: 200px; }
  .bc-featured-body { padding: 24px; }
}

/* --- BLOG PAGE (.bl-...) --- */
.bl-page-banner {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.bl-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,161,40,.07) 0%, transparent 65%);
}
.bl-breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--tj-text-2); margin-bottom: 14px; align-items: center; position: relative; z-index: 1; }
.bl-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.bl-breadcrumb a:hover { color: var(--tj-brand-orange); }
.bl-breadcrumb span { color: var(--tj-brand-orange); }
.bl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.bl-page-banner h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.bl-page-banner h1 span { color: var(--tj-brand-orange); }
.bl-page-banner .hero-sub {
  font-size: 15px;
  color: var(--tj-text-2);
  max-width: 560px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* SEARCH + FILTER */
.bl-search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bl-search-input-wrap {
  flex: 1;
  min-width: 240px;
  position: relative;
}
.bl-search-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tj-text-2);
  font-size: 14px;
}
.bl-search-input {
  width: 100%;
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 8px;
  padding: 12px 16px 12px 42px;
  color: var(--tj-text-1);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.bl-search-input:focus { border-color: var(--tj-brand-orange); }
.bl-search-input::placeholder { color: var(--tj-text-2); opacity: .7; }

.bl-filter-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.bl-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}
.bl-filter-btn:hover,
.bl-filter-btn.active {
  border-color: var(--tj-brand-orange);
  color: var(--tj-brand-orange);
  background: rgba(245,161,40,.06);
}

/* FEATURED (HERO) POST */
.bl-featured {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s;
  margin-bottom: 40px;
}
.bl-featured:hover { border-color: var(--tj-brand-orange); }
.bl-featured-img { height: 340px; overflow: hidden; position: relative; }
.bl-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bl-featured:hover .bl-featured-img img { transform: scale(1.03); }
.bl-featured-tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(245,161,40,.92);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bl-featured-body { padding: 36px; }
.bl-post-meta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.bl-post-date { font-size: 11px; color: var(--tj-text-2); display: flex; align-items: center; gap: 5px; }
.bl-post-read { font-size: 11px; color: var(--tj-text-2); display: flex; align-items: center; gap: 5px; }
.bl-post-author { display: flex; align-items: center; gap: 8px; }
.bl-post-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tj-brand-orange), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff;
}
.bl-post-author-name { font-size: 11px; font-weight: 600; }
.bl-featured-body h2 { font-size: clamp(18px,2.4vw,26px); font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.bl-featured-body p { font-size: 14px; color: var(--tj-text-2); line-height: 1.7; margin-bottom: 22px; }
.bl-read-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  color: var(--tj-brand-orange);
  text-decoration: none;
}
.bl-read-link:hover { text-decoration: underline; }

/* BLOG CARD */
.bl-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.bl-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-4px); }
.bl-card-img { height: 190px; overflow: hidden; position: relative; }
.bl-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bl-card:hover .bl-card-img img { transform: scale(1.05); }
.bl-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(245,161,40,.9);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.bl-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bl-card-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.bl-card-date { font-size: 11px; color: var(--tj-text-2); display: flex; align-items: center; gap: 4px; }
.bl-card-time { font-size: 11px; color: var(--tj-text-2); display: flex; align-items: center; gap: 4px; }
.bl-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.bl-card-desc { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.bl-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--tj-color-border-1);
}
.bl-card-author { display: flex; align-items: center; gap: 8px; }
.bl-card-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tj-brand-orange), #ff6b00);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.bl-card-author-name { font-size: 12px; font-weight: 600; }
.bl-card-read-link {
  font-size: 12px; font-weight: 700;
  color: var(--tj-brand-orange);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.bl-card-read-link:hover { text-decoration: underline; }

/* SIDEBAR */
.bl-sidebar-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 24px;
}
.bl-sidebar-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tj-color-border-1);
}
.bl-sidebar-title span { color: var(--tj-brand-orange); }

/* Popular posts */
.bl-pop-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.bl-pop-item:last-child { margin-bottom: 0; }
.bl-pop-img { width: 64px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.bl-pop-img img { width: 100%; height: 100%; object-fit: cover; }
.bl-pop-title { font-size: 12px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.bl-pop-title a { color: var(--tj-text-1); text-decoration: none; }
.bl-pop-title a:hover { color: var(--tj-brand-orange); }
.bl-pop-date { font-size: 10px; color: var(--tj-text-2); }

/* Categories */
.bl-cat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--tj-color-border-1);
  font-size: 13px;
  cursor: pointer;
  transition: color .2s;
}
.bl-cat-row:last-child { border-bottom: none; padding-bottom: 0; }
.bl-cat-row:hover { color: var(--tj-brand-orange); }
.bl-cat-count {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(245,161,40,.08);
  border: 1px solid rgba(245,161,40,.2);
  color: var(--tj-brand-orange);
}

/* Tags */
.bl-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-tag {
  padding: 6px 14px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tj-text-2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.bl-tag:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

/* Newsletter widget */
.bl-newsletter-input {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--tj-text-1);
  font-size: 12px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.bl-newsletter-input:focus { border-color: var(--tj-brand-orange); }
.bl-newsletter-input::placeholder { color: var(--tj-text-2); opacity:.7; }

/* PAGINATION */
.bl-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.bl-page-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--tj-color-border-1);
  background: var(--tj-color-theme-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--tj-text-2);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.bl-page-btn:hover,
.bl-page-btn.active {
  border-color: var(--tj-brand-orange);
  color: var(--tj-brand-orange);
  background: rgba(245,161,40,.06);
}
.bl-page-btn.wide { width: auto; padding: 0 16px; }

/* CTA strip */
.bl-cta-strip {
  background: linear-gradient(135deg, rgba(245,161,40,.08) 0%, rgba(245,161,40,.02) 100%);
  border: 1px solid rgba(245,161,40,.25);
  border-radius: 14px;
  padding: 44px 40px;
  text-align: center;
}
.bl-cta-strip h3 { font-size: clamp(20px,3vw,30px); font-weight: 800; margin-bottom: 10px; }
.bl-cta-strip h3 span { color: var(--tj-brand-orange); }
.bl-cta-strip p { font-size: 14px; color: var(--tj-text-2); margin-bottom: 26px; }
.bl-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 767px) {
  .bl-featured-img { height: 200px; }
  .bl-featured-body { padding: 22px; }
  .bl-cta-strip { padding: 32px 20px; }
}

/* --- CONTACT PAGE (.ct-...) --- */
.ct-page-banner {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.ct-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,161,40,.07) 0%, transparent 65%);
}
.ct-breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--tj-text-2); margin-bottom: 14px; align-items: center; position: relative; z-index: 1; }
.ct-breadcrumb a { color: var(--tj-text-2); text-decoration: none; }
.ct-breadcrumb a:hover { color: var(--tj-brand-orange); }
.ct-breadcrumb span { color: var(--tj-brand-orange); }
.ct-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(245,161,40,.3);
  border-radius: 30px;
  background: rgba(245,161,40,.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--tj-brand-orange);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.ct-page-banner h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.ct-page-banner h1 span { color: var(--tj-brand-orange); }
.ct-page-banner .hero-sub {
  font-size: 15px;
  color: var(--tj-text-2);
  max-width: 560px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* QUICK CONTACT CARDS */
.ct-quick-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 12px;
  padding: 26px 24px;
  height: 100%;
  transition: border-color .25s, transform .25s;
  text-decoration: none;
  display: block;
}
.ct-quick-card:hover { border-color: var(--tj-brand-orange); transform: translateY(-3px); }
.ct-quick-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(245,161,40,.08);
  border: 1px solid rgba(245,161,40,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--tj-brand-orange);
  margin-bottom: 16px;
}
.ct-quick-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--tj-text-2); margin-bottom: 6px; }
.ct-quick-value { font-size: 15px; font-weight: 700; color: var(--tj-text-1); margin-bottom: 4px; }
.ct-quick-sub { font-size: 12px; color: var(--tj-text-2); }

/* FORM */
.ct-form-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 16px;
  padding: 44px;
}
.ct-form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.ct-form-card .form-sub { font-size: 13px; color: var(--tj-text-2); margin-bottom: 30px; }
.ct-field { margin-bottom: 20px; }
.ct-field label { display: block; font-size: 12px; font-weight: 700; color: var(--tj-text-2); margin-bottom: 8px; letter-spacing: .3px; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: var(--tj-color-bg-2, rgba(255,255,255,.02));
  border: 1px solid var(--tj-color-border-1);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--tj-text-1);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--tj-text-2); opacity:.7; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { border-color: var(--tj-brand-orange); }
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.ct-radio-pill {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 11px 14px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tj-text-2);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.ct-radio-pill input { display: none; }
.ct-radio-pill:has(input:checked),
.ct-radio-pill.active {
  border-color: var(--tj-brand-orange);
  color: var(--tj-brand-orange);
  background: rgba(245,161,40,.06);
}
.ct-form-note { font-size: 11px; color: var(--tj-text-2); margin-top: 18px; display: flex; align-items: center; gap: 6px; }
.ct-form-note i { color: var(--tj-brand-orange); }

/* SIDE INFO PANEL */
.ct-info-card {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 16px;
  padding: 34px;
  margin-bottom: 24px;
}
.ct-info-title { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--tj-brand-orange); margin-bottom: 18px; }
.ct-info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.ct-info-row:last-child { margin-bottom: 0; }
.ct-info-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(245,161,40,.08);
  border: 1px solid rgba(245,161,40,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--tj-brand-orange);
  flex-shrink: 0;
}
.ct-info-row-label { font-size: 11px; color: var(--tj-text-2); margin-bottom: 2px; }
.ct-info-row-value { font-size: 13px; font-weight: 600; color: var(--tj-text-1); line-height: 1.5; }
.ct-info-row-value a { color: var(--tj-text-1); text-decoration: none; }
.ct-info-row-value a:hover { color: var(--tj-brand-orange); }

.ct-social-row { display: flex; gap: 10px; margin-top: 8px; }
.ct-social-row a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--tj-color-border-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--tj-text-2);
  transition: border-color .2s, color .2s;
}
.ct-social-row a:hover { border-color: var(--tj-brand-orange); color: var(--tj-brand-orange); }

/* MAP */
.ct-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tj-color-border-1);
  height: 340px;
}
.ct-map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* OFFICE HOURS TABLE */
.ct-hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--tj-color-border-1); }
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-day { color: var(--tj-text-1); font-weight: 600; }
.ct-hours-time { color: var(--tj-text-2); }
.ct-hours-time.closed { color: var(--tj-text-2); opacity: .6; }

/* FAQ */
.ct-faq-item {
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .2s;
}
.ct-faq-item:hover { border-color: var(--tj-brand-orange); }
.ct-faq-q { font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 0; }
.ct-faq-q .faq-toggle { color: var(--tj-brand-orange); font-size: 18px; flex-shrink: 0; transition: transform .25s; display: inline-block; }
.ct-faq-a { font-size: 13px; color: var(--tj-text-2); line-height: 1.6; margin-top: 12px; display: none; }
.ct-faq-item.open .ct-faq-a { display: block; }
.ct-faq-item.open .faq-toggle { transform: rotate(45deg); }

@media (max-width: 991px) {
  .ct-form-card { padding: 28px 22px; }
}

/* ── Mobile Optimizations & Sliders ── */
@media (max-width: 767px) {
  .mobile-slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .mobile-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .mobile-slider-item {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    margin-right: 12px;
  }
  .mobile-slider-item:last-child {
    margin-right: 0;
  }
  .hm-stats,
  .au-stats,
  .bc-stats,
  .sa-stats,
  .dt-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    border: 1px solid var(--tj-color-border-1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--tj-color-theme-bg);
  }
  .hm-stat-item,
  .au-stat-item,
  .bc-stat-item,
  .sa-stat-item,
  .dt-stat-item {
    flex: unset !important;
    min-width: 0 !important;
    padding: 20px 12px !important;
    border-right: 1px solid var(--tj-color-border-1) !important;
    border-bottom: 1px solid var(--tj-color-border-1) !important;
    text-align: center;
  }
  .hm-stat-item:nth-child(2n),
  .au-stat-item:nth-child(2n),
  .bc-stat-item:nth-child(2n),
  .sa-stat-item:nth-child(2n),
  .dt-stat-item:nth-child(2n) {
    border-right: none !important;
  }
  .hm-stat-item:nth-child(3),
  .hm-stat-item:nth-child(4),
  .au-stat-item:nth-child(3),
  .au-stat-item:nth-child(4),
  .bc-stat-item:nth-child(3),
  .bc-stat-item:nth-child(4),
  .sa-stat-item:nth-child(3),
  .sa-stat-item:nth-child(4),
  .dt-stat-item:nth-child(3),
  .dt-stat-item:nth-child(4) {
    border-bottom: none !important;
  }

  .bc-filter-wrap {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }
  .bc-filter-wrap::-webkit-scrollbar {
    display: none !important;
  }
  .bc-filter-btn {
    flex: 0 0 auto !important;
  }

  .hm-trust-bar,
  .sa-trust-bar,
  .dt-trust-bar {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }
  .hm-trust-label,
  .sa-trust-label,
  .dt-trust-label {
    text-align: center !important;
    width: 100% !important;
  }
  .hm-trust-logos,
  .sa-trust-logos,
  .dt-trust-logos {
    justify-content: center !important;
    width: 100% !important;
  }
  .hm-trust-badges,
  .sa-trust-badges,
  .dt-trust-badges {
    margin-left: 0 !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .sa-tech-grid {
    justify-content: center !important;
    text-align: center !important;
  }

  .ct-quick-grid-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .ct-quick-card {
    padding: 18px 12px !important;
    text-align: center !important;
    height: 100% !important;
  }
  .ct-quick-icon {
    margin: 0 auto 10px !important;
  }
}

.mobile-dots-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.mobile-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--tj-brand-orange, #f5a128);
}

.btn-read-more-mobile {
  background: transparent;
  border: 1px solid rgba(245, 161, 40, 0.4);
  color: var(--tj-brand-orange, #f5a128);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-read-more-mobile:hover {
  background: rgba(245, 161, 40, 0.1);
  border-color: var(--tj-brand-orange, #f5a128);
}

