/* ===== DESIGN TOKENS ===== */
:root {
  --navy:        #0b1f3a;
  --navy-deep:   #081627;
  --navy-soft:   #16335c;
  --gold:        #d99a2b;
  --gold-light:  #f0b94a;
  --ink:         #1c2333;
  --muted:       #6b7280;
  --line:        #e7e9ee;
  --bg:          #ffffff;
  --bg-soft:     #f6f7fb;
  --white:       #ffffff;
  --radius:      14px;
  --shadow-sm:   0 4px 14px rgba(11, 31, 58, .06);
  --shadow-md:   0 14px 40px rgba(11, 31, 58, .12);
  --max:         1200px;
  --serif:       'Lora', Georgia, serif;
  --sans:        'Lato', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 86px 0; }

.eyebrow {
  font-family: var(--serif);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
  color: var(--muted);
  font-size: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i { font-size: 13px; }
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(217,154,43,.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

/* ===== HEADER ===== */
.top-bar {
  background: var(--navy-deep);
  color: #cdd6e4;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 32px;
  opacity: 1;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  padding: 0 24px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar a {
  color: #aab6c8;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.top-bar a:hover {
  color: var(--white);
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
/* .site-header .container { max-width: 100%; } */
.site-header.scrolled { background: var(--white); box-shadow: 0 6px 22px rgba(11,31,58,.10); }
.site-header.scrolled .top-bar { height: 0; opacity: 0; border-bottom: none; }
.header-inner { display: flex; align-items: center; gap: 18px; height: 60px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-logo { height: 46px; width: auto; max-width: 240px; display: block; }
.brand-logo--light { filter: brightness(0) invert(1); height: 40px; }
@media (max-width: 620px) { .brand-logo { height: 38px; max-width: 170px; } .brand-logo--light { height: 40px; } }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  border: 1.5px solid #d7dbe3;
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--serif); font-weight: 700; font-size: 20px;
  background: var(--white);
}
.brand-mark::before { content: 'T'; display: grid; place-items: center; color: var(--navy); padding-right: 1px; }
.brand-mark::after  { content: 'B'; display: grid; place-items: center; color: var(--gold); background: linear-gradient(180deg,#fbf2dd,#f4e3bd); margin-left: -6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong { font-size: 16px; letter-spacing: 1.2px; color: var(--navy); }
.brand-text small { font-size: 8px; letter-spacing: 2px; color: #8a94a6; }

.main-nav { display: flex; gap: 18px; margin-left: auto; }
.main-nav a { color: #3a4459; font-size: 13.5px; font-weight: 500; position: relative; padding: 4px 0; transition: color .2s; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a.active::after, .main-nav a:hover::after { width: 100%; }

.header-cta {
  padding: 8px 16px;
  font-size: 13px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(217, 154, 43, 0.2);
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--navy-deep) !important;
}

.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  padding: 125px 0 65px;
  background: #ffffff url("images/hero_new.png?v=3") no-repeat;
  background-position: 95% center;
  background-size: 155% auto;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, rgba(255,255,255,0.85) 52%, rgba(255,255,255,0) 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 730px; }
.hero-eyebrow {
  font-family: var(--serif);
  display: inline-block;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(29px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }
.hero-sub { color: var(--muted); font-size: 15.5px; max-width: 630px; margin-bottom: 28px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.hero-badges li i {
  color: var(--gold);
}


/* Custom Hero Buttons */
.hero .btn {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 6px;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11,31,58,.3);
}
.btn-navy:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* Stats in Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-stat-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
}
.hero-stat-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 18.5px;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 700;
}
.hero-stat-item span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.3;
}

/* Right Column Widgets */
.hero-widget {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  padding-bottom: 12px;
}
.hero-mobile-img {
  display: none;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Value Card */
.value-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--navy);
  border: 1px solid rgba(217, 154, 43, 0.35) !important;
  border-radius: 4px !important;
  padding: 5px 12px !important;
  max-width: 325px !important;
  margin-left: auto;
  transform: translateY(30px);
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.1) !important;
}
.value-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0.8px solid var(--gold);
  background: #fffcf5;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex: none;
}
.value-body h3 {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0px;
  line-height: 1.1;
}
.value-body p {
  font-size: 8.5px;
  color: var(--muted);
  line-height: 1.2;
}

.services { background: var(--white); }
#services .container { max-width: none; padding: 0 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 10px 20px;
  text-align: center;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-icon {
  display: block; margin: 0 auto 12px;
  color: var(--navy); font-size: 38px;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}
.service-card:hover .service-icon { color: var(--gold); transform: translateY(-2px); }
.service-icon-img { width: 72px; height: 72px; object-fit: contain; display: block; margin: 0 auto; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 14.5px; color: var(--navy); margin-bottom: 8px; font-weight: 600;
  line-height: 1.25;
}
.service-card p { font-size: 11px; color: var(--muted); line-height: 1.5; }

.center-link { text-align: center; margin-top: 44px; }
.text-link { color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: gap .2s; }
.text-link:hover { gap: 14px; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg-soft); }
.industries-bar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 26px 22px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.industry { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 10px 6px; border-radius: 12px; transition: background .2s, transform .2s; }
.industry i { font-size: 26px; color: var(--navy); transition: color .2s; }
.industry span { font-size: 13px; font-weight: 600; color: var(--ink); }
.industry:hover { background: var(--bg-soft); transform: translateY(-4px); }
.industry:hover i { color: var(--gold); }
.industry-link { color: var(--gold); font-weight: 600; flex-direction: row; gap: 8px; font-size: 13.5px; }
.industry-link i { font-size: 13px; color: var(--gold); }

/* ===== STATS ===== */
.stats { padding: 26px 0; background: var(--bg-soft); }
.stats .container {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
}
.stats-head {
  text-align: center; text-transform: uppercase; letter-spacing: 2.5px;
  font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 26px;
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stat { display: flex; align-items: center; gap: 14px; justify-content: center; }
.stat i { font-size: 24px; color: var(--gold); }
.stat strong { font-family: var(--serif); font-size: 15px; color: var(--white); display: block; line-height: 1.25; margin-bottom: 4px; }
.stat span { font-size: 12.5px; color: #c6d0e0; }

/* ===== WHY ===== */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }

.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th { padding: 16px 18px; text-align: left; font-size: 15px; }
.compare-table thead th { background: #eef0f4; color: var(--ink); }
.compare-table thead th.highlight { background: var(--navy); color: var(--white); }
.compare-table td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--line); color: var(--muted); }
.compare-table td i { margin-right: 8px; color: #5c677d; font-size: 15px; }
.compare-table td .fa-xmark { color: #c0392b; }
.compare-table td.highlight { color: var(--ink); font-weight: 500; background: #fbfcfe; }
.compare-table td.highlight i { color: var(--gold); font-size: 15px; }
.compare-table tbody tr:hover td { background: #f4f6fa; }
.compare-table tbody tr:hover td.highlight { background: #fdf7e7; }

.diff-eyebrow { font-family: var(--serif); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 18px; position: relative; padding-bottom: 12px; }
.diff-eyebrow::after { content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--gold); border-radius: 2px; }
.differentiators ul { display: flex; flex-direction: column; gap: 18px; }
.differentiators li { display: flex; gap: 16px; }
.differentiators li i { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--bg-soft); color: var(--gold); font-size: 16px; }
.differentiators strong { display: block; color: var(--navy); font-size: 15px; }
.differentiators span { color: var(--muted); font-size: 13.5px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-soft); padding-top: 60px; padding-bottom: 40px; }
.testimonial-slider { overflow: hidden; cursor: grab; touch-action: pan-y; }
.testimonial-slider.dragging { cursor: grabbing; }
.testimonial-slider.dragging .testimonial { user-select: none; }
.testimonial-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.65,.05,.36,1); will-change: transform; }
.testimonial-track.no-anim { transition: none; }
.testimonial-track .testimonial { flex: 0 0 calc((100% - 48px) / 3); margin: 0; }
.testimonial-track .testimonial img,
.testimonial-track .testimonial * { -webkit-user-drag: none; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: .6; opacity: .35; }
.testimonial blockquote { color: var(--ink); font-size: 14.5px; margin: 8px 0 24px; }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-light); font-weight: 700; font-size: 15px;
}
.testimonial figcaption strong { display: block; color: var(--navy); font-size: 14.5px; }
.testimonial figcaption small { color: var(--muted); font-size: 12.5px; }
.dots { display: flex; justify-content: center; gap: 9px; margin-top: 16px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #cfd6e2; transition: .2s; }
.dot.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ===== CTA ===== */
.cta-band {
  position: relative;
  padding: 24px 0;
  background: linear-gradient(110deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80");
  background-size: cover; background-position: right center;
  opacity: .22;
  mix-blend-mode: luminosity;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta-content {
  max-width: 680px;
}
.cta-content h2 {
  font-family: var(--serif);
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-content p {
  color: #cdd6e4;
  font-size: 15px;
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-deep); color: #c3cdde; padding-top: 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 48px;
}
.brand-light { margin-bottom: 18px; }
.brand-light .brand-text strong { color: var(--white); }
.brand-light .brand-text small { color: #aab6c8; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-bottom: 20px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); color: #c3cdde; transition: .2s; }
.socials a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }

.footer-col h4 { color: var(--white); font-size: 15.5px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13.5px; color: #aab6c8; margin-bottom: 11px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { font-size: 13.5px; display: flex; gap: 11px; margin-bottom: 14px; line-height: 1.5; }
.footer-contact i { color: var(--gold); margin-top: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: #93a0b4; }
.legal-links { display: flex; gap: 22px; }
.legal-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--navy-deep);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .industries-bar { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .stat { flex-direction: column; text-align: center; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 880px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--navy-deep); padding: 10px 24px 20px;
    box-shadow: 0 16px 30px rgba(0,0,0,.3);
  }
  .main-nav.open a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
  .main-nav.open a:hover, .main-nav.open a.active { color: #fff; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-track .testimonial { flex: 0 0 calc((100% - 24px) / 2); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { background-position: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-actions { width: 100%; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .testimonial-track .testimonial { flex: 0 0 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-bar { grid-template-columns: repeat(2, 1fr); }
  .hero {
    padding-top: 120px;
    padding-bottom: 40px !important;
    min-height: auto;
    background-image: none !important;
  }
  .hero-overlay {
    background: #ffffff !important;
  }
  .hero-widget .value-card {
    transform: none !important;
    margin: 0 auto !important;
  }
  .hero-mobile-img {
    display: block;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .hero-mobile-img img {
    max-width: 100% !important;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions { margin-bottom: 20px !important; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding-top: 16px !important;
  }
}

@media (max-width: 400px) {
  .services-grid, .industries-bar, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.page-hero { min-height: 460px; padding: 124px 0 60px; }
.hero-tagline { color: var(--gold-light); font-size: 17px; font-weight: 600; max-width: 520px; margin-bottom: 18px; }
.about-hero {
  background: url("images/about_hero_bg.png") no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.about-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(8, 22, 39, 0.95) 0%, rgba(8, 22, 39, 0.8) 50%, rgba(8, 22, 39, 0.4) 100%) !important;
}
.about-hero .hero-title {
  color: var(--white) !important;
}
.about-hero .hero-sub {
  color: #cdd6e4 !important;
}
.about-hero .hero-badges li {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--white) !important;
}
@media (max-width: 620px) {
  .about-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 22, 39, 0.95) 0%, rgba(8, 22, 39, 0.85) 60%, rgba(8, 22, 39, 0.75) 100%) !important;
  }
}


/* ----- Who We Are ----- */
.who-grid { display: grid; grid-template-columns: 0.85fr 1.55fr; gap: 48px; align-items: stretch; }
.who-copy p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.who-copy p:last-child { margin-bottom: 0; }
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.vm-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); height: 100%;
}
.vm-icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 18px;
}
.vm-icon-navy { background: var(--navy); color: #fff; }
.vm-icon-gold { background: var(--gold); color: #fff; }
.vm-card h3 { font-family: var(--serif); font-size: 19px; color: var(--navy); margin-bottom: 12px; }
.vm-card p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.vm-card p:last-child { margin-bottom: 0; }

/* ----- Core Values ----- */
.core-values { background: var(--bg-soft); }
.section-title.centered { text-align: center; }
.values-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 40px;
}
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 18px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-icon { display: block; font-size: 30px; color: var(--navy); margin-bottom: 16px; }
.value-card:hover .value-icon { color: var(--gold); }
.value-card h3 { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ----- Founder ----- */
.founder-grid {
  display: grid; grid-template-columns: 0.85fr 1fr 1fr 1fr; gap: 32px; align-items: stretch;
}
.founder-media { position: relative; }
.founder-media::before {
  content: ''; position: absolute; top: -14px; left: -14px; width: 90px; height: 90px;
  background-image: radial-gradient(var(--line) 2px, transparent 2px); background-size: 12px 12px;
  z-index: 0;
}
.founder-photo {
  position: relative; z-index: 1; aspect-ratio: 3 / 3.4; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-initials {
  display: none; font-family: var(--serif); font-size: 64px; font-weight: 700;
  color: rgba(255,255,255,.85);
}
.founder-photo.no-img .founder-initials { display: block; }
.founder-intro h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin: 6px 0 4px; }
.founder-role { color: var(--gold); font-weight: 600; font-size: 13.5px; margin-bottom: 16px; }
.founder-intro > p { color: var(--muted); font-size: 14px; }
.founder-socials { display: flex; gap: 12px; margin-top: 20px; }
.founder-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 15px; transition: background .2s, transform .2s;
}
.founder-socials a:hover { background: var(--gold); transform: translateY(-2px); }
.founder-story h4, .founder-message h4 {
  font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 14px;
  position: relative; padding-bottom: 10px;
}
.founder-story h4::after, .founder-message h4::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--gold); border-radius: 2px;
}
.founder-story p { color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }
.founder-message { border-left: 1px solid var(--line); padding-left: 28px; }
.founder-message .quote-mark { font-size: 44px; }
.founder-message blockquote p { color: var(--ink); font-size: 13.5px; margin-bottom: 12px; }
.signature { font-family: var(--serif); font-style: italic; color: var(--navy); font-weight: 600; margin-top: 8px; }

/* ----- How We Work ----- */
.work-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: start; }
.block-label { font-weight: 700; color: var(--navy); font-size: 15px; margin: 18px 0 26px; }
.work-col > .section-title { text-align: left; }

.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.journey-step { text-align: center; position: relative; padding: 0 2px; }
.journey-step:not(:last-child)::after {
  content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 22px; right: -7px; color: var(--gold); font-size: 11px;
}
.journey-icon {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 10px; background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--navy); font-size: 18px;
}
.journey-num { display: block; font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.journey-step h4 { font-size: 12.5px; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.journey-step p { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* Process flow — snaking two-row diagram */
.process-flow { display: flex; flex-direction: column; gap: 8px; }
.flow-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; }
.flow-row-rev { flex-direction: row-reverse; }
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 92px; text-align: center; }
.flow-icon {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-size: 18px;
}
.flow-step span:last-child { font-size: 11.5px; color: var(--ink); font-weight: 500; line-height: 1.35; }
.flow-arrow { color: var(--gold); font-size: 13px; margin-top: 18px; }
.flow-turn { display: flex; justify-content: flex-end; padding-right: 21px; color: var(--gold); font-size: 14px; }

/* =====================================================================
   INDUSTRIES PAGE
   ===================================================================== */
.hero-iconrow { position: absolute; top: 102px; right: 30px; z-index: 2; display: flex; gap: 13px; }
.hero-iconrow span {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.45);
  color: #fff; display: grid; place-items: center; font-size: 16px; background: rgba(255,255,255,.04);
}

/* ----- Stats bar (overlapping hero) ----- */
.stats-bar { position: relative; z-index: 5; }
.stats-bar-inner {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md); display: flex; padding: 24px 14px; margin-top: -55px;
}
.sb-item { flex: 1; display: flex; align-items: center; gap: 14px; justify-content: center; padding: 4px 10px; }
.sb-item + .sb-item { border-left: 1px solid var(--line); }
.sb-icon { font-size: 26px; color: #9aa3b2; }
.sb-num, .sb-suffix { font-family: var(--serif); font-weight: 700; color: var(--navy); }
.sb-num { font-size: 15px; display: block; line-height: 1.25; margin-bottom: 2px; }
.sb-suffix { font-size: 22px; }
.sb-label { display: block; font-size: 12px; color: var(--muted); line-height: 1.3; }

/* ----- Challenges ----- */
.challenge-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 40px; }
.challenges { background: var(--white); }
.challenge-card {
  min-height: 166px;
  padding: 18px 12px 16px;
  border-color: #edf0f5;
  border-radius: 7px;
  box-shadow: 0 3px 12px rgba(11, 31, 58, .035);
}
.challenge-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  background: var(--bg-soft);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease;
}
.challenge-card:hover .challenge-icon {
  background: var(--navy);
  color: var(--white);
}
.challenge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.challenge-icon .service-icon-img {
  width: 46px;
  height: 46px;
}
.challenge-icon-large {
  width: 76px;
  height: 58px;
  margin-top: -3px;
  margin-bottom: 5px;
  overflow: visible;
}
.challenge-icon-large .service-icon-img {
  width: 112px;
  height: 74px;
  max-width: none;
  object-fit: contain;
  transform: translate(-18px, -8px);
}
.challenge-card h3 {
  font-size: 12.5px;
  line-height: 1.25;
  margin-bottom: 7px;
}
.challenge-card p {
  max-width: 122px;
  margin: 0 auto;
  font-size: 10.5px;
  line-height: 1.42;
}

/* ----- Industries we serve ----- */
.ind-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.ind-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ind-icon { font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.ind-card h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.ind-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.ind-more {
  color: var(--gold); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center;
  gap: 7px; margin-top: auto; transition: gap .2s;
}
.ind-more:hover { gap: 12px; }

/* ----- Popular services table ----- */
.svc-by-industry { background: var(--bg-soft); }
.svc-table-wrap { overflow-x: auto; margin-top: 36px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.svc-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.svc-table thead th {
  background: var(--navy); color: #fff; font-weight: 600; font-size: 11.5px;
  padding: 14px 10px; text-align: center; line-height: 1.3;
}
.svc-table thead th:first-child { text-align: left; }
.svc-table td { padding: 12px 10px; text-align: center; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.svc-table tbody tr:last-child td { border-bottom: 0; }
.svc-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.svc-table .row-head { text-align: left; font-weight: 600; color: var(--navy); white-space: nowrap; }
.svc-table .yes { color: #1f9d55; font-size: 14px; }

/* ----- Why expertise matters ----- */
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 44px; }
.exp-item { text-align: center; padding: 0 10px; }
.exp-icon { display: block; font-size: 34px; color: var(--navy); margin-bottom: 16px; }
.exp-item h3 { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.exp-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ----- Success stories ----- */
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.case-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-thumb {
  height: 96px; display: grid; place-items: center; font-size: 30px; color: #fff;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
}
.case-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-family: var(--serif); font-size: 15px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.case-body p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }

/* =====================================================================
   SERVICES PAGES (landing + detail)
   ===================================================================== */
.accent-text { color: var(--gold); }
.container.narrow { max-width: 880px; }

/* ----- Service categories ----- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.category-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.category-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; color: #fff; margin-bottom: 18px; }
.category-icon.cat-navy { background: var(--navy); }
.category-icon.cat-gold { background: var(--gold); }
.category-card h3 { font-family: var(--serif); font-size: 19px; color: var(--navy); margin-bottom: 12px; }
.category-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.category-list { margin-top: auto; text-align: left; width: 100%; }
.category-list li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 13.5px; }
.category-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.category-list a { color: var(--navy); font-weight: 600; transition: color .2s; }
.category-list a:hover { color: var(--gold); }

.sb-mobile-header {
  display: none !important;
}

/* ----- Services Browser Panel ----- */
.services-browser-panel {
  display: flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 650px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.sb-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sb-col-main {
  width: 310px;
  border-right: 1px solid var(--line);
  background: #f8f9fc;
}
.sb-col-sub {
  width: 290px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.sb-col-detail {
  flex: 1;
  background: var(--white);
  overflow-y: auto;
  padding: 40px 48px;
}
.sb-col-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.sb-col-header h3 {
  font-family: var(--sans);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0;
  font-weight: 700;
}
.sb-col-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}
.sb-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s ease;
  border-left: 3px solid transparent;
  gap: 12px;
}
.sb-item:hover {
  background: rgba(11, 31, 58, 0.03);
  color: var(--gold);
}
.sb-item.active {
  background: rgba(11, 31, 58, 0.04);
  color: var(--gold);
  border-left-color: var(--gold);
}
.sb-item i.arrow {
  font-size: 11px;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.sb-item.active i.arrow {
  opacity: 1;
  transform: translateX(4px);
}
.sb-detail-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sb-detail-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.sb-detail-content p.desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}
.sb-detail-content h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.sb-detail-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-bottom: 40px;
}
.sb-detail-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}
.sb-detail-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 11px;
}
.sb-detail-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ----- Why choose ----- */
.why-choose { background: var(--bg-soft); }
.why-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 40px; }
.why-item { text-align: center; padding: 0 6px; }
.why-icon { display: block; font-size: 30px; color: var(--navy); margin-bottom: 14px; }
.why-item h3 { font-family: var(--serif); font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.why-item p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ----- Our services cards ----- */
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.svc-card-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; font-size: 26px; color: var(--navy); margin-bottom: 16px; }
.svc-card:hover .svc-card-icon { background: var(--navy); color: #fff; }
.svc-card h3 { font-family: var(--serif); font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.svc-card .ind-more { margin-top: auto; }

/* ----- Service detail ----- */
.service-hero { min-height: 380px; padding: 120px 0 52px; }
.breadcrumb { font-size: 13px; color: #cdd6e4; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--gold-light); font-weight: 600; }
.breadcrumb i { font-size: 9px; opacity: .6; }
.lead-text { font-size: 17px; color: var(--ink); line-height: 1.8; text-align: center; }
.svc-overview .eyebrow { margin-bottom: 18px; }
.svc-detail-grid.tinted { background: var(--bg-soft); }
.container.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.detail-block h2 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--ink); }
.check-list i { color: #1f9d55; margin-top: 4px; font-size: 15px; }
.check-list.gold i { color: var(--gold); }

/* process */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 42px; }
.process-step { text-align: center; padding: 26px 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; }
.ps-num { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 10px; }
.process-step h4 { font-size: 14px; color: var(--navy); }

/* faq */
.svc-faq { background: var(--bg-soft); }
.faq-list { margin-top: 36px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy); font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold); transition: transform .25s ease; flex: none; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* inquiry form */
.inquiry-form { margin-top: 36px; }
.inquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.inquiry-form input, .inquiry-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.inquiry-form input:focus, .inquiry-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,154,43,.15); }
.inquiry-form textarea { margin-bottom: 18px; resize: vertical; }
.inquiry-form .btn { width: 100%; justify-content: center; }

/* related services */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.related-card {
  display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.related-icon { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--navy); font-size: 18px; }
.related-name { font-weight: 600; color: var(--navy); font-size: 14px; flex: 1; }
.related-arrow { color: var(--gold); font-size: 13px; }

/* ----- Secondary Industries Grid ----- */
.other-industries {
  background: var(--bg-soft);
}
.secondary-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.sec-ind-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sec-ind-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.sec-ind-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f4f9;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--navy);
  flex: none;
  transition: background .25s ease, color .25s ease;
}
.sec-ind-card:hover .sec-ind-icon {
  background: var(--navy);
  color: var(--white);
}
.sec-ind-card h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

/* ----- CTA Banner & Split Button ----- */
.ind-cta-banner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 40px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-sm);
}
.ind-cta-illustration {
  flex: 0 0 160px;
  display: block;
}
.ind-cta-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
.ind-cta-content {
  flex: 1;
}
.ind-cta-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.ind-cta-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.ind-cta-action {
  flex: none;
}

/* Split Button */
.btn-split-calendar {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(217,154,43,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: none;
  cursor: pointer;
}
.btn-split-calendar:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217,154,43,.35);
  color: var(--navy-deep);
}
.btn-split-calendar .btn-text {
  padding: 13px 20px;
  display: inline-block;
}
.btn-split-calendar .btn-icon-box {
  padding: 13px 16px;
  border-left: 1px solid rgba(11, 31, 58, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-col > .section-title { text-align: center; }
  .hero-iconrow { display: none; }
  .challenge-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid, .svc-cards, .related-grid, .secondary-ind-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services Browser Panel Mobile Drill-down */
  .services-browser-panel {
    display: block;
    height: auto;
    max-height: none;
    border: none;
    background: transparent;
    box-shadow: none;
    margin-top: 30px;
  }
  .sb-column {
    display: none; /* Hide all columns by default on mobile/tablet */
    width: 100% !important;
    border-right: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: auto;
    min-height: 420px;
    flex-direction: column;
  }
  
  /* Show active column based on active view state */
  .services-browser-panel.view-main .sb-col-main {
    display: flex;
  }
  .services-browser-panel.view-sub .sb-col-sub {
    display: flex;
  }
  .services-browser-panel.view-detail .sb-col-detail {
    display: flex;
  }
  
  /* Mobile back header styling */
  .sb-mobile-header {
    display: flex !important;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }
  .sb-mobile-back-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-family: var(--sans);
  }
  .sb-mobile-back-btn i {
    font-size: 12px;
  }
  
  .sb-col-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .sb-col-detail {
    padding: 30px 24px;
  }
  .sb-detail-bullets {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-row { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 16px; }
  .ind-cards, .case-grid, .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-bar-inner { flex-wrap: wrap; gap: 18px 0; }
  .sb-item { flex: 0 0 33.33%; }
  .sb-item + .sb-item { border-left: 0; }

  /* CTA banner responsive styling */
  .ind-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 24px;
  }
  .ind-cta-content {
    order: 1;
  }
  .ind-cta-action {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .ind-cta-illustration {
    order: 3;
    flex: 0 0 auto;
    max-width: 150px;
    margin: 0 auto;
  }
  .ind-cta-action .btn-split-calendar {
    width: 100%;
    justify-content: center;
  }
  .ind-cta-action .btn-split-calendar .btn-text {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-cards { grid-template-columns: 1fr; }
  .founder-grid { display: flex; flex-direction: column; }
  .founder-media { order: 4; max-width: 260px; margin: 0 auto; }
  .founder-intro { order: 1; }
  .founder-story { order: 2; }
  .founder-message { order: 3; border-left: 0; padding-left: 0; }
  .journey { grid-template-columns: 1fr 1fr; gap: 24px 8px; }
  .journey-step:not(:last-child)::after { display: none; }
  .flow-row, .flow-row-rev {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .flow-step {
    width: 100% !important;
  }
  .flow-turn { display: none !important; }
  .flow-arrow { display: none !important; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-cards, .case-grid, .secondary-ind-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .sb-item { flex: 0 0 50%; }
  .category-grid, .svc-cards, .related-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .container.two-col { grid-template-columns: 1fr; gap: 36px; }
  .inquiry-form .form-row { grid-template-columns: 1fr; }
}

/* ===== AI CHATBOT WIDGET ===== */
.tb-chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  font-family: 'Lato', sans-serif;
}

/* Toggle Button */
.chat-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  border: 2px solid var(--gold);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-toggle-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.chat-toggle-btn i {
  transition: transform 0.3s ease;
}
.chat-toggle-btn.active i {
  transform: rotate(90deg);
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 370px;
  height: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(13, 35, 58, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-header-avatar img {
  width: 100%;
  height: auto;
}
.chat-header-title h4 {
  font-family: 'Lora', serif;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.chat-header-title span {
  font-size: 11px;
  color: #aab6c8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-header-title span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ec4b6;
}
.chat-close-btn {
  background: none;
  border: none;
  color: #aab6c8;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
}
.chat-close-btn:hover {
  color: var(--white);
}

/* Chat Body / Messages */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.msg-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.msg-wrapper.user {
  align-items: flex-end;
}
.msg-wrapper.assistant {
  align-items: flex-start;
}

.chat-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.msg-wrapper.user .chat-msg-bubble {
  background: var(--navy-soft);
  color: var(--white);
  border-bottom-right-radius: 2px;
}
.msg-wrapper.assistant .chat-msg-bubble {
  background: var(--white);
  color: var(--navy-deep);
  border-bottom-left-radius: 2px;
  border: 1px solid #e2e8f0;
}
.chat-msg-bubble p {
  margin: 0 0 8px 0;
}
.chat-msg-bubble p:last-child {
  margin-bottom: 0;
}
.chat-msg-bubble ul, .chat-msg-bubble ol {
  margin: 8px 0;
  padding-left: 20px;
}
.chat-msg-bubble li {
  margin-bottom: 4px;
}
.chat-msg-bubble a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.msg-wrapper.user .chat-msg-bubble a {
  color: #ffe6a3;
}

.chat-msg-time {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 4px;
  padding: 0 4px;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 6px 12px;
  align-items: center;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Suggestions Box */
.chat-suggestions-box {
  background: var(--white);
  border-top: 1px solid #f1f5f9;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chat-suggest-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--navy-deep);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.chat-suggest-btn:hover {
  background: var(--navy-soft);
  color: var(--white);
  border-color: var(--navy-soft);
}

/* Chat Footer / Input Form */
.chat-footer {
  padding: 12px 14px;
  background: var(--white);
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 8px;
}
.chat-input-field {
  flex: 1;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.chat-input-field:focus {
  outline: none;
  border-color: var(--gold);
}
.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.chat-send-btn:hover {
  background: var(--gold);
}

/* Responsive adjustment */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 32px);
    height: 480px;
    left: 0px;
    bottom: 68px;
  }
}
