/* ============================================================
   Business Team Translations — Main Stylesheet
   Design system: Montserrat, Navy/Gold palette
   ============================================================ */

:root {
  --navy:     #1C1F26;
  --navy-2:   #2A2E37;
  --ink:      #1A1C21;
  --muted:    #6B6F77;
  --line:     #E6E7EA;
  --bg-soft:  #F5F6F7;
  --gold:     #F2400F;
  --white:    #fff;
  --grad:     linear-gradient(90deg, #FF8A24 0%, #FF1208 100%);
  --radius:   6px;
  --radius-lg:10px;
  --max-w:    1280px;
  --pad-x:    48px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Staging banner ---- */
.staging-banner {
  background: #f59e0b;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px;
  letter-spacing: .5px;
}

/* ---- Utility bar ---- */
.utility-bar {
  background: var(--grad);
  color: rgba(255,255,255,.96);
  font-size: 12.5px;
  padding: 8px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .2px;
}
.utility-bar__left { display: inline-flex; align-items: center; gap: 8px; }
.utility-bar__right { display: inline-flex; align-items: center; gap: 18px; }
.utility-bar__right a { display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.utility-bar__right a:hover { text-decoration: underline; }

/* ---- Icons ---- */
.icon-sm { width: 14px; height: 14px; display: inline-flex; }
.icon-xs { width: 13px; height: 13px; display: inline-flex; }
[data-lucide] { display: inline-flex; }

/* ---- Site header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px var(--pad-x);
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--line);
}
.site-header__logo img { height: 52px; width: auto; }

/* ---- Navigation ---- */
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__group { position: relative; }
.site-nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  transition: color .2s;
}
.site-nav__link:hover { color: var(--gold); }
.site-nav__dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -16px;
  /* Invisible padding bridges the gap between link and dropdown */
  padding-top: 12px;
  background: transparent;
  z-index: 200;
  transition: opacity .18s ease, visibility .18s ease;
}
.site-nav__dropdown__inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px -10px rgba(14,42,71,.18);
  min-width: 240px;
  padding: 8px 0;
}
.site-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.site-nav__dropdown a:hover { background: var(--bg-soft); color: var(--gold); }
.site-nav__group:hover .site-nav__dropdown,
.site-nav__group:focus-within .site-nav__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-header__actions { display: flex; align-items: center; gap: 16px; }
.site-header__mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
  text-decoration: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--primary {
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  padding: 11px 20px;
}
.btn--outline {
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  padding: 13px 26px;
  border: 1.5px solid var(--line);
}
.btn--lg { font-size: 15px; padding: 14px 28px; }
.btn--sm { font-size: 13px; padding: 9px 16px; }

/* ---- Section helpers ---- */
.section { padding: 82px var(--pad-x); }
.section--soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--navy { background: var(--navy); }
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.section__label span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.section__heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.8px;
  color: var(--navy);
  line-height: 1.15;
  max-width: 640px;
}
.section__subheading {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 60px;
  padding: 78px var(--pad-x) 70px;
  background: #fff;
  align-items: stretch;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero__eyebrow span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  max-width: 680px;
  margin: 0;
}
.hero__body {
  margin: 24px 0 0;
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.hero__trust-item [data-lucide] { color: var(--gold); width: 17px; height: 17px; }
.hero__trust-sep { width: 1px; height: 18px; background: var(--line); }

/* ---- Quote form card ---- */
.quote-card-wrap { position: relative; display: flex; }
.quote-card-glow {
  position: absolute;
  inset: -26px -18px;
  background: var(--grad);
  filter: blur(64px);
  opacity: .16;
  border-radius: 48px;
  z-index: 0;
  pointer-events: none;
}
.quote-card {
  position: relative;
  z-index: 1;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -30px rgba(14,42,71,.35);
  overflow: hidden;
}
.quote-card__header {
  background: var(--navy);
  padding: 20px 26px;
}
.quote-card__header h3 { font-size: 19px; font-weight: 600; color: #fff; margin: 0; }
.quote-card__header p { font-size: 13px; color: #A6AAB2; margin: 3px 0 0; }
.quote-card__body { padding: 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { display: flex; flex-direction: column; gap: 6px; }
.form-label span { font-size: 13px; font-weight: 500; color: var(--ink); }
.form-input, .form-select, .form-textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  height: 44px;
  width: 100%;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { height: auto; min-height: 72px; padding: 10px 12px; resize: vertical; }
.form-attach {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 11px 12px;
  border: 1px dashed #c8d2dd;
  border-radius: var(--radius);
  cursor: pointer;
}
.form-submit {
  background: var(--grad);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .88; }

/* ---- Trust numbers bar ---- */
.trust-bar {
  background: var(--navy);
  padding: 52px var(--pad-x);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-bar__item {
  text-align: center;
  padding: 0 14px;
}
.trust-bar__item + .trust-bar__item { border-left: 1px solid rgba(255,255,255,.1); }
.trust-bar__number {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
}
.trust-bar__number--gold { color: var(--gold); }
.trust-bar__label { font-size: 13px; color: #9CA0A8; margin-top: 8px; }

/* ---- Logo marquee ---- */
.logo-marquee { padding: 40px var(--pad-x); border-bottom: 1px solid var(--line); background: #fff; }
.logo-marquee__label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 26px;
}
.logo-marquee__track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  align-items: center;
  animation: marquee 38s linear infinite;
}
.logo-marquee__item {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #A6AAB1;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Services bento grid ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.bento-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.bento-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(14,42,71,.4); }
.bento-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--navy);
  border: none;
}
.bento-card--wide { grid-column: span 3; }
.bento-card__accent { height: 3px; background: var(--grad); }
.bento-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.bento-card__body--featured { padding: 40px; position: relative; overflow: hidden; }
.bento-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: var(--grad);
  filter: blur(70px);
  opacity: .22;
  pointer-events: none;
}
.bento-card__icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bento-card__icon [data-lucide] { width: 22px; height: 22px; color: var(--navy); }
.bento-card__icon--lg { width: 52px; height: 52px; border-radius: 12px; background: var(--grad); }
.bento-card__icon--lg [data-lucide] { width: 26px; height: 26px; color: #fff; }
.bento-card__badge {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(242,64,15,.5);
  padding: 5px 11px; border-radius: 9999px;
}
.bento-card__title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.bento-card__title--featured { font-size: 28px; font-weight: 700; letter-spacing: -.5px; color: #fff; margin-bottom: 12px; margin-top: auto; padding-top: 34px; }
.bento-card__text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.bento-card__text--featured { font-size: 16px; color: #C9CCD2; line-height: 1.65; max-width: 460px; margin-bottom: 22px; }
.bento-card__link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--gold); }
.bento-card__link--featured { font-size: 14.5px; color: #fff; }
.bento-card__link [data-lucide] { width: 15px; height: 15px; }
.bento-card--wide .bento-card__body {
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 30px 34px;
}
.bento-card--wide .bento-card__icon { flex: none; width: 48px; height: 48px; border-radius: 10px; }
.bento-card--wide .bento-card__icon [data-lucide] { width: 24px; height: 24px; }
.bento-card--wide .bento-card__content { flex: 1; }
.bento-card--wide .bento-card__link { flex: none; }

/* ---- Industries grid ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -20px rgba(14,42,71,.4);
  border-color: #cfd2d8;
}
.industry-card__icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.industry-card__icon [data-lucide] { width: 22px; height: 22px; color: var(--navy); }
.industry-card__title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.industry-card__clients { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
}
.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after { content: '\201D'; }
.testimonial-card__author { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testimonial-card__role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ---- Why us section ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 42px;
}
.why-item {
  padding: 32px;
  border-bottom: 1px solid var(--line);
}
.why-item:nth-child(odd) { border-right: 1px solid var(--line); }
.why-item__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.why-item__title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.why-item__text { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ---- CTA section ---- */
.cta-section {
  background: var(--navy);
  padding: 72px var(--pad-x);
  text-align: center;
}
.cta-section h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: #9CA0A8; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.cta-section__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 64px var(--pad-x);
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero__label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.page-hero__label span { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.page-hero h1 { font-size: 44px; font-weight: 700; letter-spacing: -1px; color: #fff; max-width: 800px; line-height: 1.1; margin: 0 0 20px; }
.page-hero__lead { font-size: 17px; color: #9CA0A8; max-width: 700px; line-height: 1.7; margin: 0; }

/* ---- Content sections ---- */
.content-section { padding: 72px var(--pad-x); }
.content-section h2 { font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 20px; letter-spacing: -.5px; }
.content-section h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.content-section p { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.content-section ul { margin: 0 0 16px 20px; }
.content-section li { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.content-section strong { color: var(--ink); }

/* ---- Two-col layout ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col--3-2 { grid-template-columns: 3fr 2fr; }

/* ---- Sidebar card ---- */
.sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: static;
}
.sidebar-card__header { background: var(--navy); padding: 20px 24px; }
.sidebar-card__header h3 { font-size: 17px; font-weight: 600; color: #fff; margin: 0; }
.sidebar-card__header p { font-size: 12.5px; color: #A6AAB2; margin: 3px 0 0; }
.sidebar-card__body { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---- Alert / success message ---- */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.alert--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #9CA0A8; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px var(--pad-x) 48px;
}
.site-footer__brand img { margin-bottom: 16px; }
.site-footer__brand p { font-size: 13.5px; line-height: 1.65; }
.site-footer__offices { margin-top: 16px; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.site-footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer__col a { display: block; font-size: 13.5px; color: #9CA0A8; margin-bottom: 8px; transition: color .2s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__col p { font-size: 13.5px; line-height: 1.6; margin-bottom: 8px; }
.site-footer__col strong { color: #fff; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
}
.site-footer__certs { display: flex; gap: 20px; align-items: center; }
.site-footer__certs span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- 404 ---- */
.page-404-content { text-align: center; padding: 120px var(--pad-x); }
.page-404-content h1 { font-size: 80px; font-weight: 700; color: var(--line); margin-bottom: 0; }
.page-404-content h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.page-404-content p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

/* ---- Reveal animation ---- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; }
  .hero { grid-template-columns: 1fr; }
  .quote-card-wrap { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--featured { grid-column: span 2; }
  .bento-card--wide { grid-column: span 2; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--3-2 { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .utility-bar { display: none; }
  .site-nav { display: none; }
  .site-header__mobile-toggle { display: flex; }
  .hero h1 { font-size: 36px; }
  .trust-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar__item:nth-child(4), .trust-bar__item:nth-child(5) { border-left: none; margin-top: 24px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured, .bento-card--wide { grid-column: span 1; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(odd) { border-right: none; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 32px; }
  .section__heading { font-size: 28px; }
}
