/* ===================================================
   LYNC RECRUIT — MAIN STYLESHEET
   Brand: Navy #0D2353 | Teal #1DB8C2 | Green #12C48A
   =================================================== */

:root {
  --navy:       #0D2353;
  --navy-dark:  #081740;
  --navy-light: #1a3a6b;
  --teal:       #1DB8C2;
  --teal-dark:  #158f98;
  --green:      #12C48A;
  --gradient:   linear-gradient(135deg, #1DB8C2 0%, #12C48A 100%);
  --gradient-r: linear-gradient(135deg, #12C48A 0%, #1DB8C2 100%);
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --light-gray: #eef1f7;
  --gray:       #8492a6;
  --dark-text:  #1a2840;
  --body-text:  #4a5568;
  --border:     #e2e8f0;
  --shadow-sm:  0 2px 8px rgba(13,35,83,0.08);
  --shadow:     0 8px 32px rgba(13,35,83,0.12);
  --shadow-lg:  0 20px 60px rgba(13,35,83,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-w:      1200px;
  --transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark-text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--dark-text); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { font-size: 0.95rem; color: var(--body-text); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ===================================================
   LAYOUT
   =================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 580px; margin: 0 auto; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 20px rgba(29,184,194,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(29,184,194,0.45); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-white-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ===================================================
   TOP BAR
   =================================================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--teal); }
.topbar__icon { margin-right: 5px; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__logo img { height: 48px; width: auto; }

.navbar__nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-text);
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(29,184,194,0.07); }
.nav-link .arrow { font-size: 0.65rem; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: var(--body-text);
  transition: var(--transition);
}
.dropdown a:hover { background: rgba(29,184,194,0.06); color: var(--teal); padding-left: 26px; }

.navbar__actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 600px; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); background: rgba(29,184,194,0.05); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,184,194,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18,196,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,184,194,0.15);
  border: 1px solid rgba(29,184,194,0.3);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__title { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.hero__title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero__sub { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.hero-stat { border-left: 3px solid var(--teal); padding-left: 16px; }
.hero-stat__num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat__label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* HERO VISUAL */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero-search-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 440px;
}
.hero-search-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
.search-form { display: flex; flex-direction: column; gap: 14px; }
.search-input-group { position: relative; }
.search-input-group input, .search-input-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 13px 16px 13px 44px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-input-group input::placeholder { color: rgba(255,255,255,0.4); }
.search-input-group input:focus,
.search-input-group select:focus { border-color: var(--teal); }
.search-input-group select option { background: var(--navy); }
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  pointer-events: none;
}
.popular-tags { margin-top: 12px; }
.popular-tags p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(29,184,194,0.12);
  border: 1px solid rgba(29,184,194,0.25);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.tag:hover { background: rgba(29,184,194,0.25); color: var(--white); }

/* ===================================================
   JOB SEARCH BAR (homepage)
   =================================================== */
.job-bar {
  background: var(--white);
  padding: 28px 0;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--teal);
}
.job-bar__form {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
}
.job-bar__input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  outline: none;
}
.job-bar__input::placeholder { color: var(--gray); }
.job-bar__sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.job-bar__select {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--body-text);
  outline: none;
  min-width: 140px;
}

/* ===================================================
   SERVICES CARDS
   =================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(29,184,194,0.1), rgba(18,196,138,0.1));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p { font-size: 0.875rem; margin-bottom: 20px; }
.service-link { color: var(--teal); font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===================================================
   STATS BAND
   =================================================== */
.stats-band {
  background: var(--gradient);
  padding: 60px 0;
}
.stats-band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item__num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--white); }
.stat-item__label { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ===================================================
   JOB CARDS
   =================================================== */
.jobs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.job-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.job-card__logo {
  width: 48px; height: 48px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.job-card__badge {
  background: rgba(18,196,138,0.1);
  color: var(--green);
  border: 1px solid rgba(18,196,138,0.25);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.job-card h3 { font-size: 1rem; margin: 0; }
.job-card__company { font-size: 0.85rem; color: var(--gray); }
.job-card__meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-card__meta span { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.job-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.job-card__salary { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--navy); }

/* ===================================================
   INDUSTRY GRID
   =================================================== */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.industry-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.industry-card:hover h4, .industry-card:hover p { color: var(--white); }
.industry-card:hover .industry-icon { background: rgba(255,255,255,0.1); }
.industry-icon { font-size: 2rem; width: 64px; height: 64px; background: var(--light-gray); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: var(--transition); }
.industry-card h4 { font-size: 0.95rem; margin-bottom: 6px; transition: color 0.3s; }
.industry-card p { font-size: 0.78rem; color: var(--gray); transition: color 0.3s; }

/* ===================================================
   PROCESS STEPS
   =================================================== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(29,184,194,0.35);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal); transform: translateY(-4px); }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 16px; font-size: 1rem; }
.testi-card blockquote { font-size: 0.9rem; color: var(--body-text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-author__name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }
.testi-author__role { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ===================================================
   TEAM CARDS
   =================================================== */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-info { padding: 24px 20px; }
.team-info h3 { font-size: 1rem; margin-bottom: 4px; }
.team-info p { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-social { display: flex; justify-content: center; gap: 12px; }
.team-social a { color: var(--gray); font-size: 0.85rem; transition: color 0.2s; }
.team-social a:hover { color: var(--teal); }

/* ===================================================
   BLOG CARDS
   =================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 28px; }
.blog-tag { display: inline-block; background: rgba(29,184,194,0.1); color: var(--teal); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin-bottom: 12px; }
.blog-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 0.85rem; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--gray); }

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(29,184,194,0.12) 0%, transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   CONTACT FORM
   =================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-detail__icon {
  width: 48px; height: 48px;
  background: rgba(29,184,194,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail p { font-size: 0.85rem; }
.contact-detail a:hover { color: var(--teal); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--dark-text); }
.form-input, .form-select, .form-textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 20px 0 28px; max-width: 280px; }
.footer__logo img { height: 44px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer__col h5 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: var(--transition); }
.footer__col a:hover { color: var(--teal); padding-left: 4px; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__legal a:hover { color: var(--teal); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,184,194,0.1), transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-float__num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); }
.about-badge-float__text { font-size: 0.78rem; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 8px; }

/* ===================================================
   JOBS PAGE
   =================================================== */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
}
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 14px; color: var(--dark-text); }
.filter-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-check input { accent-color: var(--teal); width: 16px; height: 16px; }
.filter-check label { font-size: 0.85rem; color: var(--body-text); cursor: pointer; }
.filter-range input[type=range] { width: 100%; accent-color: var(--teal); }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
}
.job-list-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.jlc__logo { width: 56px; height: 56px; background: var(--light-gray); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.jlc__info h3 { font-size: 1rem; margin-bottom: 4px; }
.jlc__company { font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; }
.jlc__meta { display: flex; gap: 14px; flex-wrap: wrap; }
.jlc__meta span { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.jlc__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.jlc__salary { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.jlc__tag { background: rgba(18,196,138,0.1); color: var(--green); border: 1px solid rgba(18,196,138,0.25); padding: 3px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===================================================
   UTILITIES
   =================================================== */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-main { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .section { padding: 64px 0; }
  .navbar__nav, .navbar__actions { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
  .jobs-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .hero__actions { flex-direction: column; }
  .job-bar__form { flex-direction: column; border-radius: var(--radius); padding: 16px; }
  .job-bar__sep { display: none; }
  .job-bar__input, .job-bar__select { width: 100%; }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .job-list-card { grid-template-columns: auto 1fr; }
  .jlc__right { grid-column: 1/-1; flex-direction: row; align-items: center; justify-content: space-between; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stat__num { font-size: 1.4rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
}
