@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Palette sampled directly from the Genetic Callnet logo. */
  --ink: #2f3032;
  --ink-2: #4d4e51;
  --ink-3: #66676b;
  --yellow: #d5c74d;
  --yellow-2: #e1d66f;
  --yellow-soft: #f7f4dc;
  --olive: #b1aa5c;
  --olive-deep: #77713b;
  --olive-soft: #efeddf;
  --logo-gray: #7c7d81;
  --logo-gray-soft: #ededee;
  --paper: #ffffff;
  --canvas: #f7f6f0;
  --muted: #6f7074;
  --line: #e2e0d5;
  --font-main: 'DM Sans', 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 16px 50px rgba(17, 20, 24, .09);
  --shadow-lg: 0 26px 80px rgba(17, 20, 24, .16);
  --ease: .28s cubic-bezier(.2,.8,.2,1);

  /* Legacy aliases used by the page markup. */
  --navy: var(--ink);
  --navy-mid: var(--ink-2);
  --navy-light: var(--ink-3);
  --gold: var(--yellow);
  --gold-light: var(--yellow-2);
  --gold-dim: var(--olive-deep);
  --cream: var(--canvas);
  --white: var(--paper);
  --text: var(--ink);
  --text-muted: var(--muted);
  --bg-alt: var(--canvas);
  --border: var(--line);
  --transition: var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6.8vw, 6.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 6.5vw, 6rem) 0; }
.section:nth-of-type(even) { position: relative; }
.section-sub { max-width: 650px; margin: .85rem 0 2.8rem; font-size: 1.08rem; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
  color: var(--olive-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tag::before {
  width: 26px;
  height: 2px;
  content: '';
  background: var(--yellow);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: var(--ink); background: var(--yellow); box-shadow: 0 12px 28px rgba(177,170,92,.25); }
.btn-primary:hover { background: var(--yellow-2); box-shadow: 0 16px 38px rgba(177,170,92,.35); }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--paper); background: var(--ink); }
.btn-white { color: var(--ink); background: var(--paper); }
.btn-white:hover { background: var(--yellow); }
.btn-full { width: 100%; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.4rem;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  transition: gap var(--ease);
}
.link-arrow:hover { gap: 1rem; }
.center-link { margin-top: 3rem; text-align: center; }

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(17,20,24,.08);
  background: #fff;
  backdrop-filter: none;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled { background: #fff; box-shadow: 0 12px 40px rgba(17,20,24,.09); }
.nav-inner {
  display: flex;
  width: min(1220px, calc(100% - 40px));
  height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}
.logo-img { width: auto; height: 48px; object-fit: contain; transition: opacity var(--ease); }
.logo-img:hover { opacity: .84; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a, .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .6rem .9rem;
  border: 0;
  border-radius: 999px;
  color: rgba(17,20,24,.66);
  background: transparent;
  cursor: pointer;
  font-size: .89rem;
  font-weight: 600;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover, .nav-links a.active, .dropdown-toggle.active, .nav-item.open .dropdown-toggle {
  color: var(--ink);
  background: rgba(17,20,24,.07);
}
.nav-links .nav-cta {
  margin-left: .4rem;
  padding-inline: 1.15rem;
  color: var(--ink);
  background: var(--yellow);
}
.nav-links .nav-cta:hover, .nav-links .nav-cta.active { color: var(--ink); background: var(--yellow-2); }
.nav-item { position: relative; list-style: none; }
.dropdown-toggle::after { display: none; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 225px;
  padding: .75rem .55rem .55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 50px rgba(17,20,24,.14);
}
.nav-item.open .dropdown-menu { display: block; animation: fadeIn .2s ease; }
.dropdown-menu a { display: flex; width: 100%; border-radius: 10px; }
.dropdown-menu a.active, .dropdown-menu a:hover { color: var(--olive-deep) !important; background: var(--yellow-soft) !important; }
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(17,20,24,.14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hamburger span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Heroes */
.hero {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
  padding: 8.2rem 0 3.2rem;
  background:
    url('WORLDMAPGOLD.png') center center / cover no-repeat;
}
.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background:
    radial-gradient(ellipse at center, rgba(8,10,16,.58) 0%, rgba(8,10,16,.46) 34%, rgba(8,10,16,.2) 60%, rgba(8,10,16,.08) 100%),
    linear-gradient(180deg, rgba(5,7,12,.25), rgba(5,7,12,.44));
  pointer-events: none;
}
.hero::after {
  position: absolute;
  inset: auto -10vw -25vw auto;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(177,170,92,.28);
  border-radius: 50%;
  content: '';
}
.hero-content { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.hero--centered { text-align: center; }
.hero-content--centered { display: flex; flex-direction: column; align-items: center; }
.hero--centered .hero-eyebrow, .hero--centered .hero-headline, .hero--centered .hero-sub { text-align: center; }
.hero-headline {
  max-width: 1080px;
  margin-bottom: 1rem;
  color: #fffdf2;
  font-size: clamp(2.25rem, 3.85vw, 3.65rem);
  line-height: .98;
  text-shadow: 0 8px 34px rgba(0,0,0,.44);
}
.hero-headline em { color: #fffdf2; font-style: normal; }
.page-hero h1 em { color: var(--olive); font-style: normal; }
.hero-headline .ai-accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #fff38a 0%, #d5c74d 42%, #f5b867 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-eyebrow {
  margin-bottom: .75rem;
  color: #f0df70;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-sub { max-width: 620px; margin: 0 auto 1.25rem !important; color: var(--muted); font-size: 1rem; }
.hero .hero-sub {
  max-width: 760px;
  padding: .55rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(8,10,16,.42);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.hero-search-wrap { width: 100%; max-width: 650px; margin: 1.2rem auto 0; }
.hero-search-box {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .55rem .55rem 1.25rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
}
.hero-search-icon { color: var(--muted); font-size: 0; }
.hero-search-icon::after { content: '⌕'; font-size: 1.5rem; }
.hero-search-input { flex: 1; min-width: 0; padding: .7rem 0; border: 0; outline: 0; color: var(--ink); background: transparent; }
.hero-search-btn { padding: .88rem 2rem; border: 0; border-radius: 11px; color: var(--ink); background: var(--yellow); cursor: pointer; font-weight: 800; }
.hero-search-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .8rem;
  padding: .35rem .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(8,10,16,.36);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6.35rem 0 2.15rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(213,199,77,.28), transparent 24%),
    linear-gradient(135deg, #fffef8 0%, var(--olive-soft) 100%);
}
.page-hero::before, .page-hero::after {
  position: absolute;
  border: 1px solid rgba(177,170,92,.25);
  border-radius: 50%;
  content: '';
}
.page-hero::before { width: 300px; height: 300px; top: -130px; right: 5vw; }
.page-hero::after { width: 160px; height: 160px; right: 24vw; bottom: -95px; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 55%, rgba(255,255,255,.55)); }
.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-hero h1 {
  max-width: 850px;
  margin-right: auto;
  margin-left: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.35vw, 3.05rem);
  text-align: left;
}
.page-hero .hero-eyebrow {
  margin-bottom: .45rem;
  font-size: .68rem;
}
.page-hero .hero-eyebrow,
.page-hero .hero-sub {
  text-align: left;
}
.page-hero .hero-sub {
  margin: .6rem 0 0 !important;
  font-size: .92rem;
}

/* Careers uses a deliberately more compact banner than other inner pages. */
.careers-page-hero {
  padding-top: 5.4rem;
  padding-bottom: 1.85rem;
}
.careers-page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}
.careers-page-hero .hero-eyebrow { margin-bottom: .55rem; }
.careers-page-hero .hero-sub {
  max-width: 620px !important;
  margin-top: .65rem !important;
  font-size: .96rem;
}
.careers-openings-section { padding-top: 2.75rem; }

.stats-marquee-wrap { overflow: hidden; border-block: 1px solid rgba(177,170,92,.45); background: var(--yellow-soft); }
.stats-marquee-track { display: flex; width: max-content; align-items: center; padding: 1.65rem 0; animation: marqueeScroll 34s linear infinite; }
.marquee-stat { display: flex; align-items: center; gap: .8rem; padding: 0 2.3rem; white-space: nowrap; }
.marquee-num { color: var(--olive-deep); font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; }
.marquee-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  color: rgba(17,20,24,.58);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.marquee-divider { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); opacity: .55; }

/* Shared layouts and cards */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.intro-text h2 { margin-bottom: 1.35rem; }
.intro-text p { font-size: 1.04rem; }
.about-story-copy {
  max-width: 760px;
}
.about-story-section {
  padding-top: clamp(1.65rem, 3vw, 2.6rem);
}
.about-story-copy h2 {
  max-width: 680px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.35rem, 4.5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.about-story-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.72;
}
.about-story-copy p + p {
  margin-top: 1.35rem;
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-card, .step, .number-card, .industry-card, .brand-tile, .about-highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.why-card { min-height: 180px; padding: 1.6rem; background: var(--canvas); }
.why-card:hover, .step:hover, .number-card:hover, .industry-card:hover, .brand-tile:hover {
  transform: translateY(-6px);
  border-color: var(--olive);
  box-shadow: var(--shadow);
}
.why-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0;
}
.why-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  content: '';
  background: currentColor;
  transform: translate(-50%, -50%);
  mask: var(--why-icon-mask) center / contain no-repeat;
  -webkit-mask: var(--why-icon-mask) center / contain no-repeat;
}
.why-card:nth-child(1) .why-icon {
  --why-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='2'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3M10 14l1.1-4h1.8l1.1 4M10.45 12.7h3.1'/%3E%3C/svg%3E");
}
.why-card:nth-child(2) .why-icon {
  --why-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18M7.5 7.8h9M7.5 16.2h9'/%3E%3C/svg%3E");
}
.why-card:nth-child(3) .why-icon {
  --why-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 5 5.6.8-4 3.9.95 5.5L12 15.6l-4.95 2.6.95-5.5-4-3.9 5.6-.8L12 3Z'/%3E%3Cpath d='M12 15.6v5.2'/%3E%3C/svg%3E");
}
.why-card:nth-child(4) .why-icon {
  --why-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5.5A2.5 2.5 0 0 1 10.5 3h3A2.5 2.5 0 0 1 16 5.5V7M3 12h18M12 12v2'/%3E%3C/svg%3E");
}
.why-card p { color: var(--ink); font-weight: 600; line-height: 1.5; }

.services-strip { background: var(--canvas); }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.8rem; }
.service-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform var(--ease), color var(--ease), box-shadow var(--ease);
}
.service-card:nth-child(3n+2) { border-top: 4px solid var(--olive); }
.service-card:nth-child(3n+3) { border-top: 4px solid var(--logo-gray); }
.service-card::after {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  content: '↗';
  font-size: 1.45rem;
  transition: transform var(--ease);
}
.service-card:hover { transform: translateY(-7px); color: var(--ink); background: var(--yellow); box-shadow: var(--shadow); }
.service-card:hover::after { transform: translate(4px,-4px); }
.sc-num { display: block; margin-bottom: 3.6rem; color: var(--olive-deep); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--muted); font-size: .92rem; }
.service-card:hover p { color: rgba(17,20,24,.68); }

.brands { text-align: center; }
.brands-logo-wrap { margin-top: 2.8rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.brands-logo-img { width: 100%; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.mv-card { min-height: 320px; padding: 3rem; border-radius: var(--radius-lg); }
.mission { border: 1px solid rgba(177,170,92,.35); background: var(--olive-soft); }
.vision { background: var(--yellow); }
.mv-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}
.mv-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '✦';
  font-size: 1.3rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.mission .mv-icon, .mission h3 { color: var(--olive-deep); }
.mission p { color: var(--muted); }
.vision p { color: rgba(17,20,24,.68); }
.mv-card h3 { margin-bottom: 1rem; font-size: 1.65rem; }

.about-side { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-highlight { padding: 2.2rem; text-align: left; background: var(--canvas); }
.about-big, .big-num { display: block; color: var(--ink); font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 4.6rem); font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.about-highlight p { margin-top: .75rem; font-size: .9rem; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { position: relative; min-height: 230px; padding: 1.7rem; }
.adv-num { display: block; margin-bottom: 3.2rem; color: var(--olive-deep); font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.step-num {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: 16px;
  color: var(--ink);
  background: var(--yellow-soft);
}
.step-num::after {
  width: 24px;
  height: 24px;
  content: '';
  background: currentColor;
  mask: var(--step-icon) center / contain no-repeat;
  -webkit-mask: var(--step-icon) center / contain no-repeat;
}
.step:nth-of-type(1) .step-num {
  --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}
.step:nth-of-type(3) .step-num {
  --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4M11 8v6M8 11h6'/%3E%3C/svg%3E");
}
.step:nth-of-type(5) .step-num {
  --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='2'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3M10 14l1-4h2l1 4M10.4 12.7h3.2'/%3E%3C/svg%3E");
}
.step:nth-of-type(7) .step-num {
  --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7 9 18l-5-5'/%3E%3Cpath d='M14 7h6v6'/%3E%3C/svg%3E");
}
.step h4 { margin-bottom: .7rem; }
.step p { font-size: .9rem; }
.step-arrow { display: none; }

.services-full-grid, .advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.svc-full-card, .adv-card {
  display: flex;
  gap: 1.35rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.svc-full-card[id] { scroll-margin-top: 110px; }
#why-genetic-callnet { scroll-margin-top: 110px; }
.svc-full-card:hover, .adv-card:hover { transform: translateY(-6px); border-color: var(--olive); box-shadow: var(--shadow); }
.svc-icon-box {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 15px;
  color: var(--ink);
  background: var(--yellow-soft);
  font-size: 0;
}
.svc-full-card:nth-child(3n+2) .svc-icon-box { background: var(--olive-soft); color: var(--olive-deep); }
.svc-full-card:nth-child(3n+3) .svc-icon-box { background: var(--logo-gray-soft); color: var(--logo-gray); }
.svc-icon-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  content: '';
  background: currentColor;
  -webkit-mask-image: var(--svc-icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--svc-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
}
#permanent-recruitment .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M3 21v-2a6 6 0 0 1 6-6 6 6 0 0 1 6 6'/%3E%3Cpath d='m16 11 2 2 4-4'/%3E%3C/svg%3E");
}
#rpo .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 0-15.3-6.4L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3Cpath d='M3 12a9 9 0 0 0 15.3 6.4L21 16'/%3E%3Cpath d='M21 21v-5h-5'/%3E%3C/svg%3E");
}
#contract-staffing .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M19 8v6M16 11h6'/%3E%3C/svg%3E");
}
#executive-search .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 7 4 4 5-7 5 7 4-4-2 11H5L3 7Z'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E");
}
#global-recruitment .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 0 1 0 18M12 3a15 15 0 0 0 0 18'/%3E%3C/svg%3E");
}
#turnkey-recruitment-projects .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1' fill='black'/%3E%3C/svg%3E");
}
#recruitment-research-advisory .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6M10 22h4'/%3E%3Cpath d='M8.5 15.5A7 7 0 1 1 15.5 15.5L14 18h-4l-1.5-2.5Z'/%3E%3Cpath d='M12 6v4M10 10h4'/%3E%3C/svg%3E");
}
#training-development .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5a3 3 0 0 1 3-3h5v18H7a3 3 0 0 0-3 3V5Z'/%3E%3Cpath d='M20 5a3 3 0 0 0-3-3h-5v18h5a3 3 0 0 1 3 3V5Z'/%3E%3C/svg%3E");
}
#corporate-hr-events .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3Cpath d='m12 13 .8 1.7 1.8.2-1.3 1.2.4 1.8-1.7-.9-1.7.9.4-1.8-1.3-1.2 1.8-.2.8-1.7Z'/%3E%3C/svg%3E");
}
#mental-wellness-programs .svc-icon-box {
  --svc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.7l-1.1-1.1a5.5 5.5 0 0 0-7.8 7.8L12 21l8.8-8.6a5.5 5.5 0 0 0 0-7.8Z'/%3E%3Cpath d='M7 12h3l1-2 2 4 1-2h3'/%3E%3C/svg%3E");
}
.svc-content h3, .adv-body h3 { margin-bottom: .7rem; }
.svc-content p, .adv-body p { font-size: .92rem; }
.adv-card--wide { grid-column: 1 / -1; }
.adv-num { margin-bottom: 0; padding-top: .35rem; font-size: 1rem; }
.industry-tags, .leader-expertise { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.industry-tags span, .leader-expertise span {
  padding: .35rem .75rem;
  border: 1px solid rgba(177,170,92,.5);
  border-radius: 999px;
  color: var(--olive-deep);
  background: var(--olive-soft);
  font-size: .78rem;
  font-weight: 700;
}
.numbers-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.number-card { padding: 2.2rem 1.4rem; text-align: left; }
.number-card .big-num { margin-bottom: 1.2rem; font-size: clamp(2.3rem, 4vw, 3.5rem); }

.leaders-grid { display: grid; gap: 1.25rem; }
.leader-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform var(--ease), box-shadow var(--ease);
}
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.leader-avatar--photo { width: 190px; height: 220px; overflow: hidden; border: 0; border-radius: 22px; background: var(--canvas) !important; }
.leader-avatar--photo img { width: 100%; height: 100%; border-radius: 0; object-fit: cover; object-position: center top; filter: grayscale(12%); }
.leader-info h3 { margin-bottom: .35rem; font-size: 1.75rem; }
.leader-title { margin-bottom: 1.2rem; color: var(--olive-deep); font-size: .85rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.leader-bio { font-size: .97rem; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.industry-card { min-height: 250px; padding: 1.8rem; }
.ind-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 3.2rem;
  border-radius: 14px;
  background: var(--yellow);
  font-size: 0;
}
.industry-card:nth-child(3n+2) .ind-icon { background: var(--olive); }
.industry-card:nth-child(3n+3) .ind-icon { background: var(--logo-gray-soft); color: var(--logo-gray); }
.ind-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  content: '';
  background: var(--ink);
  transform: translate(-50%, -50%);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.industry-card:nth-child(1) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 10 9-6 9 6M5 10v8M9 10v8M15 10v8M19 10v8M3 18h18M2 22h20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 10 9-6 9 6M5 10v8M9 10v8M15 10v8M19 10v8M3 18h18M2 22h20'/%3E%3C/svg%3E");
}
.industry-card:nth-child(2) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M8 20h8M12 16v4M8 9l2 2-2 2M13 13h3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M8 20h8M12 16v4M8 9l2 2-2 2M13 13h3'/%3E%3C/svg%3E");
}
.industry-card:nth-child(3) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l6 3V9l6 3V5h4l2 16H3Z'/%3E%3Cpath d='M7 17h1M11 17h1M15 17h1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l6 3V9l6 3V5h4l2 16H3Z'/%3E%3Cpath d='M7 17h1M11 17h1M15 17h1'/%3E%3C/svg%3E");
}
.industry-card:nth-child(4) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='19' cy='20' r='1'/%3E%3Cpath d='M3 4h2l2.7 11.2a2 2 0 0 0 2 1.6h8.8a2 2 0 0 0 2-1.6L22 8H6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='19' cy='20' r='1'/%3E%3Cpath d='M3 4h2l2.7 11.2a2 2 0 0 0 2 1.6h8.8a2 2 0 0 0 2-1.6L22 8H6'/%3E%3C/svg%3E");
}
.industry-card:nth-child(5) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
}
.industry-card:nth-child(6) .ind-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18M6 21V7l6-4 6 4v14M9 10h1M14 10h1M9 14h1M14 14h1M10 21v-3h4v3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18M6 21V7l6-4 6 4v14M9 10h1M14 10h1M9 14h1M14 14h1M10 21v-3h4v3'/%3E%3C/svg%3E");
}
.industry-card h4 { margin-bottom: .7rem; }
.industry-card p { font-size: .88rem; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.contact-info-col h2, .contact-form-col h2 { margin-bottom: 2rem; }
.contact-cards { display: grid; gap: .8rem; }
@media (min-width: 961px) {
  .contact-info-col .contact-cards {
    margin-top: clamp(4.7rem, 6.4vw, 7rem);
  }
}
.contact-card { display: flex; gap: 1rem; align-items: center; padding: 1.25rem; border: 1px solid var(--line); border-radius: 16px; background: var(--canvas); }
.contact-card-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0;
}
.contact-card-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  content: '';
  background: var(--ink);
  transform: translate(-50%, -50%);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.contact-card:nth-child(1) .contact-card-icon::after,
.contact-card:nth-child(2) .contact-card-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.contact-card:nth-child(3) .contact-card-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E");
}
.contact-card:nth-child(4) .contact-card-icon::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 0 1 0 20M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15 15 0 0 1 0 20M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E");
}
.contact-card h4 { margin-bottom: .2rem; }
.contact-card p { font-size: .82rem; }
.contact-link { color: var(--ink); font-size: .92rem; font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { color: var(--ink); font-size: .8rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: white;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(177,170,92,.2); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.legacy-contact-form { display: none !important; }
.google-form-frame {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
  border-radius: 12px;
  background: white;
}
.google-form-submit-frame { display: none; }
.google-form-success { color: var(--olive-deep); font-weight: 700; }
.contact-form input[type="file"] {
  padding: .65rem;
  cursor: pointer;
}
.contact-form input[type="file"]::file-selector-button {
  margin-right: .8rem;
  padding: .55rem .85rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  cursor: pointer;
  font-weight: 700;
}
.file-hint { color: var(--muted); font-size: .76rem; }

.cta-banner { position: relative; overflow: hidden; padding: 2.2rem 0; background: var(--yellow); }
.cta-banner::after { position: absolute; right: -120px; bottom: -220px; width: 430px; height: 430px; border: 1px solid rgba(17,20,24,.16); border-radius: 50%; content: ''; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { max-width: none; font-size: clamp(2rem, 3.3vw, 3rem); }
.cta-inner p { margin-top: .6rem; color: rgba(17,20,24,.64); }
@media (min-width: 961px) {
  .cta-inner h2 { white-space: nowrap; }
}
.cta-banner .btn-white {
  border: 0;
  background: #25d366;
  color: white;
  box-shadow: 0 14px 28px rgba(17,20,24,.18);
}
.cta-banner .btn-white:hover {
  transform: translateY(-3px);
  background: #1fc65e;
  color: white;
  box-shadow: 0 18px 38px rgba(17,20,24,.24);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 56px;
  border-radius: 999px;
  padding: .9rem 1.65rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.btn-whatsapp::before {
  display: block;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  content: '';
  background: currentColor;
  box-shadow: none;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16.02 3C8.85 3 3.02 8.82 3.02 15.98c0 2.29.6 4.52 1.74 6.49L3 29l6.7-1.72a12.9 12.9 0 0 0 6.32 1.61C23.18 28.89 29 23.08 29 15.98S23.18 3 16.02 3Zm0 23.7c-1.94 0-3.84-.52-5.5-1.51l-.39-.23-3.98 1.02 1.06-3.86-.25-.4a10.63 10.63 0 0 1-1.74-5.74c0-5.95 4.85-10.79 10.8-10.79 5.96 0 10.8 4.84 10.8 10.79 0 5.94-4.84 10.72-10.8 10.72Zm5.92-8.02c-.32-.16-1.91-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.21.32-.84 1.05-1.03 1.26-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.61-1.92-1.8-2.24-.18-.32-.02-.5.14-.66.14-.14.32-.38.48-.57.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.57-.08-.16-.73-1.76-1-2.42-.26-.63-.53-.54-.73-.55h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.11-1.14 2.71s1.17 3.15 1.33 3.37c.16.21 2.31 3.52 5.6 4.94.78.34 1.39.54 1.86.69.78.25 1.5.21 2.07.13.63-.09 1.91-.78 2.18-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.62-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16.02 3C8.85 3 3.02 8.82 3.02 15.98c0 2.29.6 4.52 1.74 6.49L3 29l6.7-1.72a12.9 12.9 0 0 0 6.32 1.61C23.18 28.89 29 23.08 29 15.98S23.18 3 16.02 3Zm0 23.7c-1.94 0-3.84-.52-5.5-1.51l-.39-.23-3.98 1.02 1.06-3.86-.25-.4a10.63 10.63 0 0 1-1.74-5.74c0-5.95 4.85-10.79 10.8-10.79 5.96 0 10.8 4.84 10.8 10.79 0 5.94-4.84 10.72-10.8 10.72Zm5.92-8.02c-.32-.16-1.91-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.21.32-.84 1.05-1.03 1.26-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.61-1.92-1.8-2.24-.18-.32-.02-.5.14-.66.14-.14.32-.38.48-.57.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.57-.08-.16-.73-1.76-1-2.42-.26-.63-.53-.54-.73-.55h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.11-1.14 2.71s1.17 3.15 1.33 3.37c.16.21 2.31 3.52 5.6 4.94.78.34 1.39.54 1.86.69.78.25 1.5.21 2.07.13.63-.09 1.91-.78 2.18-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.62-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.whatsapp-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: transparent;
  transition: transform var(--ease), filter var(--ease);
}
.whatsapp-icon-link:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 16px 28px rgba(17,20,24,.22));
}
.whatsapp-icon-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.8rem);
  bottom: clamp(1rem, 2.2vw, 1.8rem);
  z-index: 120;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  filter: drop-shadow(0 14px 26px rgba(17,20,24,.26));
  transition: transform var(--ease), filter var(--ease);
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 18px 34px rgba(17,20,24,.32));
}
.floating-whatsapp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer { padding: 5rem 0 0; border-top: 1px solid var(--line); background: var(--olive-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(17,20,24,.1); }
.logo-img--footer { height: 45px; }
.footer-brand p { max-width: 320px; margin-top: 1.3rem; color: var(--muted); }
.footer h4 { margin-bottom: 1.2rem; color: var(--olive-deep); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a, .footer-contact p { color: var(--muted); font-size: .88rem; transition: color var(--ease); }
.footer-links a:hover { color: var(--ink); }
.footer-contact p { margin-bottom: .55rem; }
.footer-bottom { padding: 1.4rem 20px; text-align: center; }
.footer-bottom p { color: rgba(17,20,24,.38); font-size: .78rem; }

/* Careers and modal */
.ats-widget-wrap { background: transparent; }
.careers-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.careers-heading-copy .section-sub { margin-bottom: 0; }
.open-app-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  margin: 0;
  padding: .55rem .55rem .55rem 1.25rem;
  border: 1px solid rgba(177,170,92,.48);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-soft), var(--olive-soft));
  box-shadow: 0 8px 24px rgba(177,170,92,.12);
}
.open-app-prompt {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.open-app-cta .btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.2rem;
  border: 1px solid rgba(119,113,59,.22) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  background: var(--yellow) !important;
  box-shadow: 0 7px 18px rgba(177,170,92,.24) !important;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: auto;
}
.open-app-cta .btn:hover {
  background: var(--yellow-2) !important;
  box-shadow: 0 10px 22px rgba(177,170,92,.34) !important;
  transform: translateY(-2px);
}
.modal-overlay { backdrop-filter: blur(8px); }
.modal-overlay:target { display: flex; }
.application-dialog { border-radius: var(--radius) !important; box-shadow: var(--shadow-lg); }

/* Animation */
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-content > *, .page-hero .container > * { animation: fadeUp .75s both; }
.hero-content > :nth-child(2), .page-hero .container > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3), .page-hero .container > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }

@media (min-width: 761px) {
  .nav-item:hover .dropdown-menu { display: block; }
}

@media (max-width: 960px) {
  .service-cards, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-layout { grid-template-columns: 1fr; }
  .numbers-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container, .hero-content, .nav-inner { width: min(100% - 28px, 1180px); }
  .section { padding: 3.4rem 0; }
  .nav-inner { height: 72px; }
  .logo-img { height: 40px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: 1rem 18px 2rem;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.99);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .dropdown-toggle { width: 100%; justify-content: space-between; padding: .85rem 1rem; }
  .nav-links .nav-cta { margin: .6rem 0 0; justify-content: center; }
  .dropdown-menu { position: static; margin-top: .3rem; border: 0; background: var(--canvas); box-shadow: none; }
  .hero {
    min-height: 655px;
    padding: 7.8rem 0 3rem;
    background:
      url('WORLDMAPGOLD.png') center center / cover no-repeat;
  }
  .hero::before { inset: 0; opacity: 1; }
  .hero-headline { max-width: 720px; font-size: clamp(2rem, 8vw, 2.75rem); line-height: 1.03; }
  .hero-search-box { flex-wrap: wrap; padding: .8rem; border-radius: 14px; }
  .hero-search-icon { display: none; }
  .hero-search-input { width: 100%; flex-basis: calc(100% - 110px); padding-left: .4rem; }
  .hero-search-btn { flex: 1; }
  .page-hero { padding: 6.1rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.55rem); }
  .careers-page-hero { padding: 5.35rem 0 1.85rem; }
  .careers-page-hero h1 { font-size: clamp(1.85rem, 7vw, 2.45rem); }
  .careers-openings-section { padding-top: 2rem; }
  .service-cards, .services-full-grid, .advantage-grid, .industry-grid, .mv-grid, .process-steps { grid-template-columns: 1fr; }
  .adv-card--wide { grid-column: auto; }
  .why-grid { gap: .75rem; }
  .why-card { min-height: 160px; padding: 1.3rem; }
  .service-card { min-height: 230px; }
  .leader-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.4rem; }
  .leader-avatar--photo { width: 100%; height: 330px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-contact { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .careers-heading-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .open-app-cta { align-items: stretch; flex-direction: column; border-radius: var(--radius); }
  .open-app-prompt { width: 100%; text-align: center; white-space: normal; }
  .open-app-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .why-grid, .about-side, .numbers-row { grid-template-columns: 1fr; }
  .hero-search-input { flex-basis: 100%; }
  .hero-search-btn { width: 100%; }
  .svc-full-card, .adv-card { flex-direction: column; }
  .contact-form { padding: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Answer-focused FAQ sections */
.faq-section { background: var(--bg-alt); }
.faq-section h2 { max-width: 720px; margin-bottom: 1.5rem; }
.faq-list { max-width: 900px; display: grid; gap: .8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
}
.faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -.1rem;
  color: var(--gold-dim);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--text-muted); margin: .8rem 0 0; line-height: 1.7; }
