/* ══════════════════════════════════════════════════════════
   TALENT on demand  -  Shared Stylesheet
   Brand: navy #143660 | cyan #00b4d8 | light blue #ebf3f9
   Font: Trebuchet MS, Arial
   ══════════════════════════════════════════════════════════ */

/* ── Reset & tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #143660;
  --navy-dark:  #0d2540;
  --cyan:       #00b4d8;
  --cyan-dark:  #0092b5;
  --light:      #ebf3f9;
  --gray:       #f5f7fa;
  --white:      #ffffff;
  --text:       #2d3748;
  --muted:      #5a6a7a;
  --border:     #e2e8f0;
  --radius:     12px;
  --radius-sm:  6px;
  --shadow:     0 2px 12px rgba(20,54,96,.08);
  --shadow-md:  0 4px 20px rgba(20,54,96,.12);
  --shadow-lg:  0 8px 32px rgba(20,54,96,.16);
  --transition: .22s ease;
  --max-w:      1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }
.section--alt   { background: var(--gray); }
.section--light { background: var(--light); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--navy-grad {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section--dark .section-label,
.section--navy-grad .section-label { color: var(--cyan); }

.section-heading {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-heading--white { color: var(--white) !important; }
.section-heading--cyan  { color: var(--cyan) !important; }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section-sub,
.section--navy-grad .section-sub { color: rgba(255,255,255,.72); }

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* Cyan divider bar */
.divider {
  width: 52px;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin-bottom: 28px;
}
.divider--center { margin: 0 auto 28px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(20,54,96,.2); text-decoration: none; }

.btn--navy    { background: var(--navy); color: var(--white); }
.btn--cyan    { background: var(--cyan); color: var(--navy); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); box-shadow: none; }
.btn--lg { padding: 16px 38px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: .82rem; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(20,54,96,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.nav-logo-text span {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--muted);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  flex: 1;
}
.nav-links a {
  color: var(--navy);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--cyan); background: var(--light); text-decoration: none; }
.nav-links a.active { color: var(--cyan); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { cursor: pointer; }
.nav-item > a::after {
  content: " ▾";
  font-size: .65rem;
  opacity: .5;
  vertical-align: middle;
}
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;        /* flush with nav-item  -  no gap to lose hover over */
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  padding-top: 12px; /* visual breathing room without breaking hover */
  z-index: 300;
  transition: opacity .18s ease, visibility .18s ease;
  transition-delay: 0s;
}
.nav-item:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
/* When mouse leaves nav-item, wait 400ms before hiding */
.nav-dropdown {
  transition: opacity .2s ease .4s, visibility .2s ease .4s;
}
.nav-item:hover .nav-dropdown {
  transition: opacity .15s ease 0s, visibility .15s ease 0s;
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: .83rem;
  color: var(--navy);
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--light); }

.nav-cta {
  flex-shrink: 0;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #dce8f5 0%, var(--light) 60%, #e8f5fb 100%);
  padding: 100px 0 88px;
}
.hero-inner { max-width: 760px; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--cyan); }
.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero dark variant (navy background) */
.hero--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,180,216,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(20,54,96,.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero--dark .hero-title  { color: var(--white); }
.hero--dark .hero-title em { color: var(--cyan); }
.hero--dark .hero-sub    { color: rgba(255,255,255,.75); }
.hero--dark .section-label { color: var(--cyan); }
.hero--dark .container  { position: relative; z-index: 2; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card--accent { border-top: 4px solid var(--cyan); }
.card--navy   { background: var(--navy); color: var(--white); border-color: transparent; }
.card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.card--navy h3 { color: var(--cyan); }
.card p  { color: var(--muted); font-size: .93rem; line-height: 1.65; margin: 0; }
.card--navy p { color: rgba(255,255,255,.75); }

/* ── STAT CARD ── */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num--cyan { color: var(--cyan); }
.stat-label {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── FEATURE ROW ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row--reverse .feature-visual { order: -1; }

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-visual {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border: 1px solid var(--border);
}

/* ── PILLAR CARD ── */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--cyan);
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); }
.pillar-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
}
.pillar-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cyan);
}

/* ── CALLOUT BOX ── */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 18px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(20,54,96,.22);
}
.callout::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.18) 0%, transparent 70%);
  pointer-events: none;
}
.callout::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,54,96,.22) 0%, transparent 70%);
  pointer-events: none;
}
.callout-quote {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.callout-quote span { color: var(--cyan); }
.callout p {
  color: rgba(255,255,255,.78);
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 40px;
  border-left: 5px solid var(--cyan);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 28px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,180,216,.2);
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-top: 18px;
}
.testimonial-attr {
  font-size: .85rem;
  color: var(--muted);
}
.testimonial-attr strong { color: var(--navy); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0d3558 100%);
  padding: 96px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-label { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-title span { color: var(--cyan); }
.cta-sub {
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: #081829;
  color: rgba(255,255,255,.55);
  padding: 64px 0 32px;
  font-size: .88rem;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.65;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-logo img { height: 32px; }
.footer-logo-text {
  font-size: .82rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .87rem; }
.footer-col a:hover { color: var(--cyan); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--cyan); font-size: .82rem; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gap-sm { gap: 16px; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge--cyan  { background: rgba(0,180,216,.12); color: var(--navy); border: 1px solid rgba(0,180,216,.3); }
.badge--navy  { background: var(--navy); color: var(--white); }
.badge--light { background: var(--light); color: var(--navy); border: 1px solid var(--border); }

/* ── ICON CIRCLE ── */
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-circle--cyan { background: rgba(0,180,216,.12); }

/* ── PROCESS STEPS ── */
.process-steps { list-style: none; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  flex-shrink: 0;
}
.step-num--cyan { background: var(--cyan); color: var(--navy); }
.step-body h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 5px; }
.step-body p  { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.6; }

/* ── LEVERS GRID ── */
.lever-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.lever-card .vs {
  font-size: .72rem;
  background: var(--cyan);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 800;
  flex-shrink: 0;
}
.lever-card .side { flex: 1; }
.lever-card .side:last-child { text-align: right; }

/* ── COMPARISON TABLE ── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table thead th {
  padding: 18px 24px;
  font-size: .88rem;
  font-weight: 800;
  text-align: left;
  letter-spacing: .04em;
}
.comparison-table thead th:first-child { background: #e8eef5; color: var(--muted); width: 22%; }
.comparison-table thead th:nth-child(2){ background: #8caac8; color: var(--white); }
.comparison-table thead th:last-child  { background: var(--navy); color: var(--white); }
.comparison-table tbody tr:nth-child(even) td { background: var(--light); }
.comparison-table tbody tr:nth-child(odd)  td { background: var(--white); }
.comparison-table tbody tr:hover td { background: #d8eef8; transition: background .15s; }
.comparison-table tbody td {
  padding: 15px 24px;
  font-size: .92rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tbody td:first-child {
  font-weight: 700; color: var(--muted);
  font-size: .78rem; letter-spacing: 1px; text-transform: uppercase;
}
.comparison-table tbody td:nth-child(2) { color: #4a6d8c; font-weight: 600; }
.comparison-table tbody td:last-child   { color: var(--navy); font-weight: 700; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-row { gap: 40px; }
}
@media (max-width: 900px) {
  .grid-4, .grid-stats { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse .feature-visual { order: 0; }
  .nav-links { display: none; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
}
@media (max-width: 700px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: 1fr; }
  .callout        { padding: 40px 24px; }
  .section        { padding: 60px 0; }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero           { padding: 72px 0 60px; }
}
