/* ===== NACL REMOTE - Global Styles (Deloitte Layout + Original Colors) ===== */

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

:root {
  --navy: #0a1628;
  --deep-blue: #122244;
  --blue: #1a3a6b;
  --accent-blue: #2563eb;
  --light-blue: #e8f0fe;
  --gold: #c9a84c;
  --gold-light: #f5e6b8;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --bg-gray: #f5f6f6;
  --light-gray: #e5e7eb;
  --mid-gray: #94a3b8;
  --dark-gray: #475569;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-light: #cbd5e1;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 8px 24px rgba(10, 22, 40, 0.08);
  --radius: 0px;
  --radius-sm: 0px;
  --transition: 0.3s ease;
  --font-weight-bold: 600;
  --font-weight-regular: 300;
}

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

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

body {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 300; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 300; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 680px;
  font-weight: var(--font-weight-regular);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 1.5px solid var(--accent-blue);
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #b8933e;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.btn-arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.8125rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02rem;
  line-height: 1.3rem;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.02rem;
  background: var(--accent-blue) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: #1d4ed8 !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 1px;
  transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../desola-lanre-ologun-WECV64BvS3M-unsplash.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.7) 45%, rgba(10, 22, 40, 0.25) 100%);
  z-index: 1;
}

.hero::after {
  display: none !important;
  content: none !important;
}

.hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 96px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: #d0d0ce;
  font-size: 1.0625rem;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-buttons .btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  font-size: 0.9375rem;
}

.hero-buttons .btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 4px;
  font-weight: 300;
}

.hero-stat p {
  color: var(--mid-gray);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

/* ===== Sections ===== */
.section {
  padding: 88px 0;
  overflow-x: hidden;
}

.section-alt {
  background: var(--bg-gray);
}

.section-dark {
  background: var(--navy);
}

.section-center {
  text-align: center;
}

.section-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Split Banner (two-col image + text) ===== */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-banner-image {
  overflow: hidden;
}
.split-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon-blue {
  background: var(--light-blue);
  color: var(--accent-blue);
}

.card-icon-blue svg {
  fill: var(--accent-blue);
}

.card-icon-gold {
  background: var(--gold-light);
  color: var(--gold);
}

.card-icon-gold svg {
  fill: var(--gold);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===== Process Steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50%;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 1px;
  background: var(--light-gray);
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.process-step p {
  font-size: 0.8125rem;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-text .section-label {
  margin-bottom: 12px;
}

.two-col-text h2 {
  margin-bottom: 20px;
}

.two-col-text p {
  margin-bottom: 20px;
}

.two-col-image {
  background: var(--bg-gray);
  border-radius: 0;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Check List ===== */
.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.check-list li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L11 5l1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Talent Categories ===== */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.talent-grid-4 { grid-template-columns: repeat(4, 1fr); }

.talent-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  padding: 28px 24px;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.talent-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.talent-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-blue);
}

.talent-card h4 {
  margin-bottom: 6px;
  font-size: 0.9375rem;
}

.talent-card p {
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== Why Kenya Section ===== */
.kenya-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.kenya-features-5 { grid-template-columns: repeat(5, 1fr); }

.kenya-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.kenya-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenya-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.kenya-feature h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.kenya-feature p {
  color: var(--mid-gray);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 72px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.cta-section::before {
  display: none !important;
  content: none !important;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 300;
}

.cta-section p {
  color: var(--text-light);
  margin: 0 auto 32px;
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-info-card:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.875rem;
  margin: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-blue);
  overflow: hidden;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.8125rem;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.8125rem;
  margin: 0 auto;
  max-width: 280px;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.values-grid-5 { grid-template-columns: repeat(5, 1fr); }

.value-card {
  text-align: center;
  padding: 32px 20px;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--light-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  margin: 0 auto;
  max-width: 240px;
}

/* ===== Testimonial ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  padding: 32px;
  text-align: left;
  border-top: 3px solid var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.8125rem;
}

.testimonial-author h5 {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 0.75rem;
  margin: 0;
}

/* ===== Page Header ===== */
.page-header {
  padding: 120px 0 64px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.page-header::after,
.page-header::before,
.section-dark::after,
.section-dark::before,
.cta-section::after {
  display: none !important;
  content: none !important;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 300;
}

.page-header p {
  color: var(--text-light);
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 56px 0 28px;
  color: var(--mid-gray);
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.8125rem;
  margin-top: 14px;
  max-width: 280px;
  color: var(--mid-gray);
  line-height: 1.6;
}

.footer h5 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--mid-gray);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--mid-gray);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== For Talent Page Specifics ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--accent-blue);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 0;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-blue);
}

.benefit-card h4 {
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.benefit-card p {
  font-size: 0.8125rem;
  margin: 0;
}

/* ===== Stats Row ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--light-gray);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h3 {
  font-size: 1.75rem;
  color: var(--accent-blue);
  margin-bottom: 4px;
  font-weight: 300;
}

.stat-item p {
  font-size: 0.8125rem;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ===== Horizontal Divider ===== */
.divider {
  width: 100%;
  height: 1px;
  background: var(--light-gray);
  margin: 0;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
  .two-col {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--light-gray);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    height: 48px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-logo img {
    height: 38px !important;
    padding: 2px !important;
    border-radius: 4px !important;
    background: transparent !important;
    mix-blend-mode: screen !important;
  }

  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero > .container {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .two-col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .two-col-image {
    order: -1;
  }

  .split-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-banner-text {
    padding: 40px 24px;
  }

  .card-grid,
  .card-grid-4,
  .card-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .talent-grid,
  .talent-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .kenya-features,
  .kenya-features-5 {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .values-grid-5 {
    grid-template-columns: 1fr !important;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .page-header {
    padding: 80px 0 40px;
  }
}

/* ===== Device-Specific Mobile Overrides ===== */

/* ----------- iPhone 4 and 4S ----------- */
/* Portrait and Landscape */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .card-grid, .card-grid-3, .card-grid-4,
  .talent-grid, .talent-grid-4,
  .kenya-features, .kenya-features-5,
  .values-grid, .values-grid-5,
  .process-grid, .benefits-grid, .footer-grid, .testimonial-grid,
  .split-banner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  section > div > div[style*="padding: 64px 72px"],
  section > div > div[style*="padding: 64px"] {
    padding: 28px 16px !important;
  }
  section[style*="height: 400px"],
  section[style*="height: 360px"] {
    height: 180px !important;
  }
  .gateway-section {
    padding: 3rem 0 2rem !important;
  }
  .gateway-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .gateway-features {
    grid-template-columns: 1fr !important;
  }
  .section { padding: 40px 0 !important; }
  .page-header { padding: 72px 0 32px !important; }
  .cta-section { padding: 48px 0 !important; }
  .hero h1 { font-size: 1.5rem !important; }
  .hero p { font-size: 0.9375rem !important; }
  .collection-card { width: 240px !important; min-width: 240px !important; }
  .offer-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .contact-top-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .job-listings-grid { grid-template-columns: 1fr !important; }
}

/* Portrait */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .hero { min-height: 100vh; }
  .hero-buttons { flex-direction: column !important; align-items: stretch !important; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column !important; align-items: center !important; }
}

/* Landscape */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .hero { min-height: auto !important; padding: 80px 0 40px !important; }
  .hero > .container { min-height: auto !important; }
}

/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */
/* Portrait and Landscape */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .card-grid, .card-grid-3, .card-grid-4,
  .talent-grid, .talent-grid-4,
  .kenya-features, .kenya-features-5,
  .values-grid, .values-grid-5,
  .process-grid, .benefits-grid, .footer-grid, .testimonial-grid,
  .split-banner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  section > div > div[style*="padding: 64px 72px"],
  section > div > div[style*="padding: 64px"] {
    padding: 32px 20px !important;
  }
  section[style*="height: 400px"],
  section[style*="height: 360px"] {
    height: 200px !important;
  }
  .gateway-section { padding: 3rem 0 2rem !important; }
  .gateway-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .gateway-features { grid-template-columns: 1fr !important; }
  .offer-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .contact-top-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .job-listings-grid { grid-template-columns: 1fr !important; }
  .collection-card { width: 240px !important; min-width: 240px !important; }
}

/* Portrait */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .hero-buttons { flex-direction: column !important; align-items: stretch !important; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column !important; align-items: center !important; }
}

/* Landscape */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .hero { min-height: auto !important; }
  .hero > .container { min-height: auto !important; padding-top: 72px !important; }
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
/* Portrait and Landscape */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-min-device-pixel-ratio: 2) {
  .card-grid, .card-grid-3, .card-grid-4,
  .talent-grid, .talent-grid-4,
  .kenya-features, .kenya-features-5,
  .values-grid, .values-grid-5,
  .process-grid, .benefits-grid, .footer-grid, .testimonial-grid,
  .split-banner {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  section > div > div[style*="padding: 64px 72px"],
  section > div > div[style*="padding: 64px"] {
    padding: 36px 24px !important;
  }
  section[style*="height: 400px"],
  section[style*="height: 360px"] {
    height: 220px !important;
  }
  .gateway-section { padding: 3.5rem 0 2.5rem !important; }
  .gateway-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .gateway-features { grid-template-columns: 1fr !important; }
  .offer-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .contact-top-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .job-listings-grid { grid-template-columns: 1fr !important; }
  .collection-card { width: 260px !important; min-width: 260px !important; }
}

/* Portrait */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .hero-buttons { flex-direction: column !important; align-items: stretch !important; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column !important; align-items: center !important; }
}

/* Landscape */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .hero { min-height: auto !important; }
  .hero > .container { min-height: auto !important; }
  .two-col { grid-template-columns: 1fr 1fr !important; }
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */
/* Portrait and Landscape */
@media only screen
  and (min-device-width: 414px)
  and (max-device-width: 736px)
  and (-webkit-min-device-pixel-ratio: 3) {
  .card-grid, .card-grid-3, .card-grid-4,
  .talent-grid, .talent-grid-4,
  .kenya-features, .kenya-features-5,
  .values-grid, .values-grid-5,
  .process-grid, .benefits-grid, .footer-grid, .testimonial-grid,
  .split-banner {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  section > div > div[style*="padding: 64px 72px"],
  section > div > div[style*="padding: 64px"] {
    padding: 36px 24px !important;
  }
  section[style*="height: 400px"],
  section[style*="height: 360px"] {
    height: 220px !important;
  }
  .gateway-section { padding: 3.5rem 0 2.5rem !important; }
  .gateway-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .gateway-features { grid-template-columns: 1fr !important; }
  .offer-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .contact-top-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .job-listings-grid { grid-template-columns: 1fr !important; }
  .collection-card { width: 260px !important; min-width: 260px !important; }
}

/* Portrait */
@media only screen
  and (min-device-width: 414px)
  and (max-device-width: 736px)
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) {
  .hero-buttons { flex-direction: column !important; align-items: stretch !important; }
  .cta-buttons { flex-direction: column !important; align-items: center !important; }
}

/* Landscape */
@media only screen
  and (min-device-width: 414px)
  and (max-device-width: 736px)
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
  .hero { min-height: auto !important; }
  .hero > .container { min-height: auto !important; }
  .two-col { grid-template-columns: 1fr 1fr !important; }
}

/* ----------- iPhone X ----------- */
/* Portrait and Landscape */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (-webkit-min-device-pixel-ratio: 3) {
  .card-grid, .card-grid-3, .card-grid-4,
  .talent-grid, .talent-grid-4,
  .kenya-features, .kenya-features-5,
  .values-grid, .values-grid-5,
  .process-grid, .benefits-grid, .footer-grid, .testimonial-grid,
  .split-banner {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  section > div > div[style*="padding: 64px 72px"],
  section > div > div[style*="padding: 64px"] {
    padding: 36px 24px !important;
  }
  section[style*="height: 400px"],
  section[style*="height: 360px"] {
    height: 240px !important;
  }
  .gateway-section { padding: 4rem 0 3rem !important; }
  .gateway-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .gateway-features { grid-template-columns: 1fr !important; }
  .offer-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .contact-top-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .job-listings-grid { grid-template-columns: 1fr !important; }
  .collection-card { width: 260px !important; min-width: 260px !important; }
  /* Safe area insets for iPhone X notch */
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  .nav { padding-top: env(safe-area-inset-top); }
}

/* Portrait */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) {
  .hero-buttons { flex-direction: column !important; align-items: stretch !important; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column !important; align-items: center !important; }
}

/* Landscape */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
  .hero { min-height: auto !important; }
  .hero > .container { min-height: auto !important; }
  .two-col { grid-template-columns: 1fr 1fr !important; }
  .card-grid { grid-template-columns: 1fr 1fr !important; }
}
