/* ============================================================
   Ember Collective Staffing — Professional Redesign
   Design Language: Corporate Navy + Ember Orange Accent
   ============================================================ */

:root {
  --navy:        #0A1F3D;
  --navy-dark:   #060F1E;
  --navy-mid:    #163060;
  --orange:      #E05A1A;
  --orange-dark: #C04D14;
  --white:       #FFFFFF;
  --off-white:   #F7F9FB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --text:        #1C2B3A;
  --text-light:  #4B6278;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.nav-logo-text .sub {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-connect {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border: 1.5px solid rgba(224,90,26,.3);
  padding: 7px 16px;
  border-radius: 3px;
  transition: all .2s !important;
}
.nav-connect::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.nav-connect:hover {
  border-color: var(--orange) !important;
  background: rgba(224,90,26,.06);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange) !important; }

/* ── EMBER CONNECT PORTAL ─────────────────────────────────── */
.connect-hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.connect-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(224,90,26,.12) 0%, transparent 65%),
              linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.connect-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.connect-info .hero-label { margin-bottom: 20px; }
.connect-info h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.connect-info h1 em { font-style: normal; color: var(--orange); }
.connect-info p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 40px;
}
.connect-features { display: flex; flex-direction: column; gap: 18px; }
.connect-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.connect-feature-icon {
  width: 36px; height: 36px;
  background: rgba(224,90,26,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.connect-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.connect-feature-text span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.connect-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 48px 44px;
  backdrop-filter: blur(10px);
}
.connect-card .coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,90,26,.15);
  border: 1px solid rgba(224,90,26,.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.connect-card h2 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}
.connect-card .sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  line-height: 1.6;
}
.connect-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.connect-tab {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  border: none;
  font-family: inherit;
}
.connect-tab.active {
  background: var(--orange);
  color: var(--white);
}
.connect-card .form-group label { color: rgba(255,255,255,.6); }
.connect-card .form-group input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.connect-card .form-group input::placeholder { color: rgba(255,255,255,.3); }
.connect-card .form-group input:focus { border-color: var(--orange); }

.connect-notify {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  border: 1px dashed rgba(255,255,255,.15);
  text-align: center;
}
.connect-notify p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.notify-form { display: flex; gap: 0; }
.notify-form input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  font-family: inherit;
}
.notify-form input::placeholder { color: rgba(255,255,255,.3); }
.notify-form button {
  padding: 11px 16px;
  background: var(--orange);
  border: none;
  border-radius: 0 3px 3px 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

/* ── POLICY PAGES ─────────────────────────────────────────── */
.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}
.policy-body h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}
.policy-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.policy-body p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.policy-body ul { margin: 0 0 16px 20px; }
.policy-body li { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.policy-body a { color: var(--orange); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.policy-meta {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--orange);
}

@media (max-width: 768px) {
  .connect-grid { grid-template-columns: 1fr; gap: 40px; }
  .connect-card { padding: 28px 20px; }
  .connect-hero { padding: 100px 5% 60px; min-height: auto; }
  .notify-form { flex-direction: column; gap: 10px; }
  .notify-form input { border-right: 1px solid rgba(255,255,255,.15); border-radius: 3px; }
  .notify-form button { border-radius: 3px; width: 100%; padding: 12px; }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  letter-spacing: .01em;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,90,26,.3); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* ── HERO (HOME) ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/472861_43e2710a7dfd471986451f6372a2fe85~mv2.png');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,15,30,.9) 0%, rgba(10,31,61,.7) 60%, rgba(22,48,96,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224,90,26,.4);
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  margin-top: auto;
  display: flex;
  gap: 56px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── PAGE HERO (INNER PAGES) ──────────────────────────────── */
.page-hero {
  padding: 148px 6% 80px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  opacity: .85;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  max-width: 580px;
  line-height: 1.75;
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
section { padding: 96px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--navy);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}
.accent-line {
  width: 44px; height: 3px;
  background: var(--orange);
  margin-bottom: 20px;
}

/* ── APPROACH ─────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-image { position: relative; }
.approach-image img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.approach-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--orange);
  color: var(--white);
  padding: 28px 36px;
  border-radius: 2px;
  text-align: center;
}
.approach-badge .num { font-size: 52px; font-weight: 800; line-height: 1; }
.approach-badge .txt { font-size: 12px; font-weight: 500; opacity: .9; letter-spacing: .05em; margin-top: 4px; }

/* ── FOCUS CARDS ──────────────────────────────────────────── */
.focus-section { background: var(--off-white); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.focus-card { background: var(--white); padding: 48px 40px; transition: background .2s; }
.focus-card:hover { background: var(--off-white); }
.focus-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.focus-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.focus-card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-card {
  border-top: 2px solid rgba(255,255,255,.1);
  padding: 40px 0 40px;
  padding-right: 40px;
}
.why-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,.08); padding-right: 40px; }
.why-card:not(:first-child) { padding-left: 40px; }
.why-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.why-card h3 { font-size: 18px; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 28px;
  font-size: 88px;
  color: var(--orange);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.service-card { background: var(--white); padding: 48px 40px; transition: background .2s; }
.service-card:hover { background: var(--off-white); }
.service-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: gap .2s;
}
.learn-more:hover { gap: 10px; }

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.industry-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.industry-card:hover img { transform: scale(1.04); }
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,30,.92) 0%, rgba(10,31,61,.3) 55%, transparent 100%);
}
.industry-card-content { position: relative; z-index: 1; padding: 36px; }
.industry-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.industry-card h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.industry-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ── TEAM ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card img {
  width: 100%; height: 280px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 18px;
  filter: grayscale(15%);
  transition: filter .3s;
}
.team-card:hover img { filter: grayscale(0%); }
.team-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── LOCATIONS ────────────────────────────────────────────── */
.locations-section { background: var(--off-white); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.locations-content { display: flex; flex-direction: column; gap: 40px; }
.loc-group h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: 14px;
}
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}
.loc-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.loc-list .hq { font-weight: 700; color: var(--navy); }
.locations-map img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* ── CONNECTING SECTION ───────────────────────────────────── */
.connecting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.connecting-card { border-top: 2px solid var(--gray-200); padding-top: 28px; }
.connecting-card .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 12px;
}
.connecting-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.connecting-card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* ── JOBS ─────────────────────────────────────────────────── */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.job-card {
  background: var(--white);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: background .2s;
}
.job-card:hover { background: var(--off-white); }
.job-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.job-meta { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.job-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(224,90,26,.08);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  border: 1px solid rgba(224,90,26,.2);
}
.job-desc { font-size: 15px; color: var(--text-light); line-height: 1.65; }
.job-comp { font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 8px; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 16px;
}
.contact-detail-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-detail-text span { font-size: 15px; color: var(--text-light); }
.contact-detail-text a { text-decoration: none; color: var(--orange); }
.contact-detail-text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  padding: 52px;
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.contact-form .sub { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 3px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── QUOTE BAND ───────────────────────────────────────────── */
.quote-band {
  background: var(--off-white);
  padding: 80px 6%;
  text-align: center;
  border-top: 3px solid var(--orange);
}
.quote-band blockquote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.55;
}
.quote-band cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-style: normal;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band { background: var(--orange); padding: 80px 6%; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 36px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 6% 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer-brand-name { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.footer-brand-sub { font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: .16em; text-transform: uppercase; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .04em; margin-top: 8px; font-style: italic; }
.footer-brand p {
  font-size: 14.5px;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14.5px;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-form { display: flex; gap: 0; margin-top: 20px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--orange);
  border: none;
  border-radius: 0 3px 3px 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.newsletter-form button:hover { background: var(--orange-dark); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .focus-grid, .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ─────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 999;
  padding: 24px 6% 32px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all .25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  transition: color .2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover,
.mobile-menu ul li a.active { color: var(--navy); }
.mobile-menu .mob-connect {
  color: var(--orange) !important;
  font-weight: 600 !important;
}
.mobile-menu .mob-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.mobile-menu .mob-cta:hover { background: var(--orange) !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 5%; }
  .hero, .page-hero { padding-left: 5%; padding-right: 5%; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .approach-grid, .locations-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-badge { right: 0; }
  .focus-grid, .services-grid, .why-grid, .testimonials-grid,
  .industries-grid, .team-grid, .connecting-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
  .job-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 28px 24px; }
  .nav-logo-text .brand { font-size: 14px; }
  .cta-band { padding: 64px 5%; }
  .cta-band h2 { font-size: clamp(26px, 6vw, 40px); }
}
