/* ============================================================
   NexHire – Global Stylesheet
   Colors: Green #6cbf4b | Navy #263964 | Light Blue #07b3df
   Font: Satoshi (Fontshare)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green:      #6cbf4b;
  --navy:       #263964;
  --blue:       #07b3df;
  --navy-dark:  #1a2845;
  --green-dark: #52a534;
  --blue-dark:  #0591b5;
  --white:      #ffffff;
  --off-white:  #f4f7fb;
  --gray-100:   #e8edf5;
  --gray-300:   #c2ccd8;
  --gray-600:   #637088;
  --gray-900:   #1c2230;
  --text:       #263964;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(38,57,100,.10);
  --shadow-lg:  0 12px 40px rgba(38,57,100,.18);
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
  --nav-height: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Satoshi', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); line-height: 1.8; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,191,75,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38,57,100,.35);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,179,223,.35);
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 2px 24px rgba(38,57,100,.10);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-links a:hover::after, .nav-links a.active::after {
  width: calc(100% - 32px);
}
.nav-cta { margin-left: 16px; }

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

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  padding: 12px 16px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4d8c 60%, #0e6fa0 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,191,75,.18);
  border: 1px solid rgba(108,191,75,.35);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero p {
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero SVG canvas */
#hero-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: .55;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 3;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-48px);
  background: var(--white);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--off-white); }
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: var(--gray-600); font-weight: 600; }
.stat-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.feature-icon.green { background: rgba(108,191,75,.12); }
.feature-icon.blue  { background: rgba(7,179,223,.12); }
.feature-icon.navy  { background: rgba(38,57,100,.10); }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p  { font-size: .94rem; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.service-card-header.bg-green  { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.service-card-header.bg-blue   { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.service-card-header.bg-navy   { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p  { font-size: .92rem; margin-bottom: 20px; }
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin: 3px 3px 3px 0;
}
.tag-green { background: rgba(108,191,75,.12); color: var(--green-dark); }
.tag-blue  { background: rgba(7,179,223,.12);  color: var(--blue-dark); }
.tag-navy  { background: rgba(38,57,100,.10);  color: var(--navy); }

/* ---------- Why NexHire ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(7,179,223,.12);
  color: var(--blue);
}
.why-item h4 { margin-bottom: 4px; }
.why-item p  { font-size: .92rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 60%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner .section-label { color: var(--green); }
.cta-banner h2 { color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Updates / Blog ---------- */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.update-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.update-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.update-card-img svg { width: 100%; height: 100%; }
.update-card-body { padding: 24px; }
.update-date { font-size: .8rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.update-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.update-card-body p  { font-size: .9rem; }
.update-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---------- About ---------- */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4285 50%, var(--blue-dark) 100%);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.about-hero h1, .page-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.78); max-width: 560px; }

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4285 50%, var(--blue-dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero p { color: rgba(255,255,255,.78); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.vi-green { background: rgba(108,191,75,.12); }
.vi-blue  { background: rgba(7,179,223,.12); }
.vi-navy  { background: rgba(38,57,100,.10); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.ta-green  { background: linear-gradient(135deg, rgba(108,191,75,.2), rgba(108,191,75,.05)); }
.ta-blue   { background: linear-gradient(135deg, rgba(7,179,223,.2), rgba(7,179,223,.05)); }
.ta-navy   { background: linear-gradient(135deg, rgba(38,57,100,.15), rgba(38,57,100,.03)); }
.team-info { padding: 20px; }
.team-info h4 { margin-bottom: 4px; }
.team-role   { font-size: .85rem; color: var(--blue); font-weight: 600; }

/* ---------- Form Styles ---------- */
.form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.form-header {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 40px 48px;
  color: var(--white);
}
.form-header h2 { color: var(--white); margin-bottom: 8px; }
.form-header p  { color: rgba(255,255,255,.75); }
.form-body { padding: 48px; }

.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 36px;
}
.form-tab {
  padding: 12px 24px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.form-tab.active {
  color: var(--navy);
  border-bottom-color: var(--green);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7,179,223,.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  cursor: pointer;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { font-size: .9rem; color: var(--gray-600); cursor: pointer; }
.form-check a { color: var(--blue); text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text { font-size: .9rem; }
.contact-item-text strong { display: block; color: var(--white); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text span { color: rgba(255,255,255,.7); }

.social-links { display: flex; gap: 10px; margin-top: 32px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--green); transform: translateY(-3px); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.contact-form-card h3 { margin-bottom: 24px; }

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  color: var(--gray-600);
}
.map-placeholder svg { opacity: .4; }

/* ---------- Accordion / FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--blue);
  font-size: 1.1rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--gray-600);
  font-size: .94rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(7,179,223,.2);
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: .88rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-green { background: rgba(108,191,75,.12); color: var(--green-dark); }
.badge-blue  { background: rgba(7,179,223,.12);  color: var(--blue-dark); }
.badge-navy  { background: rgba(38,57,100,.10);  color: var(--navy); }
.badge-new   { background: var(--green); color: var(--white); }

/* ---------- Divider Wave ---------- */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}
.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(7,179,223,.2);
}
.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  flex: 1;
}
.timeline-year {
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p  { font-size: .9rem; }

/* ---------- Newsletter ---------- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--green); background: rgba(255,255,255,.15); }

/* ---------- Alert / Success ---------- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .93rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(108,191,75,.1); color: var(--green-dark); border: 1px solid rgba(108,191,75,.25); }
.alert-hidden  { display: none; }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
}
.footer-logo-wrap img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: .92rem; max-width: 280px; line-height: 1.75; }
.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* ---------- Scroll-to-top ---------- */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108,191,75,.4);
  transition: var(--transition);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scroll-top:hover { background: var(--green-dark); transform: translateY(-4px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid, .services-grid, .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); transform: translateY(-24px); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid, .services-grid, .updates-grid, .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); transform: translateY(-16px); }
  .hero { min-height: 90vh; }
  .form-row { grid-template-columns: 1fr; }
  .form-body { padding: 28px 24px; }
  .form-header { padding: 28px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
