/* ============================================================
   NexHire – Global Stylesheet
   Brand: #182B68 navy | #98C75B lime | #1F4D84 blue | #46906E green-dark
   Typeface: Poppins 300/400/600/800
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --green:       #98C75B;
  --green-dark:  #46906E;
  --navy:        #182B68;
  --navy-deep:   #0e1840;
  --blue:        #1F4D84;
  --blue-dark:   #163a66;
  --white:       #ffffff;
  --off-white:   #f0f3fb;
  --slate:       #f0f3fb;
  --gray-50:     #f8f9fc;
  --gray-100:    #e4e9f4;
  --gray-300:    #bdc8dc;
  --gray-500:    #7a8ba6;
  --gray-700:    #3d4d6b;
  --navy-tint:   rgba(24,43,104,.06);
  --text:        #182B68;
  --body:        #3d4d6b;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 2px 16px rgba(24,43,104,.08);
  --shadow-lg:   0 8px 40px rgba(24,43,104,.14);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --nav-height:  72px;
}

/* ── Icon colour tokens ─────────────────────────────────── */
:root {
  --ic-green: #46906E;
  --ic-blue:  #1F4D84;
  --ic-navy:  #182B68;
  --ic-white: #ffffff;
  --ic-muted: #7a8ba6;
}
.ic-green { color: var(--ic-green); }
.ic-blue  { color: var(--ic-blue);  }
.ic-navy  { color: var(--ic-navy);  }
.ic-white { color: var(--ic-white); }
.ic-muted { color: var(--ic-muted); }

.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { display: block; }
.stat-icon .icon svg          { width: 28px; height: 28px; }
.why-icon .icon svg           { width: 22px; height: 22px; }
.feature-icon .icon svg       { width: 26px; height: 26px; }
.value-icon .icon svg         { width: 28px; height: 28px; }
.disc-icon .icon svg          { width: 32px; height: 32px; }
.contact-item-icon .icon svg  { width: 20px; height: 20px; }
.eoi-card-icon .icon svg      { width: 40px; height: 40px; }
.social-link .icon svg        { width: 18px; height: 18px; }

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--body);
  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: 800; color: var(--navy); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--body); line-height: 1.8; font-weight: 300; }

/* ── Utilities ──────────────────────────────────────────── */
.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 labels — left green rule on left-aligned, centred otherwise */
.section-label {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}
.text-center .section-label {
  border-left: none;
  padding-left: 0;
  justify-content: center;
}
/* Dark-bg sections */
.cta-banner .section-label,
.page-hero .section-label,
.about-hero .section-label {
  border-left-color: var(--green);
  color: var(--green);
}

.section-title    { margin-bottom: 16px; }
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 52px;
  color: var(--gray-500);
  font-size: 1.02rem;
  font-weight: 300;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  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 6px 20px rgba(152,199,91,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,43,104,.3);
}
.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 6px 20px rgba(31,77,132,.3);
}
.btn-login {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-100);
}
.btn-login:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ── 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 1px 20px rgba(24,43,104,.08);
}
#navbar .container {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo { display: flex; align-items: center; height: 40px; }
.nav-logo img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 15px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 15px; right: 15px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}
.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 { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav-cta { }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 4px; transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; 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-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--navy);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  padding: 11px 14px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  border-radius: 4px;
  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 — split layout ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-panel {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-panel--text {
  background: var(--navy);
  justify-content: flex-end;
}
.hero-panel-inner {
  width: 100%;
  max-width: 560px;
  padding: 80px 48px 80px 24px;
}
.hero-panel--diagram {
  background: var(--slate);
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-panel--diagram::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 45%, rgba(152,199,91,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Legacy hero fallback (used if old structure kept) */
.hero-content { position: relative; z-index: 2; max-width: 640px; }
#hero-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; opacity: .45;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(152,199,91,.15);
  border: 1px solid rgba(152,199,91,.3);
  color: var(--green);
  padding: 5px 13px;
  border-radius: var(--radius);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--green); }
.hero p {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  margin-bottom: 38px;
  font-weight: 300;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Stats strip ────────────────────────────────────────── */
.stats-strip { background: var(--white); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-item {
  padding: 32px 20px;
  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(--slate); }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .8rem; color: var(--gray-500); font-weight: 600; }
.stat-icon  { margin-bottom: 10px; color: var(--green-dark); }

/* ── Feature Cards ──────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon.green { background: rgba(152,199,91,.12); color: var(--ic-green); }
.feature-icon.blue  { background: rgba(31,77,132,.12);  color: var(--ic-blue);  }
.feature-icon.navy  { background: rgba(24,43,104,.1);   color: var(--ic-navy);  }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: .92rem; }

/* ── Services Grid ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-header {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; 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-deep)); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p  { font-size: .9rem; margin-bottom: 18px; }
.service-tag {
  display: inline-block; padding: 3px 10px;
  border-radius: var(--radius); font-size: .75rem; font-weight: 700; margin: 2px 2px 2px 0;
}
.tag-green { background: rgba(152,199,91,.12); color: var(--green-dark); }
.tag-blue  { background: rgba(31,77,132,.12);  color: var(--blue-dark); }
.tag-navy  { background: rgba(24,43,104,.1);   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: 28px; }
.why-item   { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(31,77,132,.1);
  color: var(--blue);
}
.why-item h4 { margin-bottom: 4px; }
.why-item p  { font-size: .9rem; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(152,199,91,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .section-label {
  color: var(--green);
  border-left: none;
  padding-left: 0;
  justify-content: center;
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p  {
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  position: relative;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Updates ────────────────────────────────────────────── */
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.update-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.update-card-img { height: 180px; overflow: hidden; }
.update-card-img svg { width: 100%; height: 100%; }
.update-card-body { padding: 22px; }
.update-date { font-size: .78rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.update-card-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.update-card-body p  { font-size: .88rem; }
.update-category {
  display: inline-block; padding: 3px 10px;
  border-radius: var(--radius); font-size: .73rem; font-weight: 700; margin-bottom: 8px;
}

/* ── About / Page heroes ────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero h1, .page-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.7); max-width: 560px; }

.page-hero {
  background: var(--navy);
  padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
/* Subtle accent for page heros */
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(31,77,132,.4) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.7); }

/* ── Values Grid ────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  text-align: center; padding: 36px 20px;
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--green); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.vi-green { background: rgba(152,199,91,.12); color: var(--ic-green); }
.vi-blue  { background: rgba(31,77,132,.12);  color: var(--ic-blue);  }
.vi-navy  { background: rgba(24,43,104,.1);   color: var(--ic-navy);  }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  text-align: center; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  background: var(--white); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.ta-green { background: linear-gradient(135deg, rgba(152,199,91,.18), rgba(152,199,91,.04)); }
.ta-blue  { background: linear-gradient(135deg, rgba(31,77,132,.18), rgba(31,77,132,.04)); }
.ta-navy  { background: linear-gradient(135deg, rgba(24,43,104,.12), rgba(24,43,104,.02)); }
.team-info { padding: 18px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--blue); font-weight: 600; }

/* ── Forms ──────────────────────────────────────────────── */
.form-section { background: var(--slate); }
.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: var(--navy);
  padding: 36px 48px;
  color: var(--white);
}
.form-header h2 { color: var(--white); margin-bottom: 8px; }
.form-header p  { color: rgba(255,255,255,.65); }
.form-body { padding: 40px 48px; }

.form-tabs { display: flex; border-bottom: 2px solid var(--gray-100); margin-bottom: 32px; }
.form-tab {
  padding: 10px 22px; font-weight: 700; font-size: .9rem;
  color: var(--gray-500); cursor: pointer;
  border-bottom: 2px 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: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,77,132,.1);
}
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: 18px; }
.form-check input[type="checkbox"] {
  width: 17px; height: 17px; cursor: pointer;
  accent-color: var(--green); flex-shrink: 0; margin-top: 2px;
}
.form-check label { font-size: .88rem; color: var(--gray-500); cursor: pointer; }
.form-check a { color: var(--blue); text-decoration: underline; }

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

.social-links { display: flex; gap: 8px; margin-top: 28px; }
.social-link {
  width: 38px; height: 38px; border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--green); transform: translateY(-2px); }

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

/* ── Map ────────────────────────────────────────────────── */
.map-placeholder {
  border-radius: var(--radius-lg); overflow: hidden; height: 300px;
  background: var(--slate); border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; margin-top: 40px; color: var(--gray-500);
}
.map-placeholder svg { opacity: .35; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open  { border-color: var(--blue); }
.faq-question {
  padding: 17px 22px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; color: var(--navy); gap: 14px; font-size: .95rem;
}
.faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); color: var(--blue); font-size: 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 22px; color: var(--gray-500); font-size: .92rem; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.48); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.48); 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: 20px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 33px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--blue); color: var(--white); }
.process-step h4 { margin-bottom: 6px; }
.process-step p  { font-size: .86rem; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: var(--radius);
  font-size: .75rem; font-weight: 700;
}
.badge-green { background: rgba(152,199,91,.12); color: var(--green-dark); }
.badge-blue  { background: rgba(31,77,132,.12);  color: var(--blue-dark); }
.badge-navy  { background: rgba(24,43,104,.1);   color: var(--navy); }
.badge-new   { background: var(--green); color: var(--white); }

/* ── Divider ────────────────────────────────────────────── */
.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: 23px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}
.timeline-item { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 36px; }
.timeline-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.timeline-content {
  background: var(--white); border-radius: var(--radius);
  padding: 18px 22px; border: 1px solid var(--gray-100); flex: 1;
}
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--blue); letter-spacing: .08em; margin-bottom: 5px; }
.timeline-content h4 { margin-bottom: 5px; }
.timeline-content p  { font-size: .88rem; }

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

/* ── Alert ──────────────────────────────────────────────── */
.alert {
  padding: 13px 18px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(152,199,91,.1); color: var(--green-dark); border: 1px solid rgba(152,199,91,.25); }
.alert-hidden  { display: none; }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s 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-deep);
  color: rgba(255,255,255,.6);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-wrap {
  display: inline-block; background: var(--white);
  border-radius: var(--radius); padding: 7px 12px; margin-bottom: 16px;
}
.footer-logo-wrap img { height: 32px; width: auto; display: block; }
.footer-brand p { font-size: .9rem; max-width: 260px; line-height: 1.7; }
.footer-col h5 {
  color: var(--white); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.52); 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: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.42); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* ── Scroll-to-top ──────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; border: none;
  transition: var(--transition); z-index: 900;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  box-shadow: var(--shadow);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scroll-top:hover   { background: var(--green); transform: translateY(-2px); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero         { flex-direction: column; min-height: auto; }
  .hero-panel--text { justify-content: center; }
  .hero-panel-inner { max-width: 100%; padding: 72px 24px 52px; }
  .hero-panel--diagram { min-height: 360px; width: 100%; }
  .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: 32px; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid     { grid-template-columns: 1fr; gap: 36px; }
  .why-visual   { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta, .nav-actions { 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: 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .form-row     { grid-template-columns: 1fr; }
  .form-body    { padding: 24px 20px; }
  .form-header  { padding: 24px 20px; }
  .newsletter-form { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

@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; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
